/* ============================================================
   Movement 3 Golf — Homepage v2
   VARIANT B — Serif headlines, no italic (Fraunces roman) + Inter body
   Editorial / magazine-spread direction.
   Deep green dark surfaces + cream panels. Gold accents only.
   ============================================================ */

:root {
  --green: #1F5A3D;
  --green-deep: #163f2c;
  --green-darker: #0f2c1e;
  --canvas: #121512;
  --gold: #A8842C;
  --gold-light: #c4a049;
  --cream: #FAF7F2;
  --cream-2: #f2ece1;
  --white: #ffffff;
  --ink: #1A1A1A;
  --ink-soft: #45453f;
  --muted: #6b6b63;
  --line: #e4ddd0;
  --line-dark: rgba(255,255,255,.14);

  /* === VARIANT B: Fraunces roman headlines (NO italic) + Inter body === */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --display-tracking: -0.005em;
  --h1-weight: 600;
  --h2-weight: 500;
  --h3-weight: 600;
  --display-style: normal;

  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.55);
  --shadow-sm: 0 8px 26px -14px rgba(0,0,0,.4);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Strict 5-step scale */
  --t-h1: clamp(40px, 6vw, 80px);
  --t-h2: clamp(30px, 4.2vw, 50px);
  --t-h3: clamp(20px, 2vw, 24px);
  --t-body: 17px;
  --t-eyebrow: 12.5px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.55;
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.05; letter-spacing: var(--display-tracking); font-style: var(--display-style); }
h1 { font-weight: var(--h1-weight); }
h2 { font-weight: var(--h2-weight); }
h3 { font-weight: var(--h3-weight); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }
.booktitle { font-style: normal; font-weight: 500; letter-spacing: 0.005em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.visually-hidden, .skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link:focus { position: fixed; top: 10px; left: 10px; width: auto; height: auto; padding: 10px 16px; background: var(--green); color: #fff; z-index: 200; border-radius: 8px; clip: auto; }

.dot { color: var(--gold-light); padding: 0 0.1em; }

/* ---------- Eyebrow ---------- */
.eyebrow { font-family: var(--font-body); font-size: var(--t-eyebrow); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.eyebrow--gold { color: var(--gold-light); }
.eyebrow--green { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: .01em;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #8f7022; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(196,160,73,.7); }
.btn--outline-light:hover { background: var(--gold-light); color: var(--green-darker); border-color: var(--gold-light); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); background: var(--green); color: #fff; transform: translateY(-2px); }

/* ---------- Section heads ---------- */
.section-title { font-size: var(--t-h2); color: var(--ink); max-width: 20ch; font-weight: var(--h2-weight); }
.section-title--light { color: #fff; }
.section-head { max-width: 780px; margin-bottom: clamp(48px, 5.5vw, 72px); }
.section-lead { font-size: var(--t-body); color: var(--muted); margin-top: 20px; max-width: 60ch; font-weight: 450; }
.section-head--light .section-lead { color: rgba(255,255,255,.82); }

.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; color: var(--green); font-size: 15px; }
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 21, 16, 0.66);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(12,17,12,.93); border-bottom-color: var(--line-dark); }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,5vw,56px); height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; overflow: visible; }
.nav__brand { justify-self: center; display: flex; align-items: center; }
.nav__logo { height: 40px; width: auto; }
.nav__links { display: flex; gap: 22px; align-items: center; min-width: 0; }
.nav__links--left { justify-self: start; }
.nav__links--right { justify-self: end; padding-right: 2px; }
.nav__links a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.82); position: relative; padding: 4px 0; white-space: nowrap; }
.nav__links a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold-light); transition: width .25s var(--ease); }
.nav__links a:not(.btn):hover { color: #fff; }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; font-size: 14px; flex-shrink: 0; }
.nav__cta-mobile { display: none; padding: 9px 18px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em; flex-shrink: 0; white-space: nowrap; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; justify-self: end; grid-column: 3; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 2px; padding: 10px clamp(20px,5vw,48px) 24px; background: var(--green-darker); border-bottom: 1px solid var(--line-dark); }
.nav__mobile a { padding: 13px 0; font-size: 17px; font-weight: 500; color: rgba(255,255,255,.9); border-bottom: 1px solid var(--line-dark); }
.nav__mobile a:last-child { border: 0; margin-top: 12px; text-align: center; color: #fff; }
.nav__mobile > .btn:last-child { display: none; }
.nav__mobile.open { display: flex; }

/* ============ HERO — asymmetric split, photo bleeds to edge ============ */
.hero { background: var(--green-darker); color: #fff; position: relative; overflow: hidden; display: grid; grid-template-columns: 45% 55%; align-items: stretch; min-height: 88vh; }
.hero::before { content:''; position:absolute; inset:0; background: radial-gradient(900px 600px at 30% 18%, rgba(168,132,44,.16), transparent 60%); pointer-events:none; z-index: 0; }
.hero__panel { display: flex; align-items: center; position: relative; z-index: 1; padding: clamp(56px,7vw,104px) clamp(24px,4vw,72px) clamp(56px,7vw,104px) clamp(20px,7vw,calc((100vw - var(--container)) / 2 + 8px)); }
.hero__copy { max-width: 560px; }
.hero__title { font-size: var(--t-h1); font-weight: var(--h1-weight); max-width: 14ch; letter-spacing: var(--display-tracking); line-height: 1.0; }
.hero__sub { font-size: clamp(17px, 1.5vw, 19px); max-width: 42ch; margin-top: 22px; color: rgba(255,255,255,.84); font-weight: 450; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 36px; }
.hero__chips li { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.9); padding: 7px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.04); }
.hero__media { position: relative; z-index: 1; min-height: 420px; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 32% 56%; }
.hero__media::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, var(--green-darker) 0%, transparent 16%); pointer-events:none; }

/* ============ TOP-OF-FUNNEL LEAD STRIP ============ */
.leadstrip { background: var(--cream-2); padding: clamp(64px, 7vw, 96px) 0; border-top: 1px solid var(--line); }
.leadstrip__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.leadstrip__copy { max-width: 640px; margin: 0 auto 24px; }
.leadstrip__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 38px); line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); margin: 12px 0 14px; }
.leadstrip__sub { font-size: 17px; line-height: 1.55; color: var(--ink-soft); font-weight: 450; margin: 0 auto; max-width: 56ch; }
.leadstrip__form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; max-width: 540px; margin: 0 auto; }
.leadstrip__form input { flex: 1 1 260px; min-width: 0; height: 52px; padding: 0 22px; border: 1.5px solid var(--line); border-radius: 999px; font-family: var(--font-body); font-size: 15px; line-height: 1; background: #fff; color: var(--ink); box-sizing: border-box; }
.leadstrip__form .btn { height: 52px; flex: 0 0 auto; }
.leadstrip__form input::placeholder { color: var(--muted); }
.leadstrip__form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,132,44,.15); }
.leadstrip__note { font-size: 13px; color: var(--muted); margin: 16px auto 0; max-width: 540px; }
@media (max-width: 860px) {
  .leadstrip__form { flex-direction: column; flex-wrap: nowrap; }
  .leadstrip__form input { width: 100%; flex: 0 0 auto; height: 48px; border-radius: 10px; font-size: 16px; padding: 0 18px; }
  .leadstrip__form .btn { width: 100%; height: 48px; }
}

