/* Terri Abellera, site stylesheet
   Palette and type are locked in BRIEF.md. Change tokens there first. */

/* ---------- Fonts (self-hosted, subset, SIL OFL) ---------- */
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3.woff2") format("woff2");
  font-weight: 400 650;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  --ground: #FAF7F2;
  --ground-2: #F2EDE4;
  --ground-3: #E7E0D4;
  --ink: #14120F;
  --ink-soft: #55504A;
  --rule: #D8CFC1;
  /* Gold sampled from the Venture Elite Group coin (dominant tone), 2026-09-23.
     #F09F0F is only 2.03:1 on ivory, so it never carries text on a light ground:
     fills, hairlines and marks only. Darker same-hue steps carry gold type. */
  --gold: #F09F0F;                 /* logo gold: button fill (ink 8.6:1), hairlines, marks */
  --gold-deep: #B07712;            /* button hover fill (ink 4.9:1) */
  --gold-display: #B07712;         /* large gold type on light: "bank", quote marks (3.6:1) */
  --gold-label: #8B5E0E;           /* small gold caps on light (5.3:1 ground, 4.9:1 ground-2) */
  --gold-text: #8B5E0E;
  --gold-wash: rgba(240, 159, 15, 0.12);
  --hairline: rgba(240, 159, 15, 0.6);   /* accent only (never structural) */
  --line: rgba(20, 18, 15, 0.12);         /* structural lines: faint ink, NIV method */
  --line-strong: rgba(20, 18, 15, 0.22);
  --line-night: rgba(250, 247, 242, 0.14);
  --focus: #B07712;
  --on-gold: #14120F;
  --on-gold-hover: #14120F;

  /* Near-black surfaces: top banner, pull quote, footer */
  --night: #14120F;
  --night-ink: #FAF7F2;            /* 17.5:1 */
  --night-soft: #B8AFA2;           /* 8.6:1 */
  --night-gold: #F09F0F;           /* 8.6:1 on --night */

  --ph-1: #F1E7D6;                 /* portrait placeholder, warm */
  --ph-2: #E1D0B3;
  --plate: #14120F;
  --plate-edge: transparent;
  --plate-ink: #FAF7F2;
  --plate-gold: #F09F0F;
  --arch: 50% 50% 2px 2px / 40% 40% 2px 2px;

  /* Newsreader carries the peso sign; Georgia/Palatino are metric-close fallbacks
     and system serifs cover U+20B1 on macOS, iOS, Windows and Android. */
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Round 5 type scale: NIV discipline, matched optically (Newsreader x-height 0.512
     vs NIV's Cormorant 0.386). Body 17px for an older audience. */
  --text-body: 1.0625rem;          /* 17px (16.5px on phones) */
  --text-small: 0.9375rem;         /* 15px */
  --text-label: 0.6875rem;         /* 11px small caps, NIV 10-11px */
  --text-label-sm: 0.625rem;       /* 10px column heads */
  --track-label: 0.2em;
  /* Capped so line one ("Why not put your money", about 11em) fits beside the photo.
     The locked scale was clamp(3rem, 8vw, 7rem); see HANDOFF.md. */
  --text-h1: clamp(2.125rem, 4.6vw, 4.25rem);    /* desktop unchanged (66px @1440); phone 34px (-17%) */
  --text-q: clamp(1.375rem, 2.2vw, 1.9rem);       /* round 4: -25% */
  --text-q-lead: clamp(1.6rem, 2.8vw, 2.5rem);
  --text-h2: clamp(1.75rem, 3.4vw, 2.8125rem);    /* 45px desktop, 28px phone */
  --text-h3: clamp(1.25rem, 1.5vw, 1.3125rem);    /* 21px desktop, 20px phone */
  --text-pull: clamp(1.625rem, 2.6vw, 2rem);
  --text-figure: clamp(3rem, 6vw, 5rem);
  /* Display numerals sit between h2 and the hero headline at every width, never above it.
     Newsreader figures are cap height (0.725em), so font-size compares like for like. */
  --text-num-story: clamp(2.0625rem, 4.45vw, 4rem);   /* "$20": 64px desktop, 33px phone */
  --text-num-case: clamp(1.8125rem, 3.9vw, 3.5rem);   /* "$150,000": 56px desktop, 29px phone */

  --gutter: clamp(16px, 4vw, 56px);
  --col-gap: clamp(16px, 2.2vw, 32px);
  --max: 1320px;
  /* Two section paddings only (NIV): standard 124/136, hero 104/96; phone 64/72, 48/56 */
  --pad-top: clamp(4rem, 8.6vw, 7.75rem);
  --pad-bot: clamp(4.5rem, 9.45vw, 8.5rem);
  --pad-hero-top: clamp(3rem, 7.2vw, 6.5rem);
  --pad-hero-bot: clamp(3.5rem, 6.7vw, 6rem);
  --radius-btn: 2px;
  --radius-card: 3px;
  --measure: 62ch;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (max-width: 767px) {
  :root { --text-body: 1.03125rem; }  /* 16.5px */
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ground: #1A1714;
  --ground-2: #221E1A;
  --ground-3: #2E2924;
  --ink: #EFE8DC;
  --ink-soft: #B3AA9D;
  --rule: #3B352E;
  --gold: #F09F0F;
  --gold-deep: #F6B845;
  --gold-display: #F09F0F;
  --gold-text: #F09F0F;
  --gold-label: #F09F0F;
  --gold-wash: rgba(240, 159, 15, 0.14);
  --hairline: rgba(240, 159, 15, 0.45);
  --line: rgba(239, 232, 220, 0.12);
  --line-strong: rgba(239, 232, 220, 0.22);
  --line-night: rgba(239, 232, 220, 0.14);
  --focus: #F09F0F;
  --on-gold: #14120F;
  --on-gold-hover: #14120F;
  --night: #0F0D0B;
  --night-ink: #EFE8DC;
  --night-soft: #B3AA9D;
  --night-gold: #F09F0F;
  --ph-1: #3A3129;
  --ph-2: #28221D;
  --plate: #0F0D0B;
  --plate-edge: rgba(240, 159, 15, 0.45);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  hanging-punctuation: first allow-end last;
  /* In-page anchors land on the section's top edge. The banner and header are static
     (not sticky), so nothing overlaps the target; set this to the header height if the
     header is ever made sticky. */
  scroll-padding-top: var(--scroll-offset, 0px);
}
/* Smooth scroll only when the visitor hasn't asked for reduced motion; otherwise it jumps */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.65;
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
  font-variant-numeric: lining-nums;
}

