/* ============================================================
   SHIFT EXECUTIVE PARTNERS — Editorial single-page stylesheet
   Black & white + one gold accent. Cormorant Garamond + Host Grotesk.
   ============================================================ */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #fafaf7;
  --gold: #b8860b;
  --gold-soft: #c9a961;
  --gray-line: #e5e5e5;
  --gray-text: #6b6b6b;
  --gray-faint: #b9b9b4;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Host Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1280px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--dark { background: var(--black); color: var(--white); }
.section--offwhite { background: var(--off-white); }

/* ---------- Typography ---------- */
.h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.h2--italic { font-style: italic; }
.h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.25;
}
.body-lg {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.55;
}
.label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-text);
}
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 700; }
.tm {
  font-family: var(--sans);
  color: var(--gold);
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  font-style: normal;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section--dark .eyebrow { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.05rem 2.2rem;
  min-height: 44px;
  border: 1.5px solid var(--black);
  background: var(--black);
  color: var(--white);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn--ghost { background: transparent; color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--light:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--gray-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__logo { display: inline-flex; align-items: center; }

/* Real SHIFT logo — image-based, responsive */
.logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 100%;
}
.logo-img--light {
  height: 48px;
}
@media (max-width: 640px) {
  .logo-img { height: 32px; }
  .logo-img--light { height: 40px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.4rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--black);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__cta:hover { background: var(--black); color: var(--white); }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--black);
  color: var(--white);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x) 6rem;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 2.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s var(--ease);
}
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu .mobile-cta { color: var(--gold-soft); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(4rem, 12vw, 9rem);
  padding-bottom: clamp(4rem, 12vw, 9rem);
}
.hero__inner { max-width: 980px; }
.hero h1 { margin-bottom: 2rem; }
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.3;
  color: var(--black);
  max-width: 740px;
  margin-bottom: 2.75rem;
}
.hero__rule {
  width: 64px; height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { text-align: center; }
.manifesto__stack {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
.manifesto__line {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  line-height: 1.42;
}
.manifesto__line--accent { color: var(--gold-soft); }
.manifesto__line--muted {
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: rgba(255,255,255,0.66);
  font-style: normal;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
}
.manifesto__spacer { height: clamp(1rem, 3vw, 2.5rem); }
.manifesto__final {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  margin-top: 0.4em;
}

/* ============================================================
   THE PROBLEM
   ============================================================ */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-line);
}
.problem__item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--gray-line);
}
.problem__item:nth-child(odd) { padding-right: clamp(1.5rem, 4vw, 3.5rem); }
.problem__item:nth-child(even) { padding-left: clamp(1.5rem, 4vw, 3.5rem); border-left: 1px solid var(--gray-line); }
.problem__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray-faint);
  flex-shrink: 0;
  min-width: 2.4rem;
}
.problem__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.2;
}

/* ============================================================
   THE MODEL — SIX GEARS
   ============================================================ */
.model__intro {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.model__intro p { margin-top: 1.25rem; color: var(--gray-text); }
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--black);
}
.gear-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  min-height: 260px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
/* remove edge borders to avoid doubling */
.gear-grid .gear-card:nth-child(3n) { border-right: none; }
.gear-grid .gear-card:nth-child(n+4) { } /* keep */
.gear-grid .gear-card:nth-last-child(-n+3) { border-bottom: none; }
.gear-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  color: var(--gray-faint);
  margin-bottom: 1.25rem;
  transition: color 0.25s var(--ease);
}
.gear-card__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.gear-card__tag {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-text);
  transition: color 0.25s var(--ease);
}
.gear-card__cta {
  margin-top: auto;
  padding-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gear-card__cta .arrow { transition: transform 0.25s var(--ease); }
.gear-card:hover { background: var(--black); color: var(--white); }
.gear-card:hover .gear-card__num { color: var(--gold-soft); }
.gear-card:hover .gear-card__tag { color: rgba(255,255,255,0.6); }
.gear-card:hover .gear-card__cta { color: var(--gold-soft); }
.gear-card:hover .gear-card__cta .arrow { transform: translateX(5px); }

/* ============================================================
   RESULTS
   ============================================================ */
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
}
.result__stat {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.95;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.result__desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.35;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-line);
  color: var(--black);
}

