/* =============================================================
   FiveStar Connectors — Editorial Broadsheet System
   "Financial Times Weekend × Mayfair advisory office"
   ============================================================= */

:root {
  /* Brand palette — preserved from brief */
  --green:        #0F4C3A;
  --green-deep:   #0A3328;
  --green-tint:   #E8EFE9;
  --gold:         #C9A24A;            /* slightly more dignified */
  --gold-bright:  #E0C27A;
  --gold-pale:    #F5EBD3;
  --paper:        #F5F0E4;            /* warmer cream — has tooth */
  --paper-deep:   #ECE4D2;
  --paper-darker: #E2D9C2;
  --ink:          #14140F;            /* near-black with warmth */
  --ink-soft:     #3A3A33;
  --ink-quiet:    #6E6B5F;
  --ink-faint:    #A09980;
  --rule:         #C9C0AB;            /* warm hairline */
  --rule-soft:    #DCD4BF;
  --error:        #B85C2E;
  --white:        #FFFCF6;            /* not pure white anywhere */

  /* Typography */
  --display: "Fraunces", "Times New Roman", serif;
  --italic:  "Instrument Serif", "Times New Roman", serif;
  --body:    "Geist", "Söhne", "Helvetica Neue", system-ui, sans-serif;
  --mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --container:        1240px;
  --container-narrow: 880px;
  --container-prose:  680px;

  /* Motion — editorial pace, never bouncy */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    180ms var(--ease-soft);
  --t-base:    320ms var(--ease-soft);
  --t-slow:    640ms var(--ease-out);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-feature-settings: "ss01", "ss02", "kern";
  /* Clears the 84px sticky nav with a cushion so anchor scrolls land cleanly. */
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern", "ss02", "cv11";
  font-variant-numeric: lining-nums;
  position: relative;
  overflow-x: hidden;
}

/* Paper grain overlay — applied site-wide */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.85;
}

img { max-width: 100%; display: block; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--green-deep); }

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

/* =============================================================
   Typography
   ============================================================= */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
h2 {
  font-size: clamp(2rem, 3.4vw + 0.6rem, 3.2rem);
  font-variation-settings: "opsz" 96, "SOFT" 50;
  letter-spacing: -0.028em;
  line-height: 1.04;
}
h3 {
  font-size: clamp(1.3rem, 1.4vw + 0.7rem, 1.7rem);
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.018em;
}
h4 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
em, .italic { font-family: var(--italic); font-style: italic; font-weight: 400; }

/* Display accent — italic in Instrument Serif */
.accent {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -0.01em;
  font-feature-settings: "salt", "kern";
}

.lead {
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.22rem);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.55;
  font-weight: 400;
}

/* Eyebrow — editorial small caps mono */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  /* Section/masthead labels in dark green — primary structural accent. */
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow--quiet { color: var(--ink-faint); }
.eyebrow--gold { color: var(--gold); }

/* Marginalia */
.marginalia {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
}

/* Numerals */
.tabular { font-variant-numeric: tabular-nums; }

/* =============================================================
   Layout primitives
   ============================================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: var(--container-narrow); }
.container.prose  { max-width: var(--container-prose); }

@media (max-width: 640px) {
  .container { padding: 0 22px; }
}

.section {
  padding: clamp(36px, 4.5vw, 64px) 0;
  position: relative;
}
/* Hero-to-first-section transition rhythm — when a .section
   immediately follows a .hero (For Providers + Privacy + Disclosures
   + Methodology), tighten the section's top padding so the composite
   "hero padding-bottom + section padding-top" gap doesn't dominate
   the page. Other .section instances (lower-page content sections)
   keep the standard padding above. */
.hero + .section {
  padding-top: clamp(20px, 3vw, 32px);
}
/* Same rhythm rule for Home's mission-quote which immediately
   follows the home hero. */
.hero + .mission-quote {
  padding-top: clamp(20px, 3vw, 32px);
}

/* Gold hairline as a structural divider */
.rule-gold {
  height: 1px;
  background: var(--gold);
  margin: 0;
  border: none;
  transform-origin: left center;
}
.rule-soft {
  height: 1px;
  background: var(--rule);
  border: none;
  margin: 0;
}

.section--paper      { background: var(--paper); }
.section--paper-deep { background: var(--paper-deep); }
.section--ink {
  background: var(--ink);
  color: var(--white);
}
.section--ink h2,
.section--ink h3,
.section--ink p { color: var(--white); }
.section--ink .lead { color: rgba(255, 252, 246, 0.78); }
.section--ink .eyebrow { color: var(--gold-bright); }
.section--ink .eyebrow::before { background: var(--gold-bright); }