p { margin: 0; text-wrap: pretty; }
p + p { margin-top: 1em; }

a { color: inherit; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { text-decoration-color: currentColor; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--gold); color: var(--on-gold); }

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

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0.75rem;
  z-index: 30;
  padding: 0.5rem 0.9rem;
  background: var(--ink);
  color: var(--ground);
  border-radius: var(--radius-btn);
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: none; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
}

/* Small caps label. Rationed: hero, fears, stories. */
.label {
  font-family: var(--sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--gold-text);
  font-variant-numeric: lining-nums;
}

.nw { white-space: nowrap; }

.label--rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--gold-label);
}
.label--rule::before {
  content: "";
  flex: none;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.label--center { justify-content: center; }

.rule-gold {
  display: block;
  width: 4.5rem;
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--gold);
}

/* ---------- Button (one intent, one label, site-wide) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  min-height: 40px;
  padding: 0 1.75rem;              /* NIV: 13.5px caps, 40px tall, 28px sides */
  background: var(--gold);
  color: var(--on-gold);
  font-family: var(--sans);
  font-size: 0.84375rem;           /* 13.5px */
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  border-radius: var(--radius-btn);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.2s var(--ease);
}
.btn::after {
  content: "\2192";
  font-family: var(--sans);
  transition: transform 0.35s var(--ease);
}
.btn:hover { background: var(--gold-deep); color: var(--on-gold-hover); }
.btn:hover::after { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.link-more {
  display: inline-flex;
  gap: 0.5em;
  font-weight: 600;
  font-size: var(--text-small);
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
}
.link-more::after { content: "\2192"; color: var(--gold-display); }
.link-more:hover { text-decoration-color: currentColor; }
/* In-page link: no "go elsewhere" arrow */
.link-more--here::after { content: none; }

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 20;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.5rem;
}

