/* ============================================================
   Beyond the Lanes — site stylesheet
   Shared across: /, /12-frames, /private-coaching, /team-coaching
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --cream:        #faf9f6;
  --cream-warm:   #f3eee3;
  --paper:        #ffffff;
  --ink:          #1e2143;   /* dark blue — darkest color, never black */
  --ink-2:        #2a2f5f;
  --purple:       #303689;
  --purple-soft:  #4b51a9;
  --teal:         #6bb6b7;
  --teal-soft:    #a8d4d5;
  --line:         rgba(30,33,67,0.12);
  --line-soft:    rgba(30,33,67,0.06);
  --shadow-sm:    0 1px 2px rgba(30,33,67,0.06), 0 2px 8px rgba(30,33,67,0.04);
  --shadow-md:    0 10px 30px rgba(30,33,67,0.10), 0 2px 6px rgba(30,33,67,0.05);
  --shadow-lg:    0 30px 80px rgba(30,33,67,0.18), 0 8px 24px rgba(30,33,67,0.08);

  --display: "Fraunces", "Times New Roman", serif;
  --sans:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 28px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "ss01", "ss02", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--purple); color: var(--cream); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); box-sizing: border-box; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow.no-line::before { display: none; }
.eyebrow.on-dark { color: var(--teal-soft); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
h1 .ital, h2 .ital, h3 .ital { font-style: italic; font-weight: 400; color: var(--purple); }
p { margin: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s, color .25s;
  cursor: pointer;
  will-change: transform;
}
.btn .arr { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--purple); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { padding: 10px 0; border-radius: 0; border-bottom: 1.5px solid var(--ink); }
.btn-ghost:hover { color: var(--purple); border-color: var(--purple); }
.btn-on-dark.btn-primary { background: var(--cream); color: var(--ink); }
.btn-on-dark.btn-primary:hover { background: var(--teal); color: var(--ink); }
.btn-on-dark.btn-secondary { color: var(--cream); border-color: var(--cream); }
.btn-on-dark.btn-secondary:hover { background: var(--cream); color: var(--ink); }
.btn-teal { background: var(--teal); color: var(--ink); }
.btn-teal:hover { background: var(--cream); color: var(--ink); transform: translateY(-2px); }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 51;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  color: var(--cream); text-decoration: none;
  padding: 10px 20px; font: 600 13px/1.3 var(--sans);
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.announce-bar .announce-cta { text-decoration: underline; text-underline-offset: 3px; flex-shrink: 0; }
@media (max-width: 640px) { .announce-bar { font-size: 11px; padding: 9px 14px; gap: 6px; height: 34px; } }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 50;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250, 249, 246, 0.65);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(250, 249, 246, 0.88);
  border-bottom-color: var(--line-soft);
  padding-top: 10px; padding-bottom: 10px;
}
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; padding: 8px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  height: 1.5px; width: 0; background: var(--purple);
  transition: width .3s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .btn { padding: 12px 22px; font-size: 13px; }
.nav-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-burger span { display:block; width: 22px; height: 1.5px; background: var(--ink); position: relative; }
.nav-burger span::before, .nav-burger span::after { content:""; position:absolute; left:0; width:22px; height:1.5px; background: var(--ink); transition: transform .3s; }
.nav-burger span::before { top: -7px; } .nav-burger span::after { top: 7px; }

@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ---------- HERO (homepage) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(107,182,183,0.18), transparent 60%),
    radial-gradient(40% 40% at 5% 80%, rgba(48,54,137,0.10), transparent 60%),
    radial-gradient(35% 30% at 50% 100%, rgba(243,238,227,0.6), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.13 0 0 0 0 0.26 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.08'/></svg>");
  mix-blend-mode: multiply; opacity: 0.4;
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero-copy .eyebrow { margin-bottom: 32px; }
.hero h1 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 144;
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero h1 .line:nth-child(1) > span { animation-delay: .15s; }
.hero h1 .line:nth-child(2) > span { animation-delay: .30s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .45s; }
.hero h1 .ital { font-style: italic; font-weight: 400; color: var(--purple); font-variation-settings: "opsz" 144; }
@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: fade-up .9s cubic-bezier(.2,.8,.2,1) forwards .8s;
}
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fade-up .9s cubic-bezier(.2,.8,.2,1) forwards 1s; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 600px;
  opacity: 0; animation: fade-up .9s cubic-bezier(.2,.8,.2,1) forwards 1.2s;
}
.hero-meta > div { line-height: 1.2; min-width: 0; }
.hero-meta .n { font-family: var(--display); font-size: clamp(30px, 2.6vw, 40px); font-weight: 500; color: var(--purple); letter-spacing: -0.02em; }
.hero-meta .l { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-top: 6px; line-height: 1.35; }

.hero-visual { position: relative; aspect-ratio: 4/5; width: 100%; z-index: 2; }
.hero-frame { position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(1.5deg); background: var(--ink); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: saturate(1.05) contrast(1.02); }
.hero-tag {
  position: absolute; background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 18px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); box-shadow: var(--shadow-md); z-index: 3;
}
.hero-tag.t1 { top: -16px; left: -24px; }
.hero-tag.t1::before { content: "★"; color: var(--purple); margin-right: 8px; }
.hero-tag.t2 { bottom: 20px; right: -28px; background: var(--ink); color: var(--cream); border-color: var(--ink); display: flex; align-items: center; gap: 10px; }
.hero-tag.t2 .pulse { width: 8px; height: 8px; background: var(--teal); border-radius: 999px; box-shadow: 0 0 0 0 rgba(107,182,183,.7); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(107,182,183,.7); }
  100% { box-shadow: 0 0 0 16px rgba(107,182,183,0); }
}
.hero-tag.t3 { bottom: 80px; left: -32px; background: var(--teal); color: var(--ink); border-color: var(--teal); font-family: var(--display); font-style: italic; font-weight: 500; font-size: 16px; letter-spacing: 0; text-transform: none; padding: 14px 22px; }

.hero-scroll { position: absolute; left: var(--gutter); bottom: 24px; display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); z-index: 4; }
.hero-scroll .bar { width: 60px; height: 1px; background: var(--ink-2); position: relative; overflow: hidden; }
.hero-scroll .bar::after { content:""; position: absolute; inset: 0; background: var(--purple); animation: scrollbar 2.4s cubic-bezier(.6,0,.4,1) infinite; }
@keyframes scrollbar { 0% { transform: translateX(-100%); } 60% { transform: translateX(0); } 100% { transform: translateX(100%); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 120px; min-height: auto; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-tag.t1 { left: 8px; top: -12px; }
  .hero-tag.t2 { right: 8px; }
  .hero-tag.t3 { left: 8px; }
  .hero-scroll { display: none; }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 180px var(--gutter) clamp(80px, 10vw, 140px);
  background: var(--cream);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(50% 40% at 90% 0%, rgba(107,182,183,0.18), transparent 60%),
    radial-gradient(40% 40% at 0% 90%, rgba(48,54,137,0.08), transparent 60%);
}
.page-hero .inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: end; }
.page-hero .inner.single { grid-template-columns: minmax(0, 1fr); max-width: 1000px; text-align: left; }
.page-hero .breadcrumb { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--ink-2); border-bottom: 1px solid transparent; transition: border-color .25s, color .25s; }
.page-hero .breadcrumb a:hover { color: var(--purple); border-color: var(--purple); }
.page-hero .breadcrumb .sep { margin: 0 10px; color: var(--line); }
.page-hero h1 {
  font-size: clamp(48px, 7vw, 116px);
  font-weight: 400; line-height: 0.94; letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.page-hero .lede { font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5; color: var(--ink-2); max-width: 620px; margin-bottom: 32px; }
.page-hero .meta-row { display: flex; gap: 36px; flex-wrap: wrap; margin-bottom: 36px; }
.page-hero .meta-row .item { line-height: 1.2; }
.page-hero .meta-row .label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); }
.page-hero .meta-row .value { font-family: var(--display); font-size: 24px; color: var(--ink); margin-top: 4px; font-weight: 500; }
.page-hero .meta-row .value em { color: var(--purple); font-weight: 400; }
.page-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero .side { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(1deg); }
.page-hero .side img { width: 100%; height: 100%; object-fit: cover; }
/* team-coaching hero: keep her head in frame (full-body studio shot) */
.page-hero .side img[src*="turbo-storm"] { object-position: center top; }

@media (max-width: 900px) {
  .page-hero { padding-top: 120px; }
  .page-hero .inner { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- MARQUEE ---------- */
.marquee-wrap {
  background: var(--ink); color: var(--cream);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; position: relative;
}
.marquee-label { text-align: center; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 24px; }
.marquee { display: flex; gap: 72px; animation: marquee 38s linear infinite; width: max-content; align-items: center; }
.marquee img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; transition: opacity .3s; }
.marquee img:hover { opacity: 1; }
.marquee .wordmark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--cream);
  opacity: 0.85;
  letter-spacing: -0.015em;
  transition: opacity .3s;
  white-space: nowrap;
}
.marquee .wordmark:hover { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- PHILOSOPHY / PULL ---------- */
.philosophy { padding: clamp(100px, 14vw, 200px) var(--gutter); background: var(--cream); text-align: center; position: relative; }
.philosophy::before { content: "“"; position: absolute; left: 50%; top: 80px; transform: translateX(-50%); font-family: var(--display); font-size: 240px; font-weight: 500; color: var(--teal); opacity: 0.25; line-height: 1; pointer-events: none; }
.philosophy blockquote { margin: 0 auto; max-width: 1100px; font-family: var(--display); font-size: clamp(32px, 4.6vw, 76px); font-weight: 400; line-height: 1.08; letter-spacing: -0.025em; color: var(--ink); position: relative; }
.philosophy blockquote .accent { color: var(--purple); font-style: italic; font-weight: 400; }
/* homepage quote, forced to three clean lines (sized so each line fits) */
.philosophy blockquote.three-line { max-width: min(94vw, 1320px); font-size: clamp(22px, 2.8vw, 42px); line-height: 1.18; }
.philosophy blockquote.three-line br { display: block; }
.philosophy .attr { margin-top: 48px; display: inline-flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); }
.philosophy .attr::before { content: ""; width: 32px; height: 1px; background: var(--ink-2); }

/* ---------- AUDIENCE / GRID CARDS ---------- */
.audience { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); }
.audience .head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.audience h2 { font-size: clamp(40px, 5.5vw, 80px); }
.audience .head p { color: var(--ink-2); font-size: 18px; line-height: 1.6; max-width: 460px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aud-card {
  position: relative; background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 36px; min-height: 460px;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .35s, color .35s, border-color .35s;
  overflow: hidden; cursor: pointer;
}
.aud-card .num { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--purple); margin-bottom: 24px; }
.aud-card h3 { font-size: 44px; line-height: 1; margin-bottom: 20px; }
.aud-card .quote { font-family: var(--display); font-style: italic; font-size: 19px; line-height: 1.45; color: var(--ink-2); margin-bottom: 32px; flex-grow: 1; }
.aud-card .quote::before { content: "“"; color: var(--teal); font-size: 32px; vertical-align: -10px; margin-right: 4px; }
.aud-card .go { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); transition: gap .3s; }
.aud-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; background: var(--ink); color: var(--cream); }
.aud-card:hover h3 { color: var(--cream); }
.aud-card:hover .num { color: var(--teal); }
.aud-card:hover .quote { color: var(--teal-soft); }
.aud-card:hover .go { color: var(--teal); gap: 16px; }
.aud-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.aud-card.featured h3, .aud-card.featured .go { color: var(--cream); }
.aud-card.featured .num { color: var(--teal); }
.aud-card.featured .quote { color: var(--teal-soft); }
.aud-card.featured::after { content: "Highest intent"; position: absolute; top: 24px; right: 24px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); border: 1px solid var(--teal); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.aud-card.featured .num { margin-top: 30px; }
.aud-card.featured:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-8px); }