/* =============================================================
   Top nav — editorial masthead
   ============================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Fully opaque — body text must never show through while scrolling. */
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  /* Subtle layering shadow so the nav reads as intentional, not floating. */
  box-shadow: 0 1px 0 rgba(20, 20, 15, 0.04), 0 8px 24px -22px rgba(20, 20, 15, 0.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: var(--body);
  font-size: 0.86rem;
  letter-spacing: 0.005em;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right var(--t-base);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { right: 0; }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after { right: 0; }

.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 9px 11px;
  cursor: pointer;
  color: var(--ink);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.nav__toggle:hover { border-color: var(--ink); }
.nav__toggle svg { display: block; }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 60;
  padding: 96px 32px 48px;
  display: none;
  flex-direction: column;
  gap: 22px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.mobile-menu a {
  font-family: var(--display);
  font-variation-settings: "opsz" 96;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.mobile-menu .btn { align-self: flex-start; margin-top: 16px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 540px) {
  .nav__inner { height: 72px; padding: 0 22px; }
  .nav__logo img { height: 34px; }
  .hero__masthead {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 32px;
  }
  .hero__masthead-rule { display: none; }
  .hero__trust-line {
    margin-top: 24px;
    padding-top: 16px;
    font-size: 0.82rem;
  }
}

/* =============================================================
   Buttons — refined, no rounded corners, no flash
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 14px 26px;
  border-radius: 0;        /* sharp — editorial */
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast);
}
.btn::after {
  /* subtle gold underline that grows in on hover */
  content: "";
  position: absolute;
  left: 18px; right: 100%;
  bottom: 9px;
  height: 1px;
  background: currentColor;
  opacity: 0.0;
  transition: right var(--t-base), opacity var(--t-base);
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--paper);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 252, 246, 0.45);
}
.btn--ghost-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--text {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  padding: 14px 4px;
  position: relative;
}
.btn--text::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 24px;
  bottom: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--t-base);
}
.btn--text:hover::before { transform: scaleX(0.6); }
.btn--small { padding: 10px 18px; font-size: 0.82rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =============================================================
   Hero — editorial cinemascope
   ============================================================= */

.hero {
  /* Tightened from clamp(40px, 6vw, 72px) / clamp(28px, 4vw, 48px) so
     the top meta strip on Home, For Providers, and the four form
     pages (via .ct-hero / .pi-hero / .form-page alignment) all sit at
     the same nav-relative distance. */
  padding: clamp(24px, 3.5vw, 40px) 0 clamp(20px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}

/* Masthead hero — for the home page "Provider-Vetted. Peer-Proven. Results-Focused." treatment */
.hero--masthead .hero__inner { max-width: 1240px; }
/* meta-strip-to-h1 margin intentionally inherits the unified shared
   .hero__masthead { margin-bottom: clamp(24px, 3.5vw, 44px); } rule
   so Home matches the rest of the site. The previous Home-only
   clamp(40px, 5vw, 72px) override has been removed. */
.masthead-headline {
  /* Size / spacing / font-family controlled by .site-hero__title.
     This class now contributes nothing visual on its own; it is
     kept on the Home <h1> only as a hook for the per-line accent
     children (.masthead-headline__line, .masthead-headline__period,
     .masthead-headline__line.is-mid italic green) below. */
}
.masthead-headline__line {
  display: block;
  position: relative;
}
.masthead-headline__line + .masthead-headline__line { margin-top: 0.04em; }
.masthead-headline__period {
  color: var(--gold);
  display: inline-block;
  margin-left: -0.04em;
  margin-right: 0.02em;
  font-size: 1.04em;
  line-height: 0.85;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  /* subtle bloom — feels like ink saturating paper */
  filter: drop-shadow(0 0 0.012em rgba(201, 162, 74, 0.35));
}
.masthead-headline__line.is-mid {
  font-family: var(--italic);
  font-style: italic;
  letter-spacing: -0.03em;
  font-weight: 400;
  /* Peer-Proven in dark green — middle line carries the trust accent. */
  color: var(--green);
}
.hero__trust-line {
  font-family: var(--body);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-quiet);
  max-width: 56ch;
  /* Trust note: green left rule, tighter spacing from the hero CTAs. */
  margin: 24px 0 0;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--green);
  letter-spacing: 0.005em;
}
.hero__trust-line strong {
  color: var(--green);
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-size: 0.95rem;
}
.hero__masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  /* Tightened from clamp(48px, 6vw, 88px) so the gap between the
     meta strip and the hero heading is consistent across pages and
     no longer feels like an oversized break. */
  margin-bottom: clamp(24px, 3.5vw, 44px);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  /* Hero masthead labels in dark green — matches the .eyebrow structural accent. */
  color: var(--green);
}
.hero__masthead-rule {
  flex: 1;
  margin: 0 24px;
  height: 1px;
  /* Decorative connecting rule between the edition label and the
     five-star asterism — gold matches the "small decorative accent" tier. */
  background: var(--gold);
  opacity: 0.55;
  position: relative;
  top: -3px;
}
.hero__masthead-date {
  color: var(--gold);
  letter-spacing: 0.16em;
}
.hero__masthead-edition {
  color: var(--green);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1120px;
}
.hero h1 {
  /* Size / max-width / margin are now controlled by .site-hero__title
     applied to every hero h1. This rule keeps only the page-load
     reveal animation that was always intended for hero h1s. */
  opacity: 0;
  animation: rise-in 900ms var(--ease-out) 80ms forwards;
}
/* ================================================================
   .site-hero shared hero-block component
   ================================================================
   Single source of truth for hero title + lead size, spacing, and
   max-width across every page (Home, For Providers, Get Matched,
   Share Experience, Contact, Partner Inquiry, Privacy, Disclosures,
   Methodology). Every page's hero h1 carries .site-hero__title and
   every page's hero first-lead paragraph carries .site-hero__lead.
   Per-page classes (.masthead-headline, .gm-form-headline, etc.)
   retain only color / italic / accent concerns — they no longer
   control size or spacing. */
.site-hero__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw + 0.6rem, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 0 22px;
  display: block;
  text-wrap: balance;
}
.site-hero__lead {
  font-family: var(--body);
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.22rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 20px;
  font-weight: 400;
}
.hero h1 .accent { display: inline-block; }
.hero .lead {
  /* Size / max-width / margin are now controlled by .site-hero__lead.
     This rule keeps only the page-load reveal animation. */
  opacity: 0;
  animation: rise-in 900ms var(--ease-out) 280ms forwards;
}
.hero__ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: rise-in 900ms var(--ease-out) 460ms forwards;
}
.hero__rule {
  /* Unified hero block accent — width + margin-top now match the
     GM/SE .form-page__intro::after gold accent (64px wide, 18px gap
     above) so pages with the rule (Home, FP, Privacy, Disclosures,
     Methodology) visually align with GM/SE/Contact/PI. The previous
     full-width gold rule + clamp(36, 4vw, 56) margin made those
     pages feel structurally different from the rest of the site. */
  margin: 18px 0 0;
  width: 64px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 1100ms var(--ease-out) 700ms forwards;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes draw-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Decorative corner ornaments */
.hero__corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.hero__corner--tr { top: 24px; right: 32px; }

/* =============================================================
   Section intros
   ============================================================= */

.section__intro {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section__intro h2 { margin-bottom: 22px; }
.section__intro .lead { margin-bottom: 0; }

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(28px, 3.5vw, 48px);
  gap: 32px;
  flex-wrap: wrap;
}
.section__head-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

/* =============================================================
   Steps (numbered editorial cards — "A Clearer Path")
   ============================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  /* Green hairline — anchors the three process cards as a single trust block. */
  border-top: 1px solid var(--green);
}
.step-card {
  padding: 40px 36px 40px 36px;
  border-right: 1px solid var(--rule);
  position: relative;
}
/* First/last cards sit flush with the grid edge; inner padding stays symmetric.
   All three cards share the same top padding so the No. 01/02/03 labels are
   baseline-aligned across the row. */
.step-card:first-child { padding-left: 0; }
.step-card:last-child {
  padding-right: 0;
  border-right: none;
}
.step-card__num {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.step-card__num::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.step-card h3 {
  font-size: clamp(1.4rem, 0.4vw + 1.2rem, 1.65rem);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  letter-spacing: -0.018em;
}
.step-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
  max-width: 36ch;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .step-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 36px 0;
  }
  .step-card:last-child { border-bottom: none; }
}

/* =============================================================
   Values grid (Why FiveStar)
   ============================================================= */

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.value-cell {
  padding: 44px 40px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.value-cell__roman {
  font-family: var(--italic);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 18px;
  display: block;
}
.value-cell h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
  letter-spacing: -0.02em;
}
.value-cell p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; max-width: 40ch; }

@media (max-width: 720px) {
  .values { grid-template-columns: 1fr; }
}

/* =============================================================
   Claims list — "Sales claims providers distrust" editorial block
   ============================================================= */

