.page-hero {
    position: relative;
    min-height: clamp(420px, 55vh, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--section-surface-dark);
}

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(42, 107, 88, 0.5) 100%);
    z-index: 1;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero__eyebrow {
    display: inline-block;
    font-size: var(--fs-body-small);
    font-weight: var(--fw-semibold);
    color: var(--color-brand-gold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-bottom: var(--space-md);
}

.page-hero__title {
    font-size: var(--fs-h1);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.08;
    text-wrap: balance;
    max-width: 18ch;
    margin-inline: auto;
    font-weight: var(--fw-black);
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: var(--space-xl);
    max-width: var(--section-intro-max);
    margin-inline: auto;
    line-height: 1.75;
}

.page-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-2xl);
    background: var(--color-brand-gold);
    color: var(--color-bg-dark);
    text-decoration: none;
    border-radius: var(--radius-button);
    font-weight: var(--fw-semibold);
    transition: background var(--duration-normal) var(--ease-out-expo),
                transform var(--duration-normal) var(--ease-out-expo);
}

.page-hero__cta:hover {
    background: var(--color-brand-gold-hover);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }

    .page-hero__title {
        font-size: var(--fs-h2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero__cta:hover {
        transform: none;
    }
}
