.contact-hero {
    position: relative;
    padding: clamp(34px, 6vw, 72px) 0 clamp(52px, 8vw, 96px);
}

.contact-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;
}

.contact-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: center;
}

.contact-hero__copy {
    max-width: 34rem;
    position: relative;
    z-index: 2;
}

.contact-hero__copy-panel {
    position: relative;
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid rgba(76, 86, 79, 0.12);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 245, 240, 0.94) 100%);
    box-shadow: 0 28px 72px rgba(31, 35, 32, 0.08);
}

.contact-hero__copy-panel::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 20px;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(76, 86, 79, 0.08);
    border-radius: 999px;
    opacity: 0.55;
}

.contact-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--nv-color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-hero__eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
}

.contact-hero__eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(76, 86, 79, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 24px rgba(31, 35, 32, 0.05);
}

.contact-hero__eyebrow-icon i {
    font-size: 0.8rem;
    line-height: 1;
}

.contact-hero__title {
    margin: 0;
    max-width: 10ch;
    font-size: clamp(3rem, 5.8vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-wrap: balance;
}

.contact-hero__intro {
    max-width: 30rem;
    margin: 22px 0 0;
    color: var(--nv-color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-hero__media-wrap {
    position: relative;
    padding-left: clamp(0px, 3vw, 22px);
}

.contact-hero__media {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: clamp(380px, 56vw, 680px);
    background: linear-gradient(180deg, rgba(242, 243, 238, 0.98) 0%, rgba(230, 233, 226, 0.98) 100%);
    box-shadow: 0 32px 88px rgba(31, 35, 32, 0.08);
}

.contact-hero__media::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 26px;
    z-index: 1;
    pointer-events: none;
}

.contact-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 19, 17, 0.02) 0%, rgba(16, 19, 17, 0.1) 100%),
        linear-gradient(180deg, rgba(246, 246, 241, 0) 70%, rgba(246, 246, 241, 0.12) 100%);
}

.contact-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero__media-note {
    position: absolute;
    left: 0;
    bottom: 24px;
    z-index: 2;
    width: min(100%, 290px);
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 44px rgba(31, 35, 32, 0.12);
}

.contact-hero__media-note span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(247, 248, 244, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hero__media-note span::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
}

.contact-hero__media-note span i {
    font-size: 0.82rem;
}

.contact-hero__media-note p {
    margin: 12px 0 0;
    color: rgba(247, 248, 244, 0.88);
    font-size: 0.92rem;
    line-height: 1.66;
}

@media (max-width: 991px) {
    .contact-hero__shell {
        grid-template-columns: 1fr;
    }

    .contact-hero__copy {
        max-width: 100%;
    }

    .contact-hero__media-wrap {
        padding-left: 0;
    }

    .contact-hero__media-note {
        left: 20px;
    }
}

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

    .contact-hero__title {
        max-width: 12ch;
        font-size: clamp(2.4rem, 10vw, 4rem);
        line-height: 1;
    }

    .contact-hero__copy-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .contact-hero__media {
        border-radius: 24px;
        min-height: 320px;
    }

    .contact-hero__media::before {
        inset: 10px;
        border-radius: 18px;
    }

    .contact-hero__media-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        border-radius: 20px;
    }
}