/* Brand lockup: Venture Elite Group coin mark + her name.
   The coin's metallic finish is confined to the mark (approved 2026-09-23); the page stays flat. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  line-height: 1;
}
.brand { gap: 1rem; }
.brand-mark { width: 72px; height: 72px; flex: none; }
.brand-text { display: inline-flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.95rem;
  letter-spacing: -0.005em;
}
.brand-firm {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-label);
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.nav-list {
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-list a {
  font-size: 0.875rem;               /* 14px caps */
  font-weight: 500;
  letter-spacing: 0.11em;            /* NIV nav tracking */
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 0.4rem;
  background: linear-gradient(var(--gold), var(--gold)) no-repeat left bottom / 0 1px;
  transition: background-size 0.35s var(--ease);
}
.nav-list a:hover { background-size: 100% 1px; }
.nav-list a[aria-current="page"] { background-size: 100% 1px; }

.header-tools { display: flex; align-items: center; gap: 1.25rem; }
/* Header CTA: gold outline, same size system as every button */
.site-header .btn {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.site-header .btn::after { color: var(--gold-display); }
.site-header .btn:hover { background: var(--gold); color: var(--on-gold); }
.site-header .btn:hover::after { color: var(--on-gold); }

.theme-toggle,
.menu-toggle {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.4rem 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
}
.theme-toggle:hover,
.menu-toggle:hover { color: var(--ink); }
.menu-toggle { display: none; }

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.theme-toggle:hover { color: var(--gold-label); background: var(--gold-wash); }
.theme-toggle svg { display: block; }
.icon-sun { display: none !important; }
:root[data-theme="dark"] .icon-sun { display: block !important; }
:root[data-theme="dark"] .icon-moon { display: none !important; }

/* The header CTA needs room beside the 72px mark; below 1280 the hero CTA carries it */
@media (max-width: 1279px) {
  .site-nav .btn { display: none; }
}

@media (max-width: 899px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 2rem;
    background: var(--ground);
    border-bottom: 1px solid var(--line);
  }
  .site-nav[hidden] { display: none; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li { border-top: 1px solid var(--line); }
  .nav-list a {
    display: block;
    padding-block: 1rem;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    background: none;
  }
  .site-nav .btn { display: inline-flex; align-self: flex-start; margin-top: 1.25rem; }
}
@media (min-width: 900px) {
  .site-nav[hidden] { display: flex; }
}

/* ---------- Hero (rebuilt 2026-09-23, round 2) ---------- */
.hero { background: var(--ground-2); padding-block: var(--pad-hero-top) var(--pad-hero-bot); }
.hero-grid { align-items: center; }

.hero-copy {
  grid-column: 1 / span 8;
  grid-row: 1;
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.05rem 0.5rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--gold-label);
  font-variant-numeric: lining-nums;
}

.hero h1 {
  margin-top: 1.75rem;
  font-size: var(--text-h1);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
/* The three approved lines, held on tablet and up */
@media (min-width: 768px) {
  .hero h1 .l { display: block; white-space: nowrap; }
}
/* Large display text: gold passes the 3:1 large-text threshold in both themes */
.hero h1 em { font-style: italic; letter-spacing: -0.01em; color: var(--gold-display); }

.hero-sub {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: 1.3;
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem 1rem;
  margin-top: 2.25rem;
}
.hero-trust {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.btn-outline::after { content: none; }
.btn-outline:hover { background: var(--gold-wash); color: var(--ink); }

.hero-media {
  grid-column: 9 / -1;
  grid-row: 1;
  margin: 0;
  padding-top: 1rem;
}

/* ---------- Portrait: arch mask, offset gold outline, name plate ---------- */
.portrait { position: relative; }
.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(14px, -14px);
  border: 1px solid var(--gold);
  border-radius: var(--arch);
  pointer-events: none;
}
.frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--arch);
  background: var(--ph-2);
  overflow: hidden;
}
.frame picture { position: absolute; inset: 0; }
.frame img,
.frame > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Warm tinted hold until the photo lands. Tonal, not a gold gradient. */
.frame-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(170deg, var(--ph-1) 0%, var(--ph-2) 100%);
}
.frame-placeholder span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold);
  opacity: 0.32;
  transform: translateY(-6%);
}