/* ============================================================
   IMAGINACTIONS ADVANTAGE
   ============================================================ */
.imagin__head { max-width: 900px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.imagin__title {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.imagin__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  margin-top: 1.75rem;
}
.factors { border-top: 1px solid rgba(201,169,97,0.4); }
.factor {
  display: flex;
  align-items: baseline;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(201,169,97,0.4);
  transition: padding-left 0.3s var(--ease);
}
.factor:hover { padding-left: clamp(0.5rem, 2vw, 1.5rem); }
.factor__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold-soft);
  flex-shrink: 0;
  min-width: 3rem;
  letter-spacing: 0.05em;
}
.factor__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.howwework__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.howwework__copy p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.howwework__copy p:first-of-type { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.35; }
.howwework__copy .tm-word { font-style: normal; }

.stepper__label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.stepper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.stepper__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
}
.stepper__node {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--white);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.stepper__step:hover .stepper__node { background: var(--gold); color: var(--white); border-color: var(--gold); }
.stepper__line {
  position: absolute;
  left: 26px; top: 36px; bottom: 36px;
  width: 1.5px;
  background: var(--gray-line);
  z-index: 1;
}
.stepper__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

/* ============================================================
   FIND YOUR GEAR
   ============================================================ */
.findgear__list {
  border-top: 1px solid var(--gray-line);
}
.findgear__row {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--gray-line);
  transition: background 0.2s var(--ease);
}
.findgear__row:hover { background: var(--off-white); }
.findgear__gnum {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.findgear__gname {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.05;
}
.findgear__desc {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--gray-text);
}
.findgear__cta-wrap { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */
.prefooter { text-align: center; }
.prefooter__text {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.25;
  max-width: 880px;
  margin: 0 auto 2.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--white); padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: 2.5rem; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer__logo { display: inline-block; margin-bottom: 1.5rem; }
.footer__tagline { color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 320px; line-height: 1.55; }
.footer__email {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
  transition: color 0.2s var(--ease);
  word-break: break-word;
}
.footer__email:hover { color: var(--gold-soft); }
.footer__email-label { display: block; font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-soft); margin-bottom: 1rem; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 1.75rem;
}
.footer__nav a {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s var(--ease);
}
.footer__nav a:hover { color: var(--gold-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-grid .gear-card { border-right: 1px solid var(--black); border-bottom: 1px solid var(--black); }
  .gear-grid .gear-card:nth-child(3n) { border-right: 1px solid var(--black); }
  .gear-grid .gear-card:nth-child(2n) { border-right: none; }
  .gear-grid .gear-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--black); }
  .gear-grid .gear-card:nth-last-child(-n+2) { border-bottom: none; }

  .results__grid { grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3rem); }
  .howwework__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .problem__grid { grid-template-columns: 1fr; }
  .problem__item:nth-child(odd) { padding-right: 0; }
  .problem__item:nth-child(even) { padding-left: 0; border-left: none; }

  .gear-grid { grid-template-columns: 1fr; }
  .gear-grid .gear-card { border-right: none !important; border-bottom: 1px solid var(--black) !important; min-height: auto; }
  .gear-grid .gear-card:last-child { border-bottom: none !important; }

  .results__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .result__stat { font-size: clamp(3.25rem, 18vw, 4.5rem); }

  .findgear__row { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ============================================================
   SUBPAGES — shared additions
   ============================================================ */

/* ----- Skip to content link ----- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border: 2px solid var(--gold);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; outline: none; }

/* ----- Visible focus states for keyboard users ----- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ----- Active nav indicator (gold dot + underline) ----- */
.nav__link--active { color: var(--black); }
.nav__link--active::after { width: 100%; }

/* ----- Nav fits 7 links: tighter gap + reflow breakpoint ----- */
.nav__links { gap: 1.85rem; }
@media (max-width: 1080px) and (min-width: 921px) {
  .nav__links { gap: 1.25rem; }
  .nav__link { font-size: 0.8125rem; letter-spacing: 0.06em; }
  .nav__cta { font-size: 0.8125rem; padding: 0.6rem 1rem; }
}
/* Switch to hamburger earlier so links never crowd */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* ============================================================
   SUBPAGE HERO (smaller than homepage hero)
   ============================================================ */
.subhero {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--gray-line);
}
.subhero__inner { max-width: 940px; }
.subhero__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.subhero__h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.subhero__sub {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--gray-text);
  max-width: 680px;
  margin-top: 1.5rem;
}
.subhero__rule { width: 64px; height: 2px; background: var(--gold); margin-bottom: 2rem; }

