/* ============ DESIGN SYSTEM - TEMPLATE B ============ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --ink: #1b2735;
      --ink-deep: #131e2b;
      --navy: #22364b;
      --navy-soft: #33506e;
      --slate: #51606f;
      --slate-muted: #7b8794;
      --paper: #faf9f5;
      --paper-warm: #f4f1e9;
      --card: #fffefb;
      --amber: #d99a2b;
      --amber-deep: #b97e1e;
      --amber-bright: #ecc064;
      --brass: #9a7b33;
      --line: #e5e1d6;
      --line-on-dark: rgba(250, 249, 245, 0.16);
      --ok: #3e7d5a;
      --ok-bright: #8fd0ab;

      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body: 'Inter', system-ui, sans-serif;

      --text-hero: clamp(2.4rem, 5.2vw, 3.9rem);
      --text-h2: clamp(1.8rem, 3.4vw, 2.5rem);
      --text-h3: 1.3rem;
      --text-lg: 1.125rem;
      --text-base: 1rem;
      --text-sm: 0.9rem;
      --text-xs: 0.8rem;

      --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
      --space-4: 1rem; --space-6: 1.5rem; --space-8: 2rem;
      --space-10: 2.5rem; --space-12: 3rem; --space-16: 4rem; --space-20: 5rem;

      --section-gap: clamp(4rem, 9vh, 6.5rem);
      --container: 1140px;
      --narrow: 760px;

      --shadow-card: 0 1px 2px rgba(19, 30, 43, 0.05), 0 10px 28px rgba(19, 30, 43, 0.09);
      --shadow-lift: 0 2px 5px rgba(19, 30, 43, 0.08), 0 22px 48px rgba(19, 30, 43, 0.16);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: var(--text-base);
      line-height: 1.65;
      color: var(--ink);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
    }
    img, svg { max-width: 100%; display: block; }
    a { color: inherit; }

    .container { max-width: var(--container); margin-inline: auto; padding-inline: var(--space-6); }

    h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--ink-deep); line-height: 1.14; letter-spacing: 0.002em; }
    h2 { font-size: var(--text-h2); }
    h3 { font-size: var(--text-h3); }

    .eyebrow {
      display: inline-flex; align-items: center; gap: var(--space-3);
      font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--brass); margin-bottom: var(--space-4);
    }
    .eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--amber); }

    /* ============ REVEAL ============ */
    [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
    [data-reveal].is-visible { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      [data-reveal] { opacity: 1; transform: none; transition: none; }
    }

    /* ============ BUTTONS ============ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
      font-family: var(--font-body); font-weight: 700; font-size: var(--text-base);
      padding: 0.9rem 1.7rem; border-radius: 8px; border: none; cursor: pointer;
      text-decoration: none; white-space: nowrap;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, background 0.2s ease;
    }
    .btn-primary { background: var(--amber); color: var(--ink-deep); box-shadow: 0 4px 14px rgba(217, 154, 43, 0.35); }
    .btn-primary:hover { background: var(--amber-deep); color: var(--paper); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(185, 126, 30, 0.4); }
    .btn-primary:active { transform: translateY(0); }
    .btn-ink { background: var(--navy); color: var(--paper); }
    .btn-ink:hover { background: var(--ink-deep); transform: translateY(-2px); }

    /* ============ TOP BAR (standard header, all templates) ============ */
    .topbar { background: var(--ink-deep); color: var(--paper); font-size: var(--text-sm); }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; padding-block: 0.5rem; gap: var(--space-4); }
    .topbar a { color: var(--paper); text-decoration: none; font-weight: 600; }
    .topbar a:hover { text-decoration: underline; }

    /* ============ NAV ============ */
    .nav-wrap { position: sticky; top: 0; z-index: 50; background: rgba(250, 249, 245, 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
    .nav-wrap.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 14px rgba(19, 30, 43, 0.06); }
    nav.main { display: flex; align-items: center; justify-content: space-between; padding-block: var(--space-4); gap: var(--space-6); }
    .wordmark { text-decoration: none; line-height: 1.15; display: flex; align-items: baseline; gap: 0.55rem; }
    .wordmark .name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink-deep); }
    .wordmark .sub { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); font-weight: 700; }
    .nav-links { display: flex; gap: var(--space-8); list-style: none; }
    .nav-links a { text-decoration: none; font-weight: 600; font-size: var(--text-sm); color: var(--slate); transition: color 0.2s ease; }
    .nav-links a:hover { color: var(--navy); }
    .nav-cta { flex-shrink: 0; padding: 0.65rem 1.3rem; font-size: var(--text-sm); }

    /* ============ HERO (standard: photo bg + address quick-submit) ============ */
    .hero {
      position: relative; overflow: hidden; color: var(--paper);
      background:
        radial-gradient(circle at 82% 18%, rgba(217, 154, 43, 0.16), transparent 25%),
        linear-gradient(168deg, var(--ink-deep) 0%, var(--navy) 58%, var(--ink-deep) 100%),
        var(--ink-deep);
    }
    .hero-inner { position: relative; z-index: 1; text-align: center; padding-block: var(--space-16) var(--space-12); max-width: 780px; margin-inline: auto; }
    .hero .eyebrow { color: var(--amber-bright); justify-content: center; }
    .hero .eyebrow::before { background: var(--amber-bright); }
    .hero h1 { color: var(--card); font-size: var(--text-hero); margin-bottom: var(--space-4); }
    .hero h1 em { font-style: italic; color: var(--amber-bright); }
    .hero .lede { font-size: clamp(1.05rem, 2vw, 1.2rem); color: rgba(250, 249, 245, 0.85); max-width: 620px; margin: 0 auto var(--space-8); }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
    .hero-form { display: flex; gap: var(--space-2); max-width: 600px; margin: 0 auto var(--space-3); background: var(--card); padding: 6px; border-radius: 11px; box-shadow: 0 14px 34px rgba(10, 17, 26, 0.38); }
    .hero-form input { flex: 1; min-width: 0; border: none; background: transparent; padding: 0.7rem 0.9rem; font-family: var(--font-body); font-size: var(--text-base); color: var(--ink); }
    .hero-form input:focus { outline: none; }
    .hero-form .btn { flex-shrink: 0; }
    .hero-call { color: rgba(250, 249, 245, 0.9); font-size: var(--text-sm); margin-bottom: var(--space-8); }
    .hero-call a { color: var(--card); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(250, 249, 245, 0.4); }
    .hero-chips { display: flex; justify-content: center; gap: var(--space-6); flex-wrap: wrap; }
    .hero-chips span { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: 600; color: rgba(250, 249, 245, 0.92); }
    .hero-chips svg { width: 17px; height: 17px; color: var(--ok-bright); flex-shrink: 0; }

    /* ============ TIMELINE (how it works) ============ */
    .how { padding-block: var(--section-gap); }
    .how-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
    .how-intro { position: sticky; top: 96px; }
    .how-intro p { color: var(--slate); margin-top: var(--space-4); font-size: var(--text-lg); }
    .how-intro .btn { margin-top: var(--space-8); }
    .timeline { list-style: none; position: relative; padding-left: 3.4rem; display: grid; gap: var(--space-10); }
    .timeline::before { content: ''; position: absolute; left: 1.15rem; top: 0.6rem; bottom: 0.6rem; width: 1.5px; background: var(--line); }
    .timeline li { position: relative; }
    .timeline .dot {
      position: absolute; left: -3.4rem; top: 0;
      width: 2.35rem; height: 2.35rem; border-radius: 50%;
      background: var(--card); border: 1.5px solid var(--line);
      display: grid; place-items: center;
      font-family: var(--font-display); font-size: 1.05rem; color: var(--brass);
      box-shadow: var(--shadow-card);
    }
    .timeline h3 { margin-bottom: var(--space-2); }
    .timeline p { color: var(--slate); font-size: 0.96rem; max-width: 30rem; }

    /* ============ BENTO (why us) ============ */
    .bento { background: var(--paper-warm); border-block: 1px solid var(--line); padding-block: var(--section-gap); }
    .bento .section-head { max-width: 620px; margin-bottom: var(--space-12); }
    .bento .section-head p { color: var(--slate); margin-top: var(--space-3); font-size: var(--text-lg); }
    .bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--space-4); }
    .bento-cell { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: var(--space-6); }
    .cell-photo { grid-column: span 5; grid-row: span 2; padding: 0; overflow: hidden; position: relative; min-height: 380px; }
    .cell-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .cell-photo figcaption {
      position: absolute; left: var(--space-4); right: var(--space-4); bottom: var(--space-4);
      background: rgba(19, 30, 43, 0.85); color: var(--paper); border-radius: 10px;
      padding: var(--space-3) var(--space-4); font-size: var(--text-sm); line-height: 1.5;
    }
    .cell-benefit { grid-column: span 7; display: flex; gap: var(--space-4); align-items: flex-start; }
    .bento-pair { grid-column: span 7; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
    .cell-benefit svg, .bento-pair svg { width: 24px; height: 24px; color: var(--amber-deep); flex-shrink: 0; margin-top: 2px; }
    .bento-cell h3 { font-size: 1.12rem; margin-bottom: var(--space-1); }
    .bento-cell p { font-size: var(--text-sm); color: var(--slate); }
    .cell-compare { grid-column: span 12; display: grid; grid-template-columns: auto 1fr 1fr; gap: var(--space-6); align-items: start; background: var(--navy); border: none; color: var(--paper); }
    .cell-compare h3 { color: var(--paper); font-size: 1.3rem; max-width: 11rem; }
    .cell-compare ul { list-style: none; display: grid; gap: var(--space-2); }
    .cell-compare li { display: flex; gap: var(--space-2); align-items: flex-start; font-size: var(--text-sm); color: rgba(250, 249, 245, 0.9); }
    .cell-compare .col-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--space-3); display: block; }
    .cell-compare .us .col-label { color: var(--amber-bright); }
    .cell-compare .them .col-label { color: var(--slate-muted); }
    .cell-compare .us svg { width: 16px; height: 16px; color: var(--amber-bright); flex-shrink: 0; margin-top: 4px; }
    .cell-compare .them li { color: rgba(250, 249, 245, 0.55); }
    .cell-compare .them svg { width: 16px; height: 16px; color: var(--slate-muted); flex-shrink: 0; margin-top: 4px; }

    /* ============ SITUATIONS + PULL QUOTE ============ */
    .situations { padding-block: var(--section-gap); }
    .sit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
    .sit-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-6); margin-top: var(--space-8); }
    .sit-list li { display: flex; gap: var(--space-3); align-items: center; font-size: 0.95rem; color: var(--ink); }
    .sit-list svg { width: 17px; height: 17px; color: var(--ok); flex-shrink: 0; }
    .pull-quote { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: var(--space-10); box-shadow: var(--shadow-card); position: relative; }
    .pull-quote::before { content: '\201C'; font-family: var(--font-display); font-size: 4.6rem; color: var(--amber); line-height: 1; display: block; margin-bottom: var(--space-2); }
    .pull-quote blockquote { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.4; color: var(--ink-deep); }
    .pull-quote .attribution { margin-top: var(--space-6); font-size: var(--text-sm); color: var(--slate-muted); }

    /* ============ ABOUT (photo right) ============ */
    .about { background: var(--paper-warm); border-block: 1px solid var(--line); padding-block: var(--section-gap); }
    .about-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
    .about-photo { max-width: 430px; justify-self: center; position: relative; }
    .about-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-lift); }
    .about-copy p { color: var(--slate); margin-top: var(--space-4); }
    .about-copy .signature { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--navy); margin-top: var(--space-6); }

    /* ============ FAQ (two-column) ============ */
    .faq { padding-block: var(--section-gap); }
    .faq .section-head { text-align: center; max-width: 620px; margin: 0 auto var(--space-12); }
    .faq-cols { columns: 2; column-gap: var(--space-4); max-width: 1000px; margin-inline: auto; }
    .faq-item { break-inside: avoid; margin-bottom: var(--space-4); background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
    .faq-item summary { cursor: pointer; list-style: none; padding: var(--space-4) var(--space-6); font-weight: 600; font-size: var(--text-base); display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); color: var(--ink-deep); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary svg { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
    .faq-item[open] summary svg { transform: rotate(45deg); }
    .faq-item .answer { padding: 0 var(--space-6) var(--space-5); color: var(--slate); font-size: 0.95rem; }

    /* ============ OFFER FORM SECTION ============ */
    .offer { background: linear-gradient(170deg, var(--navy), var(--ink-deep)); color: var(--paper); padding-block: var(--section-gap); position: relative; overflow: hidden; }
    .offer::before { content: ''; position: absolute; top: -140px; right: -120px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(217, 154, 43, 0.13), transparent 70%); pointer-events: none; }
    .offer-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 4rem); align-items: start; position: relative; z-index: 1; }
    .offer-copy h2 { color: var(--card); }
    .offer-copy .eyebrow { color: var(--amber-bright); }
    .offer-copy .eyebrow::before { background: var(--amber-bright); }
    .offer-copy p { color: rgba(250, 249, 245, 0.85); margin-top: var(--space-4); }
    .offer-copy .call-line { margin-top: var(--space-6); font-size: var(--text-lg); }
    .offer-copy .call-line a { color: var(--card); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(250, 249, 245, 0.4); }
    .offer-points { list-style: none; margin-top: var(--space-8); display: grid; gap: var(--space-3); }
    .offer-points li { display: flex; gap: var(--space-3); align-items: flex-start; color: rgba(250, 249, 245, 0.92); font-size: 0.95rem; }
    .offer-points svg { width: 18px; height: 18px; color: var(--ok-bright); flex-shrink: 0; margin-top: 3px; }

    /* ============ FORM CARD ============ */
    .form-card { background: var(--card); color: var(--ink); border: 1px solid var(--line); border-radius: 14px; padding: var(--space-8); box-shadow: var(--shadow-lift); }
    .form-card h3 { font-size: 1.45rem; margin-bottom: var(--space-1); }
    .form-card .form-sub { font-size: var(--text-sm); color: var(--slate-muted); margin-bottom: var(--space-6); }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
    .field { margin-bottom: var(--space-4); }
    .field label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-1); color: var(--ink); }
    .field label .opt { font-weight: 400; color: var(--slate-muted); }
    .field input[type="text"], .field input[type="tel"], .field input[type="email"] {
      width: 100%; padding: 0.8rem 1rem; font-size: var(--text-base); font-family: var(--font-body);
      border: 1.5px solid var(--line); border-radius: 8px; background: var(--paper); color: var(--ink);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .field input:focus { outline: none; border-color: var(--navy-soft); background: var(--card); box-shadow: 0 0 0 3px rgba(51, 80, 110, 0.13); }

    .consent-box { border: 1.5px solid var(--line); border-radius: 10px; padding: var(--space-4); margin-block: var(--space-4); background: var(--paper); }
    .consent-check { display: flex; gap: var(--space-3); align-items: flex-start; cursor: pointer; }
    .consent-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; cursor: pointer; }
    .consent-check .consent-label { font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
    .consent-fine { font-size: 0.78rem; color: var(--slate-muted); line-height: 1.55; margin-top: var(--space-3); }
    .consent-fine a { color: var(--navy); font-weight: 600; }
    .optional-note { font-size: 0.78rem; color: var(--slate-muted); margin-top: var(--space-2); }

    .form-card .btn { width: 100%; padding-block: 1rem; font-size: 1.05rem; }
    .form-trust { display: grid; gap: var(--space-2); margin-top: var(--space-5); }
    .form-trust span { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); color: var(--slate-muted); }
    .form-trust svg { width: 15px; height: 15px; color: var(--brass); flex-shrink: 0; }

    .form-success { display: none; text-align: center; padding: var(--space-12) var(--space-4); }
    .form-success svg { width: 52px; height: 52px; color: var(--ok); margin: 0 auto var(--space-4); }
    .form-success h3 { margin-bottom: var(--space-2); }
    .form-success p { color: var(--slate); font-size: var(--text-sm); }
    .form-card.is-done form { display: none; }
    .form-card.is-done .form-success { display: block; }

    /* Honeypot: hidden from humans, present for bots */
    .hp-field { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

    /* ============ FOOTER ============ */
    footer { background: var(--ink-deep); color: rgba(250, 249, 245, 0.78); padding-block: var(--space-16) var(--space-6); font-size: var(--text-sm); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--space-12); padding-bottom: var(--space-12); border-bottom: 1px solid var(--line-on-dark); }
    .footer-brand .name { font-family: var(--font-display); font-size: 1.25rem; color: var(--paper); display: block; }
    .footer-brand .sub { font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber-bright); font-weight: 700; }
    .footer-brand p { margin-top: var(--space-4); max-width: 300px; }
    footer h4 { color: var(--paper); font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--space-4); letter-spacing: 0.04em; }
    footer ul { list-style: none; display: grid; gap: var(--space-2); }
    footer a { color: rgba(250, 249, 245, 0.78); text-decoration: none; }
    footer a:hover { color: var(--paper); text-decoration: underline; }
    .footer-contact li { display: flex; gap: var(--space-2); align-items: flex-start; }
    .footer-contact svg { width: 16px; height: 16px; color: var(--amber-bright); flex-shrink: 0; margin-top: 3px; }
    .footer-legal { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); padding-top: var(--space-6); flex-wrap: wrap; }
    .footer-legal .links { display: flex; gap: var(--space-6); }
    .footer-note { font-size: var(--text-xs); color: rgba(250, 249, 245, 0.5); margin-top: var(--space-4); }

    /* ============ MOBILE ============ */
    @media (max-width: 960px) {
      .nav-links { display: none; }
      .how-grid, .sit-grid, .about-grid, .offer-grid { grid-template-columns: 1fr; }
      .how-intro { position: static; }
      .cell-photo { grid-column: span 12; min-height: 300px; }
      .cell-benefit, .bento-pair { grid-column: span 12; }
      .cell-compare { grid-template-columns: 1fr; gap: var(--space-4); }
      .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
      .faq-cols { columns: 1; }
      .about-photo { order: -1; }
    }
    @media (max-width: 640px) {
      :root { --section-gap: 3.25rem; }
      .topbar .container { justify-content: center; }
      .topbar .area { display: none; }
      .hero-inner { padding-block: var(--space-12) var(--space-10); }
      .hero-form { flex-direction: column; gap: var(--space-2); padding: var(--space-2); }
      .hero-form input { padding: 0.8rem 0.9rem; }
      .hero-form .btn, .hero-form input { width: 100%; }
      .field-row { grid-template-columns: 1fr; gap: 0; }
      .bento-pair { grid-template-columns: 1fr; }
      .sit-list { grid-template-columns: 1fr; }
      .form-card { padding: var(--space-6); }
      .pull-quote { padding: var(--space-6); }
    }