.claims-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.claim {
  padding: 28px 36px 28px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.claim:nth-child(2n) {
  padding: 28px 0 28px 36px;
  border-right: none;
}
.claim__phrase {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(1.15rem, 0.5vw + 1rem, 1.4rem);
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 0 0 14px;
  display: block;
}
.claim__phrase::before { content: "\201C"; color: var(--gold); margin-right: 0.05em; }
.claim__phrase::after  { content: "\201D"; color: var(--gold); margin-left: 0.05em; }
.claim__ask {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  display: block;
  margin-bottom: 6px;
}
.claim__counter {
  font-family: var(--body);
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 38ch;
}

@media (max-width: 720px) {
  .claims-list { grid-template-columns: 1fr; }
  .claim,
  .claim:nth-child(2n) {
    padding: 22px 0;
    border-right: none;
  }
}

/* =============================================================
   Mission quote — restrained editorial pull-quote on paper
   ============================================================= */

.mission-quote {
  padding: clamp(36px, 4.5vw, 60px) 0;
  background: var(--paper-deep);
  position: relative;
}
.mission-quote__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
.mission-quote__mark {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 4rem;
  line-height: 0.6;
  margin-bottom: 22px;
}
.mission-quote blockquote {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(1.6rem, 2.2vw + 0.6rem, 2.55rem);
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 28px;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.mission-quote__attr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-quiet);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.mission-quote__attr::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
/* Quiet purpose line under the attribution — premium, restrained. */
.mission-quote__purpose {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
  max-width: 720px;
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-quiet);
  letter-spacing: 0.005em;
}

/* =============================================================
   Quote band — pull quote, editorial
   ============================================================= */

.quote-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(96px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  /* large background quote glyph */
  content: "\201C";
  position: absolute;
  top: -44px;
  left: -16px;
  font-family: var(--display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(20rem, 28vw, 32rem);
  line-height: 1;
  color: var(--green-deep);
  pointer-events: none;
  user-select: none;
  opacity: 0.55;
}
.quote-band__inner { position: relative; max-width: 920px; }
.quote-band__mark {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  font-weight: 400;
}
.quote-band blockquote {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(1.8rem, 2.6vw + 0.6rem, 2.9rem);
  line-height: 1.18;
  color: var(--paper);
  max-width: 820px;
  margin: 0 0 36px;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.quote-band__attr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.quote-band__attr::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-bright);
}

/* =============================================================
   Decision split — diptych
   ============================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  margin-top: 48px;
  /* Gold top rule signals a major page transition; closing rule omitted —
     the paths-trust block below provides its own structural closure. */
  border-top: 1px solid var(--gold);
}
.split-rule {
  background: var(--rule);
  position: relative;
}
.split-rule::after {
  content: "★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* No background block — star sits as a refined divider detail, not a badge. */
  color: var(--gold);
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 1.25rem;
  line-height: 1;
  text-shadow: 0 0 0 var(--gold);
}
.split-card {
  padding: 56px 24px 56px 0;
  /* Flex column so the CTA button anchors at the bottom of each card
     and the two door buttons sit on the same horizontal line. */
  display: flex;
  flex-direction: column;
  /* Prevent a nowrap headline from forcing the grid to expand past
     the container — allows clean overflow handling instead. */
  min-width: 0;
}
.split-card:nth-child(3) { padding: 56px 0 56px 24px; }
.split-card p { flex: 1; }
.split-card .btn { align-self: flex-start; }
/* Door headlines wrap naturally — current container width can't fit the
   longer Door 2 line on desktop, so we let it wrap rather than clip.
   The flex-column + flex:1 paragraph keeps both door buttons aligned
   on the same horizontal baseline even when headline line-counts differ. */
.split-card__num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 22px;
}
.split-card h3 {
  font-size: clamp(1.7rem, 0.6vw + 1.5rem, 2.1rem);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  letter-spacing: -0.022em;
}
.split-card p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 36ch;
}

@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
  .split-rule { display: none; }
  .split-card { padding: 40px 0 !important; border-bottom: 1px solid var(--rule); }
  .split-card:last-child { border-bottom: none; }
}

/* =============================================================
   Trust by Design / privacy cards
   ============================================================= */

.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.dual-card {
  padding: 44px 40px 40px 0;
  border-right: 1px solid var(--rule);
}
.dual-card:last-child {
  padding: 44px 0 40px 40px;
  border-right: none;
}
.dual-card__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-block;
}
.dual-card h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  letter-spacing: -0.018em;
}
.dual-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dual-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.dual-card.is-positive li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(-45deg);
}
.dual-card.is-negative li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1.5px;
  background: var(--ink-faint);
}

