/* =========================================================
   LEAP HEI — Design System
   Palette: forest green primary, linen/cream surfaces, bronze
   accent. Display in Cormorant Garamond, body in Jost. Aim:
   "incredibly rich, without trying" — UBS Private Wealth meets
   Felix Roasting Co (living-wall green, warm light, gold trim).
   Variable names kept from prior charcoal-red palette so the
   semantic cascade is intact; values are remapped to the new
   tokens Ashley delivered in the 2026-05-11 walkthrough.
   ========================================================= */

:root {
  /* Color — forest / linen / bronze */
  --charcoal:        #1e3528;   /* forest         (was charcoal)   */
  --charcoal-deep:   #162819;   /* forest-dim     (was charcoal-deep) */
  --charcoal-soft:   #254338;   /* forest-mid     (was charcoal-soft) */
  --red:             #b8975a;   /* bronze         (replaces red CTA) */
  --red-deep:        #a48149;   /* bronze-deep    (CTA hover)        */
  --gold:            #b8975a;   /* bronze (gold and primary fold together) */
  --gold-soft:       #c9a96e;   /* bronze-light                       */
  --off-white:       #f4f0e8;   /* linen                              */
  --off-white-warm:  #ede8dd;   /* linen-warm                         */
  --white:           #faf8f4;   /* cream — slightly warm page bg     */
  --text:            #1e3528;   /* forest text on cream              */
  --text-muted:      #6e6a62;   /* stone                              */
  --text-on-dark:    #f4f0e8;   /* linen on forest                    */
  --text-on-dark-muted: rgba(244,240,232,0.6);
  --rule:            rgba(30, 53, 40, 0.12);
  --rule-on-dark:    rgba(244, 240, 232, 0.14);
  /* Aspirational accents */
  --linen-deep:      #ddd7cc;
  --bronze-pale:     #e8d9bc;
  --stone-lt:        #8a8580;
  --forest-shadow:   rgba(15, 22, 17, 0.92);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Type scale (clamps for fluid responsive) */
  --fs-display:  clamp(2.75rem, 1.6rem + 4.6vw, 4.25rem);   /* hero headline 52–60+ */
  --fs-h1:       clamp(2.25rem, 1.4rem + 3.2vw, 3.25rem);
  --fs-h2:       clamp(1.75rem, 1.2rem + 2.2vw, 2.5rem);
  --fs-h3:       clamp(1.25rem, 1.05rem + 0.8vw, 1.5rem);
  --fs-lead:     clamp(1.0625rem, 0.95rem + 0.5vw, 1.1875rem);
  --fs-body:     1rem;
  --fs-small:    0.875rem;
  --fs-eyebrow:  0.75rem;

  /* Layout */
  --container:   1240px;
  --container-narrow: 880px;
  --gutter:      clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
  --section-y:   clamp(4rem, 2rem + 6vw, 7.5rem);
  --section-y-tight: clamp(3rem, 1.5rem + 4vw, 5rem);

  /* Motion */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast:      150ms;
  --t-base:      260ms;
  --t-slow:      520ms;

  /* Nav */
  --nav-h:       72px;
  --nav-h-scrolled: 60px;
}