@media (max-width: 900px) {
  .audience .head { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .audience-grid { grid-template-columns: minmax(0, 1fr); }
  .aud-card { min-height: auto; }
}
@media (max-width: 480px) {
  .aud-card { padding: 32px 24px; }
  .aud-card h3 { font-size: 34px; }
}

/* ---------- LEAD MAGNET ---------- */
.lead { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.lead::before { content:""; position: absolute; inset:0; opacity: 0.5; background: radial-gradient(60% 50% at 100% 0%, rgba(107,182,183,0.30), transparent 60%), radial-gradient(40% 40% at 0% 100%, rgba(48,54,137,0.55), transparent 60%); }
.lead-inner { position: relative; display: grid; grid-template-columns: 1fr 0.85fr; gap: 80px; align-items: stretch; max-width: var(--container); margin: 0 auto; }
.lead h2 { color: var(--cream); font-size: clamp(40px, 5.6vw, 88px); line-height: 1; letter-spacing: -0.03em; margin-bottom: 24px; }
.lead h2 .ital { color: var(--teal); }
.lead p { color: var(--teal-soft); font-size: 19px; line-height: 1.55; max-width: 480px; margin-bottom: 32px; }
.lead-form { display: flex; gap: 8px; max-width: 520px; flex-wrap: wrap; }
.lead-form input { flex: 1 1 240px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.20); color: var(--cream); padding: 18px 22px; border-radius: 999px; font: 500 15px/1 var(--sans); outline: none; transition: border-color .25s, background .25s; }
.lead-form input::placeholder { color: rgba(255,255,255,0.55); }
.lead-form input:focus { border-color: var(--teal); background: rgba(255,255,255,0.10); }
.lead-fineprint { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

.lead-visual { position: relative; align-self: stretch; min-height: 440px; max-width: 460px; width: 100%; justify-self: end; }
.lead-photo { position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.lead-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.lead-visual:hover .lead-photo img { transform: scale(1.04); }
.lead-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(30,33,67,0.7) 100%); }
.lead-photo-cap { position: absolute; left: 20px; bottom: 18px; right: 20px; z-index: 2; color: var(--cream); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; text-shadow: 0 1px 6px rgba(30,33,67,0.5); }
/* landscape variant — shows the full frame (e.g. the camera turning to her) */
.lead-visual:has(.lead-photo--wide) { align-self: center; min-height: 0; max-width: 560px; }
.lead-photo--wide { position: relative; inset: auto; aspect-ratio: 3/2; }
.lead-photo--wide img { object-position: center; }
.lead-cover { position: absolute; inset: 0; background: var(--cream); border-radius: var(--radius); padding: 48px 32px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-lg); transform: rotate(-4deg); transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.lead-visual:hover .lead-cover { transform: rotate(0deg) scale(1.02); }
.lead-cover .crest { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--purple); font-weight: 700; }
.lead-cover .cover-h { font-family: var(--display); font-size: 36px; line-height: 1.04; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.lead-cover .cover-h em { color: var(--purple); font-style: italic; font-weight: 400; }
.lead-cover .meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); border-top: 1px solid var(--line); padding-top: 14px; }
.lead-ribbon { position: absolute; top: -12px; left: -12px; z-index: 3; background: var(--teal); color: var(--ink); padding: 8px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; transform: rotate(-8deg); box-shadow: var(--shadow-md); }

@media (max-width: 900px) {
  .lead-inner { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .lead-visual { max-width: 320px; }
}

/* ---------- MENTAL MISTAKES GUIDE (homepage lead magnet) ---------- */
.guide-magnet { padding: clamp(64px, 8vw, 100px) var(--gutter); background: var(--cream-warm); }
.guide-magnet-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.guide-magnet-photo { position: relative; aspect-ratio: 4/5; max-width: 340px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(-3deg); }
.guide-magnet-photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-magnet-copy h2 { font-size: clamp(32px, 4.2vw, 54px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px; }
.guide-magnet-copy h2 .ital { color: var(--purple); }
.guide-magnet-copy > p { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 480px; margin-bottom: 28px; }
.guide-magnet-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 560px; }
.guide-magnet-form input { flex: 1 1 180px; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: 12px; font: 500 15px/1 var(--sans); background: var(--paper); outline: none; transition: border-color .2s; }
.guide-magnet-form input:focus { border-color: var(--teal); }
.guide-magnet-fine { margin-top: 14px; font-size: 12.5px; color: var(--ink-2); }
@media (max-width: 860px) {
  .guide-magnet-inner { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .guide-magnet-photo { margin: 0 auto; }
  .guide-magnet-copy > p { margin-left: auto; margin-right: auto; }
  .guide-magnet-form { justify-content: center; }
}

/* ---------- ABOUT / STATS ---------- */
.about { padding: clamp(100px, 12vw, 180px) var(--gutter); background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: center; max-width: var(--container); margin: 0 auto; }
.about-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo img[src*="studio-storm"] { object-position: center top; } /* keep her head in frame */
.about-photo .badge { position: absolute; bottom: 24px; left: 24px; background: var(--cream); border-radius: var(--radius); padding: 16px 20px; max-width: 280px; box-shadow: var(--shadow-md); }
.about-photo .badge .b-eye { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); font-weight: 700; margin-bottom: 8px; }
.about-photo .badge .b-q { font-family: var(--display); font-style: italic; font-size: 15px; line-height: 1.35; color: var(--ink); }
.about-copy .eyebrow { margin-bottom: 24px; }
.about-copy h2 { font-size: clamp(40px, 5.4vw, 80px); margin-bottom: 24px; }
.about-copy h2 .ital { color: var(--purple); }
.about-copy .lede { font-size: 20px; line-height: 1.55; color: var(--ink); margin-bottom: 20px; font-weight: 500; }
.about-copy p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin-bottom: 16px; }
.about-cta { margin-top: 36px; }
.about-copy .inline-link {
  color: var(--purple);
  font-weight: 600;
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 1px;
  transition: color .25s, border-color .25s;
}
.about-copy .inline-link:hover { color: var(--teal); border-bottom-color: var(--purple); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 80px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 36px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .n { font-family: var(--display); font-size: clamp(48px, 6vw, 84px); font-weight: 500; line-height: 1; color: var(--ink); letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 4px; }
.stat .n sup { font-size: 0.4em; color: var(--purple); font-weight: 600; vertical-align: super; line-height: 1; }
.stat .l { margin-top: 12px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
}

/* ---------- OFFERS ---------- */
.offers { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); }
.offers .head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.offers h2 { font-size: clamp(40px, 5.4vw, 80px); max-width: 800px; }
.offers .head .sub { max-width: 360px; color: var(--ink-2); font-size: 17px; line-height: 1.55; }
.offers-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 20px; }
.offer-card { position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px 28px; display: flex; flex-direction: column; min-height: 380px; transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s; }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.offer-card .tier { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.offer-card h3 { font-size: 30px; line-height: 1.05; margin-top: 14px; margin-bottom: 14px; }
.offer-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex-grow: 1; }
.offer-card .price { font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--purple); margin-top: 24px; margin-bottom: 14px; letter-spacing: -0.02em; }
.offer-card .price small { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-left: 6px; font-weight: 500; }
.offer-card .cta { margin-top: 0; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px; align-self: flex-start; transition: color .25s, border-color .25s, gap .25s; }
.offer-card:hover .cta { color: var(--purple); border-color: var(--purple); gap: 12px; }
.offer-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); grid-row: span 1; }
.offer-card.featured .tier { color: var(--teal); }
.offer-card.featured h3 { color: var(--cream); }
.offer-card.featured p { color: var(--teal-soft); }
.offer-card.featured .price { color: var(--teal); }
.offer-card.featured .price small { color: var(--teal-soft); }
.offer-card.featured .cta { color: var(--cream); border-color: var(--cream); }
.offer-card.featured:hover { transform: translateY(-6px); background: var(--purple); border-color: var(--purple); }
.offer-card.featured .ribbon { position: absolute; top: -14px; left: 28px; background: var(--teal); color: var(--ink); padding: 7px 14px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; box-shadow: var(--shadow-md); }

@media (max-width: 1100px) { .offers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .offers-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- STORY / KITCHEN FLOOR ---------- */
.story { padding: clamp(100px, 13vw, 200px) var(--gutter); background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.story::before { content:""; position: absolute; inset:0; pointer-events: none; background: radial-gradient(50% 40% at 0% 0%, rgba(48,54,137,0.45), transparent 60%), radial-gradient(40% 30% at 100% 100%, rgba(107,182,183,0.15), transparent 60%); }
.story-grid { position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 88px); align-items: center; max-width: var(--container); margin: 0 auto; }
.story-photo { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(-1.2deg); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
/* wide variant — for landscape photos that lose their effect when cropped to portrait */
.story-grid:has(.story-photo--wide) { align-items: center; }
.story-photo--wide { aspect-ratio: 3/2; }
.story-photo--wide img { object-position: center; }
.story-photo .cap { position: absolute; bottom: 16px; left: 16px; background: rgba(30,33,67,0.85); backdrop-filter: blur(8px); color: var(--cream); padding: 12px 16px; border-radius: var(--radius); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.story-photo .cap em { font-style: normal; color: var(--teal); }
.story-copy .eyebrow { color: var(--teal-soft); margin-bottom: 28px; }
.story-copy .eyebrow::before { background: var(--teal); }
.story-copy h2 { color: var(--cream); font-size: clamp(36px, 5vw, 72px); line-height: 1.04; letter-spacing: -0.025em; margin-bottom: 32px; }
.story-copy h2 .ital { color: var(--teal); }
.story-copy blockquote { margin: 0 0 28px 0; font-family: var(--display); font-size: clamp(20px, 1.8vw, 26px); font-style: italic; line-height: 1.45; color: var(--teal-soft); border-left: 2px solid var(--teal); padding-left: 24px; }
.story-copy p { color: var(--cream); opacity: 0.85; font-size: 17px; line-height: 1.65; margin-bottom: 16px; }

@media (max-width: 900px) { .story-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- TESTIMONIALS ---------- */
.tests { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream); }
.tests .head { text-align: center; margin-bottom: 64px; }
.tests h2 { font-size: clamp(40px, 5.4vw, 80px); }
.tests h2 .ital { color: var(--purple); }
.tests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--container); margin: 0 auto; }
.test-card { background: var(--cream-warm); border-radius: var(--radius-lg); padding: 40px 36px; display: flex; flex-direction: column; border: 1px solid var(--line-soft); position: relative; }
.test-card .mark { font-family: var(--display); font-size: 64px; line-height: 0.6; color: var(--teal); margin-bottom: 8px; }
.test-card blockquote { margin: 0 0 32px 0; font-family: var(--display); font-size: 22px; line-height: 1.4; font-weight: 400; color: var(--ink); letter-spacing: -0.005em; flex-grow: 1; }
.test-card .who { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.test-card .who .av { width: 44px; height: 44px; border-radius: 999px; background: linear-gradient(135deg, var(--purple), var(--teal)); color: var(--cream); display: grid; place-items: center; font-family: var(--display); font-size: 18px; font-weight: 500; }
.test-card .who .nm { font-size: 14px; font-weight: 600; color: var(--ink); }
.test-card .who .role { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-top: 2px; }
.test-card.featured { background: var(--purple); color: var(--cream); border-color: var(--purple); }
.test-card.featured blockquote { color: var(--cream); }
.test-card.featured .mark { color: var(--teal); }
.test-card.featured .who { border-top-color: rgba(255,255,255,0.2); }
.test-card.featured .who .nm { color: var(--cream); }
.test-card.featured .who .role { color: var(--teal-soft); }

@media (max-width: 1000px) { .tests-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- NEWSLETTER ---------- */
.news { padding: clamp(100px, 12vw, 180px) var(--gutter); background: var(--cream-warm); text-align: center; }
.news .container { max-width: 800px; }
.news .eyebrow { justify-content: center; display: flex; margin-bottom: 24px; }
.news h2 { font-size: clamp(40px, 5.4vw, 80px); margin-bottom: 24px; }
.news h2 .ital { color: var(--purple); }
.news p { color: var(--ink-2); font-size: 18px; line-height: 1.55; max-width: 540px; margin: 0 auto 36px; }
.news-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.news-form input { flex: 1 1 240px; border: 1px solid var(--line); background: var(--cream); padding: 16px 22px; border-radius: 999px; font: 500 15px/1 var(--sans); color: var(--ink); outline: none; transition: border-color .25s; }
.news-form input:focus { border-color: var(--purple); }
.news-fine { margin-top: 14px; font-size: 12px; color: var(--ink-2); letter-spacing: 0.04em; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 80px var(--gutter) 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; max-width: var(--container); margin: 0 auto 60px; }
.footer .brand img { height: 56px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer .brand p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; max-width: 360px; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.8); font-size: 15px; transition: color .25s; }
.footer-col a:hover { color: var(--teal); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; list-style: none; }
.footer-col .ext { font-size: 11px; opacity: 0.7; margin-left: 4px; }
.footer-base { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; max-width: var(--container); margin: 0 auto; }
.footer-base .sig { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--teal-soft); }
.footer-base .copy { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; color: var(--cream); transition: background .25s, color .25s, border-color .25s; }
.socials a:hover { background: var(--teal); color: var(--ink); border-color: var(--teal); }
.socials svg { width: 16px; height: 16px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ============================================================
   INNER PAGE PRIMITIVES
   ============================================================ */

/* ---------- SECTION HEADER ---------- */
.section { padding: clamp(80px, 10vw, 140px) var(--gutter); }
.section .container { max-width: var(--container); margin: 0 auto; }
.section.dark { background: var(--ink); color: var(--cream); }
.section.dark h2 { color: var(--cream); }
.section.dark h2 .ital { color: var(--teal); }
.section.warm { background: var(--cream-warm); }
.section.cream { background: var(--cream); }
.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .eyebrow { display: inline-flex; }
.section-head h2 { font-size: clamp(40px, 5.4vw, 80px); margin-top: 20px; margin-bottom: 20px; }
.section-head .sub { color: var(--ink-2); font-size: 18px; line-height: 1.55; }
.section.dark .section-head .sub { color: var(--teal-soft); }

/* ---------- CURRICULUM / FRAMES GRID (12 cards) ---------- */
.frames-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.frame-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 28px;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s, background .35s, color .35s;
  cursor: default; overflow: hidden;
}
.frame-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.frame-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.frame-card:hover::before { transform: scaleX(1); }
.frame-card .num {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 56px; line-height: 1; color: var(--purple);
  letter-spacing: -0.04em; margin-bottom: 18px;
}
.frame-card .label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; margin-bottom: 8px; }
.frame-card h3 { font-size: 24px; line-height: 1.05; margin-bottom: 14px; }
.frame-card p { font-size: 14px; line-height: 1.5; color: var(--ink-2); margin-top: auto; }
.frame-card.spotlight {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  grid-column: span 2;
}
.frame-card.spotlight .num { color: var(--teal); }
.frame-card.spotlight h3 { color: var(--cream); font-size: 32px; }
.frame-card.spotlight p { color: var(--teal-soft); }
.frame-card.spotlight .label { color: var(--teal); }