/* Generic prose block */
.prose { max-width: 760px; }
.prose p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.prose p:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.35;
}
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--black); }

/* ============================================================
   SUBPAGE: About — Executive team grid + contact form
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-line);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.team-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  min-height: 230px;
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  background: var(--white);
}
.team-grid .team-card:nth-child(3n) { border-right: none; }
.team-grid .team-card:nth-last-child(-n+3) { border-bottom: none; }
.team-card__role {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.team-card__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.65rem;
}
.team-card__bio {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gray-text);
}
.team-card__bio a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.team-card__bio a:hover { color: var(--black); }
.team-card__open {
  font-family: var(--sans);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-faint);
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.team-card__open::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.team-card--open .team-card__role { color: var(--gray-text); }

/* ----- Contact form ----- */
.contact { max-width: 720px; }
.form { margin-top: clamp(2rem, 4vw, 3rem); }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form__field { margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.form__label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.form__req { color: var(--gold); }
.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  padding: 0.9rem 1rem;
  min-height: 52px;
  transition: border-color 0.2s var(--ease);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus,
.form textarea:focus { border-color: var(--gold); outline: 3px solid var(--gold); outline-offset: 2px; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.form__check input {
  width: 20px; height: 20px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.form__check label {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-text);
}
.form button[type="submit"] { border: none; }

/* ============================================================
   SUBPAGE: Accelerator — executive board grid
   ============================================================ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--black);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.board-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.2vw, 2.25rem);
  min-height: 220px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--white);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.board-grid .board-card:nth-child(4n) { border-right: none; }
.board-grid .board-card:nth-last-child(-n+4) { border-bottom: none; }
.board-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.1rem;
}
.board-card__role {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}
.board-card__desc {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-text);
}
.board-card:hover { background: var(--black); color: var(--white); }
.board-card:hover .board-card__desc { color: rgba(255,255,255,0.65); }
.board-card:hover .board-card__num { color: var(--gold-soft); }

.pricing-note {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  max-width: 720px;
  color: var(--black);
}

/* ============================================================
   SUBPAGE: Labs — inclusions + curriculum
   ============================================================ */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--gray-line);
}
.includes-item__mark {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.includes-item__text {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.45;
  color: var(--black);
}

.curriculum { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); }
@media (min-width: 1100px) { .curriculum { grid-template-columns: 1fr 1fr; } }
.module-card {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--gray-line);
  background: var(--white);
}
.module-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 0.9;
  color: var(--gold);
  flex-shrink: 0;
}
.module-card__name {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.12;
  margin-bottom: 0.85rem;
}
.module-card__inc-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.module-card__inc {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.callout {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.callout__text {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.3;
}
.callout__text span { color: var(--gold); }

/* ============================================================
   SUBPAGE: Advisory — numbered steps
   ============================================================ */
.steps { border-top: 1px solid var(--gray-line); margin-top: clamp(2rem, 4vw, 3rem); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-bottom: 1px solid var(--gray-line);
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
  color: var(--gold);
  min-width: 2.5ch;
}
.step__title {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.step__body {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--gray-text);
  max-width: 720px;
}
.step__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   SUBPAGE: Speaking — panels + video
   ============================================================ */
.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-line);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.panel {
  padding: clamp(2rem, 3.5vw, 3rem);
  border-right: 1px solid var(--gray-line);
}
.panel:last-child { border-right: none; }
.panel__title {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.panel__body {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}
.panel__sub {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.panel__list { display: flex; flex-direction: column; gap: 0.65rem; }
.panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--black);
}
.panel__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.panel__list li strong { font-weight: 700; }
.panel__list li span { color: var(--gray-text); }

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--black);
  border: 1px solid var(--gray-line);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.speaking-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.note-soon {
  font-family: var(--sans);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-faint);
}