/* =========================================================
   Reset + base
   ========================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

img, svg, video {
  max-width: 100%;
  display: block;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em,
.display em, .h1 em, .h2 em, .h3 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(30, 53, 40, 0.42);
}

::selection {
  background: var(--charcoal);
  color: var(--off-white);
}

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

.display {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.h1 { font-family: var(--font-serif); font-size: var(--fs-h1); font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
.h2 { font-family: var(--font-serif); font-size: var(--fs-h2); font-weight: 300; line-height: 1.12; letter-spacing: -0.018em; }
.h3 { font-family: var(--font-serif); font-size: var(--fs-h3); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }

.lead {
  font-family: var(--font-sans);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-muted);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 400;
  color: var(--gold);
}
.eyebrow--red { color: var(--red); }
.eyebrow--muted { color: var(--text-muted); }
.eyebrow--on-dark { color: var(--gold-soft); }

.serif { font-family: var(--font-serif); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section--tight {
  padding-top: var(--section-y-tight);
  padding-bottom: var(--section-y-tight);
}

.section--dark {
  background: var(--charcoal);
  color: var(--text-on-dark);
}

.section--dark .lead,
.section--dark .text-muted {
  color: var(--text-on-dark-muted);
}

.section--off {
  background: var(--off-white);
}

.section--off-warm {
  background: var(--off-white-warm);
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}
.rule--on-dark { background: var(--rule-on-dark); }

/* =========================================================
   Buttons / CTAs
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.6em;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), letter-spacing var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--charcoal-deep);
  letter-spacing: 0.04em;
}
.btn--primary:hover { background: var(--red-deep); color: var(--charcoal-deep); letter-spacing: 0.08em; }

.btn--charcoal {
  background: var(--charcoal);
  color: var(--off-white);
}
.btn--charcoal:hover { background: var(--charcoal-deep); }

.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: var(--off-white); color: var(--charcoal); border-color: var(--off-white); }

.btn--ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost-dark:hover { background: var(--charcoal); color: var(--off-white); }

.btn--ghost-off {
  background: var(--off-white);
  color: var(--charcoal);
  border-color: var(--off-white);
}
.btn--ghost-off:hover { background: transparent; color: var(--off-white); border-color: var(--off-white); }

.btn--lg { padding: 1.1em 1.8em; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--charcoal);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color var(--t-base) var(--ease), gap var(--t-base) var(--ease);
}
.link-arrow:hover { gap: 0.75em; color: var(--red); }

.link-arrow--gold { color: var(--gold); }
.link-arrow--gold:hover { color: var(--charcoal); }

.link-arrow--on-dark { color: var(--gold-soft); }
.link-arrow--on-dark:hover { color: var(--white); }

.link-arrow--red { color: var(--red); }
.link-arrow--red:hover { color: var(--charcoal); }

/* =========================================================
   Nav
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--charcoal);
  color: var(--text-on-dark);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height var(--t-base) var(--ease), background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.nav.is-scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(14, 15, 17, 0.95);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: var(--rule-on-dark);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 2vw, 2rem);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 6px;
  transition: opacity var(--t-base) var(--ease);
}
.nav__brand-img {
  height: 32px;
  width: auto;
  display: block;
  transition: transform var(--t-base) var(--ease);
}
.nav__brand:hover .nav__brand-img { transform: scale(1.03); }
.nav__brand::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right var(--t-base) var(--ease);
}
.nav__brand:hover::after { right: 30%; }

.nav__menu {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 0.4rem + 2vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.62);
  padding: 0.4em 0;
  position: relative;
  transition: color var(--t-fast) var(--ease), letter-spacing var(--t-base) var(--ease);
}
.nav__link:hover { letter-spacing: 0.28em; }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--gold-soft); }
.nav__link.is-current::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 1.25em;
  background: var(--red);
  color: var(--charcoal-deep);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: background var(--t-base) var(--ease), letter-spacing var(--t-base) var(--ease);
}
.nav__cta:hover { background: var(--red-deep); letter-spacing: 0.18em; }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform var(--t-base) var(--ease), top var(--t-base) var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--charcoal-deep);
  color: var(--text-on-dark);
  padding: 2rem var(--gutter) 2.5rem;
  border-bottom: 1px solid var(--rule-on-dark);
  flex-direction: column;
  gap: 1rem;
}
.nav__drawer .nav__link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  padding: 0.5rem 0;
}

/* Push content below fixed nav */
.has-nav-offset { padding-top: var(--nav-h); }

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.is-open .nav__drawer { display: flex; }
  .nav__cta { padding: 0.6em 1rem; font-size: 0.8125rem; }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  background-color: var(--charcoal-deep);
  color: var(--off-white);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #162819 0%, #1e3528 100%);
  background-image:
    radial-gradient(at 70% 30%, rgba(184, 151, 90, 0.20) 0%, transparent 60%),
    radial-gradient(at 20% 80%, rgba(184, 151, 90, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, #162819 0%, #1a2f22 60%, #1e3528 100%);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.72) 100%),
    linear-gradient(95deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.08) 60%, rgba(0,0,0,0.35) 100%);
  z-index: -1;
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 9rem var(--gutter) 4.5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-weight: 400;
  color: var(--gold-soft);
  margin-bottom: 1.75rem;
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 1.25rem;
  max-width: 22ch;
  text-wrap: balance;
}
.hero__headline em { white-space: nowrap; }
.hero__headline em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero__subhead {
  font-family: var(--font-sans);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: rgba(240, 237, 230, 0.82);
  max-width: 48ch;
  margin: 0 0 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.75rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin: 0 0 2rem;
  max-width: 760px;
}
.hero__trust-item {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--off-white);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
}
.hero__trust-item strong {
  font-weight: 600;
  letter-spacing: 0.005em;
}
.hero__trust-item span {
  color: rgba(240, 237, 230, 0.6);
  font-size: 0.8125rem;
}
.hero__trust-divider {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 0;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__ctas .btn { min-width: 220px; }

@media (max-width: 640px) {
  .hero__inner { padding: 7rem var(--gutter) 3rem; }
  .hero__trust { gap: 0.6rem 1.2rem; }
  .hero__ctas .btn { min-width: 0; flex: 1 1 100%; }
}

/* =========================================================
   Solution page — full-bleed video hero
   ========================================================= */
.solution-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal-deep);
}
.solution-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}
.solution-hero__overlay {
  position: absolute;
  inset: 0;
  /* Shane (2026-06-26 "Website notes"): hero videos read too dark / filtered.
     Lightened the scrim — kept enough at the bottom-left where the copy sits
     (copy also carries a text-shadow), let the video show through elsewhere. */
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.16) 50%, rgba(0,0,0,0.62) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.56) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.04) 100%);
  z-index: -1;
}
.solution-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 4rem;
  color: var(--off-white);
}
.solution-hero__copy {
  max-width: 48ch;
}
.solution-hero__chapter {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-weight: 400;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
}
.solution-hero__chapter::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.solution-hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--off-white);
  margin: 0 0 1.25rem;
  max-width: 22ch;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(10,18,14,0.55);
}
.solution-hero__title em {
  font-style: italic;
  color: var(--gold-soft);
}
.solution-hero__lead {
  font-family: var(--font-sans);
  font-size: var(--fs-lead);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(240,237,230,0.95);
  max-width: 46ch;
  margin: 0;
  text-shadow: 0 1px 12px rgba(10,18,14,0.6);
}
@media (max-width: 640px) {
  .solution-hero { min-height: 60vh; }
  .solution-hero__inner { padding: 7rem var(--gutter) 3rem; }
}

