.page-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 400px;
    padding: var(--pad-y-alt) var(--pad-x);
}

.page-hero__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: var(--site-max-w);
    margin: 0 auto;
}

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    width: 100%;
    height: 100%;
}

.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(57, 42, 36, 0.20) 0%, rgba(57, 42, 36, 0.20) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.39) 0%, rgba(0, 0, 0, 0.00) 55%), linear-gradient(0deg, rgba(192, 168, 153, 0.20) 0%, rgba(192, 168, 153, 0.20) 100%), linear-gradient(0deg, rgba(32, 18, 17, 0.30) 0%, rgba(32, 18, 17, 0.30) 100%);

}

/* ── Left column: breadcrumb + headline, pinned top/bottom ─── */
.page-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    max-width: 474px;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    flex-grow: 1;
    min-width: 0; /* allow the current crumb to shrink/ellipse */
}

.page-hero__breadcrumb-item {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF; /* Figma "Brand/Dark/White" — distinct from --color-light (cream) */
    opacity: 0.45;
    transition: var(--transition);
    white-space: nowrap; /* never wrap a crumb onto two lines */
    flex-shrink: 0;      /* first crumbs keep their full text */
}

a.page-hero__breadcrumb-item:hover {
    opacity: 0.7;
}

.page-hero__breadcrumb-item--current {
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
    /* the last crumb absorbs all the shrinking and ellipses if it's too long
       (the page title sits right below it anyway) */
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-hero__breadcrumb-sep {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF; /* Figma "Brand/Dark/White" — distinct from --color-light (cream) */
    opacity: 0.25;
    flex-shrink: 0;
}

.page-hero__headline {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-hero__heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 72px;
    line-height: 78px;
	-webkit-font-smoothing: auto;

    color: #fff;
}

.page-hero__heading em {
    font-style: italic;
    color: var(--color-accent);
}

.page-hero__subheading {
	-webkit-font-smoothing: auto;

    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    color: #EBCEC8; /* one-off tint from Figma, not in the shared palette */
}

/* ── Right column: body copy + stats + CTA, pinned bottom ──── */
.page-hero__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 20px;
    max-width: 500px;
}

.page-hero__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.page-hero__body {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-light);
}

.page-hero__stat-rule {
    width: 100%;
    height: 1px;
    background: #FFFFFF; /* Figma "bg-white" — distinct from --color-light (cream) */
    opacity: 0.25;
}

.page-hero__stat-sep {
    align-self: stretch;
    width: 1px;
    flex-shrink: 0;
    background: #FFFFFF; /* Figma "bg-white" — distinct from --color-light (cream) */
    opacity: 0.18;
}

.page-hero__stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
}

.page-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    white-space: nowrap;
}

.page-hero__stat-value {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-light);
}

.page-hero__stat-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-light);
    opacity: 0.8;
}

.page-hero__cta {
    padding: 14px 32px;
}

@media (max-width: 1366px) {
    .page-hero {
        min-height: 400px;
    }

    .page-hero__heading {
        font-size: 54px;
        line-height: 60px;
    }
}

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

    .page-hero__content {
        flex-direction: column;
        justify-content: flex-end;
        gap: 40px;
    }

    .page-hero__left {
        max-width: 100%;
        height: 100%;
        gap: 32px;
    }

    .page-hero__heading {
        font-size: 44px;
        line-height: 50px;
    }

    .page-hero__right {
        max-width: 100%;
        align-items: flex-start;
    }

    .page-hero__cta {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-hero__content {
        gap: 20px;
    }

    .page-hero__stat {
        white-space: normal;
    }

    .page-hero__heading {
        font-size: 36px;
        line-height: 42px;
    }

    .page-hero__headline {
        gap: 20px;
    }
}