.nameplate {
  position: absolute;
  z-index: 2;
  left: -1.75rem;
  bottom: 2.25rem;
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem 1.35rem 1.05rem;
  background: var(--plate);
  box-shadow: inset 0 0 0 1px var(--plate-edge);
  border-radius: var(--radius-card);
}
.np-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--plate-ink);
}
.np-role {
  font-size: var(--text-label-sm);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--plate-gold);
}

.play {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem 0.7rem 0.8rem;
  background: var(--ground);
  color: var(--ink);
  border: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  cursor: pointer;
  border-radius: var(--radius-btn);
  transition: background-color 0.3s var(--ease);
}
.play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.6rem solid var(--gold);
  border-top: 0.38rem solid transparent;
  border-bottom: 0.38rem solid transparent;
}
.play:hover { background: var(--ground-2); }

@media (max-width: 767px) {
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { display: contents; }
  .hero-copy > * { align-self: flex-start; }
  .hero .pill { order: 1; }
  .hero h1 { order: 2; margin-top: 1.25rem; }
  .hero-media { order: 3; margin: 2.25rem 10px 0 0; padding-top: 0; }
  .hero-sub { order: 4; margin-top: 2rem; }
  .hero-cta { order: 5; margin-top: 1.5rem; }
  .hero-trust { order: 6; }

  .portrait::before { transform: translate(10px, -10px); }
  .nameplate { left: 0.75rem; bottom: 1rem; }
}

/* ---------- The questions: one passage, read in sequence ---------- */
.questions { background: var(--ground); padding-block: var(--pad-top) var(--pad-bot); }
.questions .label { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }

.q { padding-block: clamp(0.9rem, 2vw, 1.6rem); }
.q p {
  font-family: var(--serif);
  font-size: var(--text-q);
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.q-1 p { grid-column: 1 / span 8; }
.q-2 p { grid-column: 4 / span 8; }
.q-3 .rule-gold { grid-column: 2 / span 2; margin: 0.5rem 0 1.5rem; }
.q-3 p { grid-column: 2 / span 9; grid-row: 2; font-size: var(--text-q-lead); line-height: 1.08; }
.q-4 > div { grid-column: 6 / -1; }
.q-4 .btn { margin-top: 1.75rem; }

@media (max-width: 767px) {
  .q-1 p, .q-2 p, .q-3 p, .q-4 > div, .q-3 .rule-gold { grid-column: 1 / -1; }
  .q-2 p, .q-4 > div { padding-left: 10%; }
}

/* ---------- Her story, short ---------- */
.story {
  background: var(--ground-2);
  padding-block: var(--pad-top) var(--pad-bot);
}
.story-figure {
  grid-column: 1 / span 4;
  align-self: start;
}
.story-figure .num {
  display: block;
  font-family: var(--serif);
  font-size: var(--text-num-story);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
}
.story-figure figcaption {
  margin-top: 1.25rem;
  max-width: 17em;
  font-size: var(--text-small);
  line-height: 1.5;
  color: var(--ink-soft);
}
.story-body {
  grid-column: 6 / span 6;
}
.story-body h2 { font-size: var(--text-h2); line-height: 1.08; margin-bottom: 1.75rem; }
.story-body .voice {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1.45vw, 1.25rem);
  line-height: 1.55;
  max-width: 34em;
}
.story-body .turn {
  margin-top: 1.75rem;
  max-width: var(--measure);
}
.story-body .link-more { margin-top: 2.25rem; }

@media (max-width: 899px) {
  .story-figure, .story-body { grid-column: 1 / -1; }
  .story-body { margin-top: 3rem; }
}

