/* ============================================================
   Symmetry Home Ventures — shared stylesheet
   ONE stylesheet, linked from index.html, privacy-policy.html,
   and terms-of-service.html. A brand change is ONE edit here,
   not three.

   Zero CSS asset references in this file: no linked images, no
   embedded fonts, no background art. System font stack only.
   This file lives in /assets/, so any relative asset path would
   resolve from the wrong base anyway — and none is needed.
   ============================================================ */

/* ---- BRAND TOKENS -----------------------------------------
   The single place a non-developer changes the brand.
   Edit a hex here and it updates every page. */
:root {
  --navy:        #1A2942;  /* primary dark — header, footer, trust bar */
  --navy-deep:   #0f1a2e;  /* footer, deepest band */
  --gold:        #C9A961;  /* every CTA background, accents */
  --gold-hover:  #b89747;  /* CTA background on hover — navy text stays 5.25:1 */
  --gold-text:   #856726;  /* gold used as TEXT on light bg — 5.3:1 on white,
                              4.7:1 on gold-tint (both pass 4.5:1). Use this,
                              not --gold, whenever gold is the text colour. */
  --bg:          #F7F6F3;  /* page background, off-white */
  --card:        #ffffff;  /* form + content cards */
  --ink:         #1A2942;  /* body text (navy, on off-white) */
  --ink-soft:    #4a5568;  /* muted body text */
  --ink-faint:   #6b7280;  /* disclaimers, fine print */
  --line:        #e3e0d8;  /* hairline borders on light bg */
  --navy-tint:   #f0f1f4;  /* §6 set-apart background (very light navy) */
  --gold-tint:   #f7f1e2;  /* §4 "part nobody tells you", §7 Symmetry col */
  --error:       #b3261e;  /* form error text — passes 4.5:1 on white */
  --success:     #1f7a4d;  /* inline success accent */

  /* System font stack — zero font requests, no FOUT. */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;
  /* Tabular figures for the math exhibits in §6 */
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas,
               "Liberation Mono", monospace;

  --maxw: 1120px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--gold-text); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
strong { font-weight: 700; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Visible focus states everywhere (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--navy);
  padding: 10px 16px; font-weight: 700; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============================================================
   BUTTONS / CTA
   Every CTA is gold with navy text — highest-contrast element.
   navy #1A2942 on gold #C9A961 = 6.6:1 (passes AA).
   ============================================================ */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 15px 26px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--gold-hover); border-color: var(--gold-hover); color: var(--navy); }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn-block { display: block; width: 100%; }

/* ============================================================
   HEADER — solid navy, 72px, logo left, gold phone button right
   The horizontal logo is WHITE-on-transparent: legible ONLY on
   this navy band. Never place it on the off-white body.
   ============================================================ */
.site-header {
  background: var(--navy);
  height: 72px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.site-header .logo { height: 44px; width: auto; }
.header-phone {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: .98rem;
}
.header-phone:hover { background: var(--gold-hover); color: var(--navy); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { padding: 64px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-text);
  margin: 0 0 12px;
}
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }

/* ============================================================
   §1 HERO — single column, centered, no photo
   ============================================================ */
.hero { background: var(--bg); padding-top: 56px; }
.hero-copy { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); font-weight: 800; }
.hero .subhead { font-size: 1.14rem; color: var(--ink-soft); max-width: 680px; margin: 0 auto; }

/* Form card — white, soft shadow, 2px gold top border, ~600px */
.form-card {
  background: var(--card);
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(26, 41, 66, 0.10);
  padding: 28px 26px 24px;
}
.form-card h2 { font-size: 1.5rem; text-align: left; margin-bottom: 4px; }
.form-sub { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }

/* Field layout */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 5px; }
.field .req { color: var(--gold-text); }
.field input,
.field select {
  width: 100%;
  font-family: var(--font);
  font-size: 16px; /* 16px prevents iOS zoom */
  padding: 11px 12px;
  border: 1px solid #c9cdd6;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
}
.field input:focus,
.field select:focus { border-color: var(--navy); }
.field.invalid input,
.field.invalid select { border-color: var(--error); }