@media (max-width: 720px) {
  .dual-cards { grid-template-columns: 1fr; }
  .dual-card {
    padding: 36px 0 !important;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .dual-card:last-child { border-bottom: none; }
}

/* =============================================================
   Prose blocks (For Providers, Privacy, Disclosures)
   ============================================================= */

.prose {
  max-width: var(--container-prose);
  font-size: 1.06rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 400;
}
.prose > h2:first-child,
.prose > h3:first-child { margin-top: 0; }
.prose h2 {
  color: var(--ink);
  margin-top: 1.7em;
  padding-top: 1.1em;
  padding-left: 18px;
  border-top: 1px solid var(--rule-soft);
  position: relative;
  font-size: clamp(1.4rem, 0.6vw + 1.2rem, 1.85rem);
  font-variation-settings: "opsz" 48, "SOFT" 30;
  margin-bottom: 0.5em;
}
/* Thin dark-green left rule — signals section hierarchy on prose/trust pages. */
.prose h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(1.1em + 0.15em);
  height: 1em;
  width: 2px;
  background: var(--green);
}
.prose > h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.prose > h2:first-of-type::before { top: 0.15em; }
.prose h3 {
  color: var(--ink);
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 1.25rem;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.prose p { margin-bottom: 1.1em; }
.prose ul {
  padding-left: 0;
  margin-bottom: 1.2em;
  list-style: none;
}
.prose ul li {
  padding-left: 22px;
  margin-bottom: 0.45em;
  position: relative;
}
.prose ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.prose a {
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.prose a:hover { color: var(--green); border-bottom-color: var(--green); }

/* Drop cap removed from prose/trust pages — was breaking
   the "FiveStar Connectors" wordmark visually ("F iveStar..."). */

/* =============================================================
   CTA band
   ============================================================= */

.cta-band {
  background: var(--paper-deep);
  padding: clamp(44px, 5.5vw, 72px) 0;
  position: relative;
}
/* Container-width gold hairline at top — consistent with .stat-band
   and .confidentiality treatment instead of full-width edge-to-edge. */
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: var(--container);
  height: 1px;
  background: var(--gold);
}
@media (max-width: 640px) {
  .cta-band::before { width: calc(100% - 44px); }
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.cta-band h2 {
  max-width: 740px;
  margin-bottom: 0;
}
.cta-band__row {
  display: flex; gap: 16px; flex-wrap: wrap;
}

@media (max-width: 720px) {
  .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   Footer — colophon style
   ============================================================= */

.footer {
  background: var(--ink);
  color: rgba(255, 252, 246, 0.78);
  padding: 40px 0 18px;
  font-size: 0.92rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.footer a {
  color: rgba(255, 252, 246, 0.78);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 34px;
}
.footer__brand-logo {
  display: block;
  margin-bottom: 22px;
}
.footer__brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer__brand p {
  font-size: 0.92rem;
  color: rgba(255, 252, 246, 0.55);
  max-width: 32ch;
  line-height: 1.55;
}
.footer__col h4 {
  color: var(--gold-bright);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__disclosure {
  border-top: 1px solid rgba(255, 252, 246, 0.12);
  padding-top: 24px;
  font-size: 0.86rem;
  color: rgba(255, 252, 246, 0.5);
  line-height: 1.6;
  max-width: 920px;
  font-family: var(--body);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 252, 246, 0.12);
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.4);
}
.footer__bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer__bottom-links a { border-bottom: none; }
.footer__bottom-links .asterism {
  color: var(--gold-bright);
  opacity: 0.85;
}
.footer__motto {
  font-family: var(--italic);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 880px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   Forms — keep functional, refresh chrome
   ============================================================= */

.form-page {
  /* Tightened from clamp(40px, 5vw, 64px) so Get Matched, Share
     Experience, and Partner Inquiry's nav-to-meta-strip distance
     matches the tightened Contact / Home / For Providers values. */
  padding-top: clamp(24px, 3.5vw, 40px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background: var(--paper);
}
.form-page__intro { max-width: 780px; margin-bottom: 36px; }
.form-page__intro h1 {
  font-size: clamp(2.2rem, 4vw + 0.6rem, 3.8rem);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.form-page__intro .lead { color: var(--ink-soft); }
.form-page__intro::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin-top: 18px;
}

.form-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.form-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}
.form-sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.form-sidebar p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-steps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.form-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-faint);
  font-size: 0.92rem;
  font-family: var(--body);
  transition: color var(--t-fast);
}
.form-steps li:last-child { border-bottom: none; }
.form-steps__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: all var(--t-base);
}
.form-steps li.is-active { color: var(--ink); }
.form-steps li.is-active .form-steps__num {
  background: var(--green);
  color: var(--paper);
  border-color: var(--green);
}
.form-steps li.is-done { color: var(--ink-soft); }
.form-steps li.is-done .form-steps__num {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.privacy-promise {
  background: transparent;
  border-left: 2px solid var(--green);
  padding: 14px 18px;
  border-radius: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-family: var(--body);
}
.privacy-promise strong {
  color: var(--green);
  font-weight: 500;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.privacy-promise p { margin: 0 0 12px; }
.privacy-promise__copy {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.privacy-promise__link {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  display: inline-block;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.privacy-promise__link:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  /* Dark-green top accent — signals "trusted, in-progress" without re-skinning the card. */
  border-top: 2px solid var(--green);
  border-radius: 0;
  padding: 56px 56px 40px;
  box-shadow: 0 1px 0 var(--rule), 0 24px 48px -28px rgba(20, 20, 15, 0.12);
}
.form-step { display: none; }
.form-step.is-active {
  display: block;
  animation: form-step-in 320ms var(--ease-soft);
}
@keyframes form-step-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-step h2 {
  font-size: clamp(1.55rem, 0.5vw + 1.4rem, 1.95rem);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.022em;
}
.form-step__lead {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 36px;
  max-width: 50ch;
  line-height: 1.6;
}

.field { margin-bottom: 24px; }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field--row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .field--row, .field--row-3 { grid-template-columns: 1fr; gap: 0; }
  .field--row > .field, .field--row-3 > .field { margin-bottom: 18px; }
}

.field__label {
  display: block;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 10px;
}
.field__label .req { color: var(--error); margin-left: 2px; }
.field__hint {
  display: block;
  font-family: var(--body);
  font-size: 0.85rem;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--ink-soft);
  margin-top: 8px;
}

.field__hint--eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.field__hint--tight {
  margin: -6px 0 10px;
}

.pi-form__inline-hint.pi-form__inline-hint--green {
  border-left-color: var(--green);
  margin-top: 0;
}

.input,
.select,
.textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.96rem;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
  letter-spacing: 0.005em;
}
.input::placeholder,
.textarea::placeholder { color: var(--ink-faint); }
.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 1px 0 var(--ink);
}
.input.has-error,
.select.has-error,
.textarea.has-error {
  border-color: var(--error);
  box-shadow: 0 1px 0 var(--error);
}
.textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}

.select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23232' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* Radio cards */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
/* Modifier: 5-option layouts (e.g. Definitely / Probably / Unsure / Probably not / Definitely not) */
.radio-cards--five {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}
.radio-card {
  position: relative;
  cursor: pointer;
  display: flex;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card span {
  flex: 1;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 400;
  padding: 14px 14px;
  background: transparent;
  color: var(--ink-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.radio-card:hover span { background: var(--paper-deep); }
.radio-card input:checked + span {
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
}
.radio-card input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  cursor: pointer;
  display: inline-flex;
  position: relative;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  font-family: var(--body);
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink-soft);
  transition: all var(--t-fast);
}
.chip:hover span { border-color: var(--ink); color: var(--ink); }
.chip input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.checkbox input {
  margin-top: 2px;
  width: 18px; height: 18px;
  accent-color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox--required {
  background: transparent;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  color: var(--ink-soft);
}

/* Ratings grid — multiple star ratings stacked into a clean lattice */
.ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 12px;
  margin-bottom: 28px;
}
.ratings-grid .field {
  margin: 0;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.ratings-grid .field:nth-child(2n) {
  padding: 22px 0 22px 24px;
  border-right: none;
}
.ratings-grid .field__label {
  margin-bottom: 8px;
}
.ratings-grid .stars-row { gap: 0; }
.ratings-grid .stars__hint {
  margin-left: 12px;
  font-size: 0.66rem;
}
@media (max-width: 720px) {
  .ratings-grid { grid-template-columns: 1fr; }
  .ratings-grid .field,
  .ratings-grid .field:nth-child(2n) {
    padding: 18px 0;
    border-right: none;
  }
}

/* Ratings note — small italic line above the grid */
.ratings-note {
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-quiet);
  margin: 0 0 4px;
  line-height: 1.5;
  max-width: 56ch;
}

/* Sub-section heading inside a form step */
.form-subhead {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 36px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.form-subhead::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

/* Stars */
.stars {
  display: inline-flex;
  gap: 2px;
}
.star {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px 6px;
  color: var(--rule);
  font-size: 1.7rem;
  line-height: 1;
  transition: color var(--t-fast), transform var(--t-fast);
}
.star:hover { color: var(--gold-bright); transform: scale(1.06); }
.star.is-on { color: var(--gold); }
.stars__hint {
  margin-left: 16px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  align-self: center;
}
.stars-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }

/* Service stack */
.stack-item {
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 16px 18px;
  margin-bottom: 8px;
  background: var(--paper);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.stack-item.is-checked {
  background: var(--white);
  border-color: var(--gold);
}
.stack-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.stack-item__head input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--ink);
}
.stack-item__detail {
  display: none;
  margin-top: 14px;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}