/* ---------- Pull quote (breaks the column, full width) ---------- */
.pull {
  background: var(--night);
  color: var(--night-ink);
  padding-block: var(--pad-top) var(--pad-bot);
}
.pull figure { margin: 0; grid-column: 2 / span 10; position: relative; }
.pull blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
/* Curly marks around the quote itself (same treatment as fears and the testimonial);
   on the black band they take the bright night gold (8.6:1). */
.pull .qm { color: var(--night-gold); }
.pull figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--night-gold);
}
.pull figcaption::before { content: ""; width: 2rem; height: 1px; background: var(--night-gold); }
.pull ::selection { background: var(--night-gold); color: var(--night); }
.pull :focus-visible { outline-color: var(--night-gold); }
@media (max-width: 767px) {
  .pull figure { grid-column: 1 / -1; }
}

/* ---------- Fears, as transcribed ---------- */
.fears { background: var(--ground); padding-block: var(--pad-top) var(--pad-bot); }
.fears-head { grid-column: 1 / span 6; margin-bottom: clamp(3rem, 6vw, 5rem); }
.fears-head h2 { font-size: var(--text-h2); line-height: 1.1; margin-top: 1rem; }

.fear {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}
.fear:last-child { border-bottom: 1px solid var(--line); }
.fear blockquote {
  grid-column: 1 / span 7;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--text-pull);
  line-height: 1.3;
  text-wrap: balance;
}
.fear p {
  grid-column: 9 / span 4;
  padding-top: 0.35rem;
  color: var(--ink-soft);
}
@media (max-width: 899px) {
  .fears-head { grid-column: 1 / -1; }
  .fear blockquote, .fear p { grid-column: 1 / -1; }
  .fear p { margin-top: 1.25rem; padding-left: 1.25rem; border-left: 1px solid var(--line); }
}

/* ---------- How I help (index) ---------- */
.help { background: var(--ground-2); padding-block: var(--pad-top) var(--pad-bot); }
.help-intro { grid-column: 1 / span 7; }
.help-intro h2 { font-size: var(--text-h2); line-height: 1.1; margin-top: 1rem; }
.help-intro p { margin-top: 1.5rem; max-width: var(--measure); }
.help-intro .bank {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold);
}

.help-index {
  grid-column: 1 / -1;
  margin: clamp(3.5rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}
.help-list { list-style: none; margin: 0; padding: 0; }
.help-cols,
.help-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
}
.help-cols {
  padding-bottom: 1rem;
  font-size: var(--text-label-sm);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-label);
}
.help-cols span:nth-child(1) { grid-column: 1 / span 5; }
.help-cols span:nth-child(2) { grid-column: 6 / span 4; }
.help-cols span:nth-child(3) { grid-column: 10 / span 3; }

.help-row { padding-block: 2rem; border-top: 1px solid var(--line); }
.help-row:last-child { border-bottom: 1px solid var(--line); }
.help-row h3 {
  position: relative;
  grid-column: 1 / span 5;
  font-size: var(--text-h3);
  line-height: 1.25;
  padding-right: 1rem;
}
.help-row .what { grid-column: 6 / span 4; }
.help-row .means {
  grid-column: 10 / span 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
}
.help-more { grid-column: 1 / -1; margin-top: 2.5rem; }

@media (max-width: 899px) {
  .help-intro { grid-column: 1 / -1; }
  .help-cols { display: none; }
  .help-row h3, .help-row .what, .help-row .means { grid-column: 1 / -1; }
  .help-row .what { margin-top: 1rem; }
  .help-row .means { margin-top: 1rem; }
  .help-row .what::before,
  .help-row .means::before {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--sans);
    font-style: normal;
    font-size: var(--text-label-sm);
    font-weight: 600;
    letter-spacing: var(--track-label);
    text-transform: uppercase;
    color: var(--gold-label);
  }
  .help-row .what::before { content: "What I do"; }
  .help-row .means::before { content: "For your family"; }
}

/* ---------- Client stories (sidebar) ---------- */
.stories { background: var(--ground-2); padding-block: var(--pad-top) var(--pad-bot); }
.stories-head { grid-column: 1 / span 5; }
.stories-head h2 { font-size: var(--text-h2); line-height: 1.1; margin-top: 1rem; }
.qm { color: var(--gold-display); }