/* =========================================================
   Trust strip (Section 2 — between hero and explainer)
   ========================================================= */

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.trust-strip::before,
.trust-strip::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bronze-pale), transparent);
  pointer-events: none;
}
.trust-strip::before { top: 0; }
.trust-strip::after { bottom: 0; }
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 3rem 0;
}
.trust-strip__item {
  padding: 0 1.75rem;
  border-left: 1px solid var(--rule);
  transition: background var(--t-base) var(--ease);
}
.trust-strip__item:first-child { border-left: 0; padding-left: 0; }
.trust-strip__item:last-child { padding-right: 0; }
.trust-strip__item:hover { background: rgba(184, 151, 90, 0.04); }
.trust-strip__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--stone-lt, #8a8580);
  margin-bottom: 1rem;
  font-weight: 400;
}
.trust-strip__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}
.trust-strip__note {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 26ch;
}

@media (max-width: 880px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
  .trust-strip__item { padding: 0 1rem; }
  .trust-strip__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .trust-strip__item:nth-child(2) { border-left: 0; padding-left: 0; }
}
@media (max-width: 500px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-strip__item { border-left: 0; padding: 0; border-top: 1px solid var(--rule); padding-top: 1.25rem; }
  .trust-strip__item:first-child { border-top: 0; padding-top: 0; }
}

/* =========================================================
   Explainer (Section 3 — 3-step HEI in 10s)
   ========================================================= */

.explainer { background: var(--off-white); }

.explainer__head {
  margin-bottom: 5rem;
  max-width: 760px;
}
.explainer__head h2 {
  margin: 0 0 2rem;
  max-width: 14ch;
}
.explainer__head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 2rem;
  opacity: 0.55;
}
.explainer__head p {
  margin: 0;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.explainer__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.explainer__steps--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .explainer__steps--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .explainer__steps--four { grid-template-columns: 1fr; }
}
.card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 1.5rem;
  display: block;
}
.explainer__steps::before {
  content: '';
  position: absolute;
  top: 28px;                                   /* center of 56px square (3-step variant) */
  left: 0; right: 0;
  height: 1px;
  /* Gradient stops aligned to the centers of the outer step__num
     squares: for 3 columns that's 16.66% / 83.33%, for 4 columns
     it's 12.5% / 87.5%. We default to 3-col here and override
     below for the four-col variant. */
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 16.66%,
    var(--gold) 83.33%,
    transparent 100%);
  opacity: 0.85;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              opacity 1.2s ease 0.25s;
}
.explainer__steps--four::before {
  /* 4-step variant has the .step__when time-range label
     (~15px tall + 16px margin) pushing the square down, so
     the connector line drops to align with the new center. */
  top: 60px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 12.5%,
    var(--gold) 87.5%,
    transparent 100%);
}
/* Drawn when the steps grid scrolls into view (site.js toggles
   `.is-in` via IntersectionObserver). */
.explainer__steps.is-in::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .explainer__steps::before { transform: scaleX(1); transition: none; }
}

.step {
  position: relative;
  z-index: 1;
}

/* Time-range marker (only used in the 4-step explainer on
   how-it-works). Small-caps Jost above the numbered square,
   colored bronze, ultra-wide-tracked. Sits inside .step. */
.step__when {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--white);                    /* cream — matches page bg */
  border: 1px solid var(--gold-soft);          /* soft bronze hairline */
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal);                      /* forest numeral, not gold */
  margin-bottom: 1.5rem;
  /* Subtle inner stroke gives a 'stamp' / seal-like feel */
  box-shadow: inset 0 0 0 4px var(--white),
              inset 0 0 0 5px rgba(184, 151, 90, 0.18);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s ease;
}
.step:hover .step__num {
  transform: translateY(-2px);
  border-color: var(--gold);
}

/* Minimal variant — drops the numbered boxes and the connector
   line entirely. Each step reduces to STEP LABEL · TITLE · BODY
   with a small bronze rule beneath the label for hierarchy.
   Used on the homepage 3-step explainer (per Will, 2026-05-13:
   "Maybe we just remove the boxes and the 123?"). */