/* ============================================================
   SUBPAGE prefooter echo (white variant, page-relevant)
   ============================================================ */
.cta-echo { text-align: center; }
.cta-echo__text {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   SUBPAGE RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid .team-card { border-right: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
  .team-grid .team-card:nth-child(3n) { border-right: 1px solid var(--gray-line); }
  .team-grid .team-card:nth-child(2n) { border-right: none; }
  .team-grid .team-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-line); }
  .team-grid .team-card:nth-last-child(-n+2) { border-bottom: none; }

  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .board-grid .board-card { border-right: 1px solid var(--black); border-bottom: 1px solid var(--black); }
  .board-grid .board-card:nth-child(4n) { border-right: 1px solid var(--black); }
  .board-grid .board-card:nth-child(2n) { border-right: none; }
  .board-grid .board-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--black); }
  .board-grid .board-card:nth-last-child(-n+2) { border-bottom: none; }

  .panels { grid-template-columns: 1fr; }
  .panel { border-right: none; border-bottom: 1px solid var(--gray-line); }
  .panel:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .includes-grid { grid-template-columns: 1fr; }

  /* Footer link tap targets >= 44px on mobile */
  .footer__nav { gap: 0.25rem 1.75rem; }
  .footer__nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0.35rem 0; }
  .footer__email { display: inline-flex; align-items: center; min-height: 44px; }
  .footer__bottom { gap: 0.5rem; }

  .team-grid { grid-template-columns: 1fr; }
  .team-grid .team-card { border-right: none !important; border-bottom: 1px solid var(--gray-line) !important; min-height: auto; }
  .team-grid .team-card:last-child { border-bottom: none !important; }

  .board-grid { grid-template-columns: 1fr; }
  .board-grid .board-card { border-right: none !important; border-bottom: 1px solid var(--black) !important; min-height: auto; }
  .board-grid .board-card:last-child { border-bottom: none !important; }

  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .module-card { flex-direction: column; gap: 0.75rem; }
}

/* ============================================================
   V2 ADDITIONS — Engagements dropdown nav, Executive team,
   Legacy page. Appended below the original stylesheet.
   ============================================================ */

