/*
  Bough marketing + legal site — shared stylesheet.
  Brand tokens are the founder-locked lab v9 palette (DESIGN.md §2) and the
  Fraunces + Karla type pairing (DESIGN.md §3). One light "paper" theme for
  everyone: paper is the single continuous page background, surface/surface-alt
  are reserved for real objects (pricing card, the ending field).
*/

/* ----------------------------------------------------------------- tokens */
:root {
  /* paper palette — lab v9 */
  --paper: #faf4e7;
  --surface: #fdf9ef;
  --surface-alt: #f2e8d3;
  --surface-deep: #e0d3b4;
  --ink: #433a2c;
  --ink-caption: #564b3a;
  --muted: #6a604f;        /* AA-safe on paper + surface */
  --sage: #7c8b6f;
  --sage-deep: #5d7253;
  --sage-press: #4c5e44;   /* AA-safe text link on paper */
  --amber: #c98a4b;
  --amber-press: #bd7f42;
  --cta-ink: #30271e;      /* AA-safe text on amber (white + ink both fail) */
  --terracotta: #b0563a;
  --gold: #b9924f;
  --honey: #ecdcb4;
  --line: #9a8a70;
  --hairline: rgba(125, 114, 96, 0.20);
  --hairline-soft: rgba(125, 114, 96, 0.13);
  --shadow-card: 0 3px 14px rgba(67, 58, 44, 0.08);
  --shadow-raised: 0 10px 30px rgba(67, 58, 44, 0.13);
  --shadow-amber: 0 8px 22px rgba(201, 138, 75, 0.28);

  --disc-rim: var(--surface);
  --on-accent: #fcf8ee;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --readw: 44rem;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  /* relationship-based vertical gaps (gap BEFORE a section); ~40% smaller on mobile */
  --gap-xs: clamp(1.5rem, 3.5vw, 2.5rem);    /* ~40px — within a movement */
  --gap-sm: clamp(1.75rem, 4vw, 3rem);       /* ~48px */
  --gap-md: clamp(2rem, 4.5vw, 3.5rem);      /* ~56px */
  --gap-lg: clamp(2.75rem, 5.5vw, 4.5rem);   /* ~72px */
  --gap-xl: clamp(3.5rem, 7vw, 6rem);        /* ~96px — a new topic */
  --gap-xxl: clamp(3.75rem, 7.5vw, 6.5rem);  /* ~104px — a new movement */

  color-scheme: only light;
}

/* --------------------------------------------------------------- base */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  /* paper, with a near-imperceptible fine grain baked faint into the tile */
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;      /* 17px — comfortable for a broad age range */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

a { color: var(--sage-press); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--terracotta); }

:focus-visible {
  outline: 2.5px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0;
  font-optical-sizing: auto;
}

p { margin: 0; }

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

/* neutralize the old uniform rhythm; each section sets its own gap-before */
.section { padding-block: 0; }

/* HERO eyebrow — the one pronounced small-caps label (DESIGN §3) */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}

/* quiet section label used everywhere after the hero */
.kicker {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8125rem;      /* ~13px */
  letter-spacing: 0.01em;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.lead {
  font-size: clamp(1.125rem, 2.4vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink-caption);
  max-width: 34rem;
}

.muted { color: var(--muted); }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--cta-ink);
  box-shadow: var(--shadow-amber);
}
.btn-primary:hover { background: var(--amber-press); color: var(--cta-ink); }

.btn-quiet {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--hairline);
}
.btn-quiet:hover { border-color: var(--sage-deep); color: var(--sage-deep); }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline-soft);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand svg { display: block; }
.brand .wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}
.nav-links a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* --------------------------------------------------------------- hero */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: 0; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.08;
  max-width: 16ch;
}
.hero .lead { margin-top: 1.5rem; }
.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.hero-note {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* hero — editorial: narrow copy column beside a wider living tree */
.hero-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero-inner { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); }
}

/* the hand-drawn family tree sits directly on the paper (no card) */
.tree-stage {
  margin-top: clamp(2rem, 5vw, 3rem);
  overflow: visible;
}
@media (min-width: 940px) {
  .hero-inner .tree-stage { margin-top: 0; }
}
.tree-stage svg { width: 100%; height: auto; display: block; }
.tree-caption {
  margin: 1.25rem auto 0;
  text-align: center;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* hero tree is static (the reveal tree is the single drawing moment) */
.branch {
  fill: none;
  stroke: var(--line);
  stroke-width: 2.4;
  stroke-linecap: round;
}
.person { transform-box: fill-box; transform-origin: center; }

/* --------------------------------------------------------------- statement */
.statement .big {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 24ch;
}
.statement .big em {
  font-style: italic;
  color: var(--terracotta);
}
.threads {
  margin-top: clamp(2rem, 4.5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
}
.thread .tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.55rem;
}
.thread h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}
.thread p { color: var(--ink-caption); font-size: 1rem; }
@media (max-width: 720px) {
  .threads { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* --------------------------------------------------------------- how it works */
.howto-inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 820px) {
  .howto-inner { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 1.5rem; }
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
}
.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
}
.step-n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--sage-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 1.4ch;
}
.step-item h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.step-item p { color: var(--ink-caption); font-size: 1rem; }