.explainer__steps--minimal::before { display: none; }
.explainer__steps--minimal .step__num { display: none; }
.explainer__steps--minimal { gap: 4rem 3rem; }
.explainer__steps--minimal .step__label {
  position: relative;
  padding-top: 1rem;
  margin-bottom: 1rem;
  color: var(--stone-lt);
  font-weight: 400;
  letter-spacing: 0.32em;
}
.explainer__steps--minimal .step__label::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.explainer__steps--minimal .step__title {
  margin-bottom: 1rem;
}
@media (max-width: 880px) {
  .explainer__steps--minimal { gap: 2.5rem; }
}
.step__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
}
.step__body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 36ch;
}

.explainer__footer {
  margin-top: 3.5rem;
  text-align: center;
}

@media (max-width: 880px) {
  .explainer__head { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 3rem; }
  .explainer__steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .explainer__steps::before { display: none; }
}

/* =========================================================
   Solutions (Section 4 — dark Restore / Revive / Relax)
   ========================================================= */

.solutions { background: var(--charcoal); color: var(--text-on-dark); }

.solutions__head {
  margin-bottom: 5rem;
  max-width: 760px;
}
.solutions__head h2 {
  margin: 0 0 2rem;
  max-width: 16ch;
  color: var(--off-white);
}
.solutions__head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 2rem;
  opacity: 0.55;
}
.solutions__head p {
  margin: 0;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.01em;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution {
  background: var(--charcoal-soft);
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 2px solid var(--gold);
  transition: transform var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.solution:hover { background: #2c4c3e; transform: translateY(-3px); border-top-color: var(--gold-soft); }
.solution[data-tone="restore"] { border-top-color: var(--gold-soft); }
.solution[data-tone="revive"]  { border-top-color: var(--gold); }
.solution[data-tone="relax"]   { border-top-color: var(--bronze-pale); }
.solution .link-arrow:not(.link-arrow--red) { color: var(--gold-soft); }
.solution .link-arrow:not(.link-arrow--red):hover { color: var(--white); }
.solution .link-arrow--red { color: var(--bronze-pale); }
.solution .link-arrow--red:hover { color: var(--white); }

.solution__who {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--off-white);
  margin: 0 0 1.75rem;
  min-height: 3.4em;
}
.solution__name {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold-soft);
  margin: 0 0 0.75rem;
  display: block;
}

.solution__terms {
  list-style: none;
  margin: 0 0 2rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--rule-on-dark);
  display: grid;
  gap: 0.75rem;
}
.solution__terms li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
}
.solution__terms li strong {
  color: var(--off-white);
  font-weight: 500;
  text-align: right;
}

.solution__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-on-dark);
}

@media (max-width: 880px) {
  .solutions__head { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 3rem; }
  .solutions__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .solution__who { min-height: 0; }
}

/* =========================================================
   Comparison (Section 5)
   ========================================================= */

.compare__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.compare__head h2 { margin: 0 0 1rem; }
.compare__head p { margin: 0; }

.compare__wrap {
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  overflow-x: auto;
}

.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-family: var(--font-sans);
}
.compare th, .compare td {
  padding: 1.05rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
  font-size: 0.9375rem;
}
.compare thead th {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--charcoal);
  background: var(--off-white-warm);
}
.compare thead th.is-leap {
  color: var(--charcoal);
  background: var(--charcoal);
  color: var(--off-white);
}
.compare tbody td.is-leap {
  background: rgba(184, 151, 90, 0.07);
  font-weight: 500;
  color: var(--charcoal);
  border-left: 2px solid var(--red);
  border-right: 2px solid var(--red);
}
.compare tbody tr:first-child td.is-leap { border-top: 2px solid var(--red); }
.compare tbody tr:last-child td.is-leap { border-bottom: 2px solid var(--red); }
.compare tbody td:first-child {
  font-weight: 500;
  color: var(--charcoal);
}
.compare tbody tr:last-child td { border-bottom: 0; }

/* Shane (2026-06-07): added a "Check my eligibility" button under the
   table, with the full-comparison link below it. */
.compare__footer {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* =========================================================
   Social proof (Section 6)
   ========================================================= */

.social { background: var(--off-white-warm); }

.social__head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.social__head h2 { margin: 0; }

.social__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.quote {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  position: relative;
}
.quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  opacity: 0.35;
}
.quote__text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
}
.quote__attr {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.quote__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.quote__meta {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.social__trust {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.social__trust-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--text-muted);
}
.social__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  opacity: 0.7;
}
.social__badge {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  border: 1px solid var(--rule);
  padding: 0.65rem 1.1rem;
  font-style: italic;
}