@media (max-width: 1100px) { .frames-grid { grid-template-columns: repeat(3, 1fr); } .frame-card.spotlight { grid-column: span 1; } }
@media (max-width: 800px)  { .frames-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .frames-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- KEY FORMULA / SIGNATURE PHRASES ---------- */
.formula { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); text-align: center; }
.formula .eqn { font-family: var(--display); font-size: clamp(40px, 6vw, 88px); font-weight: 500; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
.formula .eqn .a { color: var(--purple); }
.formula .eqn .b { color: var(--teal); }
.formula .eqn .op { color: var(--ink-2); font-weight: 400; padding: 0 12px; }
.formula .sub-eq { margin-top: 28px; font-size: 16px; color: var(--ink-2); letter-spacing: 0.12em; text-transform: uppercase; }

.phrases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 64px auto 0;
}
.phrase-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: left;
}
.phrase-card .num { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); font-weight: 700; margin-bottom: 12px; }
.phrase-card .q { font-family: var(--display); font-style: italic; font-size: 26px; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 14px; }
.phrase-card .why { font-size: 14px; line-height: 1.5; color: var(--ink-2); }

@media (max-width: 900px) { .phrases { grid-template-columns: minmax(0, 1fr); } }

/* ---------- FORMATS / PACKAGES ---------- */
.formats { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream); }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin: 0 auto; }
.format-card {
  position: relative;
  background: var(--cream-warm); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
}
.format-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.format-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.format-card .tier { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.format-card.featured .tier { color: var(--teal); }
.format-card h3 { font-size: 32px; line-height: 1.05; margin-top: 14px; margin-bottom: 18px; }
.format-card.featured h3 { color: var(--cream); }
.format-card .desc { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex-grow: 1; }
.format-card.featured .desc { color: var(--teal-soft); }
.format-card .meta-list { margin: 24px 0; display: grid; gap: 10px; }
.format-card .meta-list li { list-style: none; display: flex; gap: 12px; font-size: 14px; color: var(--ink); }
.format-card.featured .meta-list li { color: var(--cream); }
.format-card .meta-list li::before {
  content: ""; width: 6px; height: 6px; background: var(--teal); border-radius: 999px;
  margin-top: 9px; flex-shrink: 0;
}
.format-card .price { font-family: var(--display); font-size: 32px; font-weight: 500; color: var(--purple); margin-top: auto; margin-bottom: 18px; letter-spacing: -0.02em; }
.format-card.featured .price { color: var(--teal); }
.format-card .price small { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-left: 6px; font-weight: 500; }
.format-card.featured .price small { color: var(--teal-soft); }
.format-card .cta-row { margin-top: 0; }
.format-card .ribbon { position: absolute; top: -14px; left: 28px; background: var(--teal); color: var(--ink); padding: 7px 14px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; box-shadow: var(--shadow-md); }

@media (max-width: 1000px) { .formats-grid { grid-template-columns: minmax(0, 1fr); } }

/* family section (champion page) */
.family-section { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); }
.family-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 88px); max-width: var(--container); margin: 0 auto; align-items: center; }
.family-photo { margin: 0; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--cream); }
.family-photo img { width: 100%; height: 100%; object-fit: cover; }
.family-photo-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  text-align: center; padding: 24px;
}
.family-photo-ph .fph-heart { font-size: 40px; color: var(--teal); line-height: 1; }
.family-photo-ph .fph-label { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--ink); }
.family-photo-ph .fph-note { font-size: 12px; letter-spacing: 0.04em; color: var(--ink-2); }
.family-copy h2 { font-size: clamp(36px, 4.8vw, 64px); line-height: 1; letter-spacing: -0.03em; }
.family-copy h2 .ital { color: var(--purple); }
.family-copy p { font-size: 18px; line-height: 1.6; color: var(--ink-2); margin-top: 16px; }
.family-copy .family-kicker { font-family: var(--display); font-size: clamp(20px, 2vw, 26px); font-style: italic; color: var(--ink); line-height: 1.35; margin-top: 24px; }
.family-copy .family-kicker em { color: var(--purple); }
@media (max-width: 860px) { .family-grid { grid-template-columns: minmax(0, 1fr); } .family-photo { max-width: 420px; } }

/* clean 3-photo editorial row (replaces the asymmetric grid) */
.ed-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  max-width: var(--container);
  margin: 0 auto;
}
.ed-row figure {
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-warm);
}
.ed-row figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.ed-row figure:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
  .ed-row { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .ed-row figure { aspect-ratio: 4/3; }
}

/* ============================================================
   EDITORIAL SPREAD — magazine-style photo essay
   Used on the homepage between the marquee and the philosophy.
   ============================================================ */
.editorial {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.ed-head {
  display: flex; justify-content: space-between; align-items: end;
  margin: 0 auto 56px; gap: 40px; flex-wrap: wrap;
  max-width: var(--container);
}
.ed-head h2 {
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.98; letter-spacing: -0.03em;
  max-width: 880px;
}
.ed-head h2 .ital { color: var(--purple); }
.ed-mast { text-align: right; }
.ed-mast .issue {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 700;
}
.ed-mast .byline {
  font-family: var(--display); font-style: italic;
  font-size: 18px; color: var(--purple); margin-top: 8px;
}

.ed-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 5.4vw;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.ed-cell { position: relative; overflow: hidden; border-radius: var(--radius); }
.ed-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.ed-cell:hover img { transform: scale(1.04); }
.ed-cell .cap {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(250,249,246,0.92); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink); padding: 8px 14px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}

/* Asymmetric magazine grid */
.ed-1  { grid-column: 1 / 7;  grid-row: 1 / 9; }   /* large left (yellow-hat-joy) */
.ed-q1 { grid-column: 8 / 13; grid-row: 1 / 5; }   /* pull quote 1 */
.ed-2  { grid-column: 8 / 13; grid-row: 5 / 11; }  /* B&W portrait */
.ed-3  { grid-column: 1 / 8;  grid-row: 9 / 15; }  /* wallpaper room */
.ed-q2 { grid-column: 8 / 13; grid-row: 11 / 13; } /* small dark quote */
.ed-4  { grid-column: 8 / 13; grid-row: 13 / 15; } /* stairs */

.ed-q {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.ed-q blockquote {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.15; font-weight: 400;
  color: var(--ink); letter-spacing: -0.015em;
  margin: 0 0 18px 0;
}
.ed-q blockquote .accent { color: var(--purple); font-style: italic; }
.ed-q cite {
  font-style: normal;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.ed-q.dark { background: var(--ink); color: var(--cream); }
.ed-q.dark blockquote { color: var(--cream); }
.ed-q.dark blockquote .accent { color: var(--teal); }
.ed-q.dark cite { color: var(--teal-soft); }

@media (max-width: 900px) {
  .ed-grid { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }
  .ed-grid > * { grid-column: 1 / 2 !important; grid-row: auto !important; width: 100%; }
  .ed-cell { aspect-ratio: 4/3; }
  .ed-cell.ed-2, .ed-cell.ed-4 { aspect-ratio: 3/4; }
}

/* Archive editorial — historical companion to the kitchen-floor story */
.editorial.archive { background: var(--cream-warm); border-top: 1px solid var(--line-soft); }
.editorial.archive .ed-head h2 .ital { color: var(--purple); }
.editorial.archive .ed-mast .byline { color: var(--ink-2); }
.editorial.archive .ed-grid { grid-auto-rows: 5.2vw; }

.archive .ar-medals      { grid-column: 1 / 8;  grid-row: 1 / 6; }   /* landscape wide top-left */
.archive .ar-pressscrum  { grid-column: 8 / 13; grid-row: 1 / 12; }  /* tall portrait right */
.archive .ar-quote       { grid-column: 1 / 8;  grid-row: 6 / 9; }   /* pull quote band */
.archive .ar-emotional   { grid-column: 1 / 5;  grid-row: 9 / 15; }  /* portrait left */
.archive .ar-trophy      { grid-column: 5 / 8;  grid-row: 9 / 15; }  /* portrait middle */

.archive .ed-cell .cap { background: rgba(30,33,67,0.92); color: var(--cream); }
.archive .ed-cell .cap em { color: var(--teal); font-style: normal; }

@media (max-width: 900px) {
  .archive .ed-grid > * { grid-column: 1 / 2 !important; grid-row: auto !important; }
  .archive .ed-cell.ar-medals { aspect-ratio: 4/3; }
  .archive .ed-cell.ar-pressscrum,
  .archive .ed-cell.ar-emotional,
  .archive .ed-cell.ar-trophy { aspect-ratio: 3/4; }
}

/* Hero video support */
.hero-frame video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(1.05) contrast(1.02);
  display: block;
}

/* ---------- PROGRAM DETAIL (single-program section) ---------- */
.program-detail {
  position: relative;
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  max-width: 1200px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.program-detail::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(107,182,183,0.25), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(48,54,137,0.45), transparent 60%);
}
.program-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.program-left .ribbon {
  display: inline-block;
  background: var(--teal); color: var(--ink);
  padding: 7px 14px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}
.program-left .tier { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.program-left h3 {
  color: var(--cream);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04; letter-spacing: -0.025em;
  margin: 14px 0 18px;
}
.program-left .desc { color: var(--teal-soft); font-size: 17px; line-height: 1.6; margin-bottom: 28px; }
.program-left .desc em { color: var(--cream); font-style: italic; }
.meta-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.meta-list.two-col li { color: var(--cream); font-size: 15px; line-height: 1.5; }
.meta-list.two-col li strong { color: var(--teal); font-weight: 600; }

.program-right {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 24px;
}
.price-block .price-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; margin-bottom: 8px; }
.price-block .price-big { font-family: var(--display); font-size: clamp(56px, 7vw, 88px); font-weight: 500; color: var(--purple); line-height: 1; letter-spacing: -0.03em; }
.price-block .price-sub { font-size: 14px; color: var(--ink-2); margin-top: 8px; }
.price-block .price-meta { font-size: 12px; color: var(--ink-2); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.program-cta { justify-content: center; }
@media (max-width: 900px) { .program-cta { width: 100%; } }
.trust-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.trust-list li { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.trust-list li::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--teal); }

@media (max-width: 900px) {
  .program-grid { grid-template-columns: minmax(0, 1fr); }
  .meta-list.two-col { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- TEAM CALLOUT (secondary option strip) ---------- */
.team-callout {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin: 48px auto 0;
  max-width: 1200px;
  transition: border-color .25s, transform .25s cubic-bezier(.2,.7,.2,1);
}
.team-callout:hover { border-color: var(--teal); transform: translateY(-2px); }
.team-callout .tc-left { flex: 1 1 480px; }
.team-callout .eyebrow { margin-bottom: 12px; }
.team-callout h3 { font-size: 28px; line-height: 1.1; margin-bottom: 8px; }
.team-callout p { color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 680px; }

/* ---------- INCLUDED / WHAT YOU GET ---------- */
.included { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); }
.included-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 96px); max-width: var(--container); margin: 0 auto; align-items: start; }
.included-grid .copy h2 { font-size: clamp(36px, 4.8vw, 64px); margin-bottom: 20px; }
.included-grid .copy h2 .ital { color: var(--purple); }
.included-grid .copy p { color: var(--ink-2); font-size: 17px; line-height: 1.55; margin-bottom: 16px; }
.included-list { display: grid; gap: 16px; }
.included-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  padding: 24px 28px; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), border-color .25s;
}
.included-item:hover { transform: translateX(6px); border-color: var(--teal); }
.included-item .check {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--ink); color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.included-item .check svg { width: 18px; height: 18px; stroke-width: 2.5; stroke: currentColor; fill: none; }
.included-item .body h4 { font-family: var(--display); font-size: 20px; line-height: 1.15; margin-bottom: 6px; font-weight: 500; }
.included-item .body p { color: var(--ink-2); font-size: 14px; line-height: 1.55; }

