.page-hero.contact-hero {
    position: relative;
    min-height: 74vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding-top: 86px;
    border-bottom: 0 !important;
    box-shadow: none !important;
    background: url('/assets/img/contact-hero-papcast-16.jpg') center/cover no-repeat;
}

.page-hero.contact-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 180px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(7,7,7,0) 0%,
        rgba(7,7,7,.62) 58%,
        var(--bg) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(227,176,75,.18), transparent 34%),
        linear-gradient(90deg, rgba(7,7,7,.98), rgba(7,7,7,.80), rgba(7,7,7,.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 105px 0 155px;
    animation: contactFadeUp .85s ease both;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    font-weight: 900;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--accent);
    flex: 0 0 auto;
}

h1,
h2 {
    text-transform: none;
}

h1 {
    font-size: clamp(48px, 7vw, 90px);
    line-height: .96;
    letter-spacing: -.06em;
    margin-bottom: 28px;
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin-bottom: 18px;
}

.hero-text,
.lead {
    color: var(--muted);
    font-size: clamp(18px, 2vw, 23px);
}

.hero-text {
    max-width: 760px;
}

.section.contact-section {
    position: relative;
    z-index: 2;
    padding: 96px 0;
    margin-top: -1px;
    background:
        radial-gradient(circle at top right, rgba(227,176,75,.13), transparent 36%),
        var(--bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: 124px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.contact-highlights {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.contact-highlights div {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.contact-highlights div:hover {
    transform: translateY(-5px);
    border-color: rgba(227,176,75,.42);
    background: rgba(227,176,75,.08);
}

.contact-highlights strong {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(227,176,75,.14);
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
}

.contact-highlights span {
    color: var(--muted);
    font-weight: 800;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.form-field label {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7,7,7,.66);
    color: var(--text);
    padding: 16px 18px;
    font: inherit;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(227,176,75,.66);
    box-shadow: 0 0 0 4px rgba(227,176,75,.11);
    background: rgba(7,7,7,.88);
}

.form-field textarea {
    resize: vertical;
    min-height: 180px;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    margin: 6px 0 22px;
}

.form-submit {
    width: 100%;
}

@keyframes contactFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 920px) {
    .page-hero.contact-hero {
        min-height: auto;
    }

    .hero-content {
        padding: 120px 0 120px;
    }

    .section.contact-section {
        padding: 72px 0;
    }

    .contact-layout,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-intro {
        position: static;
    }
}

@media (max-width: 640px) {
    .page-hero.contact-hero {
        padding-top: 72px;
    }

    .hero-content {
        padding: 78px 0 110px;
    }

    h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    h2 {
        font-size: clamp(30px, 10vw, 44px);
    }

    .contact-form,
    .contact-intro {
        padding: 24px;
    }

    .btn {
        width: 100%;
    }
}