/* ============ AWARDS / PRESS ============ */
.awards { background: var(--cream); padding: clamp(60px, 7vw, 96px) 0; }
.awards__badges { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 36px; }
.award img { height: 104px; width: auto; }
.awards__caption { font-size: 18px; color: var(--ink-soft); max-width: 44ch; margin: 0; font-weight: 450; }
.awards__caption strong { font-weight: 700; color: var(--green); }
.wordmarks { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 16px 38px; }
.wordmarks__label { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.wordmarks ul { display: flex; flex-wrap: wrap; gap: 16px 38px; }
.wordmarks li { font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #a39c8e; }
.wordmarks li a { color: inherit; position: relative; padding-bottom: 4px; transition: color .25s var(--ease); border-bottom: 1px dotted rgba(168,132,44,.35); }
.wordmarks li a::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.wordmarks li a:hover { color: var(--gold); border-bottom-color: transparent; }
.wordmarks li a:hover::after { width: 100%; }

.wordmarks__cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.wordmarks__hint { font-family: var(--font-body); font-size: 14px; font-weight: 450; color: var(--ink-soft); margin: 0; line-height: 1.5; max-width: 56ch; }
.wordmarks__cta .btn span { transition: transform .25s var(--ease); display: inline-block; margin-left: .25em; }
.wordmarks__cta .btn:hover span { transform: translateX(5px); }
@media (max-width: 640px) {
  .wordmarks__cta { flex-direction: column; align-items: flex-start; }
  .wordmarks__cta .btn { width: 100%; text-align: center; }
}

/* ============ APPROACH / METHODOLOGY ============ */
.approach { display: grid; grid-template-columns: 1fr 1fr; background: var(--green-darker); }
.approach__media { position: relative; min-height: 560px; }
.approach__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.approach__panel { background: var(--green-darker); color: #fff; display: flex; align-items: center; padding: clamp(64px,7vw,108px) clamp(28px,5vw,80px); }
.approach__inner { max-width: 540px; }
.approach__title { font-size: var(--t-h2); color: #fff; font-weight: var(--h2-weight); }
.approach__sub { font-size: var(--t-body); color: rgba(255,255,255,.82); margin: 20px 0 44px; max-width: 46ch; font-weight: 450; }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 0 0 34px; position: relative; }
.step:last-child { padding-bottom: 0; }
/* thin gold connecting line implying progression */
.step:not(:last-child)::before { content:''; position:absolute; left: 17px; top: 38px; bottom: -4px; width: 1px; background: linear-gradient(var(--gold-light), rgba(196,160,73,.25)); }
.step__num { width: 36px; height: 36px; border-radius: 50%; background: transparent; border: 1.5px solid var(--gold-light); color: var(--gold-light); font-family: var(--font-display); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.step h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 5px; letter-spacing: 0; }
.step p { font-size: 15px; color: rgba(255,255,255,.72); margin: 0; line-height: 1.5; font-weight: 450; }

/* ============ VALUE ============ */
.value { padding: clamp(84px, 9vw, 150px) 0; background: var(--cream); }
.value__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.vcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding-bottom: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vcard__img { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.vcard__img img { width: 100%; height: 100%; object-fit: cover; }
.vcard h3 { font-size: var(--t-h3); margin: 28px 30px 12px; color: var(--green); }
.vcard p { margin: 0 30px; color: var(--muted); font-size: 16px; }

/* ============ FULL-BLEED EDITORIAL MOMENT ============ */
.bleed { position: relative; height: clamp(420px, 62vh, 660px); overflow: hidden; }
.bleed img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.bleed::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(15,44,30,.82) 0%, rgba(15,44,30,.18) 45%, transparent 78%); }
.bleed__caption { position: absolute; left: 0; bottom: 0; z-index: 1; padding: clamp(32px,5vw,64px) clamp(20px,7vw,calc((100vw - var(--container)) / 2 + 8px)); max-width: 760px; }
.bleed__text { font-family: var(--font-display); font-style: var(--display-style); font-weight: var(--h3-weight); color: #fff; font-size: clamp(22px, 3vw, 34px); line-height: 1.18; margin: 0; }

/* ============ ABOUT ============ */
.about { background: var(--cream); padding: clamp(84px,9vw,150px) clamp(20px,5vw,56px); }
.about__stage { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; align-items: stretch; gap: clamp(36px,5vw,72px); }
.about__photo { position: relative; background: #2a2c28; min-height: 560px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about__photo > picture, .about__photo > picture img { width: 100%; height: 100%; }
.about__photo img { object-fit: cover; object-position: top center; }
.about__badge-img { position: absolute; bottom: 16px; left: 16px; width: 100px; height: auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,.45)); }
.about__card { display: flex; flex-direction: column; justify-content: center; }
.about__name { font-family: var(--font-display); font-style: var(--display-style); font-weight: var(--h1-weight); font-size: clamp(40px, 5vw, 62px); color: var(--green); line-height: 1; margin: 4px 0 8px; letter-spacing: var(--display-tracking); }
.about__role { font-size: 15px; color: var(--gold); font-weight: 600; margin: 0 0 24px; }
.about__card p { color: var(--ink-soft); font-weight: 450; }
.pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 28px; }
.pills li { font-size: 13px; font-weight: 500; color: #fff; background: var(--green); padding: 8px 16px; border-radius: 999px; }

/* ============ PROGRAMS ============ */
.programs { padding: clamp(84px, 9vw, 150px) 0; background: var(--cream); }
.prog-start { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; background: var(--white); border: 1.5px solid var(--gold); border-radius: var(--radius); padding: 40px 44px; margin-bottom: 40px; position: relative; box-shadow: 0 20px 50px -30px rgba(168,132,44,.5); }
.prog-start__ribbon { position: absolute; top: -13px; left: 44px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; }
.prog-start__tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.prog-start__main h3 { font-size: clamp(24px,2.6vw,30px); margin-bottom: 8px; font-weight: var(--h2-weight); color: var(--green); }
.prog-start__main p { color: var(--ink-soft); margin: 0; max-width: 52ch; font-size: 16px; font-weight: 450; }
.prog-start__price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.prog-start__price .price { font-family: var(--font-display); font-size: 46px; font-weight: var(--h1-weight); line-height: 1; color: var(--ink); letter-spacing: var(--display-tracking); }
.prog-start__price .price-meta { font-size: 14px; color: var(--muted); margin-bottom: 14px; }

.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard--featured { border-color: var(--green); box-shadow: 0 20px 46px -28px rgba(31,90,61,.55); }
.pcard--tour { background: var(--green-darker); color: #fff; border-color: var(--green-darker); }
.pcard--tour .pcard__name, .pcard--tour .pcard__price { color: #fff; }
.pcard--tour .pcard__price span, .pcard--tour .pcard__meta, .pcard--tour .pcard__desc { color: rgba(255,255,255,.78); }
.pcard--tour .pcard__feat li { color: rgba(255,255,255,.9); }
.pcard--tour .pcard__feat li::before { color: var(--gold-light); }
.pcard__flag { position: absolute; top: -12px; left: 28px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; margin: 0; }
.pcard__flag--muted { background: var(--cream-3, #d9d1bd); color: var(--green-darker, #0a1d0a); }
.pcard__flag--premier { background: var(--gold-light, #d7b769); color: var(--green-darker, #0a1d0a); }
.pcard__name { font-size: 21px; color: var(--green); font-weight: var(--h3-weight); font-family: var(--font-body); letter-spacing: 0; }
.pcard__price { font-family: var(--font-display); font-size: 33px; font-weight: var(--h1-weight); color: var(--ink); margin: 12px 0 2px; letter-spacing: var(--display-tracking); }
.pcard__price span { font-family: var(--font-body); font-size: 15px; font-weight: 450; color: var(--muted); }
.pcard__meta { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.pcard__desc { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.pcard__feat { margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.pcard__feat li { font-size: 14px; color: var(--ink-soft); padding-left: 22px; position: relative; }
.pcard__feat li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pcard .btn { width: 100%; }
.prog-foot { text-align: center; margin-top: 36px; font-size: 16px; color: var(--muted); }
.prog-foot strong { color: var(--ink-soft); }
.prog-foot a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============ SCIENCE ============ */
.science { padding: clamp(88px, 10vw, 160px) 0; background: var(--green-darker); color: #fff; position: relative; }
.science::before { content:''; position:absolute; inset:0; background: radial-gradient(900px 500px at 80% 0%, rgba(168,132,44,.16), transparent 70%); pointer-events:none; }
.science .container { position: relative; }
.science .section-lead strong { color: var(--gold-light); }
.science__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.science__fig { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.science__fig img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #fff; padding: 10px; }
.science__fig figcaption { padding: 16px 22px 20px; font-size: 14px; color: var(--ink-soft); background: #fff; }
.techlist { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 16px; margin-top: 52px; }
.techlist li { font-size: 14px; font-weight: 600; letter-spacing: .04em; color: #fff; border: 1px solid rgba(196,160,73,.55); padding: 9px 18px; border-radius: 999px; }

/* ============ QUOTES — editorial pull-quote ============ */
.quotes { padding: clamp(84px, 9vw, 150px) 0; background: var(--cream); }
.quote-feature { margin: 0 auto clamp(56px,7vw,88px); max-width: 980px; padding-top: 40px; border-top: 1px solid var(--line); }
.quote-feature p { font-family: var(--font-display); font-style: var(--display-style); font-size: clamp(26px, 3.4vw, 44px); line-height: 1.24; font-weight: var(--h3-weight); color: var(--ink); position: relative; letter-spacing: -0.01em; margin: 0; }
.quote-feature footer { margin-top: 32px; display: flex; align-items: baseline; gap: 14px; }
.quote-name { font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--green); }
.quote-role { font-family: var(--font-body); font-size: 14px; color: var(--muted); }
.quote-feature footer .quote-role::before { content: '— '; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; }
.quote-card { margin: 0; }
.quote-card p { font-size: 16px; color: var(--ink-soft); line-height: 1.62; }
.quote-card .quote-sub { font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 18px; color: var(--green); margin-top: 14px; }
.quote-card footer { margin-top: 18px; display: flex; flex-direction: column; }
.quote-press { text-align: center; margin: clamp(48px,6vw,72px) auto 0; max-width: 640px; font-family: var(--font-body); font-size: clamp(18px, 2vw, 22px); font-weight: 500; color: var(--ink-soft); }
.quote-press__src { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }

/* ============ BOOK ============ */
.book { padding: clamp(84px, 9vw, 150px) 0; background: var(--green-darker); color: #fff; }
.book__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.book__cover img { width: 100%; max-width: 330px; margin: 0 auto; border-radius: 6px; box-shadow: 0 36px 70px -28px rgba(0,0,0,.7); }
.book__subtitle { font-size: 16px; color: var(--gold-light); font-weight: 500; margin: 12px 0 18px; }
.book__body p { color: rgba(255,255,255,.84); font-weight: 450; }
.book__list { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 28px; }
.book__list li { font-size: 16px; color: rgba(255,255,255,.9); padding-left: 26px; position: relative; }
.book__list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-light); font-weight: 700; }
.book__cta { margin-bottom: 24px; }
.book__form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.book__form input, .lead__form input { flex: 1 1 220px; min-width: 0; height: 52px; padding: 0 22px; border: 1.5px solid var(--line-dark); border-radius: 999px; font-family: var(--font-body); font-size: 15px; line-height: 1; background: rgba(255,255,255,.08); color: #fff; box-sizing: border-box; }
.book__form .btn, .lead__form .btn { height: 52px; }
.book__form input::placeholder { color: rgba(255,255,255,.5); }
.book__form input:focus, .lead__form input:focus { outline: none; border-color: var(--gold-light); }
.book__formnote { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 12px; }

/* ============ LEAD MAGNET ============ */
.lead { padding: clamp(84px, 9vw, 140px) 0; background: var(--green); color: #fff; position: relative; overflow: hidden; }
.lead::before { content:''; position:absolute; inset:0; background: radial-gradient(700px 400px at 50% -10%, rgba(196,160,73,.2), transparent 65%); }
.lead__inner { max-width: 720px; text-align: center; position: relative; margin: 0 auto; }
.lead__copy { font-size: 18px; color: rgba(255,255,255,.88); margin: 20px auto 32px; max-width: 56ch; font-weight: 450; }
.lead__copy strong { color: var(--gold-light); font-weight: 700; }
.lead__form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 540px; margin: 0 auto; }
.lead__form input { flex: 1 1 260px; background: rgba(255,255,255,.96); border-color: transparent; color: var(--ink); }
.lead__form input::placeholder { color: var(--muted); }
.lead__note { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 16px; }

/* ============ CONTACT ============ */
.contact { padding: clamp(84px, 9vw, 150px) 0; background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: stretch; }
.contact__lead { color: var(--muted); font-size: 17px; max-width: 48ch; margin-bottom: 28px; }
.contact__details { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin: 0 0 30px; }
.contact__details dt { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.contact__details dd { margin: 0; font-size: 16px; color: var(--ink-soft); line-height: 1.5; }
.contact__details a { color: var(--green); font-weight: 500; }
.contact__details a:hover { text-decoration: underline; }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 400px; border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ============ FOOTER ============ */
.footer { background: var(--canvas); color: rgba(255,255,255,.72); padding: clamp(60px, 6vw, 92px) 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 44px; }
.footer__logo { width: 220px; height: auto; }
.footer__tag { font-family: var(--font-body); font-weight: 500; font-size: 17px; color: #fff; margin: 20px 0 18px; letter-spacing: .01em; }
.footer__social { display: flex; gap: 18px; }
.footer__social a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px; }
.footer__social a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.footer h3 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__nav { display: flex; flex-direction: column; gap: 11px; }
.footer__nav a { font-size: 15px; color: rgba(255,255,255,.75); width: fit-content; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__contact p { font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
.footer__contact a { color: rgba(255,255,255,.82); }
.footer__contact a:hover { color: var(--gold-light); }
.footer__minibadges { display: flex; gap: 14px; margin-top: 18px; }
.footer__minibadges img { height: 64px; width: auto; }
.footer__minibadges img[src*="golfdigest"] { background: #fff; border-radius: 8px; padding: 5px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: rgba(255,255,255,.48); }
.footer__bottom p { margin: 0; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .value__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .nav__brand { justify-self: start; grid-column: 1; }
  .nav__cta-mobile { display: inline-flex; grid-column: 2; }
  .nav__toggle { display: flex; grid-column: 3; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { order: -1; min-height: 56vh; }
  .hero__media img { object-position: 30% 56%; }
  .hero__media::after { background: linear-gradient(to bottom, transparent 60%, var(--green-darker) 100%); }
  .hero__panel { padding: clamp(40px,8vw,72px) clamp(20px,6vw,48px) clamp(48px,8vw,80px); }
  .approach { grid-template-columns: 1fr; }
  .approach__media { min-height: 360px; }
  .about__stage { grid-template-columns: 1fr; }
  .about__photo { min-height: 440px; }
  .book__grid { grid-template-columns: 1fr; }
  .book__cover img { max-width: 260px; }
  .science__grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__grid { grid-template-columns: 1fr; }
  .awards__badges { grid-template-columns: auto auto; }
  .awards__caption { grid-column: 1 / -1; }
  .prog-start { grid-template-columns: 1fr; gap: 24px; }
  .prog-start__price { text-align: left; align-items: flex-start; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .prog-grid { grid-template-columns: 1fr; }
  .contact__details { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .awards__badges { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 18px; }
  .award img { height: 124px; }
  .awards__caption { text-align: center; }
  .book__form, .lead__form { flex-direction: column; flex-wrap: nowrap; }
  .book__form input, .lead__form input { width: 100%; flex: 0 0 auto; height: 48px; border-radius: 10px; font-size: 16px; padding: 0 18px; }
  .book__form .btn, .lead__form .btn { width: 100%; height: 48px; }
  .hero__chips li { font-size: 12px; padding: 6px 11px; }
  .about__card { padding: 0; }
  .approach__panel { padding: 48px 24px; }
  .prog-start { padding: 36px 24px; }
}

/* ============================================================
   VARIANT B OVERRIDES
   Serif (Fraunces) ONLY for: hero H1, section H2s, About name.
   Everything else that used --font-display reverts to Inter.
   ============================================================ */

/* Pull-quote: editorial but set in Inter, not serif (no italic flourish) */
.quote-feature p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.28;
  letter-spacing: -0.015em;
}

/* Full-bleed caption text in Inter */
.bleed__text {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Numbered badges in Inter */
.step__num { font-family: var(--font-body); }

/* Prices in Inter (tabular, modern) */
.prog-start__price .price,
.pcard__price { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }

/* Programs "Start Here" heading is an H3-tier element — keep it Inter for a quieter feel */
.prog-start__main h3 { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }

/* Value-card H3s stay sans for restraint; serif reserved for true H2s */
.vcard h3 { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.005em; }

/* Hero H1 — give serif a touch more line-height so descenders breathe */
.hero__title { line-height: 1.04; }
.section-title { line-height: 1.08; }
.approach__title { line-height: 1.08; }

/* ============================================================
   MEMBERS SECTION (HOMEPAGE TEASER)
   ============================================================ */
.mteaser { background: var(--cream-2); padding: clamp(72px, 8vw, 128px) 0 0; }
.mteaser__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.mteaser__lead { font-size: var(--t-body); color: var(--ink-soft); margin: 22px 0 28px; max-width: 52ch; font-weight: 450; line-height: 1.6; }
.mteaser__list { display: flex; flex-direction: column; gap: 12px; margin: 0 0 36px; }
.mteaser__list li { font-size: 16px; color: var(--ink); font-weight: 500; padding-left: 30px; position: relative; }
.mteaser__list li::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--gold); font-weight: 700; font-size: 17px; }
.mteaser__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.mteaser__media { position: relative; }
.mteaser__frame { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.mteaser__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 32% 50%; }
.mteaser__caption { position: absolute; left: 16px; bottom: 16px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 22px -10px rgba(0,0,0,.5); }
.mteaser__rule { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); margin: clamp(64px, 7vw, 104px) 0 0; opacity: .55; }

/* Outline-dark button for cream backgrounds */
.btn--outline-dark { background: transparent; color: var(--green); border-color: var(--gold); }
.btn--outline-dark:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

@media (max-width: 880px) {
  .mteaser__grid { grid-template-columns: 1fr; gap: 40px; }
  .mteaser__frame { aspect-ratio: 16/11; max-width: 520px; }
}
@media (max-width: 560px) {
  .mteaser__cta { flex-direction: column; }
  .mteaser__cta .btn { width: 100%; }
}

/* ============================================================
   MEMBERS PAGE
   ============================================================ */

/* --- Hero (quieter sub-page hero) --- */
.mhero { background: var(--green-darker); color: #fff; position: relative; overflow: hidden; display: grid; grid-template-columns: 52% 48%; align-items: stretch; min-height: 62vh; }
.mhero::before { content:''; position:absolute; inset:0; background: radial-gradient(800px 520px at 24% 24%, rgba(168,132,44,.14), transparent 62%); pointer-events:none; z-index: 0; }
.mhero__panel { display: flex; align-items: center; position: relative; z-index: 1; padding: clamp(56px,7vw,104px) clamp(24px,4vw,72px) clamp(56px,7vw,104px) clamp(20px,7vw,calc((100vw - var(--container)) / 2 + 8px)); }
.mhero__copy { max-width: 540px; }
.mhero__title { font-size: var(--t-h1); font-weight: var(--h1-weight); max-width: 14ch; letter-spacing: var(--display-tracking); line-height: 1.04; }
.mhero__sub { font-size: clamp(17px, 1.5vw, 19px); max-width: 40ch; margin-top: 20px; color: rgba(255,255,255,.84); font-weight: 450; line-height: 1.5; }
.mhero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.mhero__media { position: relative; z-index: 1; min-height: 380px; }
.mhero__media picture, .mhero__media img { width: 100%; height: 100%; }
.mhero__media img { object-fit: cover; object-position: 60% 50%; }
.mhero__media::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, var(--green-darker) 0%, transparent 18%); pointer-events:none; }

/* --- How it works --- */
.mhow { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.mhow .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.mhow .section-title { margin-left: auto; margin-right: auto; }
.mhow .section-lead { margin-left: auto; margin-right: auto; }
.mhow__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.mstep { position: relative; }
.mstep__num { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--font-body); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.mstep__label { margin: 0 0 10px; }
.mstep__body { font-size: 15px; color: var(--muted); line-height: 1.58; margin: 0; font-weight: 450; }

/* --- Editorial divider --- */
.mbleed { position: relative; height: clamp(380px, 56vh, 600px); overflow: hidden; }
.mbleed img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.mbleed::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(15,44,30,.86) 0%, rgba(15,44,30,.24) 48%, transparent 80%); }
.mbleed__caption { position: absolute; left: 0; bottom: 0; z-index: 1; padding: clamp(32px,5vw,64px) clamp(20px,7vw,calc((100vw - var(--container)) / 2 + 8px)); max-width: 880px; }
.mbleed__text { font-family: var(--font-display); font-weight: var(--h2-weight); color: #fff; font-size: clamp(28px, 4vw, 52px); line-height: 1.1; margin: 0; letter-spacing: var(--display-tracking); max-width: 18ch; }

/* --- What's included --- */
.mincl { background: var(--cream); padding: clamp(72px, 8vw, 130px) 0; border-top: 1px solid var(--line); }
.mincl__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.mincl__lead { font-size: var(--t-body); color: var(--ink-soft); margin: 22px 0 0; max-width: 50ch; font-weight: 450; line-height: 1.6; }
.mincl__list { display: flex; flex-direction: column; }
.mincl__row { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.mincl__row:first-child { padding-top: 0; }
.mincl__row:last-child { border-bottom: 0; padding-bottom: 0; }
.mincl__mark { font-size: 16px; font-weight: 700; line-height: 1.5; }
.mincl__mark--yes { color: var(--gold); }
.mincl__mark--no { color: var(--muted); }
.mincl__tier { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--green); margin: 0 0 3px; }
.mincl__row--no .mincl__tier { color: var(--muted); }
.mincl__note { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* --- Why it works --- */
.mwhy { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; }
.mwhy__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mwhy__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.mwhy__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mwhy__card h3 { font-family: var(--font-body); font-size: var(--t-h3); font-weight: 700; color: var(--green); letter-spacing: -0.005em; margin-bottom: 14px; }
.mwhy__card p { font-size: 16px; color: var(--muted); margin: 0; line-height: 1.6; }

/* --- Testimonial --- */
.mtest { background: var(--green-darker); color: #fff; padding: clamp(84px, 10vw, 150px) 0; position: relative; }
.mtest::before { content:''; position:absolute; inset:0; background: radial-gradient(800px 460px at 78% 0%, rgba(168,132,44,.15), transparent 70%); pointer-events:none; }
.mtest .container { position: relative; }
.mtest__quote { margin: 0 auto; max-width: 920px; }
.mtest__quote p { font-family: var(--font-display); font-weight: var(--h3-weight); font-size: clamp(26px, 3.4vw, 44px); line-height: 1.22; color: #fff; letter-spacing: -0.01em; margin: 0; }
.mtest__quote footer { margin-top: 32px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.mtest__name { font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--gold-light); }
.mtest__role { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.7); }
.mtest__role::before { content: '· '; color: var(--gold-light); }

/* --- Membership CTA --- */
.mcta { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; scroll-margin-top: 84px; }
.mcta__inner { max-width: 720px; text-align: center; margin: 0 auto; }
.mcta .section-title { margin: 0 auto; }
.mcta__copy { font-size: 18px; color: var(--ink-soft); margin: 20px auto 32px; max-width: 56ch; font-weight: 450; line-height: 1.6; }
.mcta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --- FAQ --- */
.mfaq { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; }
.mfaq__list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.mfaq__item { border-bottom: 1px solid var(--line); }
.mfaq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; font-family: var(--font-body); font-size: 18px; font-weight: 600; color: var(--ink); transition: color .2s var(--ease); }
.mfaq__item summary::-webkit-details-marker { display: none; }
.mfaq__item summary::after { content: '+'; flex-shrink: 0; font-family: var(--font-body); font-size: 26px; font-weight: 400; color: var(--gold); line-height: 1; transition: transform .25s var(--ease); }
.mfaq__item[open] summary { color: var(--green); }
.mfaq__item[open] summary::after { content: '−'; }
.mfaq__item summary:hover { color: var(--green); }
.mfaq__item p { font-size: 16px; color: var(--muted); line-height: 1.62; margin: 0 0 26px; max-width: 64ch; padding-right: 40px; }

@media (max-width: 1024px) {
  .mhow__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .mwhy__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 880px) {
  .mhero { grid-template-columns: 1fr; min-height: 0; }
  .mhero__media { order: -1; min-height: 46vh; }
  .mhero__media::after { background: linear-gradient(to bottom, transparent 60%, var(--green-darker) 100%); }
  .mhero__panel { padding: clamp(40px,8vw,72px) clamp(20px,6vw,48px) clamp(48px,8vw,80px); }
  .mincl__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .mhow__grid { grid-template-columns: 1fr; }
  .mhero__cta { flex-direction: column; }
  .mhero__cta .btn { width: 100%; }
  .mcta__buttons { flex-direction: column; }
  .mcta__buttons .btn { width: 100%; }
}

/* Active nav link (aria-current) */
.nav__links a[aria-current="page"] { color: var(--gold-light); }
.nav__links a[aria-current="page"]:not(.btn)::after { width: 100%; }
.nav__mobile a[aria-current="page"] { color: var(--gold-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* --- Hero (quiet sub-page hero) --- */
.ahero { background: var(--green-darker); color: #fff; position: relative; overflow: hidden; display: grid; grid-template-columns: 50% 50%; align-items: stretch; min-height: 64vh; }
.ahero::before { content:''; position:absolute; inset:0; background: radial-gradient(820px 540px at 26% 22%, rgba(168,132,44,.15), transparent 62%); pointer-events:none; z-index: 0; }
.ahero__panel { display: flex; align-items: center; position: relative; z-index: 1; padding: clamp(56px,7vw,104px) clamp(24px,4vw,72px) clamp(56px,7vw,104px) clamp(20px,7vw,calc((100vw - var(--container)) / 2 + 8px)); }
.ahero__copy { max-width: 560px; }
.ahero__title { font-size: var(--t-h1); font-weight: var(--h1-weight); max-width: 15ch; letter-spacing: var(--display-tracking); line-height: 1.04; }
.ahero__sub { font-size: clamp(17px, 1.5vw, 19px); max-width: 46ch; margin-top: 22px; color: rgba(255,255,255,.84); font-weight: 450; line-height: 1.5; }
.ahero__media { position: relative; z-index: 1; min-height: 420px; }
.ahero__media picture, .ahero__media img { width: 100%; height: 100%; }
.ahero__media img { object-fit: cover; object-position: top center; }
.ahero__media::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, var(--green-darker) 0%, transparent 16%); pointer-events:none; }

/* --- The Story --- */
.astory { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.astory__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.astory__media { position: sticky; top: 104px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--cream-2); }
.astory__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.astory__body p { color: var(--ink-soft); font-weight: 450; max-width: 60ch; margin: 0 0 1.1rem; }
.astory__body .section-title { margin-bottom: 28px; max-width: 22ch; }
.astory__pull { margin: 34px 0 34px clamp(0px, -2vw, -40px); padding: 0 0 0 26px; border-left: 3px solid var(--gold); }
.astory__pull p { font-family: var(--font-display); font-weight: var(--h3-weight); font-style: normal; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.22; color: var(--green); letter-spacing: -0.01em; margin: 0; max-width: 22ch; }
.astory__pull-name { font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); display: block; margin-top: 16px; }

/* --- Philosophy --- */
.aphil { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; }
.aphil__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.aphil__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 42px 36px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.aphil__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.aphil__num { font-family: var(--font-display); font-weight: var(--h1-weight); font-size: 30px; color: var(--gold); letter-spacing: var(--display-tracking); display: block; margin-bottom: 18px; }
.aphil__card h3 { font-family: var(--font-body); font-size: var(--t-h3); font-weight: 700; color: var(--green); letter-spacing: -0.005em; margin-bottom: 14px; }
.aphil__card p { font-size: 16px; color: var(--muted); margin: 0; line-height: 1.6; }

/* --- Full-bleed editorial divider --- */
.abuild { position: relative; height: clamp(420px, 60vh, 640px); overflow: hidden; }
.abuild img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.abuild::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(15,44,30,.82) 0%, rgba(15,44,30,.42) 45%, rgba(15,44,30,.32) 100%); }
.abuild__caption { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; padding: clamp(32px,5vw,64px) clamp(20px,5vw,56px); }
.abuild__text { font-family: var(--font-display); font-weight: var(--h2-weight); font-style: normal; color: #fff; font-size: clamp(28px, 4.2vw, 56px); line-height: 1.12; margin: 0; letter-spacing: var(--display-tracking); text-align: center; max-width: 20ch; transition-delay: .15s; }

/* --- Credentials & Recognition --- */
.acred { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.acred__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.acred__item { padding: 28px 30px 28px 0; border-bottom: 1px solid var(--line); }
.acred__label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.acred__line { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.4; }

/* --- Published Work --- */
.apub { background: var(--cream-2); padding: clamp(96px, 10vw, 168px) 0; }
.apub__subhead { font-family: var(--font-display); font-style: normal; font-weight: var(--h2-weight); font-size: clamp(18px, 1.8vw, 22px); color: var(--gold); margin: 6px 0 0; letter-spacing: var(--display-tracking); }
.apub__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px clamp(24px, 3vw, 32px); }
.apub__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 32px; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.apub__card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 18px 44px -26px rgba(168,132,44,.5); }
.apub__label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.apub__title { font-family: var(--font-display); font-style: normal; font-weight: var(--h3-weight); font-size: clamp(20px, 2vw, 24px); line-height: 1.2; letter-spacing: var(--display-tracking); margin: 0 0 12px; color: var(--ink); }
.apub__title a { color: inherit; transition: color .2s var(--ease); }
.apub__title a:hover { color: var(--green); }
.apub__teaser { font-size: 15px; color: var(--muted); margin: 0 0 16px; line-height: 1.55; max-width: 44ch; }
.apub__link { display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: .02em; color: var(--gold); margin-top: auto; width: fit-content; }
.apub__link span { transition: transform .25s var(--ease); }
.apub__link:hover { color: #8f7022; }
.apub__link:hover span { transform: translateX(5px); }
.apub__more { margin-top: 44px; }
.apub__more .link-arrow { color: var(--gold); }

/* --- Studio / Technology stack --- */
.atech { background: var(--green-darker); color: #fff; padding: clamp(88px, 10vw, 160px) 0; position: relative; }
.atech::before { content:''; position:absolute; inset:0; background: radial-gradient(900px 520px at 82% 0%, rgba(168,132,44,.16), transparent 70%); pointer-events:none; }
.atech .container { position: relative; }
.atech__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.atech__item { background: var(--green-darker); padding: 34px 30px; transition: background .3s var(--ease); }
.atech__item:hover { background: var(--green-deep); }
.atech__item h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--gold-light); letter-spacing: -0.005em; margin-bottom: 10px; }
.atech__item p { font-size: 14.5px; color: rgba(255,255,255,.72); margin: 0; line-height: 1.55; font-weight: 450; }

/* --- Who Rick works with --- */
.awho { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.awho__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.awho__lead { font-size: var(--t-body); color: var(--ink-soft); margin: 22px 0 0; max-width: 50ch; font-weight: 450; line-height: 1.6; }
.awho .section-title { max-width: 16ch; }
.awho__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.awho__row { padding: 22px 0; border-bottom: 1px solid var(--line); }
.awho__tier { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--green); margin: 0 0 4px; }
.awho__note { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* --- Author / Book callout --- */
.abook { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; }
.abook__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.abook__cover img { width: 100%; max-width: 330px; margin: 0 auto; border-radius: 6px; box-shadow: 0 36px 70px -28px rgba(0,0,0,.5); }
.abook__subtitle { font-size: 16px; color: var(--gold); font-weight: 600; margin: 12px 0 18px; }
.abook__copy { color: var(--ink-soft); font-weight: 450; max-width: 54ch; }
.abook__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* --- CTA / Next step --- */
.acta { background: var(--green); color: #fff; padding: clamp(84px, 9vw, 140px) 0; position: relative; overflow: hidden; }
.acta::before { content:''; position:absolute; inset:0; background: radial-gradient(700px 400px at 50% -10%, rgba(196,160,73,.2), transparent 65%); }
.acta__inner { max-width: 720px; text-align: center; position: relative; margin: 0 auto; }
.acta .section-title { margin: 0 auto; }
.acta__copy { font-size: 18px; color: rgba(255,255,255,.88); margin: 20px auto 32px; max-width: 56ch; font-weight: 450; line-height: 1.6; }
.acta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

@media (max-width: 1024px) {
  .atech__grid { grid-template-columns: repeat(2, 1fr); }
  .aphil__grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .acred__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .apub__grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .ahero { grid-template-columns: 1fr; min-height: 0; }
  .ahero__media { order: -1; min-height: 52vh; }
  .ahero__media img { object-position: top center; }
  .ahero__media::after { background: linear-gradient(to bottom, transparent 60%, var(--green-darker) 100%); }
  .ahero__panel { padding: clamp(40px,8vw,72px) clamp(20px,6vw,48px) clamp(48px,8vw,80px); }
  .astory__grid { grid-template-columns: 1fr; gap: 40px; }
  .astory__media { position: relative; top: 0; aspect-ratio: 16/11; max-width: 560px; }
  .astory__pull { margin-left: 0; }
  .awho__grid { grid-template-columns: 1fr; gap: 40px; }
  .abook__grid { grid-template-columns: 1fr; gap: 40px; }
  .abook__cover img { max-width: 260px; }
}
@media (max-width: 560px) {
  .atech__grid { grid-template-columns: 1fr; }
  .acred__grid { grid-template-columns: 1fr; }
  .acred__item { padding-right: 0; }
  .acta__buttons { flex-direction: column; }
  .acta__buttons .btn { width: 100%; }
  .abook__cta { flex-direction: column; }
  .abook__cta .btn { width: 100%; }
}

/* ============================================================
   PRESS PAGE
   ============================================================ */

/* --- Hero media frame (4:5 with gold caption) --- */
.press-hero__fig { position: relative; margin: 0; width: 100%; height: 100%; }
.press-hero__fig picture, .press-hero__fig img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.press-hero__cap { position: absolute; left: 16px; bottom: 16px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 22px -10px rgba(0,0,0,.5); }

/* --- Media inquiry strip --- */
.pinquiry { background: var(--cream-2); padding: clamp(36px, 4.5vw, 56px) 0; border-bottom: 1px solid var(--line); }
.pinquiry__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.pinquiry__label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.pinquiry__body { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.55; max-width: 40ch; font-weight: 450; }
.pinquiry__line { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--ink); margin: 0; }
.pinquiry__line a { color: var(--green); }
.pinquiry__line a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Authored book section --- */
.pbook { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }

/* --- Published work archive --- */
.parchive { background: var(--cream); padding: clamp(72px, 8vw, 130px) 0; border-top: 1px solid var(--line); }
.parchive__pub { display: grid; grid-template-columns: 0.42fr 1fr; gap: clamp(20px, 4vw, 56px); padding: clamp(32px, 4vw, 48px) 0; border-top: 1px solid var(--line); align-items: start; }
.parchive__pub:first-of-type { border-top: 0; padding-top: 0; }
.parchive__pubname { position: sticky; top: 104px; }
.parchive__pubname h3 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); line-height: 1.4; margin: 0; }
.parchive__list { display: flex; flex-direction: column; }
.parchive__item { border-bottom: 1px solid var(--line); }
.parchive__item:first-child { border-top: 1px solid var(--line); }
.parchive__item a { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 18px 4px 18px 0; transition: color .2s var(--ease), padding .2s var(--ease); }
.parchive__t { font-family: var(--font-display); font-style: normal; font-weight: var(--h3-weight); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.25; letter-spacing: var(--display-tracking); color: var(--ink); }
.parchive__tag { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.parchive__arrow { font-family: var(--font-body); font-size: 17px; color: var(--gold); flex-shrink: 0; transition: transform .25s var(--ease); }
.parchive__item a:hover { padding-left: 8px; }
.parchive__item a:hover .parchive__t { color: var(--green); }
.parchive__item a:hover .parchive__arrow { transform: translateX(5px); }

/* --- Awards & recognition --- */
.pawards { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; }
.pawards__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.pawards__row { display: grid; grid-template-columns: 0.4fr 1fr; gap: clamp(16px, 3vw, 40px); align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.pawards__year { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0; }
.pawards__line { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.4; }

@media (max-width: 768px) {
  .pinquiry__grid { grid-template-columns: 1fr; gap: 24px; }
  .parchive__pub { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .parchive__pubname { position: relative; top: 0; }
  .pawards__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */

/* --- Hero extras (reuses .ahero / .press-hero__fig) --- */
.phero__lead { font-size: 16px; color: rgba(255,255,255,.74); margin: 20px 0 0; max-width: 52ch; font-weight: 450; line-height: 1.6; }
.phero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.ahero .press-hero__fig { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* --- 2. Where to start strip --- */
.pstart { background: var(--cream-2); padding: clamp(56px, 6vw, 84px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pstart__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.pstart__col { padding-left: 22px; border-left: 2px solid var(--gold); }
.pstart__head { font-family: var(--font-display); font-weight: var(--h2-weight); font-size: clamp(22px, 2.2vw, 28px); line-height: 1.12; color: var(--green); letter-spacing: var(--display-tracking); margin: 0 0 12px; }
.pstart__body { font-size: 16px; color: var(--ink-soft); margin: 0; line-height: 1.55; max-width: 36ch; font-weight: 450; }

/* --- 3. Pricing cards --- */
.ppricing { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; scroll-margin-top: 84px; }
/* 6-col grid: row 1 = 3 cards (each span 2), row 2 = 2 cards centered (cols 2-3 and 4-5) */
.pcard-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: stretch; }
.pcard-grid .pcard { grid-column: span 2; padding-top: 36px; }
.pcard-grid .pcard:nth-child(4) { grid-column: 2 / span 2; }
.pcard-grid .pcard:nth-child(5) { grid-column: 4 / span 2; }
.pcard__feat-head { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.pcard--tour .pcard__feat-head { color: var(--gold-light); }
.pcard__bestfor { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.pcard__bestfor span { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.pcard--tour .pcard__bestfor { color: rgba(255,255,255,.82); border-top-color: var(--line-dark); }
.pcard--tour .pcard__bestfor span { color: var(--gold-light); }
.pcard--tour .pcard .btn, .pcard--tour .btn--outline-light { border-color: rgba(196,160,73,.7); }

/* --- 4. Comparison table --- */
.pcompare { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; }
.pcompare__wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.pcompare__table { width: 100%; border-collapse: collapse; font-family: var(--font-body); }
.pcompare__table th, .pcompare__table td { padding: 18px 18px; text-align: center; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.pcompare__table thead th { background: var(--green-darker); color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .04em; padding: 20px 18px; border-bottom: 0; }
.pcompare__table thead th.pcompare__feat-col { text-align: left; }
.pcompare__table tbody th { text-align: left; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink); background: var(--cream); width: 26%; }
.pcompare__table td { color: var(--ink-soft); font-weight: 450; }
.pcompare__table tbody tr:last-child th, .pcompare__table tbody tr:last-child td { border-bottom: 0; }
.pcompare__table tbody tr:hover td, .pcompare__table tbody tr:hover th { background: var(--cream-2); }
.ptick { font-weight: 700; color: var(--green); }
.ptick--no { color: var(--muted); font-weight: 600; }

/* --- 5. GEARS deep-dive --- */
.pgears { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.pgears__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.pgears__media { width: 100%; }
.pgears__fig { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--cream-2); width: 100%; }
.pgears__fig img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pgears__cap { position: absolute; left: 16px; bottom: 16px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 8px 16px; border-radius: 999px; box-shadow: 0 8px 22px -10px rgba(0,0,0,.5); }
.pgears__lead { font-size: var(--t-body); color: var(--ink-soft); margin: 22px 0 36px; max-width: 54ch; font-weight: 450; line-height: 1.6; }
.pgears__points { display: flex; flex-direction: column; gap: 0; }
.pgears__point { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 26px 0; border-top: 1px solid var(--line); }
.pgears__point:first-child { border-top: 0; padding-top: 0; }
.pgears__num { width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1.5px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-size: 17px; font-weight: var(--h1-weight); display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: var(--display-tracking); }
.pgears__point h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--green); letter-spacing: -0.005em; margin: 7px 0 7px; }
.pgears__point p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; font-weight: 450; }
.pgears__cta { margin-top: 36px; }

/* --- 6. Remote coaching teaser --- */
.premote { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; border-top: 1px solid var(--line); }
.premote__inner { max-width: 720px; text-align: center; margin: 0 auto; }
.premote .section-title { margin: 0 auto; }
.premote__copy { font-size: 18px; color: var(--ink-soft); margin: 20px auto 32px; max-width: 56ch; font-weight: 450; line-height: 1.6; }
.premote__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --- Programs responsive --- */
@media (max-width: 1024px) {
  .pcard-grid { grid-template-columns: repeat(4, 1fr); }
  .pcard-grid .pcard { grid-column: span 2; }
  .pcard-grid .pcard:nth-child(4) { grid-column: 1 / span 2; }
  .pcard-grid .pcard:nth-child(5) { grid-column: 3 / span 2; }
}
@media (max-width: 880px) {
  .pgears__grid { grid-template-columns: 1fr; gap: 40px; }
  .pgears__media { max-width: 560px; }
  .pgears__fig { aspect-ratio: 16/11; max-width: 560px; }
}
@media (max-width: 768px) {
  .pstart__grid { grid-template-columns: 1fr; gap: 28px; }
  .pcard-grid { grid-template-columns: 1fr; }
  .pcard-grid .pcard, .pcard-grid .pcard:nth-child(4), .pcard-grid .pcard:nth-child(5) { grid-column: 1 / -1; }

  /* Comparison table -> stacked tier cards (definition-list style) */
  .pcompare__wrap { border: 0; background: transparent; box-shadow: none; overflow: visible; }
  .pcompare__table, .pcompare__table thead, .pcompare__table tbody, .pcompare__table tr, .pcompare__table th, .pcompare__table td { display: block; }
  .pcompare__table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .pcompare__table tbody { display: grid; grid-template-columns: 1fr; gap: 0; }
  .pcompare__table tbody tr { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 0; margin-bottom: 0; }
  .pcompare__table tbody tr:hover th, .pcompare__table tbody tr:hover td { background: transparent; }
  .pcompare__table tbody th { width: auto; background: transparent; border-bottom: 1px solid var(--line); padding: 16px 22px 12px; font-family: var(--font-display); font-weight: var(--h2-weight); font-size: 17px; color: var(--green); letter-spacing: var(--display-tracking); }
  .pcompare__table tbody td { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline; text-align: right; padding: 12px 22px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
  .pcompare__table tbody td:last-child { border-bottom: 0; }
  .pcompare__table tbody td::before { content: attr(data-tier); text-align: left; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
}
@media (max-width: 560px) {
  .phero__cta { flex-direction: column; }
  .phero__cta .btn { width: 100%; }
  .premote__cta { flex-direction: column; }
  .premote__cta .btn { width: 100%; }
}

/* ============================================================
   BOOK PAGE
   The Golfer's Tools — book.html
   Reuses tokens, .btn, .section-head, .pgears__point, .acta
   ============================================================ */

/* --- Shared star rating --- */
.bstars { display: flex; align-items: center; gap: 12px; margin: 22px 0 0; }
.bstars__icons { color: var(--gold); font-size: 18px; letter-spacing: 2px; line-height: 1; }
.bstars__text { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink-soft); letter-spacing: .01em; }

/* --- 1. HERO (cream-2, split: cover left / copy right) --- */
.bhero { background: var(--cream-2); padding: clamp(64px, 8vw, 128px) 0; border-bottom: 1px solid var(--line); }
.bhero__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.bhero__cover { display: flex; justify-content: center; }
.bhero__cover img { width: 100%; max-width: 380px; height: auto; border: 0; background: transparent; filter: drop-shadow(0 38px 60px rgba(0,0,0,.34)); }
.bhero__title { font-size: var(--t-h1); font-weight: var(--h1-weight); color: var(--ink); max-width: 14ch; letter-spacing: var(--display-tracking); line-height: 1.02; }
.bhero__deck { font-family: var(--font-display); font-style: normal; font-weight: 400; font-size: clamp(22px, 2.6vw, 32px); color: var(--green); line-height: 1.18; margin: 14px 0 0; max-width: 22ch; letter-spacing: var(--display-tracking); }
.bhero__byline { font-size: 15px; color: var(--muted); margin: 18px 0 0; font-weight: 500; }
.bhero__lead { font-size: var(--t-body); color: var(--ink-soft); margin: 24px 0 0; max-width: 54ch; font-weight: 450; line-height: 1.6; }
.bhero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.bhero .btn--ghost { color: var(--green); border-color: var(--gold); }
.bhero .btn--ghost:hover { background: var(--green); border-color: var(--green); color: #fff; }
.bhero__fineprint { font-size: 14px; color: var(--muted); margin: 20px 0 0; font-weight: 500; letter-spacing: .01em; }

/* --- 2. WHAT'S INSIDE — Table of contents (cream) --- */
.btoc { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.btoc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 88px); border-top: 1px solid var(--line); }
.btoc__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line); }
.btoc__num { font-family: var(--font-display); font-weight: var(--h1-weight); font-size: 20px; color: var(--gold); letter-spacing: var(--display-tracking); min-width: 2ch; }
.btoc__name { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.btoc__foot { margin-top: 40px; padding-top: 28px; border-top: 2px solid var(--gold); }
.btoc__foot .link-arrow { color: var(--gold); font-size: 15px; }

/* --- 3. WHO IT'S FOR (cream-2, gold-left cards) --- */
.bwho { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; border-top: 1px solid var(--line); }
.bwho__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 48px); }
.bwho__col { padding-left: 24px; border-left: 2px solid var(--gold); }
.bwho__head { font-family: var(--font-display); font-weight: var(--h2-weight); font-size: clamp(21px, 2.1vw, 26px); line-height: 1.14; color: var(--green); letter-spacing: var(--display-tracking); margin: 0 0 14px; }
.bwho__body { font-size: 16px; color: var(--ink-soft); margin: 0; line-height: 1.6; font-weight: 450; }

/* --- 4. INSIDE THE PAGES (cream, copy left / photo right) --- */
.bpages { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.bpages__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.bpages__lead { font-size: var(--t-body); color: var(--ink-soft); margin: 22px 0 36px; max-width: 52ch; font-weight: 450; line-height: 1.6; }
.bpages__media { width: 100%; }

/* --- 5. PRAISE (cream-2, review cards) --- */
.bpraise { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; border-top: 1px solid var(--line); }
.bpraise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.bpraise__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; margin: 0; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.bpraise__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bpraise__stars { font-size: 16px; letter-spacing: 2px; margin: 0 0 18px; }
.bpraise__quote { font-family: var(--font-display); font-style: normal; font-weight: 400; font-size: clamp(18px, 1.7vw, 20px); line-height: 1.42; color: var(--ink); letter-spacing: -0.005em; margin: 0 0 22px; }
.bpraise__cite { font-family: var(--font-body); font-size: 13.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); margin-top: auto; }
.bpraise__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 44px; }
.bpraise__foot .bstars__icons { font-size: 16px; }
.bpraise__foot .link-arrow { color: var(--gold); font-size: 15px; }

/* --- 6. BOOK DETAILS (cream, definition list) --- */
.bdetails { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.bdetails__list { border-top: 1px solid var(--line); max-width: 820px; }
.bdetails__row { display: grid; grid-template-columns: 0.5fr 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.bdetails__row dt { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0; }
.bdetails__row dd { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.45; }
.bdetails__link { display: inline-flex; align-items: center; gap: .4em; color: var(--green); font-weight: 600; transition: color .2s var(--ease); }
.bdetails__link:hover { color: var(--gold); }

/* --- 7. FINAL CTA aside --- */
.bcta__aside { font-size: 15px; color: rgba(255,255,255,.78); margin: 26px auto 0; font-weight: 450; }
.bcta__aside a { color: var(--gold-light); font-weight: 600; }
.bcta__aside a:hover { color: #fff; }

/* --- Book page responsive --- */
@media (max-width: 880px) {
  .bhero__grid { grid-template-columns: 1fr; gap: 40px; }
  .bhero__cover { order: -1; }
  .bhero__cover img { max-width: 300px; }
  .bpages__grid { grid-template-columns: 1fr; gap: 40px; }
  .bpages__media { max-width: 520px; }
}
@media (max-width: 768px) {
  .bwho__grid { grid-template-columns: 1fr; gap: 32px; }
  .bpraise__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .btoc__list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bhero__cta { flex-direction: column; }
  .bhero__cta .btn { width: 100%; }
  .bdetails__row { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   CONTACT PAGE
   contact.html
   Reuses tokens, .btn, .ahero, .press-hero__fig, .pstart,
   .section-head, .acta, .link-arrow
   ============================================================ */

/* --- 1. HERO extras (reuses .ahero / .press-hero__fig) --- */
.chero__lead { font-size: clamp(15px, 1.3vw, 16px); color: rgba(255,255,255,.72); margin-top: 18px; max-width: 48ch; font-weight: 450; line-height: 1.55; }
.chero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* --- 2. TWO-PATH STRIP (reuses .pstart) --- */
.cstart__link { margin-top: 16px; color: var(--gold); }
.cstart__link:hover { color: var(--green); }

/* --- Centered section head (social) --- */
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .section-title { margin-left: auto; margin-right: auto; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* --- 3. CONTACT FORM (cream, form left / info right) --- */
.cform-sec { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.cform__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.cform { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.cform__field { display: flex; flex-direction: column; gap: 8px; }
.cform__field label { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); }
.cform__field input,
.cform__field select,
.cform__field textarea {
  font-family: var(--font-body); font-size: 16px; font-weight: 450; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.cform__field textarea { resize: vertical; line-height: 1.55; min-height: 140px; }
.cform__field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%23A8842C' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.cform__field input:focus,
.cform__field select:focus,
.cform__field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,132,44,.15); }
.cform__submit { align-self: flex-start; margin-top: 6px; }
.cform__note { font-size: 14px; color: var(--muted); margin: 0; font-weight: 450; }

/* --- Studio info card (cream-2) --- */
.cinfo { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 3vw, 40px); }
.cinfo .eyebrow { margin-bottom: 12px; }
.cinfo__name { font-family: var(--font-display); font-weight: var(--h3-weight); font-size: clamp(24px, 2.4vw, 30px); color: var(--green); letter-spacing: var(--display-tracking); line-height: 1.1; margin: 0 0 14px; }
.cinfo__address { font-style: normal; font-family: var(--font-body); font-size: 16px; color: var(--ink-soft); line-height: 1.6; font-weight: 450; margin: 0; }
.cinfo__rule { border: 0; border-top: 1px solid var(--gold); opacity: .55; width: 40px; margin: 24px 0; }
.cinfo__row { margin-bottom: 16px; }
.cinfo__label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 4px; }
.cinfo__val { font-size: 16px; color: var(--ink); font-weight: 500; margin: 0; }
.cinfo__val a { transition: color .2s var(--ease); }
.cinfo__val a:hover { color: var(--green); }
.cinfo__hours { margin: 10px 0 0; }
.cinfo__hrow { display: grid; grid-template-columns: 0.55fr 1fr; gap: 16px; padding: 7px 0; align-items: baseline; }
.cinfo__hrow dt { font-size: 14px; font-weight: 600; color: var(--ink-soft); margin: 0; }
.cinfo__hrow dd { font-size: 14px; color: var(--muted); margin: 0; font-weight: 450; }
.cinfo__appt { font-size: 14px; color: var(--gold); font-weight: 600; margin: 20px 0 0; letter-spacing: .01em; }

/* --- 4. MAP (cream-2) --- */
.cmap { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; border-top: 1px solid var(--line); }
.cmap__fig { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); line-height: 0; }
.cmap__fig iframe { display: block; width: 100%; }
.cmap__links { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; margin-top: 28px; }
.cmap__links a { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: .35em; transition: color .2s var(--ease); }
.cmap__links a:hover { color: var(--gold); }

/* --- 5. MEDIA & PRESS (cream) --- */
.cpress { background: var(--cream); padding: clamp(84px, 9vw, 150px) 0; }
.cpress__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); border-top: 1px solid var(--line); padding-top: 40px; }
.cpress__label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.cpress__line { font-size: 17px; color: var(--ink); font-weight: 500; margin: 0; line-height: 1.45; }
.cpress__line a { transition: color .2s var(--ease); }
.cpress__line a:hover { color: var(--green); }
.cpress__more { margin-top: 40px; }

/* --- 6. SOCIAL (cream-2, centered) --- */
.csocial { background: var(--cream-2); padding: clamp(84px, 9vw, 150px) 0; border-top: 1px solid var(--line); }
.csocial__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; max-width: 960px; margin: 0 auto; }
.csocial__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; align-items: flex-start; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.csocial__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.csocial__card .eyebrow { margin-bottom: 14px; }
.csocial__handle { font-family: var(--font-display); font-weight: var(--h3-weight); font-size: clamp(19px, 1.8vw, 23px); color: var(--green); letter-spacing: -0.005em; line-height: 1.15; margin: 0 0 4px; overflow-wrap: anywhere; word-break: normal; hyphens: none; }
.csocial__sub { font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--ink-soft); margin: 0 0 12px; letter-spacing: 0; overflow-wrap: anywhere; }
.csocial__desc { font-size: 15px; color: var(--muted); margin: 0 0 24px; line-height: 1.55; font-weight: 450; flex-grow: 1; }
.btn--sm { padding: 10px 20px; font-size: 14px; }

/* --- Contact page responsive --- */
@media (max-width: 880px) {
  .cform__grid { grid-template-columns: 1fr; gap: 44px; }
  .cform { max-width: none; }
  .cinfo { max-width: 560px; }
}
@media (max-width: 768px) {
  .cpress__meta { grid-template-columns: 1fr; gap: 28px; }
  .csocial__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .chero__cta { flex-direction: column; }
  .chero__cta .btn { width: 100%; }
  .acta__buttons .btn { width: 100%; }
}