@media (max-width: 900px) { .included-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- WHO IT'S FOR ---------- */
.who-for { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1100px; margin: 56px auto 0; }
.who-col {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.who-col.yes { border-left: 4px solid var(--teal); }
.who-col.no { border-left: 4px solid var(--ink-2); opacity: 0.92; }
.who-col h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.who-col.yes h3 { color: var(--purple); }
.who-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.who-col li { font-size: 16px; line-height: 1.5; color: var(--ink); display: flex; gap: 12px; align-items: start; }
.who-col li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px;
  border-radius: 999px;
  background-image: var(--icon);
  background-size: contain; background-repeat: no-repeat;
}
.who-col.yes li::before { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236bb6b7' stroke-width='3'><path d='M5 13l4 4L19 7'/></svg>"); }
.who-col.no  li::before { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e2143' stroke-width='3'><path d='M6 6l12 12M18 6L6 18'/></svg>"); }

@media (max-width: 800px) { .who-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- FAQ ---------- */
.faq { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); }
.faq-list { max-width: 920px; margin: 56px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--display); font-size: clamp(20px, 2.2vw, 28px); font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--purple); }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-weight: 300; font-size: 32px; color: var(--purple);
  transition: transform .3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .ans { padding: 0 0 28px 0; max-width: 720px; color: var(--ink-2); font-size: 17px; line-height: 1.65; }

/* ---------- FINAL CTA BAND ---------- */
.cta-band {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--ink); color: var(--cream);
  position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content:""; position: absolute; inset:0; opacity: 0.55;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(48,54,137,0.55), transparent 60%),
    radial-gradient(50% 40% at 80% 100%, rgba(107,182,183,0.30), transparent 60%);
}
.cta-band .container { position: relative; max-width: 920px; }
.cta-band h2 { color: var(--cream); font-size: clamp(40px, 6vw, 96px); line-height: 1; letter-spacing: -0.03em; margin-bottom: 24px; }
.cta-band h2 .ital { color: var(--teal); }
.cta-band p { color: var(--teal-soft); font-size: 19px; line-height: 1.55; max-width: 580px; margin: 0 auto 36px; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- INQUIRY FORM ---------- */
.inquiry { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream); }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); max-width: var(--container); margin: 0 auto; align-items: start; }
.inquiry-grid h2 { font-size: clamp(36px, 4.8vw, 64px); margin-bottom: 20px; }
.inquiry-grid h2 .ital { color: var(--purple); }
.inquiry-grid p { color: var(--ink-2); font-size: 17px; line-height: 1.55; margin-bottom: 16px; }
.inquiry form { display: grid; gap: 18px; }
.inquiry .field { display: grid; gap: 8px; }
.inquiry label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }
.inquiry input, .inquiry textarea, .inquiry select {
  border: 1px solid var(--line); background: var(--cream-warm);
  padding: 14px 18px; border-radius: 12px;
  font: 400 16px/1.5 var(--sans); color: var(--ink); outline: none;
  transition: border-color .25s, background .25s;
}
.inquiry textarea { resize: vertical; min-height: 120px; }
.inquiry input:focus, .inquiry textarea:focus, .inquiry select:focus { border-color: var(--purple); background: var(--cream); }
.inquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry .actions { display: flex; gap: 14px; align-items: center; margin-top: 6px; }
.inquiry .fine { font-size: 13px; color: var(--ink-2); }

@media (max-width: 900px) {
  .inquiry-grid { grid-template-columns: minmax(0, 1fr); }
  .inquiry .row { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- PROCESS / STEPS ---------- */
.process { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--ink); color: var(--cream); }
.process .section-head { color: var(--cream); }
.process .section-head h2 { color: var(--cream); }
.process .section-head .sub { color: var(--teal-soft); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: var(--container); margin: 64px auto 0;
}
.process-step {
  position: relative;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.process-step::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 56px; height: 1px;
  background: var(--teal);
}
.process-step .num { font-family: var(--display); font-style: italic; font-size: 64px; line-height: 1; color: var(--teal); letter-spacing: -0.04em; margin-bottom: 18px; }
.process-step h3 { color: var(--cream); font-size: 22px; line-height: 1.15; margin-bottom: 12px; }
.process-step p { color: var(--cream); opacity: 0.75; font-size: 14px; line-height: 1.55; }

@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process-grid { grid-template-columns: minmax(0, 1fr); } }

.process-grid.five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .process-grid.five { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .process-grid.five { grid-template-columns: minmax(0, 1fr); } }

/* ============================================================
   LEVEL-UP DETAILS (2026 trends)
   - scroll progress bar
   - editorial text marquee
   - mouse parallax target hooks
   - bento offers grid
   - view transitions
   ============================================================ */

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 60;
  pointer-events: none;
  animation: sp-fill linear both;
  animation-timeline: scroll(root);
  animation-range: 0 100%;
}
@keyframes sp-fill { to { transform: scaleX(1); } }
@supports not (animation-timeline: scroll()) {
  .scroll-progress { transition: transform .1s linear; }
}

/* ---------- EDITORIAL TEXT MARQUEE ---------- */
.txt-marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
  position: relative;
}
.txt-marquee::before, .txt-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.txt-marquee::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.txt-marquee::after  { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.txt-marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: txt-scroll 48s linear infinite;
  will-change: transform;
}
.txt-marquee-track span.word {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 168px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: var(--cream);
}
.txt-marquee-track span.word.ital { font-style: italic; color: var(--teal); }
.txt-marquee-track span.word.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--teal-soft);
}
.txt-marquee-track .dot {
  width: 14px; height: 14px; background: var(--teal); border-radius: 999px; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(107,182,183,0.6);
  animation: txt-pulse 2s ease-out infinite;
}
@keyframes txt-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes txt-pulse {
  0% { box-shadow: 0 0 0 0 rgba(107,182,183,0.6); }
  80%, 100% { box-shadow: 0 0 0 20px rgba(107,182,183,0); }
}

/* ---------- MOUSE PARALLAX HOOK ---------- */
.hero-frame {
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
@media (pointer: fine) {
  .hero-visual:hover .hero-tag { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
}

/* ---------- BENTO OFFERS GRID ---------- */
.offers-grid.bento {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
}
.bento .offer-card { min-height: 0; }
.bento .offer-card.bento-hero    { grid-column: 1 / 5; grid-row: 1 / 3; min-height: 460px; }
.bento .offer-card.bento-program { grid-column: 5 / 9; grid-row: 1 / 2; }
.bento .offer-card.bento-private { grid-column: 5 / 7; grid-row: 2 / 3; }
.bento .offer-card.bento-team    { grid-column: 7 / 9; grid-row: 2 / 3; }

.bento .offer-card.bento-hero h3 { font-size: clamp(36px, 3.6vw, 56px); }
.bento .offer-card.bento-hero p  { font-size: 17px; max-width: 460px; }
.bento .offer-card.bento-hero .price { font-size: 36px; }
/* Out of the Settee cover, anchored bottom-right of the featured card (in flow, never overlaps the CTA) */
.offer-cover { margin: 28px 0 0; align-self: flex-end; width: 62%; max-width: 290px; transform: rotate(3deg); filter: drop-shadow(0 18px 44px rgba(0,0,0,0.55)); pointer-events: none; }
.offer-cover img { width: 100%; height: auto; border-radius: 7px; display: block; }
@media (max-width: 760px) { .offer-cover { max-width: 210px; } }

@media (max-width: 1100px) {
  .offers-grid.bento { grid-template-columns: 1fr 1fr; }
  .bento .offer-card.bento-hero,
  .bento .offer-card.bento-program,
  .bento .offer-card.bento-private,
  .bento .offer-card.bento-team { grid-column: auto; grid-row: auto; min-height: 380px; }
  .bento .offer-card.bento-hero { grid-column: 1 / 3; }
}
@media (max-width: 600px) {
  .offers-grid.bento { grid-template-columns: minmax(0, 1fr); }
  .bento .offer-card.bento-hero { grid-column: 1; }
}

/* ---------- VIEW TRANSITIONS ---------- */
@view-transition { navigation: auto; }
.brand img { view-transition-name: btl-logo; }
.hero h1 { view-transition-name: btl-headline; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .45s;
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
}
::view-transition-old(btl-logo),
::view-transition-new(btl-logo) { animation-duration: .55s; }

/* ============================================================
   PATH A — STORY + 2x2 INTEGRATED PHOTO GRID (comparison page)
   ============================================================ */
.story-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: stretch;
}
.story-photo-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow-md);
}
.story-photo-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.story-photo-grid figure:hover img { transform: scale(1.04); }
.story-photo-grid figure figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(30,33,67,0.85); backdrop-filter: blur(6px);
  color: var(--cream);
  padding: 6px 12px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.story-photo-grid figure figcaption em { color: var(--teal); font-style: normal; }

/* ============================================================
   PATH B — CLEAN 4-UP ARCHIVE GRID (comparison page)
   ============================================================ */
.editorial.archive-clean { background: var(--cream-warm); border-top: 1px solid var(--line-soft); }
.editorial.archive-clean .clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  max-width: var(--container);
  margin: 0 auto;
}
.editorial.archive-clean .clean-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.editorial.archive-clean .clean-grid figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.editorial.archive-clean .clean-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.editorial.archive-clean .clean-grid figure:hover img { transform: scale(1.04); }
.editorial.archive-clean .clean-grid figure figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(250,249,246,0.92); backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 7px 12px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.editorial.archive-clean .clean-grid figure figcaption em { color: var(--purple); font-style: normal; }

@media (max-width: 900px) {
  .story-photo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .editorial.archive-clean .clean-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .editorial.archive-clean .clean-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   COMPARISON PAGE — section labels
   ============================================================ */
.path-label {
  background: var(--purple);
  color: var(--cream);
  padding: 32px var(--gutter);
  text-align: center;
  position: relative;
}
.path-label .badge {
  display: inline-block;
  background: var(--cream); color: var(--purple);
  padding: 6px 16px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 12px;
}
.path-label h2 {
  font-family: var(--display); font-size: clamp(28px, 3vw, 40px);
  color: var(--cream); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 8px;
}
.path-label h2 .ital { color: var(--teal); }
.path-label p { font-size: 15px; color: var(--teal-soft); max-width: 700px; margin: 0 auto; line-height: 1.5; }
.compare-intro {
  padding: 140px var(--gutter) 40px;
  background: var(--cream);
  text-align: center;
}
.compare-intro h1 {
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.compare-intro h1 .ital { color: var(--purple); }
.compare-intro p {
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
  max-width: 720px; margin: 0 auto;
}

/* ============================================================
   MINDSET RESET PAGE (free-trial landing)
   ============================================================ */
.mr-hero {
  padding: 180px var(--gutter) clamp(80px, 10vw, 140px);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.mr-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(107,182,183,0.28), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(48,54,137,0.55), transparent 60%);
}
.mr-hero .inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.mr-hero .breadcrumb { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 24px; }
.mr-hero .breadcrumb a { transition: color .25s; }
.mr-hero .breadcrumb a:hover { color: var(--teal); }
.mr-hero .breadcrumb .sep { margin: 0 10px; color: rgba(255,255,255,0.2); }
.mr-hero .eyebrow { color: var(--teal); margin-bottom: 20px; }
.mr-hero .eyebrow::before { background: var(--teal); }
.mr-hero h1 {
  color: var(--cream);
  font-size: clamp(48px, 7vw, 116px);
  line-height: 0.94; letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.mr-hero h1 .ital { color: var(--teal); }
.mr-hero .lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5; color: var(--teal-soft);
  max-width: 600px; margin-bottom: 36px;
}
.mr-hero .lede em { color: var(--cream); font-style: italic; }
.mr-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.mr-hero .micro-meta {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px; color: var(--teal-soft);
}
.mr-hero .micro-meta strong { color: var(--cream); font-weight: 600; }

/* hero photo treatment */
.mr-hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}
.mr-hero-photo .frame {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.mr-hero-photo .frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.mr-hero-photo .float-tag {
  position: absolute; z-index: 3;
  padding: 12px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.mr-hero-photo .tag-1 {
  top: -16px; left: -24px;
  background: var(--cream); color: var(--ink);
}
.mr-hero-photo .tag-2 {
  bottom: 20px; right: -28px;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.mr-hero-photo .pulse {
  width: 8px; height: 8px; background: var(--teal); border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(107,182,183,.7); animation: pulse 1.8s infinite;
}
@media (max-width: 900px) {
  .mr-hero-photo { max-width: 480px; margin: 0 auto; }
  .mr-hero-photo .tag-1 { left: 8px; top: -12px; }
  .mr-hero-photo .tag-2 { right: 8px; }
}

/* dedicated pricing section near conversion */
.mr-pricing {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
  position: relative;
}
.mr-pricing .head { text-align: center; max-width: 800px; margin: 0 auto 56px; }
.mr-pricing .head .eyebrow { display: inline-flex; margin-bottom: 20px; }
.mr-pricing .head h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.mr-pricing .head h2 .ital { color: var(--purple); }
.mr-pricing .head p { color: var(--ink-2); font-size: 17px; line-height: 1.55; }
.mr-pricing .card-wrap { max-width: 560px; margin: 0 auto; }

.mr-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.mr-card .stamp {
  position: absolute; top: -18px; right: -18px;
  background: var(--teal); color: var(--ink);
  width: 92px; height: 92px; border-radius: 999px;
  display: grid; place-items: center;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 14px; line-height: 1.1; text-align: center;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
  padding: 8px;
}
.mr-card .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.mr-card .price-big { font-family: var(--display); font-size: 64px; line-height: 1; color: var(--purple); font-weight: 500; letter-spacing: -0.03em; }
.mr-card .price-big small { font-family: var(--sans); font-size: 16px; color: var(--ink-2); margin-left: 6px; font-weight: 500; letter-spacing: 0.02em; }
.mr-card .strike-line { font-size: 14px; color: var(--ink-2); display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mr-card .strike-line .crossed { text-decoration: line-through; opacity: 0.6; }
.mr-card .strike-line .keep { color: var(--purple); font-weight: 600; }
.mr-card .fine { font-size: 12px; color: var(--ink-2); line-height: 1.55; }

@media (max-width: 900px) {
  .mr-hero { padding-top: 120px; }
  .mr-hero .inner { grid-template-columns: minmax(0, 1fr); }
}

/* "What's included" copy column photo */
.included-grid .copy .copy-photo {
  margin: 0 0 32px 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  max-width: 380px;
}
.included-grid .copy .copy-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.included-grid .copy .copy-photo:hover img { transform: scale(1.04); }
.included-grid .copy .copy-photo figcaption {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(250,249,246,0.92); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--display); font-style: italic; font-size: 14px;
}

/* dark pull quote with photo background */
.mr-bg-quote {
  position: relative;
  padding: clamp(120px, 16vw, 200px) var(--gutter);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.mr-bg-quote .bg-image {
  position: absolute; inset: 0; pointer-events: none;
}
.mr-bg-quote .bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7);
}
.mr-bg-quote .overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(30,33,67,0.78), rgba(30,33,67,0.92)),
    radial-gradient(50% 50% at 50% 0%, rgba(48,54,137,0.45), transparent 60%);
}
.mr-bg-quote .inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
}
.mr-bg-quote blockquote {
  font-family: var(--display); font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15; font-weight: 400;
  color: var(--cream); letter-spacing: -0.025em; margin: 0;
}
.mr-bg-quote blockquote em { color: var(--teal); font-style: italic; }
.mr-bg-quote .attr {
  margin-top: 40px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-soft); font-weight: 600;
}