.social__bridge {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  color: var(--charcoal);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

@media (max-width: 880px) {
  .social__quotes { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* =========================================================
   Bottom CTA (Section 7 — close, mirror of hero)
   ========================================================= */

/* Shane (2026-06-07): drop the dark-green closing block; repeat the
   lighter linen surface used by the section above (.section--off). */
.close {
  background: var(--off-white);
  color: var(--text);
  padding-top: clamp(5rem, 3rem + 6vw, 8rem);
  padding-bottom: clamp(5rem, 3rem + 6vw, 8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.close::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 30% 20%, rgba(184, 151, 90, 0.10) 0%, transparent 50%),
    radial-gradient(at 80% 80%, rgba(184, 151, 90, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.close__inner { position: relative; }
.close__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.close__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 1.4rem + 3vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  max-width: 22ch;
  margin: 0 auto 2.5rem;
  color: var(--charcoal);
}
.close__headline em { font-style: italic; color: rgba(30,53,40,0.45); }
.close__ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.close__ctas .btn { min-width: 220px; }

@media (max-width: 640px) {
  .close__ctas .btn { min-width: 0; width: 100%; }
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--charcoal-deep);
  color: var(--text-on-dark-muted);
  padding: 4rem 0 2rem;
  font-size: 0.875rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-on-dark);
}

.footer__brand {
  display: inline-block;
  position: relative;
  margin: 0 0 1rem;
  padding-bottom: 8px;
}
.footer__brand-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer__brand::after {
  content: '';
  position: absolute;
  left: 0; right: 60%; bottom: 0;
  height: 1px;
  background: var(--gold);
}
.footer__tag {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-on-dark-muted);
  max-width: 32ch;
  margin: 1.25rem 0 1.5rem;
}

.footer__lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule-on-dark);
}
.footer__lang button {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.55em 1em;
  color: var(--text-on-dark-muted);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.footer__lang button.is-current {
  background: var(--off-white);
  color: var(--charcoal);
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold-soft);
  margin: 0 0 1.25rem;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer__col a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--off-white); }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
}
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--off-white); }

@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =========================================================
   Page header (interior pages)
   ========================================================= */

.page-head {
  background: var(--charcoal);
  color: var(--off-white);
  padding: clamp(7rem, 5rem + 4vw, 10rem) 0 clamp(3rem, 2rem + 3vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 80% 20%, rgba(184, 151, 90, 0.14) 0%, transparent 55%),
    radial-gradient(at 10% 90%, rgba(184, 151, 90, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-head__inner { position: relative; }
.page-head__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
  display: block;
}
.page-head__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 1.6rem + 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  max-width: 20ch;
  margin: 0 0 1.5rem;
  color: var(--off-white);
}
.page-head__title em { font-style: italic; color: var(--gold-soft); }
.page-head__lead {
  font-family: var(--font-sans);
  font-size: var(--fs-lead);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(240, 237, 230, 0.78);
  margin: 0;
}

/* =========================================================
   Prose blocks (for interior pages)
   ========================================================= */

.prose {
  max-width: 68ch;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  margin: 3rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  margin: 2.25rem 0 0.75rem;
}
.prose p {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 1.1em;
  color: var(--text);
}
.prose ul {
  margin: 0 0 1.25em;
  padding-left: 1.25rem;
}
.prose li {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 0.4em;
}

/* =========================================================
   Cards (for Learn / Mission / etc.)
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.card:hover { border-color: var(--charcoal); transform: translateY(-2px); }
.card__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}
.card__body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}
.card__cta { margin-top: auto; }

@media (max-width: 880px) {
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
}

/* =========================================================
   Worked example (used on solution pages)
   ========================================================= */

.example {
  background: var(--off-white);
  padding: clamp(2rem, 1rem + 3vw, 3.5rem);
  border-left: 4px solid var(--red);
}
.example__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1rem;
}
.example__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2rem);
  margin: 0 0 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}
.example__rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.example__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.example__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.6rem 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border-bottom: 1px dashed var(--rule);
}
.example__line:last-child { border-bottom: 0; }
.example__line strong {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
}
.example__total {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--red);
}

@media (max-width: 720px) {
  .example__rows { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* =========================================================
   FAQ accordion
   ========================================================= */

.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item:first-child { border-top: 1px solid var(--rule); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--charcoal);
}
.faq__q::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--t-base) var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.faq__a-inner { padding: 0 0 1.75rem; }
.faq__item.is-open .faq__a { max-height: 600px; }

/* =========================================================
   Pre-qual widget
   ========================================================= */

.prequal {
  max-width: 640px;
  margin: 0 auto;
  background: var(--off-white);
  padding: clamp(2rem, 1rem + 3vw, 3.5rem);
  position: relative;
}
.prequal__progress {
  height: 2px;
  background: var(--rule);
  margin: -1px 0 2rem;
  position: relative;
}
.prequal__progress-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--red);
  transition: width var(--t-slow) var(--ease);
}
.prequal__step { display: none; }
.prequal__step.is-active { display: block; }