.stack-item.is-checked .stack-item__detail { display: grid; }
.stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 720px) {
  .stack-grid { grid-template-columns: 1fr; }
  .stack-item__detail { grid-template-columns: 1fr; }
}
.stack-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 720px) {
  .stack-grid-2 { grid-template-columns: 1fr; }
}

/* Repeater */
.repeater-block {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  padding: 32px 32px 8px;
  margin-bottom: 24px;
  background: var(--paper);
  position: relative;
}
.repeater-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.repeater-block__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.repeater-remove {
  background: transparent;
  border: none;
  font-family: var(--mono);
  color: var(--ink-faint);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--t-fast);
}
.repeater-remove:hover { color: var(--error); }
.repeater-add {
  background: transparent;
  border: 1px dashed var(--rule);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.repeater-add:hover {
  border-color: var(--gold);
  border-style: solid;
  background: var(--white);
  color: var(--green);
}
.repeater-add:disabled {
  cursor: not-allowed;
  color: var(--ink-faint);
  border-color: var(--rule);
  border-style: dashed;
  background: transparent;
}

/* Form footer */
.form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  gap: 16px;
}
.form-footer .btn--ghost { visibility: hidden; }
.form-step.has-back .form-footer .btn--ghost { visibility: visible; }

/* Conditional fields */
[data-show-when]:not(.is-visible) { display: none !important; }
[data-show-when].is-visible.field--row { display: grid; }

/* Success */
.form-success {
  text-align: left;
  padding: 32px 0;
  display: none;
}
.form-success.is-active {
  display: block;
  animation: rise-in 600ms var(--ease-out);
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.form-success h2 {
  font-size: clamp(1.7rem, 0.6vw + 1.5rem, 2.2rem);
  margin-bottom: 16px;
  max-width: 24ch;
  font-variation-settings: "opsz" 48, "SOFT" 50;
  letter-spacing: -0.022em;
}
.form-success p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
  font-size: 1.02rem;
  line-height: 1.6;
}
.form-success__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .form-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-sidebar { position: static; }
  .form-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .form-card { padding: 24px 16px; }
}

/* =============================================================
   Contact fallback — quiet email line below the form
   ============================================================= */

.contact-fallback {
  margin: 56px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-align: center;
}
.contact-fallback a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.contact-fallback a:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* =============================================================
   Prose utilities — shared by trust/legal pages and lead overrides
   ============================================================= */

/* Lead modifier: wider max-width than the default 56ch */
.lead--wide { max-width: 62ch; }

/* Em-dash bullet list, used on prose/trust pages (Privacy, Disclosures, etc.) */
.prose-em-list {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 22px;
}
.prose-em-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.prose-em-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
}

/* Page-level privacy/trust promise callout — used near the top of prose/trust pages.
   Stronger than .privacy-promise (sidebar variant); dark-green accent for trust. */
.prose-promise {
  background: var(--green-tint);
  border-left: 3px solid var(--green);
  padding: 22px 28px;
  margin: 0 0 44px;
  max-width: 720px;
}
.prose-promise__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 12px;
}
.prose-promise__copy {
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  letter-spacing: -0.008em;
  max-width: 56ch;
}

/* Inline contact email mono pill — used at the close of prose/trust pages */
.prose-contact-pill {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 6px 12px;
  background: var(--paper-deep);
  border-left: 2px solid var(--gold);
  margin: 4px 0 8px;
}
.prose-contact-pill a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.prose-contact-pill a:hover {
  color: var(--gold);
  border-bottom-color: var(--green);
}

/* =============================================================
   Misc utilities
   ============================================================= */