/* Mindset Reset video section */
.mr-video {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
  position: relative;
}
.mr-video .container { max-width: 1080px; margin: 0 auto; }
.mr-video .head { text-align: center; margin-bottom: 48px; }
.mr-video .head .eyebrow { display: inline-flex; margin-bottom: 18px; }
.mr-video .head h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.mr-video .head h2 .ital { color: var(--purple); }
.mr-video .head p {
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
  max-width: 620px; margin: 0 auto;
}
.mr-video .frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.mr-video .frame iframe {
  width: 100%; height: 100%;
  border: 0;
}
/* vertical (9:16) personal video */
.mr-video .frame--portrait { aspect-ratio: 9 / 16; max-width: 380px; margin-left: auto; margin-right: auto; background: #000; }
.mr-video .frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- lead forms (Contact + Speaking inquiry) ---------- */
.btl-form { display: grid; gap: 18px; }
.btl-form .row { display: grid; gap: 8px; }
.btl-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btl-form label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.btl-form input, .btl-form select, .btl-form textarea {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.btl-form input:focus, .btl-form select:focus, .btl-form textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(48,54,137,0.12); }
.btl-form textarea { min-height: 130px; resize: vertical; }
.btl-form .send { justify-self: start; margin-top: 4px; }
.btl-form .hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-thanks { font-family: var(--display); font-style: italic; font-size: clamp(22px, 3vw, 32px); color: var(--ink); padding: 8px 0; }
.form-error { color: #b3261e; font-size: 14px; margin-top: 8px; }
@media (max-width: 560px) { .btl-form .two { grid-template-columns: minmax(0, 1fr); } }

/* ---------- full-bleed photo band (mid-page breath; text in the dark side only) ---------- */
.photo-band { position: relative; height: min(72vh, 640px); overflow: hidden; background: var(--ink); }
.photo-band > img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.photo-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,33,67,0.84) 0%, rgba(30,33,67,0.4) 34%, rgba(30,33,67,0) 56%); }
.photo-band .band-cap { position: absolute; left: clamp(24px, 5vw, 72px); top: 50%; transform: translateY(-50%); z-index: 2; color: var(--cream); max-width: 38%; }
.photo-band .band-cap .eyebrow { color: rgba(255,255,255,0.9); }
.photo-band .band-cap h2 { color: var(--cream); font-family: var(--display); font-weight: 400; font-size: clamp(30px, 4vw, 60px); line-height: 1.02; letter-spacing: -0.03em; margin: 12px 0 0; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.photo-band .band-cap h2 .ital { font-style: italic; color: var(--teal-soft); }
@media (max-width: 760px) { .photo-band { height: 56vh; } .photo-band::after { background: linear-gradient(180deg, rgba(30,33,67,0.2), rgba(30,33,67,0.75)); } .photo-band .band-cap { top: auto; bottom: 28px; transform: none; max-width: 80%; } }

/* merch / shop band — the whole band links to the shop */
.merch-band > img { object-position: center 30%; }
.merch-band .band-link { position: absolute; inset: 0; z-index: 1; }
.merch-band .band-cap { z-index: 3; }
.merch-band .band-cap .btn { display: inline-flex; margin-top: 22px; }

/* ── Re-assert brand fonts over the Divi parent theme ──
   Divi injects a global heading/body font that loads after ours; the .btl-template
   prefix raises specificity so Fraunces + Plus Jakarta win on our pages. ── */
.btl-template { font-family: var(--sans); }
.btl-template h1, .btl-template h2, .btl-template h3, .btl-template h4 { font-family: var(--display); }
.btl-template .footer-col h4, .btl-template .who-col h3 { font-family: var(--sans); }
.mr-video .caption {
  margin-top: 18px;
  text-align: center;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.mr-video .caption em { color: var(--purple); font-style: italic; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 14px; }

/* 3 core benefits row */
.mr-benefits {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
}
.mr-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: var(--container); margin: 64px auto 0;
}
.mr-benefit {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.mr-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mr-benefit .num { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--purple); margin-bottom: 20px; }
.mr-benefit h3 { font-size: 28px; line-height: 1.05; margin-bottom: 14px; }
.mr-benefit h3 .ital { color: var(--purple); }
.mr-benefit p { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

@media (max-width: 900px) { .mr-benefits-grid { grid-template-columns: minmax(0, 1fr); } }

/* cadence visualization */
.mr-cadence {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream-warm);
}
.mr-cadence .visual {
  display: grid; grid-template-columns: repeat(13, 1fr); gap: 6px;
  max-width: 900px; margin: 48px auto 0;
  padding: 32px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.mr-cadence .dot {
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: var(--teal-soft);
  position: relative;
}
.mr-cadence .dot:nth-child(odd) { background: var(--teal); }
.mr-cadence .legend {
  display: flex; justify-content: center; gap: 24px; margin-top: 18px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); font-weight: 600;
}
.mr-cadence .legend .swatch { display: inline-block; width: 12px; height: 12px; border-radius: 999px; vertical-align: middle; margin-right: 8px; }

@media (max-width: 700px) {
  .mr-cadence .visual { grid-template-columns: repeat(13, 1fr); padding: 16px; gap: 4px; }
}

/* ============================================================
   OUT OF THE SETTEE PAGE
   ============================================================ */
.oos-hero {
  padding: 180px var(--gutter) clamp(80px, 10vw, 140px);
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.oos-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 50% at 100% 0%, rgba(107,182,183,0.16), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(48,54,137,0.08), transparent 60%);
}
.oos-hero .inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.oos-hero .breadcrumb {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 24px;
}
.oos-hero .breadcrumb a { transition: color .25s; }
.oos-hero .breadcrumb a:hover { color: var(--purple); }
.oos-hero .breadcrumb .sep { margin: 0 10px; color: var(--line); }
.oos-hero .eyebrow { color: var(--purple); margin-bottom: 18px; }
.oos-hero .eyebrow::before { background: var(--purple); }
.oos-hero h1 {
  font-size: clamp(48px, 7vw, 116px);
  line-height: 0.94; letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.oos-hero h1 .ital { color: var(--purple); }
.oos-hero .sub {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.25;
  font-style: italic;
  color: var(--purple);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.oos-hero .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55; color: var(--ink-2);
  max-width: 580px; margin-bottom: 32px;
}
.oos-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.oos-hero .micro-meta {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}
.oos-hero .micro-meta strong { color: var(--ink); font-weight: 700; }
.oos-hero .micro-meta .crossed { text-decoration: line-through; opacity: 0.55; }

/* book cover mockup */
.oos-cover-wrap {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 420px;
  justify-self: center;
}
.oos-cover {
  position: absolute; inset: 0;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 56px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  border: 1px solid var(--line);
}
.oos-cover-wrap:hover .oos-cover { transform: rotate(0deg) scale(1.02); }
.oos-cover .crest {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--purple); font-weight: 700;
}
.oos-cover .cover-h {
  font-family: var(--display);
  font-size: 44px; line-height: 1.02;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.oos-cover .cover-h em {
  color: var(--purple); font-style: italic; font-weight: 400;
}
.oos-cover .cover-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink-2);
  margin-top: 14px;
}
.oos-cover .meta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); border-top: 1px solid var(--line); padding-top: 14px;
}
.oos-ribbon {
  position: absolute; top: -14px; left: -14px;
  background: var(--teal); color: var(--ink);
  padding: 9px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

/* two-format choice section (PDF vs Paperback) */
.oos-formats { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream); }
.oos-formats .head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.oos-formats .head .eyebrow { display: inline-flex; margin-bottom: 18px; }
.oos-formats .head h2 { font-size: clamp(36px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 16px; }
.oos-formats .head h2 .ital { color: var(--purple); }
.oos-formats .head p { color: var(--ink-2); font-size: 17px; line-height: 1.55; }
.oos-formats .grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.fmt-card {
  position: relative;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
}
.fmt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.fmt-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.fmt-card .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.fmt-card.featured .label { color: var(--teal); }
.fmt-card h3 { font-size: 32px; line-height: 1.05; margin: 14px 0 14px; }
.fmt-card.featured h3 { color: var(--cream); }
.fmt-card h3 .ital { color: var(--purple); }
.fmt-card.featured h3 .ital { color: var(--teal); }
.fmt-card .desc { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex-grow: 1; margin: 0 0 22px; }
.fmt-card.featured .desc { color: var(--teal-soft); }
.fmt-card .price {
  font-family: var(--display);
  font-size: 36px; font-weight: 500;
  color: var(--purple); letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.fmt-card.featured .price { color: var(--teal); }
.fmt-card .price small {
  font-family: var(--sans); font-size: 11px; color: var(--ink-2);
  margin-left: 8px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
}
.fmt-card.featured .price small { color: var(--teal-soft); }
.fmt-card .ribbon {
  position: absolute; top: -14px; left: 28px;
  background: var(--teal); color: var(--ink);
  padding: 7px 14px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

@media (max-width: 760px) { .oos-formats .grid { grid-template-columns: minmax(0, 1fr); } }

/* real book-cover image variant */
.oos-cover-real {
  position: absolute; inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  background: var(--ink);
}
.oos-cover-wrap:hover .oos-cover-real { transform: rotate(0deg) scale(1.02); }
.oos-cover-real img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .oos-hero { padding-top: 120px; }
  .oos-hero .inner { grid-template-columns: minmax(0, 1fr); }
  .oos-cover-wrap { max-width: 320px; }
}

/* table of contents */
.oos-toc {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
}
.oos-toc .container { max-width: 1000px; margin: 0 auto; }
.oos-toc .head { text-align: center; margin-bottom: 64px; }
.oos-toc .head .eyebrow { display: inline-flex; margin-bottom: 18px; }
.oos-toc .head h2 { font-size: clamp(36px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.03em; margin-bottom: 16px; }
.oos-toc .head h2 .ital { color: var(--purple); }
.oos-toc .head p { color: var(--ink-2); font-size: 17px; line-height: 1.55; max-width: 620px; margin: 0 auto; }
.toc-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.toc-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 12px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, transform .25s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.toc-item:hover { background: var(--cream-warm); transform: translateX(4px); }
.toc-item .ch-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--purple);
  letter-spacing: -0.02em;
  line-height: 1;
}
.toc-item .ch-title {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.toc-item .ch-page {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 700;
}
.toc-item.bonus { background: var(--cream-warm); }
.toc-item.bonus .ch-num,
.toc-item.bonus .ch-page { color: var(--teal); }
.toc-item.bonus .ch-num em {
  font-style: italic;
}

@media (max-width: 600px) {
  .toc-item { grid-template-columns: 40px 1fr; }
  .toc-item .ch-page { grid-column: 2; padding-top: 6px; }
}

/* "Why I wrote this" story section */
.oos-why {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.oos-why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 100% 0%, rgba(48,54,137,0.5), transparent 60%);
}
.oos-why .grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--container); margin: 0 auto;
  align-items: center;
}
.oos-why .photo { position: relative; aspect-ratio: 1240 / 750; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.oos-why .photo img { width: 100%; height: 100%; object-fit: cover; }
.oos-why .copy .eyebrow { color: var(--teal-soft); margin-bottom: 24px; }
.oos-why .copy .eyebrow::before { background: var(--teal); }
.oos-why .copy h2 {
  color: var(--cream);
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.oos-why .copy h2 .ital { color: var(--teal); }
.oos-why .copy blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--teal-soft);
  border-left: 2px solid var(--teal);
  padding-left: 24px;
  margin: 0 0 24px 0;
}
.oos-why .copy p { color: var(--cream); opacity: 0.85; font-size: 17px; line-height: 1.65; margin-bottom: 16px; }
.oos-why .sig {
  margin-top: 28px;
  font-family: var(--display); font-style: italic; color: var(--teal); font-size: 20px;
}

