.about-hero {
    position: relative;
    padding: clamp(22px, 4vw, 42px) 0 clamp(64px, 8vw, 104px);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: clamp(180px, 24vw, 280px);
    background: linear-gradient(180deg, rgba(232, 236, 229, 0.52) 0%, rgba(232, 236, 229, 0) 100%);
    pointer-events: none;
}

.about-hero__stage {
    position: relative;
    min-height: clamp(620px, 86svh, 880px);
    display: grid;
    align-items: end;
    border-radius: var(--nv-radius-lg);
    background: var(--nv-color-surface-strong);
    box-shadow: var(--nv-shadow-card);
    overflow: hidden;
}

.about-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-hero__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    box-shadow: none;
}

.about-hero__stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(31, 35, 32, 0.68) 0%, rgba(31, 35, 32, 0.38) 34%, rgba(31, 35, 32, 0.1) 72%, rgba(31, 35, 32, 0.18) 100%),
        linear-gradient(180deg, rgba(31, 35, 32, 0.04) 0%, rgba(31, 35, 32, 0.18) 48%, rgba(31, 35, 32, 0.48) 100%);
    pointer-events: none;
}

.about-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 46rem;
    padding: clamp(42px, 6vw, 84px) clamp(24px, 5vw, 72px);
}

.about-hero__eyebrow {
    color: rgba(247, 248, 244, 0.88);
}

.about-hero__title {
    max-width: 8ch;
    margin: 0;
    color: #f7f8f4;
    font-size: clamp(4.2rem, 9vw, 8.2rem);
    line-height: 0.86;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    text-shadow: 0 18px 44px rgba(31, 35, 32, 0.28);
}

.about-hero__intro {
    max-width: 32rem;
    margin: 24px 0 0;
    color: rgba(247, 248, 244, 0.9);
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.8;
    text-shadow: 0 10px 28px rgba(31, 35, 32, 0.22);
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.about-hero__button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--nv-color-text);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero__button--primary {
    border-color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.94);
    color: var(--nv-color-text);
    box-shadow: 0 18px 38px rgba(31, 35, 32, 0.12);
}

.about-hero__button--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f7f8f4;
    backdrop-filter: blur(14px);
}

.about-hero__button i {
    font-size: 0.9rem;
}

.about-hero__line {
    position: absolute;
    left: clamp(20px, 4vw, 52px);
    right: clamp(20px, 4vw, 52px);
    bottom: clamp(18px, 3vw, 28px);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(247, 248, 244, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-hero.is-ready .about-hero__copy,
.about-hero.is-ready .about-hero__media,
.about-hero.is-ready .about-hero__line {
    transform: translateY(0);
    opacity: 1;
}

.about-hero__copy,
.about-hero__media,
.about-hero__line {
    transform: translateY(18px);
    opacity: 0;
    transition: transform 520ms ease, opacity 520ms ease;
}

.about-hero__media {
    transition-delay: 80ms;
}

.about-hero__line {
    transition-delay: 140ms;
}

@media (max-width: 991px) {
    .about-hero__stage {
        min-height: clamp(620px, 82svh, 760px);
    }

    .about-hero__copy {
        max-width: 100%;
        padding-top: 24px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding-top: 20px;
    }

    .about-hero__stage {
        min-height: 680px;
        border-radius: var(--nv-radius-md);
    }

    .about-hero__copy {
        padding: 28px 20px 92px;
    }

    .about-hero__title {
        font-size: clamp(3.4rem, 16vw, 5.2rem);
        line-height: 0.94;
    }

    .about-hero__actions {
        flex-direction: column;
    }

    .about-hero__button {
        width: 100%;
    }

    .about-hero__line {
        left: 18px;
        right: 18px;
        flex-direction: column;
        gap: 6px;
    }
}