/* ---------- Engagements dropdown (desktop) ---------- */
.nav__item--has-dropdown { position: relative; }
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: inherit;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__item--has-dropdown:hover .nav__dropdown-toggle,
.nav__dropdown-toggle:focus-visible { color: var(--gold); }
.nav__item--has-dropdown:hover .nav__dropdown-toggle::after,
.nav__item--has-dropdown.is-active .nav__dropdown-toggle::after { width: 100%; }
.nav__caret {
  font-size: 0.6em;
  line-height: 1;
  transition: transform 0.25s var(--ease);
  position: relative;
  top: 1px;
}
.nav__item--has-dropdown:hover .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  box-shadow: 0 18px 50px rgba(10,10,10,0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 120;
}
/* hover bridge so the menu doesn't close in the gap */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown,
.nav__item--has-dropdown.is-open-click .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__item--has-dropdown.is-open-click .nav__caret { transform: rotate(180deg); }
.nav__dropdown a {
  display: block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  padding: 0.85rem 1.5rem;
  min-height: 44px;
  white-space: nowrap;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav__dropdown a:hover,
.nav__dropdown a:focus-visible { background: var(--off-white); color: var(--gold); }
.nav__dropdown a.is-current { color: var(--gold); }

/* ---------- Engagements group inside the mobile menu ---------- */
.mobile-menu__group { width: 100%; }
.mobile-menu__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.mobile-menu__group-toggle .nav__caret { font-size: 0.45em; transition: transform 0.25s var(--ease); }
.mobile-menu__group.is-open .nav__caret { transform: rotate(180deg); }
.mobile-menu__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.mobile-menu__group.is-open .mobile-menu__sub { grid-template-rows: 1fr; }
.mobile-menu__sub-inner { overflow: hidden; }
.mobile-menu__sub a {
  font-size: 1.5rem;
  padding: 0.6rem 0 0.6rem 1.25rem;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__sub a:hover { color: var(--gold-soft); }
@media (max-width: 380px) {
  .mobile-menu__group-toggle { font-size: 2rem; }
  .mobile-menu__sub a { font-size: 1.35rem; }
}

/* ============================================================
   SUBPAGE: Executive — prestige team showcase
   ============================================================ */
/* How it works — editorial 3-step */
.exec-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-line);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.exec-how__item {
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2.5rem) clamp(2rem, 3vw, 2.75rem) 0;
  border-bottom: 1px solid var(--gray-line);
}
.exec-how__item + .exec-how__item {
  border-left: 1px solid var(--gray-line);
  padding-left: clamp(1.5rem, 2.5vw, 2.5rem);
}
.exec-how__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 0.9;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.exec-how__title {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.exec-how__body {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  color: var(--gray-text);
}
.exec-how__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.exec-how__body a:hover { color: var(--black); }

/* Featured 2-up: Bill + Jason */
.exec-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-line);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.exec-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2.25rem, 3.5vw, 3.5rem);
  min-height: 340px;
  background: var(--white);
}
.exec-feature-card + .exec-feature-card { border-left: 1px solid var(--gray-line); }
.exec-feature-card--spotlight { background: var(--off-white); }
.exec-feature-card__badge {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--black);
  background: var(--gold-soft);
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.5rem;
}
.exec-feature-card__role {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.exec-feature-card__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.exec-feature-card__bio {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--gray-text);
}
.exec-feature-card__bio a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.exec-feature-card__bio a:hover { color: var(--black); }
.exec-feature-card__link {
  margin-top: auto;
  padding-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  align-self: flex-start;
}
.exec-feature-card__link .arrow { transition: transform 0.25s var(--ease); }
.exec-feature-card__link:hover { color: var(--black); }
.exec-feature-card__link:hover .arrow { transform: translateX(4px); }

/* Chairs in reserve — 3-col grid */
.exec-chairs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-line);
  border-top: none;
}
.exec-chair {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2.6vw, 2.4rem);
  min-height: 200px;
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  background: var(--white);
}
.exec-chairs .exec-chair:nth-child(3n) { border-right: none; }
.exec-chairs .exec-chair:nth-last-child(-n+3) { border-bottom: none; }
.exec-chair__role {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.exec-chair__reserve {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.exec-chair__reserve::before {
  content: '';
  width: 7px; height: 7px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.exec-chair__note {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-text);
}
.exec-chairs__intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  max-width: 760px;
  margin-top: clamp(3rem, 5vw, 4rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  color: var(--black);
}

/* ============================================================
   PAGE: Legacy — the $50K suite. Black, full-bleed, negative space.
   ============================================================ */
body.legacy {
  background: var(--black);
  color: var(--white);
}
body.legacy .site-header {
  background: rgba(10,10,10,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: saturate(180%) blur(8px);
}
body.legacy .nav__toggle span { background: var(--white); }
/* hide the inverted-color nav links (legacy nav is minimal — only logo + menu) */
body.legacy .mobile-menu { background: #050505; }

.legacy-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 12vh, 9rem) var(--pad-x);
}
.legacy-hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--gold-soft);
  margin-bottom: clamp(3rem, 9vh, 6rem);
}
.legacy-hero__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(4.5rem, 22vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* Editorial fragments, each in its own breath of space */
.legacy-fragment {
  text-align: center;
  padding: clamp(8rem, 30vh, 16rem) var(--pad-x);
}
.legacy-fragment__line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
  max-width: 900px;
  margin: 0 auto;
}