.text-muted { color: var(--ink-faint); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.text-link {
  border-bottom: 1px solid var(--gold);
  color: var(--ink);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.text-link:hover { color: var(--green); border-bottom-color: var(--green); }

/* Lazy reveal-on-scroll for sections (set initial state, JS toggles) */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

/* =============================================================
   Stat band — operational specifics in mono
   ============================================================= */

.stat-band {
  background: var(--paper);
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
}
/* Container-width gold hairlines mark the major page transition. */
.stat-band::before,
.stat-band::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: var(--container);
  height: 1px;
  background: var(--gold);
}
.stat-band::before { top: 0; }
.stat-band::after { bottom: 0; }
@media (max-width: 640px) {
  .stat-band::before, .stat-band::after { width: calc(100% - 44px); }
}
.stat-band__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.stat-band__head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.2rem);
  max-width: 28ch;
  letter-spacing: -0.022em;
}
.stat-band__source {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.stat {
  padding: 36px 32px 32px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
/* Last column in each row of the 3-column grid drops the right border. */
.stat:nth-child(3n) { border-right: none; padding-right: 0; }
/* Add a top hairline on rows after the first so 6+ stats read as a clean lattice. */
.stat:nth-child(n+4) {
  border-top: 1px solid var(--rule);
  margin-top: -1px;
  padding-top: 36px;
}
.stat__num {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-size: clamp(3rem, 5vw + 0.6rem, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
  font-feature-settings: "lnum", "tnum";
}
.stat__num sup {
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.42em;
  vertical-align: super;
  color: var(--gold);
  margin-left: 4px;
  letter-spacing: 0;
}
.stat__label {
  font-family: var(--body);
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.5;
  max-width: 32ch;
  margin-bottom: 12px;
}
.stat__source {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 1080px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3n) { border-right: 1px solid var(--rule); padding-right: 32px; }
  .stat:nth-child(2n) { border-right: none; padding-right: 0; }
}

@media (max-width: 880px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .stat:last-child { border-bottom: none; }
}

/* =============================================================
   Trust Hierarchy — editorial figure
   ============================================================= */

.hierarchy {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: 48px;
}
.hierarchy__copy h2 { margin-bottom: 22px; }
.hierarchy__copy .lead { margin-bottom: 28px; }
.hierarchy__caption {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 28px;
  display: block;
}
.hierarchy__figure {
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  padding: 36px 36px 28px;
  position: relative;
}
.hierarchy__figure-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.hierarchy__figure-title {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.hierarchy__figure-meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hierarchy__row {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) minmax(140px, 1fr) 90px;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.hierarchy__row:last-child { border-bottom: none; }
.hierarchy__bar {
  position: relative;
  height: 18px;
  background: linear-gradient(to right, transparent, transparent);
}
.hierarchy__bar::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  height: 1px;
  background: var(--rule);
  width: 100%;
  transform: translateY(-0.5px);
}
.hierarchy__bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  /* gilt texture — base gold + faint horizontal hatching */
  background:
    repeating-linear-gradient(
      0deg,
      rgba(20, 20, 15, 0.0) 0px,
      rgba(20, 20, 15, 0.0) 3px,
      rgba(20, 20, 15, 0.06) 3px,
      rgba(20, 20, 15, 0.06) 4px
    ),
    linear-gradient(180deg, #D4B264 0%, #C9A24A 50%, #B89238 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1100ms var(--ease-out);
  box-shadow: inset 0 -1px 0 rgba(20, 20, 15, 0.18);
}
.hierarchy.is-visible .hierarchy__bar-fill { transform: scaleX(1); }
.hierarchy__row-label {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.005em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hierarchy__row-label .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.hierarchy__row-trust {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  text-align: right;
}
.hierarchy__row.is-top .hierarchy__row-label,
.hierarchy__row.is-top .hierarchy__row-trust {
  color: var(--green);
  font-weight: 500;
}
.hierarchy__row.is-top .hierarchy__bar-fill {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.0) 0px,
      rgba(255, 255, 255, 0.0) 3px,
      rgba(255, 255, 255, 0.06) 3px,
      rgba(255, 255, 255, 0.06) 4px
    ),
    linear-gradient(180deg, #166050 0%, #0F4C3A 50%, #0A3328 100%);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 880px) {
  .hierarchy { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hierarchy__figure { padding: 24px 22px 20px; }
  .hierarchy__row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "label trust" "bar bar";
    gap: 4px 12px;
    padding: 14px 0;
  }
  .hierarchy__row-label { grid-area: label; }
  .hierarchy__row-trust { grid-area: trust; }
  .hierarchy__bar { grid-area: bar; height: 12px; margin-top: 6px; }
}

/* =============================================================
   Founder card — credibility anchor
   ============================================================= */

.founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  margin-top: 48px;
}
.founder__portrait {
  position: relative;
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder__portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(120% 100% at 50% 100%, rgba(15,76,58,0.10), transparent 60%),
    var(--paper-deep);
  position: relative;
}
.founder__portrait-mark {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.founder__portrait-monogram {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(8rem, 14vw, 13rem);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.06em;
  margin-bottom: -0.06em;
  position: relative;
  z-index: 1;
}
.founder__portrait-monogram .ital {
  font-family: var(--italic);
  font-style: italic;
  color: var(--gold);
}
.founder__portrait-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.founder__sig {
  position: absolute;
  bottom: 18px; right: 22px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-quiet);
  letter-spacing: 0;
}

.founder__copy {
  position: relative;
}
.founder__role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.founder__role::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.founder__copy h2 {
  margin-bottom: 22px;
  letter-spacing: -0.024em;
}
.founder__copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 1em;
}
.founder__resume {
  list-style: none;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 36px;
}
.founder__resume li {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.founder__resume li strong {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
  font-size: 1.02rem;
  letter-spacing: -0.012em;
}
.founder__resume li span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 720px) {
  .founder { grid-template-columns: 1fr; }
  .founder__portrait { max-width: 320px; }
  .founder__resume { grid-template-columns: 1fr; }
}

/* =============================================================
   Brand asterism — five stars, the graphic verb of the brand
   ============================================================= */

.asterism {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--gold);
  font-family: var(--display);
  font-variation-settings: "opsz" 24;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0;
  user-select: none;
}
.asterism span {
  display: inline-block;
  transform: translateY(0);
}
.asterism span:nth-child(1) { font-size: 0.72em; opacity: 0.78; }
.asterism span:nth-child(2) { font-size: 0.92em; opacity: 0.92; transform: translateY(-2px); }
.asterism span:nth-child(3) { font-size: 1.10em; opacity: 1.00; transform: translateY(-4px); }
.asterism span:nth-child(4) { font-size: 0.92em; opacity: 0.92; transform: translateY(-2px); }
.asterism span:nth-child(5) { font-size: 0.72em; opacity: 0.78; }

.asterism--small {
  font-size: 0.62rem;
  gap: 4px;
}
.asterism--large {
  font-size: 1.05rem;
  gap: 8px;
}

/* Section divider — asterism flanked by hairline rules */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 0 6px;
  background: var(--paper);
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: var(--rule);
}
.section-divider .asterism {
  flex-shrink: 0;
}
/* Tighter, dark variant when between dark sections */
.section-divider--dark {
  background: var(--ink);
}
.section-divider--dark::before,
.section-divider--dark::after {
  background: rgba(255, 252, 246, 0.12);
}
.section-divider--dark .asterism {
  color: var(--gold-bright);
}

/* =============================================================
   Service strip — "Where provider insight helps"
   ============================================================= */

.service-strip {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.service-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.service-strip__head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.2rem);
  max-width: 32ch;
  letter-spacing: -0.022em;
}
.service-strip__head .eyebrow { margin-bottom: 0; }
.service-strip__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.service-strip__item {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.22rem);
  letter-spacing: -0.012em;
  color: var(--ink);
  padding: 18px 24px 18px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 14px;
  position: relative;
  transition: color var(--t-fast);
  cursor: default;
}
.service-strip__item:nth-child(3n) { border-right: none; padding-right: 0; }

.service-strip__item-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: color var(--t-fast);
}

/* Treat as index entries — hover draws a gold underline beneath the name
   and reveals a tiny ★ marker, hinting at depth without overpromising. */
.service-strip__item-name {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.service-strip__item-name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right var(--t-base);
}
.service-strip__item-mark {
  margin-left: auto;
  font-family: var(--display);
  color: var(--gold);
  font-size: 0.85em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t-base), transform var(--t-base);
  flex-shrink: 0;
  align-self: center;
  padding-right: 8px;
}
.service-strip__item:hover .service-strip__item-name::after { right: 0; }
.service-strip__item:hover .service-strip__item-mark {
  opacity: 1;
  transform: translateX(0);
}
.service-strip__item:hover .service-strip__item-num { color: var(--gold); }
.service-strip__item:hover { color: var(--ink); }

@media (max-width: 880px) {
  .service-strip__list { grid-template-columns: repeat(2, 1fr); }
  .service-strip__item { border-right: 1px solid var(--rule); padding-right: 16px; }
  .service-strip__item:nth-child(3n) { border-right: 1px solid var(--rule); padding-right: 16px; }
  .service-strip__item:nth-child(2n) { border-right: none; padding-right: 0; }
}
@media (max-width: 540px) {
  .service-strip__list { grid-template-columns: 1fr; }
  .service-strip__item,
  .service-strip__item:nth-child(2n),
  .service-strip__item:nth-child(3n) {
    border-right: none;
    padding-right: 0;
  }
}

