/* ── Hero section ── */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 7.5rem 0 3rem;
    overflow: hidden;
}

.hero-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-section__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section__bg-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-section__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-section__layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-section__layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
        gap: 2.5rem;
        align-items: start;
    }
}

@media (min-width: 1280px) {
    .hero-section__layout {
        grid-template-columns: minmax(0, 1.25fr) 400px;
        gap: 3rem;
    }
}

/* Content column */
.hero-section__content {
    color: #fff;
}

.hero-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.hero-section__title {
    font-size: clamp(2.35rem, 4.8vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.hero-section__lead {
    margin-top: 1.25rem;
    max-width: 38rem;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.hero-section__intro {
    margin-top: 1.25rem;
    max-width: 40rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-section__intro p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.hero-section__intro p + p {
    margin-top: 0.75rem;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hero-section__btn {
    min-height: 2.85rem;
}

/* Stats */
.hero-section__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 28rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 480px) {
    .hero-section__stats {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

.hero-stat__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2rem);
    line-height: 1;
    color: var(--gold);
}

.hero-stat__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

/* Form column */
.hero-section__form-wrap {
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-section__form-wrap {
        position: sticky;
        top: 6.5rem;
    }
}

.hero-form-card {
    padding: 1.65rem;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-luxury);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 1024px) {
    .hero-form-card {
        padding: 1.85rem;
    }
}

.hero-form-card__eyebrow {
    margin-bottom: 0.5rem;
    color: var(--burgundy);
}

.hero-form-card__title {
    margin-bottom: 1.25rem;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    line-height: 1.2;
    color: var(--burgundy);
}

.hero-form-card__form {
    display: grid;
    gap: 0.85rem;
}

.hero-form-field__label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.hero-form-field__req {
    color: var(--burgundy);
}

.hero-form-card__submit {
    margin-top: 0.15rem;
}

.hero-form-card__note {
    margin-top: 0.65rem;
    font-size: 0.68rem;
    line-height: 1.45;
    text-align: center;
    color: var(--ink-muted);
}

/* Mobile spacing */
@media (max-width: 1023px) {
    .hero-section {
        padding-top: 6.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-section__form-wrap {
        order: 2;
    }
}
