    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold: #B8922A;
      --gold-light: #D4A843;
      --charcoal: #1A1A1A;
      --white: #FFFFFF;
      --cream: #FAF8F4;
      --cream2: #F2EDE4;
      --mid: #5A5248;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Montserrat', system-ui, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--white); color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

    @keyframes gridPan { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }
    @keyframes pulse { 0%, 100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.025); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

    /* ── HERO ── */
    .hero {
      min-height: 100svh;
      background: var(--charcoal);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 4rem 1.5rem 5rem; position: relative; overflow: hidden;
    }
    .hero__grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(212,168,67,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(212,168,67,0.07) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridPan 30s linear infinite;
      pointer-events: none;
    }
    .hero__glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero__inner { position: relative; z-index: 2; max-width: 960px; animation: fadeUp 0.5s ease-out both; }
    .hero__pill {
      display: inline-block; border: 1px solid rgba(212,168,67,0.6); color: var(--gold);
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
      padding: 0.45rem 1.4rem; margin-bottom: 2.2rem;
    }
    .hero__h1 { font-family: var(--serif); font-weight: 300; line-height: 1.1; color: #F5F0E8; margin-bottom: 0.6rem; }
    .h1-big { display: block; font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.05; font-weight: 700; color: #F5F0E8; text-transform: uppercase; letter-spacing: 0.04em; }
    .h1-sub { display: block; font-size: clamp(1.8rem, 4.2vw, 3rem); font-weight: 700; color: rgba(245,240,232,0.9); margin-top: 1.2rem; line-height: 1.4; }
    .h1-sub em { font-style: italic; color: var(--gold-light); }
    .hero__tagline {
      font-family: var(--serif); font-size: clamp(1.05rem, 2.2vw, 1.5rem);
      font-weight: 300; font-style: italic; color: rgba(245,240,232,0.65);
      margin: 0 auto 1.5rem; max-width: 600px; line-height: 1.55;
    }
    .hero__body {
      font-size: clamp(0.82rem, 1.4vw, 0.95rem); color: rgba(245,240,232,0.5);
      max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.85;
    }
    .hero__body p { margin: 0 0 0.75rem; }
    .hero__body p:last-child { margin-bottom: 0; }

    /* ── OPT-IN FORM ── */
    .hero__form { width: 100%; max-width: 480px; margin: 0 auto; }
    .hero__form-row { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
    .hero__form input[type="text"],
    .hero__form input[type="email"] {
      width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(212,168,67,0.4);
      color: #F5F0E8; font-family: var(--sans); font-size: 0.85rem;
      padding: 0.9rem 1.2rem; outline: none; transition: border-color 0.2s;
      -webkit-appearance: none; border-radius: 0;
    }
    .hero__form input::placeholder { color: rgba(245,240,232,0.35); }
    .hero__form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
    .hero__form-btn {
      width: 100%; background: #8B1A1A; color: var(--white);
      font-family: var(--sans); font-size: 0.8rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase; border: none; cursor: pointer;
      padding: 1.2rem 2rem; transition: background 0.2s, transform 0.15s;
      animation: pulse 2.8s ease-in-out infinite;
      -webkit-appearance: none; border-radius: 0;
    }
    .hero__form-btn:hover { background: #a82020; transform: translateY(-2px); animation: none; }
    .hero__form-btn:active { transform: scale(0.97); }
    .hero__form-btn:disabled { opacity: 0.65; cursor: not-allowed; animation: none; }
    .hero__form-privacy { font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.25); margin-top: 0.7rem; }
    .hero__note { margin-top: 1rem; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.3); }

    /* ── SHARED ── */
    .section-eyebrow { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
    .gold-line { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 2rem; }
    .gold-line.left { margin: 0 0 2rem; }

    /* ── PROBLEM ── */
    .problem { background: var(--cream); padding: 5rem 1.5rem; text-align: center; }
    .problem__inner { max-width: 720px; margin: 0 auto; }
    .problem__h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.2; color: var(--charcoal); margin-bottom: 1.5rem; }
    .problem__h2 em { font-style: italic; color: var(--gold); }
    .problem__body { font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 300; line-height: 1.85; color: var(--mid); }

    /* ── OPPORTUNITY ── */
    .opp { background: var(--white); padding: 5rem 1.5rem; text-align: center; }
    .opp__inner { max-width: 900px; margin: 0 auto; }
    .opp__h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; line-height: 1.2; color: var(--charcoal); margin-bottom: 3rem; }
    .opp__h2 em { font-style: italic; color: var(--gold); }
    .opp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
    .opp__card { background: var(--cream); border: 1px solid rgba(184,146,42,0.15); padding: 2rem 1.5rem; text-align: left; }
    .opp__icon { font-size: 1.8rem; margin-bottom: 1rem; }
    .opp__card-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; }
    .opp__card-body { font-size: 0.8rem; color: var(--mid); line-height: 1.7; }
    .opp__stat { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300; font-style: italic; color: var(--mid); max-width: 600px; margin: 0 auto; line-height: 1.8; }
    .opp__stat strong { color: var(--charcoal); font-style: normal; font-weight: 600; }

    /* ── STORY ── */
    .story { background: var(--cream2); padding: 5rem 1.5rem; }
    .story__inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
    .story__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border: 1px solid rgba(184,146,42,0.2); }
    .story__quote { font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 1.5; margin-bottom: 1.5rem; border-left: 3px solid var(--gold); padding-left: 1.2rem; }
    .story__body { font-size: 0.88rem; color: var(--mid); line-height: 1.85; margin-bottom: 1rem; }
    .story__sig { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--gold); margin-top: 1.5rem; }

    /* ── WHO ── */
    .who { background: var(--white); padding: 5rem 1.5rem; text-align: center; }
    .who__inner { max-width: 720px; margin: 0 auto; }
    .who__h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; line-height: 1.2; color: var(--charcoal); margin-bottom: 1rem; }
    .who__h2 em { font-style: italic; color: var(--gold); }
    .who__sub { font-size: 0.88rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.7; }
    .who__list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; text-align: left; max-width: 560px; margin: 0 auto; }
    .who__list li { font-size: 0.85rem; color: var(--mid); padding-left: 1.6rem; position: relative; line-height: 1.6; }
    .who__list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; top: 0.1rem; }

    /* ── MID CTA ── */
    .mid-cta { background: var(--cream); padding: 5rem 1.5rem; text-align: center; }
    .mid-cta__h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.2; }
    .mid-cta__h2 em { font-style: italic; color: var(--gold); }
    .mid-cta__sub { font-size: 0.88rem; color: var(--mid); max-width: 520px; margin: 0 auto 0.75rem; line-height: 1.7; }
    .mid-cta__note { margin-top: 1rem; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); }

    /* ── PROOF ── */
    .proof { background: var(--charcoal); padding: 5rem 1.5rem; text-align: center; }
    .proof__inner { max-width: 820px; margin: 0 auto; }
    .proof__h2 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; color: #F5F0E8; margin-bottom: 3rem; line-height: 1.2; }
    .proof__h2 em { font-style: italic; color: var(--gold-light); }
    .proof__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
    .proof__stat-card { border: 1px solid rgba(212,168,67,0.25); padding: 2rem 1rem; }
    .proof__stat-num { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 0.5rem; }
    .proof__stat-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.4); }
    .proof__stat-sub { font-size: 0.65rem; color: rgba(245,240,232,0.35); margin-top: 0.3rem; font-style: italic; }

    /* ── FINAL CTA ── */
    .fcta { background: var(--charcoal); padding: 6rem 1.5rem; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(212,168,67,0.15); }
    .fcta__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,168,67,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212,168,67,0.05) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
    .fcta__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
    .fcta__h2 { font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 300; color: #F5F0E8; margin-bottom: 1rem; line-height: 1.1; }
    .fcta__h2 em { display: block; font-style: italic; color: var(--gold-light); }
    .fcta__sub { font-size: 0.88rem; color: rgba(245,240,232,0.45); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
    .fcta__note { margin-top: 1rem; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.25); }

    /* ── BUTTONS ── */
    .btn-red {
      display: inline-block; background: #8B1A1A; color: var(--white);
      font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
      padding: 1.2rem 3.5rem; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      animation: pulse 2.8s ease-in-out infinite;
    }
    .btn-red:hover { background: #a82020; transform: translateY(-2px); animation: none; }
    .btn-red:active { transform: scale(0.97); }

    /* ── FOOTER ── */
    .footer { background: #111; padding: 1.5rem; text-align: center; }
    .footer__text { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .opp__grid { grid-template-columns: 1fr; }
      .proof__stats { grid-template-columns: repeat(2, 1fr); }
      .story__inner { grid-template-columns: 1fr; }
      .story__img { max-width: 220px; margin: 0 auto; aspect-ratio: 1/1; }
    }
    @media (max-width: 480px) {
      .proof__stats { grid-template-columns: 1fr; }
    }