/* --------------------------------------------------------------- pricing */
.price-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}
.plan { display: flex; flex-direction: column; }
/* Free — an unfilled column on the ending field */
.plan .plan-name { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; margin-bottom: 0.25rem; }
.plan .plan-sub { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.4rem; }
.plan .price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 2.9rem);
  color: var(--ink);
  line-height: 1;
}
.plan .price span { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan .price-alt { color: var(--muted); font-size: 0.98rem; margin-top: 0.5rem; }
.plan ul {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-caption);
}
.plan li svg { flex: none; width: 22px; height: 22px; color: var(--sage-deep); margin-top: 1px; }
.plan .btn { margin-top: 1.8rem; align-self: flex-start; }
/* Family — the featured object: a surface card lifted off the ending field */
.plan.featured {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-card);
}
@media (max-width: 780px) {
  .price-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* --------------------------------------------------------------- the ending field */
.ending {
  background: var(--surface-alt);
  padding-top: var(--gap-xl);      /* For every age -> Pricing: a real pause into the tonal shift */
}

/* --------------------------------------------------------------- footer */
.site-footer {
  background: var(--surface-alt);
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
  padding-bottom: calc(clamp(2.5rem, 5vw, 3.5rem) + env(safe-area-inset-bottom, 0px));
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { max-width: 26rem; }
.footer-brand p { color: var(--muted); font-size: 0.98rem; margin-top: 0.9rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.9rem;
}
.footer-col a {
  display: block;
  color: var(--ink-caption);
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);   /* kept: it organizes the legal line */
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* --------------------------------------- life moments on the hero tree */
.life { transform-box: fill-box; transform-origin: center; }
.life-cap {
  font-family: var(--sans);
  font-size: 13px;
  fill: var(--muted);
}
.life-mark { font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.02em; fill: var(--sage-deep); }
/* the amber "added today" dot pulses gently; the mark stays visible at rest */
.pulse { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .pulse { animation: pulse 2.6s ease-in-out 1s infinite; }
  @keyframes pulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.7); }
  }
}

/* --------------------------------------- section headings */
.section-head { max-width: 46rem; }
.section-head h2 {           /* supporting role by default */
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  max-width: 20ch;
}
.section-head .lead { margin-top: 1.1rem; }
/* major role — the two headings that carry a movement */
.everyday .section-head h2,
.tree-feature .section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.14;
  max-width: 16ch;
}

/* --------------------------------------- 5.2 the everyday, together */
.everyday-grid {
  margin-top: clamp(2rem, 4.5vw, 3rem);
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 880px) {
  .everyday-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
}
.vignettes { display: flex; flex-direction: column; gap: 0; }
.vignette {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.4rem 0;
  border-top: 1px solid var(--hairline);   /* kept: organizes the vignette strip */
}
.vignette:last-child { border-bottom: 1px solid var(--hairline); }
.vignette .v-ico {
  width: 40px; height: 40px;
  color: var(--sage-deep);
  flex: none;
}
.vignette h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.vignette p { color: var(--ink-caption); font-size: 1rem; }
.vignette .v-who { color: var(--terracotta); font-style: italic; }

/* --------------------------------------- 5.3 made together (split) */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}
.split-visual { overflow: visible; }
.split-visual svg { width: 100%; height: auto; display: block; }
.split-copy h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  max-width: 16ch;
}
.split-copy p { color: var(--ink-caption); margin-top: 1.1rem; max-width: 40ch; }

/* --------------------------------------- 5.4 the tree centerpiece */
.tree-reveal {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  overflow: visible;
}
.tree-reveal svg { width: 100%; height: auto; display: block; }
.rbranch { fill: none; stroke: var(--line); stroke-width: 2.4; stroke-linecap: round; }
.rperson { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .tree-reveal.armed .rbranch { stroke-dasharray: var(--len, 300); stroke-dashoffset: var(--len, 300); }
  .tree-reveal.armed .rperson { opacity: 0; }
  .tree-reveal.armed.in-view .rbranch { animation: grow 1.1s ease forwards; animation-delay: var(--d, 0s); }
  .tree-reveal.armed.in-view .rperson { animation: settle 0.6s ease forwards; animation-delay: var(--pd, 0.6s); }
  @keyframes grow { to { stroke-dashoffset: 0; } }
  @keyframes settle {
    from { opacity: 0; transform: scale(0.82); }
    to { opacity: 1; transform: scale(1); }
  }
}
/* reduced motion / no-JS: branches and people are fully drawn at rest */
.rbranch { stroke-dashoffset: 0; }
.rperson { opacity: 1; }