/* =============================================================
   Granular permission controls — Share Experience trust architecture
   ============================================================= */

.permission-block {
  border: 1px solid var(--rule);
  background: var(--paper-deep);
  padding: 28px 28px 20px;
  margin: 28px 0;
  position: relative;
}
.permission-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  bottom: 0;
  background: var(--gold);
}
.permission-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.permission-block__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
}
.permission-block__meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.permission-block__intro {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.permission-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.permission-list li {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.permission-list li:last-child { border-bottom: none; }
.permission-list label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.5;
}
.permission-list input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.permission-list .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-right: 4px;
}

/* =============================================================
   Tagline / motto strip
   ============================================================= */

.tagline-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.tagline-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.tagline-strip__sep {
  color: var(--gold);
  font-family: var(--display);
  font-variation-settings: "opsz" 24;
  font-size: 1rem;
  letter-spacing: 0;
}
.tagline-strip__word { color: var(--paper); }
.tagline-strip__word.is-mid { color: var(--gold-bright); font-family: var(--italic); font-style: italic; text-transform: none; letter-spacing: 0.04em; font-size: 0.96rem; }

/* =============================================================
   Stat headline (between number and explanatory copy)
   ============================================================= */
.stat__h {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30, "WONK" 0;
  font-size: 1.02rem;
  letter-spacing: -0.012em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 8px 0;
  max-width: 28ch;
}

/* =============================================================
   Home — two-doors trust note
   ============================================================= */
.paths-trust {
  margin: clamp(40px, 4vw, 56px) 0 0 0;
  padding: 8px 0 8px 18px;
  /* Dark-green left rule — signature trust accent for the closing privacy note. */
  border-left: 2px solid var(--green);
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 78ch;
  line-height: 1.6;
}
.paths-trust strong {
  color: var(--green);
  font-weight: 500;
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  letter-spacing: -0.005em;
}

/* =============================================================
   Umbrella cards — For Providers (expandable on hover/click)
   ============================================================= */
.umbrella-cards {
  display: grid;
  /* 3-col at desktop — 9 cards laid out as a clean 3×3. */
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--paper);
}
.umbrella-card {
  position: relative;
  background: var(--paper);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
  transition: background var(--t-base);
}
.umbrella-card[open] { background: var(--paper-deep); }
.umbrella-card:hover { background: var(--paper-deep); }

/* Remove the default disclosure marker */
.umbrella-card > summary { list-style: none; cursor: pointer; }
.umbrella-card > summary::-webkit-details-marker { display: none; }
.umbrella-card > summary::marker { display: none; }

.umbrella-card__summary {
  display: block;
  position: relative;
  padding: 28px 28px 24px 28px;
  outline: none;
}
.umbrella-card__summary:focus-visible {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.umbrella-card__num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.umbrella-card__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30, "WONK" 0;
  font-size: clamp(1rem, 0.25vw + 0.95rem, 1.12rem);
  letter-spacing: -0.022em;
  line-height: 1.22;
  margin: 0 0 10px 0;
  color: var(--ink);
  max-width: none;
  /* Reserve space for the absolutely-positioned chevron at right: 28px. */
  padding-right: 44px;
}
.umbrella-card__lead-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 6px;
}
.umbrella-card__includes {
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* Chevron — small gold rule + arrow that rotates on open */
.umbrella-card__chevron {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 22px;
  height: 22px;
  display: inline-block;
  border: 1px solid var(--rule);
  border-radius: 50%;
  transition: transform var(--t-base), border-color var(--t-base);
}
.umbrella-card__chevron::before,
.umbrella-card__chevron::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transition: transform var(--t-base), background var(--t-base);
}
.umbrella-card__chevron::before { width: 8px; height: 1px; transform: translate(-50%, -50%); }
.umbrella-card__chevron::after  { width: 1px; height: 8px; transform: translate(-50%, -50%); }
.umbrella-card[open] .umbrella-card__chevron,
.umbrella-card:hover .umbrella-card__chevron {
  border-color: var(--gold);
}
.umbrella-card[open] .umbrella-card__chevron::before { background: var(--gold); }
.umbrella-card[open] .umbrella-card__chevron::after  { transform: translate(-50%, -50%) scaleY(0); }

.umbrella-card__detail {
  padding: 0 28px 28px 28px;
  border-top: 1px solid var(--rule-soft);
  margin-top: 4px;
  padding-top: 20px;
  animation: umbrella-fade 320ms var(--ease-soft);
}
@keyframes umbrella-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.umbrella-card__block + .umbrella-card__block { margin-top: 14px; }
.umbrella-card__block-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.umbrella-card__block p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.umbrella-card__list {
  list-style: disc;
  padding-left: 1.2em;
  margin: 6px 0 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.umbrella-card__list li {
  margin: 3px 0;
}
.umbrella-card__block .umbrella-card__list {
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .umbrella-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .umbrella-cards { grid-template-columns: 1fr; }
  .umbrella-card__summary { padding: 24px 22px 20px 22px; }
  .umbrella-card__detail { padding: 18px 22px 24px 22px; }
  .umbrella-card__chevron { top: 24px; right: 22px; }
}

/* =============================================================
   Peer Insight — two-column (cards + trust framework)
   ============================================================= */
.peer-insight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  margin-top: 8px;
}
.peer-insight__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.insight-card {
  padding: 22px 22px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.insight-card__num {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.insight-card h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 1.04rem;
  letter-spacing: -0.012em;
  line-height: 1.18;
  margin: 0 0 8px 0;
  color: var(--ink);
}
.insight-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.peer-insight__supporting {
  margin-top: clamp(36px, 4vw, 56px);
  max-width: 78ch;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

@media (max-width: 1080px) {
  .peer-insight { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .peer-insight__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .peer-insight__cards { grid-template-columns: 1fr; }
}

/* =============================================================
   Trust Framework — illustrative figure
   ============================================================= */
.trust-framework {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px 28px 24px;
  position: relative;
}
.trust-framework__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.trust-framework__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 1.02rem;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.trust-framework__meta {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.trust-framework__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-framework__row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 90px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.trust-framework__row:last-child { border-bottom: none; }
.trust-framework__rank {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.trust-framework__label {
  font-family: var(--body);
  font-size: 0.86rem;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.35;
}
.trust-framework__bar {
  position: relative;
  height: 14px;
  display: block;
}
.trust-framework__bar::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 100%; height: 1px;
  background: var(--rule);
  transform: translateY(-0.5px);
}
.trust-framework__bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w, 0%);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(20, 20, 15, 0.0) 0px,
      rgba(20, 20, 15, 0.0) 3px,
      rgba(20, 20, 15, 0.06) 3px,
      rgba(20, 20, 15, 0.06) 4px
    ),
    linear-gradient(180deg, #D4B264 0%, #C9A24A 50%, #B89238 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1100ms var(--ease-out);
  box-shadow: inset 0 -1px 0 rgba(20, 20, 15, 0.18);
}
[data-reveal].is-visible .trust-framework__bar-fill { transform: scaleX(1); }
.trust-framework__row.is-top .trust-framework__label {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  color: var(--green);
}
/* Top row reads in dark green — the framework's structural emphasis without
   tipping into a formal ranking or scorecard. */
.trust-framework__row.is-top .trust-framework__bar-fill {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 252, 246, 0.0) 0px,
      rgba(255, 252, 246, 0.0) 3px,
      rgba(255, 252, 246, 0.06) 3px,
      rgba(255, 252, 246, 0.06) 4px
    ),
    linear-gradient(180deg, #1F6A53 0%, #0F4C3A 50%, #093627 100%);
  box-shadow: inset 0 -1px 0 rgba(20, 20, 15, 0.22);
}
.trust-framework__caption {
  display: block;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .trust-framework { padding: 24px 20px 18px; }
  .trust-framework__row {
    grid-template-columns: 22px minmax(0, 1fr);
    grid-template-areas: "rank label" ". bar";
    row-gap: 6px;
  }
  .trust-framework__rank { grid-area: rank; }
  .trust-framework__label { grid-area: label; }
  .trust-framework__bar { grid-area: bar; height: 10px; }
}

/* =============================================================
   Confidentiality block — For Providers (below final CTA)
   ============================================================= */
.confidentiality {
  background: var(--paper);
  padding: clamp(32px, 4vw, 52px) 0;
  position: relative;
}
.confidentiality::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: var(--container);
  height: 1px;
  background: var(--gold);
}
@media (max-width: 640px) {
  .confidentiality::before { width: calc(100% - 44px); }
}
.confidentiality__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  /* Dark green left bar keeps the confidentiality block visually aligned with
     the site's other privacy/trust callouts (.hero__trust-line, .privacy-promise). */
  border-left: 2px solid var(--green);
  padding-left: 22px;
}
@media (max-width: 640px) {
  .confidentiality__inner { padding-left: 18px; }
}
.confidentiality__label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.confidentiality__lead {
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px 0;
}
.confidentiality__lead strong {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--green);
}
.confidentiality__copy {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px 0;
  max-width: 70ch;
}