/* The single vague paragraph */
.legacy-statement {
  text-align: center;
  padding: clamp(6rem, 18vh, 12rem) var(--pad-x) clamp(8rem, 24vh, 14rem);
}
.legacy-statement__body {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto clamp(4rem, 10vh, 7rem);
  font-weight: 400;
}
.legacy-statement__inquiry {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s var(--ease);
}
.legacy-statement__inquiry:hover { color: var(--gold-soft); }
.legacy-statement__inquiry .dash { color: var(--gold-soft); margin: 0 0.5rem; }

/* Legacy keeps the standard footer but it already reads on black */
body.legacy .footer { border-top: 1px solid rgba(255,255,255,0.10); }

/* ============================================================
   V2 RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .exec-how { grid-template-columns: 1fr; border-top: 1px solid var(--gray-line); }
  .exec-how__item { padding: clamp(1.75rem,4vw,2.5rem) 0; }
  .exec-how__item + .exec-how__item { border-left: none; padding-left: 0; }

  .exec-chairs { grid-template-columns: repeat(2, 1fr); }
  .exec-chairs .exec-chair { border-right: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
  .exec-chairs .exec-chair:nth-child(3n) { border-right: 1px solid var(--gray-line); }
  .exec-chairs .exec-chair:nth-child(2n) { border-right: none; }
  .exec-chairs .exec-chair:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-line); }
  .exec-chairs .exec-chair:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 720px) {
  .exec-featured { grid-template-columns: 1fr; }
  .exec-feature-card { min-height: auto; }
  .exec-feature-card + .exec-feature-card { border-left: none; border-top: 1px solid var(--gray-line); }

  .exec-chairs { grid-template-columns: 1fr; border-top: none; }
  .exec-chairs .exec-chair { border-right: none !important; border-bottom: 1px solid var(--gray-line) !important; min-height: auto; }
  .exec-chairs .exec-chair:last-child { border-bottom: none !important; }
}

/* ============================================================
   ===== V3 ADDITIONS — Payment pages =====
   Product card grid (pay.html), large amount input (quick-pay.html),
   minimal thank-you layout (thank-you*.html). Black & white + gold.
   ============================================================ */

/* ---------- Product card grid (pay.html) ---------- */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.pay-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-line);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  transition: border-color 0.3s var(--ease);
}
.pay-card:hover { border-color: var(--gold-soft); }
.pay-card__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pay-card__title {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.pay-card__price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pay-card__desc {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 1rem;
}
.pay-card__note {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-faint);
  margin-bottom: 1rem;
}
.pay-card__spacer { flex: 1 1 auto; }
.pay-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 1.75rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  min-height: 44px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pay-card__cta .arrow { transition: transform 0.25s var(--ease); }
.pay-card__cta:hover { color: var(--gold); border-bottom-color: var(--gold); }
.pay-card__cta:hover .arrow { transform: translateX(4px); }
.pay-card__cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.pay-foot-note {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--gray-text);
}
.pay-foot-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Quick Pay: large amount input ---------- */
.qp-wrap { max-width: 600px; margin: 0 auto; }
.qp-form { margin-top: clamp(1rem, 3vw, 1.5rem); }
.qp-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.qp-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-line);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.qp-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}
.qp-field__currency {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--gray-faint);
  padding-left: clamp(1rem, 3vw, 1.5rem);
  user-select: none;
}
.qp-input {
  flex: 1 1 auto;
  width: 100%;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--black);
  border: none;
  outline: none;
  background: transparent;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0.25rem;
}
/* Remove number-input spinners cross-browser */
.qp-input::-webkit-outer-spin-button,
.qp-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qp-input[type=number] { -moz-appearance: textfield; appearance: textfield; }