@media (max-width: 900px) {
  .oos-why .grid { grid-template-columns: minmax(0, 1fr); }
}

/* photo-background pull quote (reuses .mr-bg-quote pattern) */
.oos-quote { /* same as .mr-bg-quote */
  position: relative;
  padding: clamp(120px, 16vw, 200px) var(--gutter);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.oos-quote .bg-image { position: absolute; inset: 0; pointer-events: none; }
.oos-quote .bg-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); }
.oos-quote .overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(30,33,67,0.78), rgba(30,33,67,0.92)),
    radial-gradient(50% 50% at 50% 0%, rgba(48,54,137,0.45), transparent 60%);
}
.oos-quote .inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.oos-quote blockquote {
  font-family: var(--display); font-size: clamp(24px, 3.3vw, 42px);
  line-height: 1.15; font-weight: 400;
  color: var(--cream); letter-spacing: -0.025em; margin: 0;
}
/* keep "Your presence matters more than your advice." on one line on tablet/desktop */
@media (min-width: 640px) { .oos-quote blockquote { white-space: nowrap; } }
.oos-quote blockquote em { color: var(--teal); font-style: italic; }
.oos-quote .attr {
  margin-top: 40px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-soft); font-weight: 600;
}

/* ============================================================
   PHOTO TREATMENT OPTIONS for letter cards (preview)
   ============================================================ */
.pcard {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.pcard:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }

.pcard .photo-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.pcard .photo-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.pcard:hover .photo-bg img { transform: scale(1.04); }

.pcard .pcontent {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 10px;
}

.pcard .pcat {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
}

.pcard .pno {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  font-family: var(--display); font-style: italic; font-size: 14px; font-weight: 500;
}

.pcard .ptitle {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.pcard .ptitle em { font-style: italic; }

.pcard .pmeta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  display: flex; gap: 10px; align-items: center;
}

/* ============================================================
   OPTION 1 — Photo + dark gradient overlay (classic-blog elevated)
   ============================================================ */
.pcard.opt1 .photo-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(30,33,67,0) 35%, rgba(30,33,67,0.85) 100%);
}
.pcard.opt1 .pcat { background: rgba(250,249,246,0.92); color: var(--ink); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.pcard.opt1 .pno { color: var(--cream); text-shadow: 0 2px 6px rgba(30,33,67,0.4); }
.pcard.opt1 .ptitle { color: var(--cream); }
.pcard.opt1 .ptitle em { color: var(--teal); }
.pcard.opt1 .pmeta { color: var(--teal-soft); }

/* ============================================================
   OPTION 2 — 60/40 split: photo on top, typography on bottom
   ============================================================ */
.pcard.opt2 { aspect-ratio: 4/3; padding: 0; }
.pcard.opt2 .photo-bg { position: relative; height: 56%; inset: auto; }
.pcard.opt2 .photo-half {
  position: relative; height: 56%; overflow: hidden;
}
.pcard.opt2 .photo-half img { width: 100%; height: 100%; object-fit: cover; }
.pcard.opt2 .type-half {
  background: var(--ink); color: var(--cream);
  flex: 1; padding: 20px 22px; display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
}
.pcard.opt2 .pcat { background: var(--teal); color: var(--ink); top: 16px; left: 16px; }
.pcard.opt2 .pno { display: none; }
.pcard.opt2 .type-half .pno-inline {
  font-family: var(--display); font-style: italic;
  font-size: 12px; color: var(--teal-soft); margin-bottom: 6px;
}
.pcard.opt2 .ptitle { color: var(--cream); font-size: 20px; line-height: 1.1; }
.pcard.opt2 .ptitle em { color: var(--teal); }
.pcard.opt2 .pmeta { color: var(--teal-soft); margin-top: 10px; }

/* ============================================================
   OPTION 3 — Duotone wash (lightened: brighter photo, softer color)
   ============================================================ */
.pcard.opt3 .photo-bg img { filter: grayscale(1) contrast(1.04) brightness(1.18); }
.pcard.opt3 .photo-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(107,182,183,0.45), rgba(48,54,137,0.3));
}
.pcard.opt3 .photo-bg::before {
  /* very gentle bottom-up cream→transparent to keep title legible without darkening */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(30,33,67,0.35) 100%);
}
.pcard.opt3 .pcat {
  background: var(--cream); color: var(--ink);
}
.pcard.opt3 .pno { color: var(--cream); opacity: 0.95; text-shadow: 0 1px 4px rgba(30,33,67,0.4); }
.pcard.opt3 .ptitle { color: var(--cream); text-shadow: 0 2px 8px rgba(30,33,67,0.35); }
.pcard.opt3 .ptitle em { color: var(--cream); font-weight: 600; border-bottom: 2px solid var(--teal); padding-bottom: 1px; }
.pcard.opt3 .pmeta { color: rgba(250,249,246,0.92); text-shadow: 0 1px 4px rgba(30,33,67,0.35); }

/* ============================================================
   OPTION 5 — Solo teal wash (single color, minimal)
   ============================================================ */
.pcard.opt5 .photo-bg img { filter: grayscale(1) contrast(1.04) brightness(1.18); }
.pcard.opt5 .photo-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(107,182,183,0.5);
}
.pcard.opt5 .photo-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(30,33,67,0.35) 100%);
}
.pcard.opt5 .pcat { background: var(--cream); color: var(--ink); }
.pcard.opt5 .pno { color: var(--cream); opacity: 0.95; text-shadow: 0 1px 4px rgba(30,33,67,0.4); }
.pcard.opt5 .ptitle { color: var(--cream); text-shadow: 0 2px 8px rgba(30,33,67,0.35); }
.pcard.opt5 .ptitle em { color: var(--cream); font-weight: 600; border-bottom: 2px solid var(--ink); padding-bottom: 1px; }
.pcard.opt5 .pmeta { color: rgba(250,249,246,0.92); text-shadow: 0 1px 4px rgba(30,33,67,0.35); }

/* ============================================================
   OPTION 6 — Light cream + teal wash with DARK text
   ============================================================ */
.pcard.opt6 .photo-bg img { filter: grayscale(0.8) contrast(1.03) brightness(1.25); }
.pcard.opt6 .photo-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(243,238,227,0.55), rgba(168,212,213,0.4));
}
.pcard.opt6 .pcat { background: var(--ink); color: var(--teal); }
.pcard.opt6 .pno { color: var(--ink); opacity: 0.9; }
.pcard.opt6 .ptitle { color: var(--ink); text-shadow: 0 1px 6px rgba(250,249,246,0.7); }
.pcard.opt6 .ptitle em { color: var(--purple); border-bottom: 2px solid var(--purple); padding-bottom: 1px; }
.pcard.opt6 .pmeta { color: var(--ink-2); }

/* ============================================================
   OPTION 7 — Purple primary luxe (deeper magazine-cover feel)
   ============================================================ */
.pcard.opt7 .photo-bg img { filter: grayscale(1) contrast(1.05) brightness(1.12); }
.pcard.opt7 .photo-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(48,54,137,0.6), rgba(75,81,169,0.35));
}
.pcard.opt7 .photo-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(30,33,67,0.4) 100%);
}
.pcard.opt7 .pcat { background: var(--teal); color: var(--ink); }
.pcard.opt7 .pno { color: var(--teal); opacity: 0.95; text-shadow: 0 1px 4px rgba(30,33,67,0.4); }
.pcard.opt7 .ptitle { color: var(--cream); text-shadow: 0 2px 8px rgba(30,33,67,0.4); }
.pcard.opt7 .ptitle em { color: var(--teal); font-weight: 500; border-bottom: 2px solid var(--teal); padding-bottom: 1px; }
.pcard.opt7 .pmeta { color: rgba(250,249,246,0.92); }

/* ============================================================
   OPTION 8 — Color-tinted (photo keeps personality, brand subtle)
   ============================================================ */
.pcard.opt8 .photo-bg img { filter: saturate(0.55) contrast(1.05) brightness(1.05); }
.pcard.opt8 .photo-bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(107,182,183,0.22), rgba(48,54,137,0.18));
}
.pcard.opt8 .photo-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(30,33,67,0.55) 100%);
}
.pcard.opt8 .pcat { background: var(--cream); color: var(--ink); }
.pcard.opt8 .pno { color: var(--cream); opacity: 0.95; text-shadow: 0 1px 4px rgba(30,33,67,0.5); }
.pcard.opt8 .ptitle { color: var(--cream); text-shadow: 0 2px 10px rgba(30,33,67,0.45); }
.pcard.opt8 .ptitle em { color: var(--cream); font-weight: 600; border-bottom: 2px solid var(--teal); padding-bottom: 1px; }
.pcard.opt8 .pmeta { color: rgba(250,249,246,0.92); }

/* ============================================================
   OPTION 4 — Typographic card + small photo polaroid accent
   ============================================================ */
.pcard.opt4 { background: var(--ink); color: var(--cream); padding: 24px; justify-content: space-between; }
.pcard.opt4 .photo-bg { position: absolute; inset: auto; bottom: 18px; right: 18px; width: 110px; height: 110px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-md); border: 3px solid var(--cream); transform: rotate(3deg); z-index: 2; }
.pcard.opt4:hover .photo-bg { transform: rotate(0deg); }
.pcard.opt4 .pcat { background: var(--teal); color: var(--ink); position: relative; top: auto; left: auto; align-self: flex-start; }
.pcard.opt4 .pno { color: var(--teal-soft); position: relative; top: auto; right: auto; align-self: flex-end; font-size: 12px; }
.pcard.opt4 .pcontent { gap: 14px; max-width: 70%; }
.pcard.opt4 .ptitle { color: var(--cream); font-size: 24px; }
.pcard.opt4 .ptitle em { color: var(--teal); }
.pcard.opt4 .pmeta { color: var(--teal-soft); }
.pcard.opt4 .top-row { display: flex; justify-content: space-between; align-items: center; }

/* preview page banded sections */
.opt-band {
  background: var(--cream);
  padding: 80px var(--gutter) 56px;
  border-top: 1px solid var(--line);
}
.opt-band .head {
  max-width: var(--container); margin: 0 auto 48px;
}
.opt-band .head .label {
  display: inline-block;
  background: var(--purple); color: var(--cream);
  padding: 5px 14px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 18px;
}
.opt-band .head h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98; letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.opt-band .head h2 .ital { color: var(--purple); }
.opt-band .head p { color: var(--ink-2); font-size: 16px; line-height: 1.55; max-width: 720px; }
.opt-band .head p .pro { color: var(--purple); font-weight: 600; }
.opt-band .head p .con { color: var(--ink-2); font-style: italic; }
.opt-band .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container); margin: 0 auto;
}
@media (max-width: 900px) { .opt-band .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .opt-band .grid { grid-template-columns: minmax(0, 1fr); } }

/* ============================================================
   TYPOGRAPHIC LETTER CARDS (artwork redesign)
   ============================================================ */
.tcard {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  justify-content: space-between;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.letter-card:hover .tcard { transform: scale(1.015); box-shadow: var(--shadow-md); }
.letter-card .tcard { margin-bottom: 22px; }
.letter-feature .tcard-featured { width: 100%; margin-bottom: 0; box-shadow: var(--shadow-md); }
.letter-card .pcard { margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.letter-feature .pcard {
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
}
.letter-feature .pcard .ptitle { font-size: clamp(28px, 3.4vw, 48px); }
.letter-feature .pcard .pcontent { gap: 14px; }

.tcard .top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
}
.tcard .tcat {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  white-space: nowrap;
}
.tcard .tno {
  font-family: var(--display); font-style: italic;
  font-size: 16px; opacity: 0.85;
}
.tcard .ttitle {
  position: relative; z-index: 2;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 12px 0;
}
.tcard .ttitle em {
  font-style: italic;
  font-weight: 500;
}
.tcard .bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
}
.tcard .bottom .meta { opacity: 0.8; }
.tcard .read-arr {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  opacity: 1;
}