/* =============================================================
   Closing band — combined methodology bridge + trust language
   (left) and Begin CTA (right). Single paper background so the
   three pieces read as one unified bottom section rather than
   three stacked color breaks.
   ============================================================= */
.closing-band {
  background: var(--paper);
  padding: clamp(44px, 5vw, 72px) 0 clamp(48px, 6vw, 80px);
  position: relative;
}
/* Container-width gold hairline at the top — same divider treatment
   used elsewhere on the site (.cta-band, .confidentiality, .stat-band). */
.closing-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: var(--container);
  height: 1px;
  background: var(--gold);
}
@media (max-width: 640px) {
  .closing-band::before { width: calc(100% - 44px); }
}
.closing-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 1px minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
/* Vertical gold hairline between columns — restrained editorial separator
   without breaking the unified paper background. */
.closing-band__grid::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  align-self: stretch;
  background: var(--rule);
  justify-self: center;
  /* Place the rule visually between the two columns via the explicit
     1px middle grid track above. */
}
.closing-band__col {
  min-width: 0;
}
.closing-band__col--insight { grid-column: 1; }
.closing-band__col--begin   { grid-column: 3; }

/* LEFT — methodology bridge */
.closing-band__h {
  font-family: var(--display);
  font-variation-settings: "opsz" 48, "SOFT" 30;
  font-size: clamp(1.7rem, 0.5vw + 1.5rem, 2.05rem);
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 18px;
}
.closing-band__lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 56ch;
}

/* Confidentiality piece — green left rule, premium trust-note style. */
.closing-band__trust {
  margin-top: clamp(30px, 3.5vw, 44px);
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--green);
  max-width: 60ch;
}
.closing-band__trust-lead {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
}
.closing-band__trust-lead strong {
  font-family: var(--display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--green);
}
.closing-band__trust-copy {
  margin: 0 0 18px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Both columns share the same eyebrow rhythm so the H2s baseline-align;
   the left column carries a hidden phantom eyebrow that reserves equal
   vertical space without showing a duplicate label. */
.closing-band__col .eyebrow { margin-bottom: 14px; }
.eyebrow--phantom { visibility: hidden; }
@media (max-width: 880px) {
  .eyebrow--phantom { display: none; }
}

/* RIGHT — Begin */
.closing-band__h--begin {
  font-size: clamp(1.85rem, 0.7vw + 1.55rem, 2.3rem);
  margin-bottom: 18px;
}
.closing-band__begin-body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 52ch;
}
.closing-band__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

@media (max-width: 880px) {
  /* Stack: insight + trust → begin. Single column hides the vertical rule. */
  .closing-band__grid {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 52px);
  }
  .closing-band__grid::after { display: none; }
  .closing-band__col--insight { grid-column: 1; }
  .closing-band__col--begin   { grid-column: 1; }
}

/* =============================================================
   Home page refinements (Vol. I)
   Scoped via body.page-home so only the Home page tightens vertical
   rhythm. Other pages keep the global spacing tokens.
   ============================================================= */

/* Hero — aligned with the shared .hero rule so Home's
   nav-to-meta-strip distance matches the rest of the site.
   The body.page-home .hero__masthead margin override has been
   removed so Home inherits the shared meta-strip-to-h1 spacing. */
body.page-home .hero {
  padding: clamp(24px, 3.5vw, 40px) 0 clamp(20px, 3vw, 36px);
}
/* body.page-home .hero__rule override removed — Home now inherits
   the unified shared .hero__rule { margin: 22px 0 0; } rhythm. */

/* Mission quote — restrained vertical, room for the new purpose line */
body.page-home .mission-quote { padding: clamp(28px, 3.5vw, 44px) 0; }

/* Process + two-door sections — trim ~25–30% from section padding */
body.page-home .section--paper { padding: clamp(28px, 3.5vw, 48px) 0; }
body.page-home .section--paper-deep { padding: clamp(28px, 3.5vw, 48px) 0; }

/* Two-door section — slight asymmetric grid to give Door 2 more horizontal
   runway. With paired letter-spacing and lighter inner padding the longer
   "Have partner experience another provider should hear?" headline holds
   on a single line at typical desktop widths; it wraps gracefully when the
   viewport can't carry it. */
body.page-home .split {
  grid-template-columns: 0.9fr 1px 1.1fr;
  margin-top: 32px;
}
body.page-home .split-card { padding: 44px 20px 44px 0; }
body.page-home .split-card:nth-child(3) { padding: 44px 0 44px 20px; }
body.page-home .split-card h3 { letter-spacing: -0.028em; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