.qp-helper {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--gray-text);
  margin-top: 0.85rem;
}
.qp-error {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.85rem;
  min-height: 1.4em;
}
.qp-error:empty { margin-top: 0; }
.qp-submit {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
}
.qp-aside {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--gray-line);
}
.qp-aside__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.qp-aside__body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-text);
}
.qp-aside__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.qp-reassure {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--gray-faint);
}

/* ---------- Minimal thank-you layout ---------- */
.ty-header {
  padding: clamp(2rem, 5vw, 3rem) 0;
  text-align: center;
}
.ty-header .ty-logo-img { height: 38px; width: auto; margin: 0 auto; }
.ty-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.ty-inner { max-width: 600px; }
.ty-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.ty-h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.ty-sub {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
}
.ty-body p {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.ty-cta-wrap { margin: 2.25rem 0 1.5rem; }
.ty-secondary {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-text);
}
.ty-contact {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--gray-text);
}
.ty-contact a, .ty-body a.inline-link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.footer--minimal .footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2rem; }

/* ---------- V3 responsive ---------- */
@media (max-width: 760px) {
  .pay-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCELERATOR LOCKUP HERO
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.subhero__lockup {
  display: block;
  margin: 0.25rem 0 1.5rem;
  max-width: 560px;
}
.subhero__lockup img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .subhero__lockup { max-width: 320px; }
}

/* ============================================================
   QUICK PAY CTA BLOCK (post-form simplification)
   ============================================================ */
.qp-cta-block {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.qp-cta-block__lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.qp-cta-block__range {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.qp-cta-block__range strong {
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   THE PRACTICE — About page (Molly rebuild, July 2026)
   Three-card grid: Jason, Bill, Nick.
   Replaces the old "8 board seats" pattern.
   ============================================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .practice-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}
.practice-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--off-white);
}
.practice-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.practice-card__photo--placeholder {
  background: linear-gradient(135deg, #f2f0eb 0%, #e8e6df 100%);
  position: relative;
}
.practice-card__photo--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(184, 134, 11, 0.08) 49%, rgba(184, 134, 11, 0.08) 51%, transparent 52%);
  background-size: 24px 24px;
}
.practice-card__name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.practice-card__role {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.practice-card__bio {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
}
.practice-card__bio a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.practice-card__bio a:hover {
  color: var(--gold);
}
.practice-card__turn {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--black);
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-line);
  margin-top: auto;
}
.practice-card__turn strong {
  font-weight: 600;
}

.practice-closer {
  max-width: 720px;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-line);
}
.practice-closer__h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}
.practice-closer p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 1rem;
}
.practice-closer a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.practice-closer a:hover {
  color: var(--gold);
}

/* ============================================================
   LINEAGE PAGE — timeline (Molly rebuild, July 2026)
   Six dated entries: 2013, 2014, 2018, 2020-2022, 2024, 2026.
   ============================================================ */
.lineage {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.lineage::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gray-line);
}
@media (max-width: 720px) {
  .lineage::before { left: 0; }
}
.lineage__entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 2rem 0;
  position: relative;
  align-items: start;
}
.lineage__entry:not(:last-child) {
  border-bottom: 1px solid var(--gray-line);
}
@media (max-width: 720px) {
  .lineage__entry {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-left: 1.5rem;
  }
}
.lineage__year {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--gold);
  text-align: right;
  padding-top: 0.15rem;
  position: relative;
}
.lineage__year::after {
  content: '';
  position: absolute;
  right: -23px;
  top: 0.7rem;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--off-white);
}
@media (max-width: 720px) {
  .lineage__year {
    text-align: left;
    font-size: 1.5rem;
  }
  .lineage__year::after {
    left: -27px;
    right: auto;
  }
}
.lineage__body {
  padding-top: 0.15rem;
}
.lineage__label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.lineage__body p {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-text);
}
.lineage__body p strong {
  color: var(--black);
  font-weight: 600;
}