/* decorative circle bleed in corner (subtle, varies by variant) */
.tcard::after {
  content: ""; position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.12;
}

/* ---------- variant 1: dark navy + teal accent ---------- */
.tcard.v1 { background: var(--ink); color: var(--cream); }
.tcard.v1 .tcat { background: rgba(107,182,183,0.18); color: var(--teal); }
.tcard.v1 .tno { color: var(--teal-soft); }
.tcard.v1 .ttitle em { color: var(--teal); }
.tcard.v1 .read-arr { color: var(--teal); }
.tcard.v1::after { background: var(--teal); }

/* ---------- variant 2: cream + purple accent ---------- */
.tcard.v2 { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.tcard.v2 .tcat { background: var(--purple); color: var(--cream); }
.tcard.v2 .tno { color: var(--purple); }
.tcard.v2 .ttitle em { color: var(--purple); }
.tcard.v2 .read-arr { color: var(--purple); }
.tcard.v2::after { background: var(--purple); }

/* ---------- variant 3: purple + teal accent ---------- */
.tcard.v3 { background: var(--purple); color: var(--cream); }
.tcard.v3 .tcat { background: rgba(107,182,183,0.22); color: var(--teal); }
.tcard.v3 .tno { color: var(--teal-soft); }
.tcard.v3 .ttitle em { color: var(--teal); }
.tcard.v3 .read-arr { color: var(--teal); }
.tcard.v3::after { background: var(--teal); }

/* ---------- variant 4: teal + dark navy accent ---------- */
.tcard.v4 { background: var(--teal); color: var(--ink); }
.tcard.v4 .tcat { background: var(--ink); color: var(--teal); }
.tcard.v4 .tno { color: var(--ink-2); }
.tcard.v4 .ttitle em { color: var(--ink); font-weight: 600; }
.tcard.v4 .read-arr { color: var(--ink); }
.tcard.v4::after { background: var(--ink); }

/* ---------- variant 5: cream-warm + dark navy ---------- */
.tcard.v5 { background: var(--cream-warm); color: var(--ink); }
.tcard.v5 .tcat { background: var(--ink); color: var(--teal); }
.tcard.v5 .tno { color: var(--ink-2); }
.tcard.v5 .ttitle em { color: var(--purple); }
.tcard.v5 .read-arr { color: var(--purple); }
.tcard.v5::after { background: var(--ink); }

/* ---------- featured (larger) tcard variant ---------- */
.tcard-featured {
  aspect-ratio: 4/5;
  padding: 40px 36px 36px;
}
.tcard-featured .tcat { font-size: 11px; padding: 6px 13px; }
.tcard-featured .tno { font-size: 18px; }
.tcard-featured .ttitle {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  margin: 20px 0;
}
.tcard-featured::after {
  width: 320px; height: 320px;
  right: -100px; bottom: -100px;
}

/* ============================================================
   MOLLY-INSPIRED LIST (homepage editorial moment)
   ============================================================ */
.mb-list {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  background: var(--cream-warm);
  position: relative;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mb-list .inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.mb-list .credit {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mb-list .credit::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--purple);
  opacity: 0.6;
}
.mb-list .title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}
.mb-list .author-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 44px;
}
.mb-list .author-note a {
  color: var(--purple);
  border-bottom: 1px solid var(--purple);
  transition: color .25s, border-color .25s;
}
.mb-list .author-note a:hover { color: var(--teal); border-color: var(--teal); }
.mb-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 44px 0;
  display: grid;
  gap: 14px;
}
.mb-list li {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  padding-left: 28px;
  position: relative;
  letter-spacing: -0.005em;
}
.mb-list li::before {
  content: "·";
  position: absolute;
  left: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.8em;
  line-height: 1;
  top: 0.05em;
}
.mb-list li em {
  font-style: italic;
  color: var(--purple);
  opacity: 0.9;
}
.mb-list .closer {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2;
  color: var(--ink);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  letter-spacing: -0.015em;
}
.mb-list .closer em { font-style: italic; color: var(--purple); }
.mb-list .sig {
  margin-top: 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
}

/* ============================================================
   CHAMPION'S FRAMEWORK SECTION (homepage)
   ============================================================ */
.cf-section {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.cf-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 100% 0%, rgba(48,54,137,0.06), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(107,182,183,0.08), transparent 60%);
}
.cf-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.cf-copy .eyebrow { color: var(--purple); margin-bottom: 24px; }
.cf-copy .eyebrow::before { background: var(--purple); }
.cf-copy h2 {
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cf-copy h2 .ital { color: var(--purple); }
.cf-copy .lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 500;
}
.cf-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.cf-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cf-meta .item .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
  margin-bottom: 6px;
}
.cf-meta .item .value {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cf-meta .item .value em { font-style: italic; color: var(--purple); font-weight: 400; }

.cf-visual { position: relative; display: grid; gap: 16px; }
.cf-visual .top-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0;
}
.cf-visual .top-photo img { width: 100%; height: 100%; object-fit: cover; }
.cf-visual .top-photo .stamp {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(250,249,246,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
}
.cf-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cf-team .member {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .25s, transform .25s cubic-bezier(.2,.7,.2,1);
}
.cf-team .member:hover { border-color: var(--teal); transform: translateY(-2px); }
.cf-team .member.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.cf-team .member.featured .name { color: var(--cream); }
.cf-team .member.featured .role { color: var(--teal); }
.cf-team .member.featured:hover { border-color: var(--teal); }
.cf-team .member .name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cf-team .member .role {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.3;
  font-weight: 700;
}
.cf-roster-note {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  font-family: var(--display);
}
.cf-roster-note em { color: var(--purple); font-style: italic; }

@media (max-width: 900px) {
  .cf-grid { grid-template-columns: minmax(0, 1fr); }
  .cf-meta { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .cf-team { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   CHAMPION / RESUME PAGE PRIMITIVES
   ============================================================ */

/* ---------- BIG NUMBERS GRID ---------- */
.numbers {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
}
.num-cell {
  padding: 0 28px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.num-cell:first-child { border-left: none; padding-left: 0; }
.num-cell .n {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 500;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.035em;
  display: flex; align-items: baseline; gap: 2px;
}
.num-cell .n sup {
  font-size: 0.32em;
  color: var(--purple);
  font-weight: 600;
  vertical-align: super;
  line-height: 1;
}
.num-cell .n em {
  font-style: italic;
  color: var(--purple);
}
.num-cell .l {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .num-cell { border-left: none !important; border-top: 1px solid var(--line); padding: 28px 24px; }
  .num-cell:first-child, .num-cell:nth-child(2) { border-top: none; padding-top: 0; }
  .num-cell:nth-child(even) { border-left: 1px solid var(--line) !important; }
}
@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: minmax(0, 1fr); }
  .num-cell { border-left: none !important; border-top: 1px solid var(--line); padding: 24px 0; }
  .num-cell:first-child { border-top: none; padding-top: 0; }
}

/* ---------- HEADLINE WINS (magazine card grid) ---------- */
.headline-wins {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream-warm);
}
.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.win-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  min-height: 360px;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.win-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.win-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.win-card:hover::before { transform: scaleX(1); }
.win-card .yr {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.win-card .title-row { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; margin-bottom: 8px; }
.win-card h3 { font-size: 28px; line-height: 1.08; margin-bottom: 14px; }
.win-card .where { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; margin-bottom: 14px; }
.win-card .note { font-family: var(--display); font-style: italic; font-size: 15px; color: var(--ink-2); line-height: 1.45; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.win-card.featured {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.win-card.featured h3, .win-card.featured .where { color: var(--cream); }
.win-card.featured .yr { color: var(--teal); }
.win-card.featured .title-row { color: var(--teal); }
.win-card.featured .note { color: var(--teal-soft); border-top-color: rgba(255,255,255,0.15); }

@media (max-width: 1000px) { .wins-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .wins-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- HALL OF FAME EDITORIAL MOMENT ---------- */
.hof-moment {
  padding: clamp(100px, 12vw, 180px) var(--gutter);
  background: var(--ink); color: var(--cream);
  position: relative; overflow: hidden;
}
.hof-moment::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 90% 10%, rgba(107,182,183,0.25), transparent 60%),
    radial-gradient(40% 40% at 10% 90%, rgba(48,54,137,0.55), transparent 60%);
}
.hof-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: var(--container); margin: 0 auto;
}
.hof-grid .eyebrow { color: var(--teal-soft); margin-bottom: 28px; }
.hof-grid .eyebrow::before { background: var(--teal); }
.hof-grid h2 {
  color: var(--cream);
  font-size: clamp(48px, 7vw, 128px);
  line-height: 0.94; letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hof-grid h2 .ital { color: var(--teal); }
.hof-grid h2 .yr-sm { font-size: 0.55em; vertical-align: top; color: var(--teal); }
.hof-grid .desc { font-size: 19px; line-height: 1.6; color: var(--teal-soft); margin-bottom: 18px; }
.hof-photo { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(1.5deg); }
.hof-photo img { width: 100%; height: 100%; object-fit: cover; }
.hof-photo .cap { position: absolute; bottom: 18px; left: 18px; background: rgba(250,249,246,0.92); color: var(--ink); padding: 8px 14px; border-radius: 999px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }

@media (max-width: 900px) { .hof-grid { grid-template-columns: minmax(0, 1fr); } }

/* three-card grid of halls inside hof-moment */
.hofs-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: clamp(56px, 8vw, 96px) auto 0;
  max-width: var(--container);
}
.hof-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, background .3s;
  display: flex; flex-direction: column;
}
.hof-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  background: rgba(107,182,183,0.10);
}
.hof-card.featured {
  background: var(--teal);
  border-color: var(--teal);
}
.hof-card .hof-yr {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--teal);
  margin-bottom: 18px;
}
.hof-card.featured .hof-yr { color: var(--ink); }
.hof-card .hof-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.hof-card.featured .hof-title { color: var(--ink); }
.hof-card .hof-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--teal-soft);
  margin-top: auto;
}
.hof-card.featured .hof-note { color: var(--ink-2); }

@media (max-width: 900px) { .hofs-grid { grid-template-columns: minmax(0, 1fr); } }

/* HOF SPEECH VIDEO SECTION */
.hof-video-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(100px, 12vw, 160px);
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
.hof-video-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 100% 100%, rgba(107,182,183,0.18), transparent 60%),
    radial-gradient(50% 40% at 0% 0%, rgba(48,54,137,0.35), transparent 60%);
}
.hof-video-section .container { position: relative; max-width: 1100px; margin: 0 auto; }
.hof-video-section .head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.hof-video-section .head .eyebrow { color: var(--teal-soft); display: inline-flex; }
.hof-video-section .head .eyebrow::before { background: var(--teal); }
.hof-video-section .head h2 {
  color: var(--cream);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
.hof-video-section .head h2 .ital { color: var(--teal); }
.hof-video-section .head p {
  color: var(--teal-soft);
  font-size: 18px; line-height: 1.55;
  max-width: 640px; margin: 20px auto 0;
}
.hof-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}
.hof-video iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.hof-video-caption {
  margin-top: 24px;
  text-align: center;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-soft); font-weight: 600;
}
.hof-video-caption a {
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
  transition: color .25s, border-color .25s;
}
.hof-video-caption a:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- CAREER TIMELINE ---------- */
.timeline-sec { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream); }
.timeline {
  max-width: 900px; margin: 64px auto 0;
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.timeline-item {
  position: relative;
  padding-bottom: 56px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute;
  left: -38px; top: 8px;
  width: 12px; height: 12px;
  background: var(--cream); border: 2px solid var(--purple);
  border-radius: 999px;
}
.timeline-item.major::before { background: var(--purple); width: 14px; height: 14px; left: -39px; }
.timeline-item .yr {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--purple);
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline-item p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ---------- RECOGNITION (awards grid) ---------- */
.recognition { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); }
.recog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  max-width: 1100px; margin: 56px auto 0;
}
.recog-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.recog-row .award {
  font-family: var(--display); font-size: 19px; line-height: 1.25; color: var(--ink); font-weight: 500;
  flex: 1 1 auto;
}
.recog-row .yrs {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 900px) { .recog-grid { grid-template-columns: minmax(0, 1fr); gap: 0; } }

/* ---------- BEYOND THE MEDALS (off-the-lanes roles) ---------- */
.beyond-medals { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream); }
.bm-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 96px); max-width: var(--container); margin: 0 auto; align-items: start; }
.bm-list { display: grid; gap: 14px; }
.bm-item {
  background: var(--cream-warm);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: baseline;
  transition: border-color .25s, transform .25s cubic-bezier(.2,.7,.2,1);
}
.bm-item:hover { border-color: var(--teal); transform: translateX(4px); }
.bm-item .yrs {
  font-family: var(--display); font-style: italic; font-size: 20px; color: var(--purple); font-weight: 500;
  letter-spacing: -0.01em;
}
.bm-item .body h4 { font-family: var(--display); font-size: 20px; line-height: 1.2; margin-bottom: 4px; font-weight: 500; }
.bm-item .body p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