.story-lead {
  grid-column: 1 / span 6;
  grid-row: 2;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.story-side {
  grid-column: 8 / -1;
  grid-row: 2 / span 2;
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  gap: 3rem;
  align-content: start;
}
.case .fig {
  display: block;
  font-family: var(--serif);
  font-size: var(--text-figure);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
}
.story-lead .fig { font-size: var(--text-num-case); white-space: nowrap; }
.case .fig-sub {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: 1.25;
}
.case p { margin-top: 1.25rem; max-width: 34em; }
.story-side .case { padding-top: 2.25rem; border-top: 1px solid var(--line); }
.story-side .case:first-child { padding-top: 0; border-top: 0; }
.story-side .fig { font-size: clamp(1.875rem, 2.6vw, 2.25rem); }   /* 36px: stays under the 45px h2 */

.dagger { font-family: var(--serif); color: var(--gold-text); text-decoration: none; margin-left: 0.1em; }
a.dagger { display: inline-block; min-width: 24px; min-height: 24px; text-align: center; line-height: 24px; margin-left: 0; }

.stories-voice {
  grid-column: 1 / span 6;
  grid-row: 3;
  align-self: start;
  margin: clamp(3.5rem, 6vw, 5rem) 0 0;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}
.stories-voice blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--text-pull);
  line-height: 1.3;
}
.stories-voice figcaption { margin-top: 1rem; font-size: var(--text-small); color: var(--ink-soft); }

.stories-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: clamp(3.5rem, 6vw, 5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.footnote {
  max-width: 60ch;
  font-size: var(--text-small);
  line-height: 1.55;
  color: var(--ink-soft);
}
.footnote .dagger { margin: 0 0.35em 0 0; }

@media (max-width: 899px) {
  .stories-head, .story-lead, .story-side, .stories-voice { grid-column: 1 / -1; grid-row: auto; }
  .story-side { margin-top: 3.5rem; }
  .story-side .case:first-child { padding-top: 2.25rem; border-top: 1px solid var(--line); }
}

/* ---------- Close (centered, on purpose) ---------- */
.close {
  background: var(--ground);
  padding-block: var(--pad-top) var(--pad-bot);
  text-align: center;
}
.close .wrap { max-width: 52rem; }
.close .label { margin-bottom: 1.25rem; }
.close h2 { font-size: var(--text-h2); line-height: 1.08; letter-spacing: -0.01em; }
.close .lede { margin: 1.75rem auto 0; max-width: 40ch; }
.close .rule-gold { margin: 2.5rem auto 0; }
.close blockquote {
  margin: 2.25rem auto 0;
  max-width: 28em;
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--text-pull);
  line-height: 1.3;
  text-wrap: balance;
}
.close .btn { margin-top: 3rem; }
.close .fine { margin-top: 1.25rem; font-size: var(--text-small); color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem;
  font-size: var(--text-small);
  line-height: 1.6;
}
.footer-brand { grid-column: 1 / span 4; }
.footer-mark { display: block; width: 72px; height: 72px; margin-bottom: 1rem; }
.footer-brand .brand-name { font-size: 1.75rem; }
.footer-brand p { margin-top: 1rem; color: var(--ink-soft); }
.footer-contact { grid-column: 6 / span 3; }
.footer-nav { grid-column: 10 / span 3; }
.site-footer h2 {
  font-family: var(--sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 0.1rem; }
.site-footer li a { display: inline-block; padding-block: 0.3rem; }
.site-footer a { text-decoration-color: var(--rule); }
.site-footer a:hover { text-decoration-color: var(--gold); }

.footer-legal {
  grid-column: 1 / -1;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-night);
  color: var(--ink-soft);
  display: grid;
  gap: 1rem;
}
.footer-legal details summary {
  cursor: pointer;
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.25em;
}
.footer-legal details p { margin-top: 0.75rem; max-width: 70ch; letter-spacing: 0.04em; }

@media (max-width: 899px) {
  .footer-brand, .footer-contact, .footer-nav { grid-column: 1 / -1; }
  .footer-contact, .footer-nav { margin-top: 2.5rem; }
}