.lineage__callout {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-left: 3px solid var(--gold);
}
.lineage__callout-h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}
.lineage__callout ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lineage__callout li {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--gray-text);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.lineage__callout li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   DIAGNOSTIC CTA BLOCK — Accelerator page (Molly rebuild)
   ============================================================ */
.diagnostic-cta {
  background: var(--black);
  color: var(--off-white);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 3rem;
  border-left: 3px solid var(--gold);
}
.diagnostic-cta__eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.diagnostic-cta__h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}
.diagnostic-cta__body {
  font-family: var(--sans);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-faint);
  max-width: 620px;
  margin-bottom: 2rem;
}
.diagnostic-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 1rem 1.75rem;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.diagnostic-cta__btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.diagnostic-cta__sub {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 1rem;
}

/* ============================================================
   V4 ADDITIONS — Homepage v2 ("Investable by Design") port.
   Receipts, Ritual, Team (no-panel), Peloton plaque, Filter,
   FAQ accordion. Light editorial palette — black/white/gold.
   ============================================================ */

/* ---------- Hero microcopy under CTA ---------- */
.hero__micro {
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--gray-faint);
}

/* ---------- Receipts (Value, made real) ---------- */
.receipts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
.receipt-card {
  border: 1px solid var(--gray-line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: border-color 0.25s var(--ease);
}
.receipt-card:hover { border-color: var(--gold-soft); }
.receipt-card__stat {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--gold);
}
.receipt-card__sector {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-text);
  margin-top: 0.9rem;
}
.receipt-card__body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--black);
  margin-top: 0.9rem;
}
.receipts__footnote {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--gray-text);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* ---------- Ritual (90-Minute Peloton Session) ---------- */
.ritual__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.ritual__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.ritual__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--gold);
  flex-shrink: 0;
  min-width: 2.5ch;
  line-height: 1.3;
}
.ritual__text {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--black);
}

/* ---------- Team — no-panel people cards ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}
.people-card__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.15;
  color: var(--black);
}
.people-card__role {
  font-family: var(--sans);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--gray-text);
  margin-top: 0.35rem;
}
.people-card__bio {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-top: 1.1rem;
}

/* ---------- Imaginactions footnote (v2 add) ---------- */
.imagin__footnote {
  font-family: var(--sans);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ---------- Peloton plaque section ---------- */
.peloton__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.peloton__figure { max-width: 420px; margin: 0 auto; }
.peloton__img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--gray-line);
}
.peloton__creed {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
.peloton__creed-label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ---------- Filter (Who this is for) ---------- */
.filter__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
}
.filter__item {
  display: flex;
  align-items: baseline;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.filter__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--gold-soft);
  flex-shrink: 0;
  min-width: 2.5ch;
}
.filter__name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.375rem);
  color: var(--white);
}
.filter__line {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}
.filter__rule {
  max-width: 720px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.filter__disclaimer {
  max-width: 640px;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.75);
}

/* ---------- FAQ accordion ---------- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-line);
}
.faq__item {
  border-bottom: 1px solid var(--gray-line);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}
.faq__question {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-top: 1rem;
  max-width: 680px;
}

/* ---------- V4 responsive ---------- */
@media (max-width: 900px) {
  .receipts__grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .peloton__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .peloton__figure { max-width: 320px; }
}
@media (max-width: 640px) {
  .ritual__item, .filter__item { gap: 1rem; }
}