.prequal__count {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.prequal__q {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
}
.prequal__choices {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.prequal__choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.prequal__choice::after {
  content: '\2192';
  color: var(--text-muted);
  transition: color var(--t-fast), transform var(--t-fast);
}
.prequal__choice:hover {
  border-color: var(--charcoal);
}
.prequal__choice.is-selected {
  border-color: var(--red);
  background: rgba(200, 35, 44, 0.04);
}
.prequal__choice.is-selected::after {
  color: var(--red);
  transform: translateX(4px);
}

.prequal__input {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.prequal__input:focus { outline: none; border-color: var(--charcoal); }

.prequal__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.prequal__back {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}
.prequal__back:hover { color: var(--charcoal); }

.prequal__meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prequal__meta-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.prequal__meta-item + .prequal__meta-item::before {
  content: "·";
  margin-right: 1rem;
  color: var(--rule);
}
.prequal__nav--back-only { justify-content: flex-start; }

.prequal__result {
  text-align: center;
}
.prequal__match {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1rem;
}
.prequal__match-name {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 1rem;
}

/* =========================================================
   Utilities
   ========================================================= */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

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

/* =========================================================
   Reveal-on-scroll
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal--delay-1.is-in { transition-delay: 0.10s; }
.reveal--delay-2.is-in { transition-delay: 0.22s; }
.reveal--delay-3.is-in { transition-delay: 0.34s; }

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

.glossary { margin: 0; }
.glossary dt {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  color: var(--charcoal);
}
.glossary dt:first-child { margin-top: 0; }
.glossary dd {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.glossary dd:last-child { border-bottom: 0; }

/* =========================================================
   Meeting-update overrides (2026-05-11 walkthrough)
   - Cormorant Garamond + Jost replace Source Serif 4 + Inter.
   - Forest / linen / bronze palette replaces charcoal / red / gold.
   - Inter→Jost sweep: drop weights 600→500 and 500→400 + open
     letter-spacing on uppercase/eyebrow labels (Jost reads
     elegant in the 300-500 range, chunky at 600+).
   - text-wrap: balance prevents the orphan-word issue Will
     called out ("I hate when one word is just hanging").
   - Hero gets a Sartori-style drawn bronze rule across the
     photo, echoing Ashley's mockup.
   ========================================================= */

h1, h2, h3, .display, .h1, .h2, .h3,
.hero__headline, .close__headline,
.page-head__title, .step__title {
  text-wrap: balance;
}

.eyebrow,
.hero__eyebrow,
.close__eyebrow,
.page-head__eyebrow,
.trust-strip__label,
.step__label,
.solution__name,
.footer__col h4,
.compare thead th,
.social__trust-label {
  font-weight: 400;
}

.quote__name,
.btn,
.nav__cta {
  font-weight: 500;
}

.glossary dt { font-weight: 400; letter-spacing: -0.01em; }

/* Hero — Sartori chalk-line accent + crisper italic em */
.hero__inner { position: relative; }
.hero__inner::before {
  content: '';
  position: absolute;
  left: var(--gutter);
  right: 40%;
  bottom: calc(100% - 8.25rem);
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(184,151,90,0.32) 20%,
    rgba(184,151,90,0.32) 80%,
    transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: leap-draw 1.8s 0.6s cubic-bezier(0.87,0,0.13,1) forwards;
  pointer-events: none;
}
@keyframes leap-draw { to { transform: scaleX(1); } }

.hero__headline em {
  /* Was 0.62 — too faint over the bright photo (Shane 2026-06-07).
     Near-solid cream so "Activated." reads as the punchline it is. */
  color: rgba(247,243,236,0.95);
  white-space: normal;
}

/* Close section em — muted forest now that the block is light (Shane 2026-06-07) */
.close__headline em { color: rgba(30,53,40,0.45); }

/* Page-head em — same on dark interior pages */
.page-head__title em { color: rgba(244,240,232,0.58); }

/* Compare: keep Leap column emphasis but in bronze, not red,
   plus a clearer column label so it reads on cream. */
.compare thead th.is-leap {
  background: var(--charcoal);
  color: var(--off-white);
  letter-spacing: 0.22em;
}

/* Social badge: italics on cream looks like a real seal,
   not a chip. Lighten border to bronze-pale. */
.social__badge {
  border-color: var(--bronze-pale);
  background: rgba(250,248,244,0.5);
}

/* =========================================================
   Editorial page-head — cream + portrait image variant
   Use on interior pages that need a quieter, article-style
   hero (vs. the homepage marketing hero). Pair `.page-head`
   with `.page-head--editorial` and `.page-head--with-image`.
   ========================================================= */

.page-head--editorial {
  background: var(--white);
  color: var(--charcoal);
  padding: clamp(6rem, 4rem + 5vw, 9rem) 0 clamp(4rem, 2.5rem + 4vw, 6rem);
}
.page-head--editorial:not(.page-head--with-image) {
  padding-bottom: clamp(2rem, 1rem + 2vw, 3rem);
}
.page-head--editorial::before { display: none; }
.page-head--editorial .page-head__eyebrow,
.page-head--editorial .page-head__chapter { color: var(--gold); }
.page-head--editorial .page-head__title { color: var(--charcoal); }
.page-head--editorial .page-head__title em { color: rgba(30,53,40,0.42); }
.page-head--editorial .page-head__lead { color: var(--text-muted); }

.page-head__chapter {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.page-head__chapter::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.page-head--with-image .page-head__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: start;
}
.page-head--with-image .page-head__copy { padding-top: 1.5rem; }
.page-head__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--bronze-pale);
  box-shadow:
    0 1px 0 rgba(184,151,90,0.10),
    0 30px 60px -28px rgba(30,53,40,0.22);
}
.page-head__image-wrap::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.page-head__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}
@media (max-width: 880px) {
  .page-head--with-image .page-head__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-head__image-wrap { aspect-ratio: 4 / 5; max-width: 480px; }
  .page-head__image-wrap::before { display: none; }
}