/* ---------- Reveal (fade-and-rise, once) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal-on .reveal.is-in { opacity: 1; transform: none; }
}

/* Quote marks on --ground-2: --gold-display is 3.3:1 there, passes as large text */

@media (max-width: 767px) {
  .site-header { padding-block: 1rem; }
  .brand { gap: 0.7rem; }
  .brand-mark { width: 52px; height: 52px; }
  .brand-name { font-size: 1.45rem; }
  .brand-firm { font-size: 0.7rem; }
}

/* ---------- Round 4: list markers ---------- */
.help-row h3::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
@media (max-width: 1439px) {
  .help-row h3 { padding-left: 1.25rem; }
  .help-row h3::before { left: 0; }
}

/* ---------- Round 4: top banner (static, not sticky) ---------- */
.topbar {
  background: var(--night);
  color: var(--night-ink);
}
.topbar p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem 1.1rem;
  min-height: 44px;
  margin: 0;
  padding: 0.55rem var(--gutter);
  font-size: 0.8125rem;              /* 13px */
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
  font-variant-numeric: lining-nums;
}
.topbar .dot { color: var(--night-gold); }
.tb-break { display: none; }
/* Phones: two clean lines, no dangling divider.
   "Licensed in 27 states · Frisco, Texas" / "Free one-hour discovery call" (visual order only) */
@media (max-width: 767px) {
  .topbar p { font-size: 0.7rem; letter-spacing: 0.12em; gap: 0.15rem 0.7rem; }
  .topbar .dot-1 { display: none; }
  .topbar .tb-1 { order: 1; }
  .topbar .dot-2 { order: 2; }
  .topbar .tb-3 { order: 3; }
  .topbar .tb-break { display: block; order: 4; flex-basis: 100%; height: 0; }
  .topbar .tb-2 { order: 5; }
}

/* ---------- Round 4: footer on near-black ---------- */
.site-footer {
  background: var(--night);
  color: var(--night-ink);
}
.site-footer ::selection { background: var(--night-gold); color: var(--night); }
.site-footer :focus-visible { outline-color: var(--night-gold); }
.site-footer h2 { color: var(--night-gold); }
.footer-brand p { color: var(--night-soft); }
.site-footer a { text-decoration-color: var(--night-gold); }
.site-footer a:hover { text-decoration-color: currentColor; }
.footer-nav li a::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 1px;
  margin-right: 0.6rem;
  vertical-align: middle;
  background: var(--night-gold);
}
.footer-legal { color: var(--night-soft); border-top-color: var(--line-night); }
.footer-legal details summary { text-decoration-color: var(--night-gold); }
.footer-legal details summary::marker { color: var(--night-gold); }

/* ---------- Round 4: gold quote marks inside her verbatim story and the fears ---------- */
/* Story quote marks sit in 22px text (normal size, needs 4.5:1): label gold.
   Fears quote marks are 32px (large, needs 3:1): display gold. */
.story .qm { color: var(--gold-label); }
.fear .qm { color: var(--gold-display); }

/* ---------- Who I work with (round 9) ---------- */
.who { background: var(--ground); padding-block: var(--pad-top) var(--pad-bot); }
.who-head { grid-column: 1 / span 5; }
.who-head h2 { font-size: var(--text-h2); line-height: 1.08; margin-top: 1rem; }
.who-list { grid-column: 7 / -1; margin: 0; padding: 0; list-style: none; }
.who-list li { padding-block: 1.5rem; border-top: 1px solid var(--line); }
.who-list li:last-child { border-bottom: 1px solid var(--line); }
.who-list h3 { font-size: var(--text-h3); line-height: 1.25; }
.who-list p { margin-top: 0.5rem; max-width: var(--measure); color: var(--ink-soft); }
/* MOCHA initials: small gold accent inside body text (label gold passes 5.3:1) */
.mocha .ini { color: var(--gold-label); font-weight: 600; }
@media (max-width: 899px) {
  .who-head, .who-list { grid-column: 1 / -1; }
  .who-list { margin-top: 2rem; }
}
