

.page-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 190px;
    color: var(--brand-white);
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-hero-overlay);
    z-index: 1;
    pointer-events: none;
}

.page-hero__content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.page-hero__content > .brand-tag,
.page-hero__content > .brand-tag-dark,
.page-hero__content > .brand-tag-white {
    width: max-content;
    max-width: 100%;
}

.page-hero__content h1 {
    font-size: var(--brand-font-hero);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
    color: var(--brand-white);
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    background: var(--brand-green-dark);
    clip-path: polygon(0 0, 100% 75%, 100% 100%, 0 100%);
    z-index: 2;
    pointer-events: none;
}

.page-hero.cut-white::after {
    background: var(--brand-white);
}

.page-hero.no-cut::after {
    display: none;
}

@media (max-width: 768px) {
    .page-hero { min-height: 55vh; padding: 0 24px 110px; }
    .page-hero__content h1 { font-size: 28px; }
    .page-hero::after { height: 80px; }
}