.row { display: grid; gap: 12px; }
.row-3 { grid-template-columns: 1fr 1fr 1fr; }
.row-2 { grid-template-columns: 1fr 1fr; }

/* Honeypot — visually removed, off-screen, not tab-focusable */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Consent block */
.consent { margin-top: 8px; }
.disclosure {
  font-size: .8rem;
  color: var(--ink-faint);
  background: #faf9f6;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.45;
}
.checkbox input {
  margin-top: 3px;
  width: 18px; height: 18px;
  flex: 0 0 auto;
  accent-color: var(--navy);
}
.consent-links { font-size: .85rem; margin: 4px 0 16px; }

.field-error {
  color: var(--error);
  font-size: .82rem;
  font-weight: 600;
  margin-top: 4px;
}
.form-note { text-align: center; font-size: .9rem; color: var(--ink-soft); margin: 14px 0 0; }
.form-note strong { color: var(--navy); }

/* Under-button + below-card lines */
.under-btn { font-size: .9rem; color: var(--ink-soft); text-align: center; margin: 12px 0 0; }
.below-card { text-align: center; margin: 18px auto 0; font-size: 1rem; }
.below-card strong { color: var(--navy); }

/* Inline success / error states (JS toggles these) */
.form-msg { display: none; border-radius: 8px; padding: 18px; margin-top: 4px; }
.form-msg.show { display: block; }
.form-msg.success { background: #eaf5ee; border: 1px solid var(--success); color: #14532d; }
.form-msg.error { background: #fdecea; border: 1px solid var(--error); color: #7a1c16; }
.form-msg h3 { margin: 0 0 6px; }
.form-msg .fallback-phone { font-weight: 800; white-space: nowrap; }

/* ============================================================
   §2 TRUST BAR — navy band, white text, gold headings. 4 cols.
   Only dark band above the footer.
   ============================================================ */
.trust { background: var(--navy); color: #fff; }
.trust .section-head { color: #fff; max-width: 900px; }
.trust .section-head h2 { color: #fff; font-size: 1.4rem; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-tile h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 8px; }
.trust-tile p { color: #d7dce4; font-size: .95rem; margin: 0; }
.trust-tile .big { font-weight: 800; color: #fff; }
.trust-foot {
  text-align: center; max-width: 820px; margin: 34px auto 0;
  color: #c3cad6; font-size: .96rem;
}

/* ============================================================
   §3 SITUATION GRID — 6 cards, 3x2, equal height
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
}
.situation-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.situation-card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ============================================================
   §4 WEDGE — 5 cards, 3 top / 2 below, gold numbered badges
   ============================================================ */
.wedge-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
/* 3 across the top (span 2 each), 2 centered below (span 2, offset) */
.wedge-card { grid-column: span 2; position: relative; }
.wedge-card.row2 { grid-column: span 2; }
.wedge-card.row2:first-of-type { grid-column: 2 / span 2; }

.wedge-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
}
.badge {
  display: inline-block;
  font-weight: 800;
  color: var(--gold-text);
  font-size: .95rem;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.wedge-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.wedge-card .line { margin-bottom: 10px; font-size: .96rem; }
.wedge-card .line .lbl { font-weight: 700; color: var(--navy); }
.wedge-card p { color: var(--ink-soft); }
.nobody {
  background: var(--gold-tint);
  border: 1px solid #e7d8b3;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 12px;
  font-size: .93rem;
  color: var(--ink);
}
.nobody .lbl { font-weight: 700; }
.wedge-close {
  max-width: 760px; margin: 34px auto 0; text-align: center;
  font-size: 1.08rem; color: var(--ink);
}

/* ============================================================
   §5 HOW IT WORKS — 3 columns, big gold numerals
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step .num { font-size: 64px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
.steps-foot { max-width: 760px; margin: 30px auto 0; text-align: center; color: var(--ink-soft); }
.center-cta { text-align: center; margin-top: 28px; }

/* ============================================================
   §6 HONESTY — the centerpiece. Set-apart light-navy tint bg.
   Two math exhibits side by side (stacked on mobile).
   ============================================================ */
.honesty { background: var(--navy-tint); }
.honesty .lead { max-width: 720px; margin: 0 auto 8px; text-align: center; }
.exhibits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 20px auto 0;
  align-items: start;
}
.exhibit {
  background: var(--card);
  border: 1px solid #d7dae2;
  border-radius: 10px;
  padding: 22px 22px 20px;
}
.exhibit h3 {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-faint); margin-bottom: 14px;
}
/* label left, number right, tabular figures */
.exline {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.exline:last-of-type { border-bottom: 0; }
.exline .lbl { color: var(--ink-soft); font-size: .95rem; }
.exline .val {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.exline.emphasis .val { font-size: 1.15rem; color: var(--navy); }

/* Exhibit two's three outcome lines — the color IS the argument */
.outcome { margin-top: 8px; padding-top: 12px; border-top: 2px solid var(--line); }
.outcome .exline { display: block; border-bottom: 0; padding: 10px 0; }
.outcome .otag { font-weight: 800; font-size: .95rem; display: block; margin-bottom: 2px; }
.outcome .odesc { font-size: .92rem; display: block; }
.outcome .val { font-family: var(--font-mono); }
.outcome.cash    { color: var(--ink-faint); }   /* muted grey */
.outcome.listing { color: var(--ink-faint); }   /* muted grey */
.outcome.subto   .otag { color: var(--gold-text); }
.outcome.subto   { color: var(--ink); }
.outcome.subto   { background: var(--gold-tint); border-radius: 8px; padding: 12px 14px; border-top: 2px solid var(--gold); }

.exhibit-body { max-width: 1000px; margin: 22px auto 0; }
.exhibit-body .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.exhibit-body .pair > div { color: var(--ink-soft); font-size: .97rem; }
.exhibit-body .pair p:last-child { margin-bottom: 0; }
.exhibit-disclaimer {
  font-style: italic; font-size: 13px; color: var(--ink-faint);
  max-width: 1000px; margin: 16px auto 0; text-align: center;
}
.honesty-close { max-width: 720px; margin: 28px auto 0; text-align: center; }

/* Signed line — the only name on the page */
.signed {
  max-width: 820px; margin: 40px auto 0; text-align: center;
  padding: 8px 0;
}
.signed blockquote {
  margin: 0; padding: 0 24px;
  border-left: 4px solid var(--gold);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.4; font-weight: 500; color: var(--navy);
  text-align: left;
  max-width: 700px; margin: 0 auto;
}
.signed .attribution {
  display: block; margin-top: 16px; font-size: 1rem; font-weight: 700;
  color: var(--ink-soft); padding-left: 28px; max-width: 700px;
  margin-left: auto; margin-right: auto; text-align: left;
}
.signed-cta { text-align: center; margin-top: 24px; font-size: 1.1rem; font-weight: 700; }
.signed-cta a { color: var(--navy); }

/* ============================================================
   §7 COMPARISON TABLE — Symmetry column navy header + gold tint.
   No checkmarks / X marks. Mobile: stacked cards, Symmetry first.
   ============================================================ */
.compare-wrap { overflow-x: auto; max-width: 1000px; margin: 0 auto; }
table.compare { width: 100%; border-collapse: collapse; font-size: .93rem; }
table.compare th, table.compare td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.compare thead th { font-size: .9rem; }
table.compare thead th.col-shv { background: var(--navy); color: #fff; border-radius: 8px 8px 0 0; }
table.compare tbody td.col-shv { background: var(--gold-tint); }
table.compare th.rowlabel, table.compare td.rowlabel { color: var(--ink-soft); font-weight: 600; }
.compare-foot { max-width: 1000px; margin: 18px auto 0; text-align: center; color: var(--ink-soft); }
.compare-cards { display: none; } /* mobile only */

/* ============================================================
   §8 FAQ — 35/65 two-column, sticky heading, accordion
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 35fr 65fr; gap: 40px; align-items: start; }
.faq-head { position: sticky; top: 92px; }
details.faq {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 30px 14px 0;
  position: relative;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 12px;
  font-size: 1.4rem; color: var(--gold-text); font-weight: 700;
}
details.faq[open] summary::after { content: "\2212"; } /* minus */
details.faq .answer { padding: 0 0 16px; color: var(--ink-soft); }
details.faq .answer p:last-child { margin-bottom: 0; }

/* ============================================================
   §9 CLOSING + FOOTER
   ============================================================ */
.closing { background: var(--navy); color: #fff; }
.closing .section-head h2 { color: #fff; }
.closing .section-head p { color: #d7dce4; }
.closing .form-card { margin-top: 8px; }
.closing-call { text-align: center; color: #d7dce4; margin: 26px auto 0; }
.closing-call strong { color: #fff; }

.site-footer { background: var(--navy-deep); color: #c3cad6; padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 10px; }
.site-footer p, .site-footer address { font-style: normal; font-size: .93rem; line-height: 1.7; margin: 0 0 6px; }
.site-footer a { color: #e6d9b6; }
.site-footer a:hover { color: #ffffff; } /* white on navy-deep — gold-text would fail 4.5:1 here */
.footer-logo { height: 40px; width: 38px; margin-bottom: 14px; } /* EHO white, native 492x525 */
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 22px; }
.footer-legal p { font-size: 13px; color: #97a1b2; }
.footer-logo-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.copyright { font-size: 13px; color: #97a1b2; margin-top: 14px; }

/* ============================================================
   LEGAL PAGES (privacy-policy.html, terms-of-service.html)
   Same header + footer, readable prose column.
   ============================================================ */
.legal { background: var(--bg); padding: 56px 0 72px; }
.legal .doc { max-width: 800px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--line); border-radius: 12px; padding: 40px 44px; }
.legal h1 { font-size: 2rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2em; }
.legal h3 { font-size: 1.08rem; margin-top: 1.4em; }
.legal .meta { color: var(--ink-faint); font-size: .9rem; }
.legal ul { padding-left: 1.3em; }
.legal li { margin-bottom: .4em; color: var(--ink-soft); }
.legal p { color: var(--ink-soft); }
.legal a { color: var(--navy); }
.legal .disclaimer { border-top: 1px solid var(--line); margin-top: 2em; padding-top: 1.2em; font-size: .9rem; color: var(--ink-faint); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  section { padding: 48px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }        /* 2x2 */
  .grid-3 { grid-template-columns: 1fr; }
  .wedge-grid { grid-template-columns: 1fr; }
  .wedge-card, .wedge-card.row2, .wedge-card.row2:first-of-type { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .exhibits { grid-template-columns: 1fr; }              /* stacked */
  .exhibit-body .pair { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Comparison: hide table, show stacked cards (Symmetry first) */
  .compare-wrap { display: none; }
  .compare-cards { display: block; }
}

@media (max-width: 460px) {
  .row-3 { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .form-card { padding: 22px 18px; }
  .legal .doc { padding: 28px 20px; }
  .header-phone { padding: 8px 12px; font-size: .85rem; }
}

/* Comparison stacked cards (mobile) */
.ccard { background: var(--card); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 16px; overflow: hidden; }
.ccard h4 { margin: 0; padding: 12px 16px; font-size: 1.05rem; }
.ccard.shv h4 { background: var(--navy); color: #fff; }
.ccard.shv { border-color: var(--gold); }
.ccard .crow { display: flex; justify-content: space-between; gap: 14px; padding: 9px 16px; border-top: 1px solid var(--line); font-size: .9rem; }
.ccard .crow .k { color: var(--ink-soft); font-weight: 600; }
.ccard .crow .v { text-align: right; }