@media (max-width: 900px) { .bm-grid { grid-template-columns: minmax(0, 1fr); } .bm-item { grid-template-columns: minmax(0, 1fr); gap: 6px; } }

/* ---------- SPONSORS BAR ---------- */
.sponsors {
  padding: 56px var(--gutter);
  background: var(--ink); color: var(--cream);
  text-align: center;
}
.sponsors .label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 28px; }
.sponsors-list {
  display: flex; justify-content: center; align-items: center; gap: clamp(40px, 8vw, 100px); flex-wrap: wrap;
}
.sponsors-list .sp {
  font-family: var(--display); font-style: italic;
  font-size: clamp(28px, 4vw, 56px); font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  position: relative;
  transition: color .25s, transform .25s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  display: inline-block;
}
.sponsors-list .sp em { color: var(--teal); font-style: italic; font-weight: 400; }
.sponsors-list a.sp:hover { color: var(--teal); transform: translateY(-2px); }
.sponsors-list a.sp::after {
  content: " ↗"; font-size: 0.4em; vertical-align: super;
  font-style: normal; opacity: 0.6; margin-left: 4px;
}

/* sponsor-logos variant — actual brand logos */
.sponsors-list.logos {
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.sp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), opacity .25s;
  opacity: 0.85;
}
.sp-logo img {
  max-height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}
.sp-logo:hover { transform: translateY(-3px); opacity: 1; }
.sp-logo::after {
  content: "↗"; position: absolute; top: -8px; right: -18px;
  font-size: 14px; color: var(--teal); opacity: 0.6;
  transition: opacity .25s, transform .25s;
}
.sp-logo:hover::after { opacity: 1; transform: translate(2px, -2px); }

@media (max-width: 700px) {
  .sponsors-list.logos { gap: 32px; flex-wrap: wrap; justify-content: center; }
  .sp-logo { height: 56px; }
}

/* ---------- MEDIA WALL ---------- */
.media-wall { padding: clamp(80px, 10vw, 140px) var(--gutter); background: var(--cream-warm); }
.media-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px; margin: 56px auto 0;
}
.media-row {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.2;
  transition: border-color .25s, color .25s;
}
.media-row:hover { border-color: var(--purple); color: var(--purple); }
.media-row .yr { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; margin-top: 6px; }

@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .media-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- PERSONAL CARD ---------- */
.personal-bio {
  max-width: 980px; margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
}
.personal-bio .eyebrow { margin-bottom: 16px; }
.personal-bio h3 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; margin-bottom: 16px; }
.personal-bio h3 .ital { color: var(--purple); }
.personal-bio p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.bio-facts { display: grid; gap: 14px; align-content: start; }
.bio-fact {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px; line-height: 1.4;
}
.bio-fact:first-child { border-top: none; padding-top: 0; }
.bio-fact .k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; padding-top: 2px; }
.bio-fact .v { font-family: var(--display); font-size: 16px; color: var(--ink); font-weight: 500; }
.bio-fact .v em { font-style: italic; color: var(--purple); font-weight: 400; }

@media (max-width: 900px) { .personal-bio { grid-template-columns: minmax(0, 1fr); gap: 32px; padding: 32px; } }

/* ============================================================
   THE LETTER — archive + individual letter pages
   ============================================================ */

/* ---------- LETTERS HERO / MASTHEAD ---------- */
.letters-hero {
  padding: 180px var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.letters-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 40% at 90% 0%, rgba(107,182,183,0.18), transparent 60%),
              radial-gradient(40% 40% at 0% 100%, rgba(48,54,137,0.08), transparent 60%);
}
.letters-hero .inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: end;
}
.letters-hero h1 {
  font-size: clamp(64px, 9vw, 160px);
  font-weight: 400; line-height: 0.94; letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.letters-hero h1 .ital { color: var(--purple); }
.letters-hero .lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5; color: var(--ink-2);
  max-width: 540px; margin-bottom: 28px;
}
.letters-hero .lede em { font-style: italic; color: var(--purple); }
.letters-hero .signup {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
}
.letters-hero .signup::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(60% 50% at 100% 0%, rgba(107,182,183,0.30), transparent 60%);
  pointer-events: none;
}
.letters-hero .signup > * { position: relative; }
.letters-hero .signup .eyebrow { color: var(--teal-soft); margin-bottom: 14px; }
.letters-hero .signup h3 { color: var(--cream); font-size: 28px; line-height: 1.1; margin-bottom: 8px; }
.letters-hero .signup h3 .ital { color: var(--teal); }
.letters-hero .signup p { color: var(--teal-soft); font-size: 14px; line-height: 1.5; margin-bottom: 18px; }
.letters-hero .signup form { display: flex; gap: 8px; flex-wrap: wrap; }
.letters-hero .signup input { flex: 1 1 200px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: var(--cream); padding: 14px 18px; border-radius: 999px; font: 500 14px/1 var(--sans); outline: none; }
.letters-hero .signup input::placeholder { color: rgba(255,255,255,0.55); }
.letters-hero .signup input:focus { border-color: var(--teal); }
.letters-hero .signup .fine { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; margin-top: 12px; margin-bottom: 0; }

@media (max-width: 900px) { .letters-hero { padding-top: 120px; } .letters-hero .inner { grid-template-columns: minmax(0, 1fr); } }

/* ---------- LETTERS ARCHIVE GRID ---------- */
.letters-archive { padding: clamp(60px, 8vw, 120px) var(--gutter) clamp(80px, 10vw, 140px); background: var(--cream); }

.letter-feature {
  position: relative;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 88px);
  max-width: var(--container); margin: 0 auto clamp(64px, 8vw, 120px);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal);
  align-items: center;
}
.letter-feature .label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px; }
.letter-feature .label::before { content: ""; width: 28px; height: 1px; background: var(--teal); }
.letter-feature .num { font-family: var(--display); font-style: italic; font-size: 18px; color: var(--ink-2); margin-bottom: 12px; }
.letter-feature h2 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.letter-feature h2 a { transition: color .25s; }
.letter-feature h2 a:hover { color: var(--purple); }
.letter-feature .excerpt { font-family: var(--display); font-size: clamp(20px, 1.8vw, 26px); line-height: 1.4; color: var(--ink-2); font-style: italic; margin-bottom: 32px; max-width: 580px; }
.letter-feature .meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.letter-feature .meta .cat { color: var(--purple); font-weight: 700; }
.letter-feature .cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s, gap .25s;
}
.letter-feature .cta-link:hover { color: var(--purple); border-color: var(--purple); gap: 16px; }

/* featured letter — photo treatment */
.letter-feature .visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink);
  display: block;
}
.letter-feature .visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.letter-feature .visual:hover img { transform: scale(1.04); }
.letter-feature .visual .crest {
  position: absolute; top: 24px; left: 24px;
  background: var(--cream); color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.letter-feature .visual .stamp {
  position: absolute; bottom: 24px; right: 24px;
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--cream);
  z-index: 2;
  text-shadow: 0 2px 8px rgba(30,33,67,0.45);
}

@media (max-width: 900px) {
  .letter-feature { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 32px; }
  .letter-feature .visual { aspect-ratio: 4/3; max-width: 100%; }
}

/* archive card image area */
.letter-card .visual {
  display: block;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--cream-warm);
  position: relative;
}
.letter-card .visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.letter-card:hover .visual img { transform: scale(1.05); }
.letter-card .visual .stamp {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250,249,246,0.92); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
}

.letters-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.5vw, 56px) clamp(24px, 3vw, 40px);
  max-width: var(--container); margin: 0 auto;
}
.letter-card {
  display: block;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.letter-card:hover { transform: translateY(-2px); }
.letter-card .num { font-family: var(--display); font-style: italic; font-size: 14px; color: var(--ink-2); margin-bottom: 8px; }
.letter-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08; letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color .25s;
}
.letter-card:hover h3 { color: var(--purple); }
.letter-card .excerpt { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin-bottom: 18px; }
.letter-card .meta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); }
.letter-card .meta .cat { color: var(--purple); font-weight: 700; }
@media (max-width: 1000px) { .letters-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .letters-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- CATEGORY CHIPS / FILTER (visual only for now) ---------- */
.letters-filter {
  max-width: var(--container); margin: 0 auto clamp(48px, 6vw, 80px);
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.letters-filter .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); margin-right: 12px; font-weight: 700; }
.letters-filter .chip {
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.letters-filter .chip:hover, .letters-filter .chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- INDIVIDUAL LETTER PAGE ---------- */
.letter-hero {
  padding: 180px var(--gutter) clamp(56px, 7vw, 96px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.letter-hero .inner { max-width: 800px; margin: 0 auto; }
.letter-hero .breadcrumb { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 28px; }
.letter-hero .breadcrumb a { transition: color .25s; }
.letter-hero .breadcrumb a:hover { color: var(--purple); }
.letter-hero .breadcrumb .sep { margin: 0 10px; color: var(--line); }
.letter-hero .num { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--purple); font-weight: 500; margin-bottom: 8px; }
.letter-hero h1 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.letter-hero .meta {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.letter-hero .meta .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--ink-2); }
.letter-hero .meta .cat { color: var(--purple); font-weight: 700; }

/* the reading body */
.letter-body {
  max-width: 720px; margin: 0 auto;
  padding: clamp(56px, 8vw, 120px) var(--gutter);
}
.letter-body > * + * { margin-top: 1.4em; }
.letter-body p {
  font-family: var(--display);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.letter-body p:first-of-type {
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.5;
}
.letter-body p:first-of-type::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 5.6em;
  line-height: 0.9;
  margin: 0.05em 0.1em 0 0;
  color: var(--purple);
  font-weight: 500;
}
.letter-body em { font-style: italic; color: var(--purple); }
.letter-body strong { font-weight: 600; color: var(--ink); }
.letter-body .pull {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.18;
  font-weight: 400;
  font-style: italic;
  color: var(--purple);
  letter-spacing: -0.015em;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 48px);
  margin: clamp(40px, 5vw, 64px) 0;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  text-align: left;
}
.letter-body hr { border: none; height: 1px; background: var(--line); margin: clamp(40px, 5vw, 64px) auto; max-width: 200px; }

.letter-signature {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--purple);
}
.letter-signature small {
  display: block;
  font-family: var(--sans); font-style: normal;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 700;
  margin-top: 8px;
}

/* CTA at the bottom of every letter */
.letter-bottom-cta {
  background: var(--cream-warm);
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  border-top: 1px solid var(--line);
}
.letter-bottom-cta .inner { max-width: 720px; margin: 0 auto; text-align: center; }
.letter-bottom-cta h3 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; margin-bottom: 14px; }
.letter-bottom-cta h3 .ital { color: var(--purple); }
.letter-bottom-cta p { color: var(--ink-2); font-size: 16px; line-height: 1.55; max-width: 480px; margin: 0 auto 24px; }
.letter-bottom-cta form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.letter-bottom-cta input { flex: 1 1 220px; border: 1px solid var(--line); background: var(--cream); padding: 14px 20px; border-radius: 999px; font: 500 14px/1 var(--sans); color: var(--ink); outline: none; }
.letter-bottom-cta input:focus { border-color: var(--purple); }

/* prev/next nav between letters */
.letter-nav {
  max-width: var(--container); margin: 0 auto;
  padding: 32px var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  background: var(--cream);
}
.letter-nav-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.letter-nav-card:hover { border-color: var(--purple); transform: translateY(-2px); }
.letter-nav-card .dir { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; margin-bottom: 8px; }
.letter-nav-card h4 { font-family: var(--display); font-size: 20px; line-height: 1.15; color: var(--ink); font-weight: 500; }
.letter-nav-card.next { text-align: right; }
@media (max-width: 700px) { .letter-nav { grid-template-columns: minmax(0, 1fr); } .letter-nav-card.next { text-align: left; } }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero h1 .line > span { transform: none !important; }
  .marquee { animation: none !important; }
  .hero-scroll .bar::after { animation: none !important; }
  .hero-tag.t2 .pulse { animation: none !important; }
}

/* featured letter card: match letter artwork ratio (was 4/5, cropped the art) */
.letter-feature .pcard { aspect-ratio: 4/3; }
@media (min-width: 900px){ .letter-feature .pcard { aspect-ratio: 1080/810; } }

/* letter cards: show full artwork */
/* The letter art already contains title, number, and date - the card overlays duplicated them. */
.letter-feature .pcard, .letter-card .pcard { aspect-ratio: 1080/675; }
.letter-feature .pcard .ptitle, .letter-card .pcard .ptitle,
.letter-feature .pcard .pno, .letter-card .pcard .pno,
.letter-feature .pcard .pmeta, .letter-card .pcard .pmeta { display: none; }