/* Mobile-app section — centered hero block on cream */
.mobile-app__inner { text-align: center; }
.mobile-app__inner .eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.mobile-app__title {
  color: var(--charcoal);
  max-width: 22ch;
  margin: 0 auto 1.25rem;
}
.mobile-app__lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.25rem;
}
.mobile-app__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer trust strip — replaces former .social__trust */
.footer__trust {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--rule-on-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 1.5rem;
}
/* Keep the label tied to the badge cluster rather than floating
   off on its own at the far edge. */
.footer__trust-label { margin-right: 0.5rem; }
.footer__trust-label {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--text-on-dark-muted);
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
}
.footer__badge {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(184, 151, 90, 0.28);
}

/* Smoother selection on the new palette */
::selection { background: var(--gold); color: var(--charcoal-deep); }

/* =========================================================
   Custom cursor — bronze dot + outer ring.
   Only activates when html.has-custom-cursor (set by site.js
   on devices with fine pointer and no reduce-motion preference).
   Mirrors Ashley's prototype Sartori-cursor.
   ========================================================= */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  display: none;
}
html.has-custom-cursor { cursor: none; }
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor [role="button"],
html.has-custom-cursor input,
html.has-custom-cursor select,
html.has-custom-cursor textarea,
html.has-custom-cursor label,
html.has-custom-cursor summary { cursor: none; }
html.has-custom-cursor .cursor-dot,
html.has-custom-cursor .cursor-ring { display: block; }

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 60ms linear, background 200ms var(--ease);
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.55;
  transition: width 300ms var(--ease), height 300ms var(--ease),
              opacity 300ms var(--ease), border-color 300ms var(--ease),
              transform 220ms var(--ease);
}
.cursor-ring.is-hover {
  width: 60px; height: 60px;
  opacity: 0.9;
  border-color: var(--gold-soft);
}
.cursor-ring.is-down {
  width: 28px; height: 28px;
  opacity: 1;
}
/* Hide custom cursor over text inputs so users see a real caret. */
html.has-custom-cursor input:focus ~ .cursor-dot,
html.has-custom-cursor textarea:focus ~ .cursor-dot { opacity: 0; }

/* =========================================================
   Homepage feedback pass — Shane Baldino (2026-05-20 doc +
   2026-05-19 walkthrough).
   GOAL: "significantly brighter and lighter." Dark green now
   used sparingly (closing CTA only). Real home photography in
   the hero. HEI -> HEA rebrand. New nav + footer structure.
   ========================================================= */

/* ---- Hero: brighter. Real sunlit photo + a much lighter scrim,
   weighted to the bottom only so the cream headline stays legible
   without darkening the whole frame. ---- */
/* Shane (2026-06-26 "Website notes"): hero photo reads too dark / filtered.
   Pulled the scrim way down — just enough weight at the bottom-left, where the
   cream copy sits, to keep it legible (copy also carries a text-shadow). The
   sunlit photo now shows through brightly across most of the frame. */
.hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.00) 30%,
      rgba(0,0,0,0.18) 72%,
      rgba(0,0,0,0.52) 100%),
    linear-gradient(95deg,
      rgba(0,0,0,0.42) 0%,
      rgba(0,0,0,0.18) 34%,
      rgba(0,0,0,0.04) 62%,
      rgba(0,0,0,0) 78%);
}
.hero__headline,
.hero__subhead {
  text-shadow: 0 1px 30px rgba(15, 22, 17, 0.58);
}
/* Subhead = the one-line promise; body = the supporting paragraph.
   Split per Shane's 2026-06-26 "Website notes" (separate subhead + body copy). */
.hero__subhead {
  font-weight: 500;
  color: rgba(247, 243, 236, 0.96);
  margin: 0 0 1rem;
}
.hero__body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(240, 237, 230, 0.86);
  max-width: 52ch;
  margin: 0 0 2rem;
  text-shadow: 0 1px 30px rgba(15, 22, 17, 0.58);
}

/* ---- Solutions, light variant (homepage only — interior
   solutions.html keeps the dark treatment until the all-pages
   pass). Cream section, white cards, forest text. ---- */
.solutions--light {
  background: var(--off-white);
  color: var(--text);
}
.solutions--light .solutions__head h2 { color: var(--charcoal); }
.solutions--light .solutions__head p { color: var(--text-muted); }
/* Give the long "Three solutions..." headline room so it breaks
   into a few balanced lines instead of a cramped 16ch column. */
