/* ════════════════════════════
   HOME PAGE — hero + layout
   home.css (loaded only on homepage)
════════════════════════════ */

/* HERO SECTION */
.hero-section {
    background: var(--forest);
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}
#hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(108deg, rgba(5,12,7,.96) 0%, rgba(13,43,30,.72) 48%, rgba(13,43,30,.05) 100%);
}
.hero-grid {
    display: contents; /* children participate in parent grid */
}

/* HERO LEFT */
.hero-copy {
    position: relative; z-index: 2;
    padding: 72px var(--pad) 64px;
    display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hero-ey-line  { width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-ey-txt   { font-family: var(--C); font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

.hero-h1 {
    font-family: var(--D);
    font-size: clamp(58px, 8vw, 114px);
    line-height: .9; letter-spacing: .02em; text-transform: uppercase;
    color: var(--white); margin-bottom: 4px;
}
.hero-outline { -webkit-text-stroke: 1.5px rgba(255,255,255,.22); color: transparent; }
.hero-lime    { color: var(--lime); }

/* Proof pill */
.hero-proof {
    display: flex; align-items: center; gap: 12px;
    margin: 18px 0 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    width: fit-content;
}
.stars-row { display: flex; gap: 2px; }
.proof-sep  { width: 1px; height: 14px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.proof-txt  { font-family: var(--C); font-size: 12px; font-weight: 500; letter-spacing: .06em; color: rgba(255,255,255,.6); }

.hero-desc {
    font-family: var(--B); font-size: 16px; font-weight: 300;
    color: rgba(255,255,255,.62); line-height: 1.72;
    margin-bottom: 28px; max-width: 460px;
}
.hero-desc strong { color: rgba(255,255,255,.9); font-weight: 400; }

/* Mini stats */
.hero-mini-stats { display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.ms { padding: 12px 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 6px; flex: 1; min-width: 90px; }
.ms-n { font-family: var(--D); font-size: 30px; line-height: 1; color: var(--gold); letter-spacing: .02em; }
.ms-l { font-family: var(--B); font-size: 10px; font-weight: 300; color: rgba(255,255,255,.42); margin-top: 3px; line-height: 1.4; }

.hero-wa {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--B); font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.4); text-decoration: none;
    transition: color .2s;
}
.hero-wa:hover { color: rgba(255,255,255,.72); }

/* HERO RIGHT — Form */
.hero-form-col {
    position: relative; z-index: 2;
    padding: 40px 40px 40px 20px;
    display: flex; align-items: center; justify-content: center;
}
.hero-form-col > .form-card {
    width: 100%; max-width: 432px;
    box-shadow: 0 28px 72px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.08);
}

/* ── RESPONSIVE ── */

/* TABLET — 768–1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        grid-template-columns: 1.2fr 1fr;
        min-height: 80vh;
    }
    .hero-copy {
        padding: 56px var(--pad) 40px;
    }
    .hero-form-col {
        padding: 40px 16px 40px 8px;
    }
    .hero-form-col > .form-card {
        max-width: 360px;
    }
    .hero-h1 { font-size: clamp(46px, 7vw, 72px); }
    .hero-desc { font-size: 14px; max-width: 380px; }
    .hero-mini-stats { gap: 10px; }
    .ms { padding: 10px 12px; min-width: 80px; }
    .ms-n { font-size: 24px; }
}

/* MOBILE — ≤768px */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-copy {
        padding: 56px var(--pad) 28px;
    }
    .hero-form-col {
        padding: 0 var(--pad) 48px;
    }
    .hero-form-col > .form-card {
        max-width: 100%;
    }
    .hero-h1 { font-size: clamp(44px, 12vw, 72px); }
    .hero-mini-stats { flex-wrap: wrap; }
    .ms { min-width: calc(50% - 8px); }
    /* Reduce proof pill on small screens */
    .hero-proof { padding: 10px 12px; gap: 8px; }
}