/* --------------------------------------- 5.7 privacy + trust (on paper) */
.trust h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  max-width: 18ch;
}
.trust-grid {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem) clamp(1.75rem, 4vw, 2.75rem);
}
@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-line { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.trust-line svg { width: 22px; height: 22px; color: var(--sage-deep); flex: none; margin-top: 2px; }
.trust-line h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 0.2rem;
}
.trust-line p { color: var(--ink-caption); font-size: 0.98rem; }
.trust a.inline-link { color: var(--sage-press); font-weight: 600; }
.trust a.inline-link:hover { color: var(--terracotta); }

/* --------------------------------------- 5.8 for every age */
.anyone-inner {
  display: grid;
  gap: clamp(1.75rem, 5vw, 3rem);
  align-items: center;
}
@media (min-width: 820px) { .anyone-inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); } }
.anyone h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  max-width: 18ch;
}
.anyone p { color: var(--ink-caption); margin-top: 1.1rem; max-width: 42ch; }
.anyone-visual { display: grid; place-items: center; }
.anyone-visual svg { width: 100%; max-width: 220px; height: auto; }

/* --------------------------------------- 5.9 pricing heading */
.pricing h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  max-width: 18ch;
}
.pricing .lead { margin-top: 1.1rem; }

/* --------------------------------------- 5.10 closing */
.closing-inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 780px) {
  .closing-inner { grid-template-columns: minmax(0, 1fr) auto; }
}
.closing h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  max-width: 18ch;
}
.closing p { color: var(--ink-caption); margin-top: 0.9rem; }
.closing-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
@media (min-width: 780px) { .closing-cta { align-items: flex-end; text-align: right; } }

/* --------------------------------------- counsel-review block (legal docs) */
.counsel-note {
  margin-top: 3rem;
  background: var(--surface-alt);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--sage-deep);
  border-radius: var(--radius-sm);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.counsel-note h2 { border-top: none; padding-top: 0; margin-top: 0; font-size: 1.25rem; }
.counsel-note h3 { font-size: 1rem; margin-top: 1.25rem; }
.counsel-note p, .counsel-note li { font-size: 0.96rem; }

/* --------------------------------------------------------------- legal pages */
.doc-header {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}
.doc-header h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); }
.doc-meta { margin-top: 0.9rem; color: var(--muted); font-size: 0.98rem; }
.draft-banner {
  margin-top: 1.75rem;
  background: var(--surface-alt);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--ink-caption);
  font-size: 0.98rem;
}
.draft-banner strong { color: var(--terracotta); }

.doc {
  max-width: var(--readw);
  margin-inline: auto;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.doc h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 2.75rem 0 0.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-soft);
}
.doc h2:first-of-type { border-top: none; padding-top: 0; }
.doc h3 { font-size: 1.2rem; margin: 1.75rem 0 0.4rem; }
.doc p, .doc li { color: var(--ink-caption); line-height: 1.72; }
.doc p { margin: 0.85rem 0; }
.doc ul { margin: 0.85rem 0; padding-left: 1.25rem; }
.doc li { margin: 0.5rem 0; }
.doc strong { color: var(--ink); }

.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.96rem;
}
.doc-table-wrap { overflow-x: auto; }
.doc th, .doc td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
  color: var(--ink-caption);
}
.doc th { color: var(--ink); font-family: var(--sans); font-weight: 600; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--sage-deep);
}
.back-link:hover { color: var(--terracotta); }

/* support page */
.support-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.support-card svg { width: 40px; height: 40px; color: var(--sage-deep); margin-bottom: 1rem; }
.support-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.support-card p { color: var(--muted); font-size: 1rem; }
.support-card a { font-weight: 600; }
@media (max-width: 720px) {
  .support-grid { grid-template-columns: 1fr; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sage-deep);
  color: var(--on-accent);
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 50;
}
.skip-link:focus { left: 0; color: var(--on-accent); }

/* --------------------------------------- section gaps (relationship-based) */
.everyday { padding-top: var(--gap-lg); }       /* hero -> day to day */
#together  { padding-top: var(--gap-md); }        /* day to day -> together */
.tree-feature { padding-top: var(--gap-xxl); }    /* together -> the tree (new movement) */
.statement { padding-top: var(--gap-xs); }        /* the tree -> what it holds */
#how { padding-top: var(--gap-lg); }              /* what it holds -> how it works */
.trust { padding-top: var(--gap-xl); }            /* how it works -> privacy */
.anyone { padding-top: var(--gap-xs); }           /* privacy -> for every age */
.closing { padding-top: var(--gap-sm); }          /* pricing -> closing */