.solutions--light .solutions__head h2 {
  max-width: none;
  line-height: 1.14;
  text-wrap: balance;
}
.solutions--light .solution {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 48px -34px rgba(30, 53, 40, 0.28);
}
.solutions--light .solution:hover {
  background: var(--white);
  border-color: var(--rule);
  border-top-color: var(--gold-soft);
  box-shadow: 0 30px 56px -32px rgba(30, 53, 40, 0.34);
}
.solutions--light .solution__who { color: var(--charcoal); }
.solutions--light .solution__name { color: var(--gold); }
.solutions--light .solution__terms {
  border-top-color: var(--rule);
}
.solutions--light .solution__terms li { color: var(--text-muted); }
.solutions--light .solution__terms li strong { color: var(--charcoal); }
.solutions--light .solution__ctas { border-top-color: var(--rule); }
.solutions--light .solution .link-arrow:not(.link-arrow--red) { color: var(--charcoal); }
.solutions--light .solution .link-arrow:not(.link-arrow--red):hover { color: var(--red); }
.solutions--light .solution .link-arrow--red { color: var(--red); }
.solutions--light .solution .link-arrow--red:hover { color: var(--charcoal); }

/* ---- Explainer: supporting paragraph below the 3 steps ---- */
.explainer__footer { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; margin-top: 3rem; }
/* Tighten the explainer -> solutions boundary: the stacked section
   paddings were leaving a ~15rem void that read as "off". */
.explainer { padding-bottom: clamp(3rem, 2rem + 2.5vw, 4.5rem); }
.solutions--light { padding-top: clamp(3rem, 2rem + 2.5vw, 4.5rem); }
/* Same fix as the solutions heading: the 14ch cap forced this
   into a cramped 4-line wrap. Give it room for two lines. */
.explainer .explainer__head h2 {
  max-width: none;
  line-height: 1.14;
  text-wrap: balance;
}
.explainer__note {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0;
  text-align: center;
}

/* ---- Closing CTA: now a light linen module (Shane 2026-06-07),
   matching the section above. Lead line beneath the headline. ---- */
.close__lead {
  font-family: var(--font-sans);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

/* ---- Disclaimer band — dark legal fine print. Reads as the top
   of the footer region, not a bright stripe between dark sections. ---- */
.disclaimer {
  background: var(--charcoal-deep);
  padding: 1.75rem 0;
}
.disclaimer__text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--text-on-dark-muted);
  margin: 0;
}

/* ---- Nav: add "Sign In" alongside "Apply Now" ---- */
.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 0.4rem + 1vw, 1.5rem);
}
.nav__signin {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.62);
  transition: color var(--t-fast) var(--ease), letter-spacing var(--t-base) var(--ease);
}
.nav__signin:hover { color: var(--white); letter-spacing: 0.28em; }
.nav__link--cta { color: var(--gold-soft); }

@media (max-width: 880px) {
  .nav__actions .nav__signin { display: none; }   /* Sign In lives in the drawer on mobile */
}

/* ---- Footer: 4-column grid (brand + Solutions / Insights /
   Company), linked headers, social row. ---- */
.footer__top { grid-template-columns: 1.6fr repeat(3, 1fr); }
.footer__col h4 a {
  color: var(--gold-soft);
  transition: color var(--t-fast) var(--ease);
}
.footer__col h4 a:hover { color: var(--off-white); }
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0 0 1.25rem;
}
.footer__social a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid rgba(184, 151, 90, 0.32);
  padding-bottom: 1px;
  transition: color var(--t-fast) var(--ease);
}
.footer__social a:hover { color: var(--gold-soft); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__contact a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  transition: color var(--t-fast) var(--ease);
}
.footer__contact a:hover { color: var(--off-white); }

@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ── Two-tier dropdown navigation ────────────────────────────────────── */
.nav__item--has-dropdown { position: relative; }
.nav__item--has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 200px;
  background: var(--charcoal);
  border: 1px solid rgba(184,151,90,0.18);
  border-radius: 4px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  white-space: nowrap;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-bottom-color: rgba(184,151,90,0.3);
}
.nav__dropdown li { display: block; }
.nav__dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__dropdown a:hover {
  color: var(--gold-soft);
  background: rgba(255,255,255,0.04);
}

/* Mobile drawer: sub-links shown indented below parent */
.nav__drawer-sub {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(184,151,90,0.3);
  margin: 0.25rem 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav__drawer-sub a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.15s ease;
}
.nav__drawer-sub a:hover { color: var(--gold-soft); }

/* =========================================================
   PR & Media — "As featured in" press logo strip
   (Shane 2026-06-26 "Website notes": add the outlet logos)
   ========================================================= */
.press-strip {
  padding: 3rem 0 1rem;
  border-bottom: 1px solid var(--rule, rgba(22,24,27,0.1));
}
.press-strip__label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-soft, #6b6b63);
  margin: 0 0 1.75rem;
}
.press-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.25rem;
}
.press-strip__logo {
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.press-strip__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
/* Forbes ships as a solid black rounded tile — show it square, no grayscale. */
.press-strip__logo--tile {
  height: 46px;
  filter: none;
  border-radius: 8px;
}
@media (max-width: 640px) {
  .press-strip__logos { gap: 1.75rem 2rem; }
  .press-strip__logo { height: 26px; }
  .press-strip__logo--tile { height: 36px; }
}
