/* =============================================================
   THE SELF-MANAGING BUSINESS — Editorial Funnel
   Medici Global Ventures · Edition 01 · 2026
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --ink: #060707;
  --ink-2: #0E0E10;
  --paper: #F5F1EA;
  --paper-2: #DCDCDE;

  /* Accents */
  --gold: #C9A24C;
  --gold-soft: rgba(201, 162, 76, 0.16);
  --burgundy: #5A1A1A;

  /* Type roles */
  --display: 'Fraunces', 'GT Sectra', Georgia, serif;
  --serif:   'EB Garamond', Garamond, Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', 'GT America Mono', ui-monospace, monospace;

  /* Spacing rhythm */
  --gutter: 24px;
  --section-y: 112px;
  --section-y-mobile: 72px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Layout */
  --maxw: 1280px;
  --maxw-narrow: 720px;
  --maxw-mid: 960px;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11', 'kern';
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
hr { border: 0; height: 1px; background: var(--gold); opacity: 0.4; margin: 0; }

/* ---------- Type ladder ---------- */
.display-xl,
.display-l,
.display-m,
.display-s {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.02;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-feature-settings: 'ss01', 'liga', 'kern';
}
.display-xl { font-size: clamp(56px, 9.2vw, 112px); line-height: 0.98; letter-spacing: -0.022em; }
.display-l  { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.04; }
.display-m  { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.08; }
.display-s  { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.12; }

.italic-display {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 1;
  letter-spacing: -0.012em;
}

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  letter-spacing: 0.005em;
}
.quote-l { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.24; }

.body-l {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--paper-2);
}
.body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--paper-2);
}
.body--ink { color: var(--ink); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex: none;
}
.eyebrow--plain::before { display: none; }
.eyebrow--mark::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  border-radius: 0;
}

.colophon {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-2);
}
.colophon--ink { color: var(--ink); }
.colophon--gold { color: var(--gold); }
.colophon--mute { color: rgba(245, 241, 234, 0.46); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--maxw-narrow); }
.container--mid    { max-width: var(--maxw-mid); }

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper .body, .section--paper .body-l { color: rgba(6, 7, 7, 0.78); }
.section--ink { background: var(--ink); }

/* ---------- Pre-hero strip ---------- */
.prestrip {
  background: var(--ink-2);
  border-bottom: 1px solid rgba(201, 162, 76, 0.18);
  padding: 14px 0;
  text-align: center;
}
.prestrip .colophon { color: var(--paper-2); }

/* ---------- Publisher header ---------- */
.publisher-bar {
  background: var(--ink);
  border-bottom: 1px solid rgba(245, 241, 234, 0.07);
  padding: 22px 0;
}
.publisher-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.publisher-bar__mark {
  display: flex; align-items: center; gap: 14px;
}
.publisher-bar__mark img { height: 22px; width: auto; filter: brightness(0) invert(1) opacity(0.92); }
.publisher-bar__nav {
  display: flex; gap: 28px; align-items: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  padding-block: 112px 144px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* faint blueprint grid */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(245, 241, 234, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 241, 234, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: -2;
  mask-image: radial-gradient(ellipse at 70% 40%, black 30%, transparent 75%);
}
.hero__statue {
  position: absolute;
  right: -8%;
  top: 0;
  bottom: 0;
  width: 65%;
  background-image: url('images/david-michelangelo.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.07;
  filter: grayscale(100%) contrast(1.1);
  z-index: -1;
  mask-image: linear-gradient(to bottom, black 60%, transparent 95%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.hero__col-left { padding-right: 24px; }
.hero__headline {
  margin: 28px 0 24px;
  color: var(--paper);
}
.hero__headline .h-line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 700ms var(--ease) forwards;
}
.hero__headline .h-line:nth-child(2) { animation-delay: 130ms; }
.hero__headline .h-line:nth-child(3) { animation-delay: 260ms; }
.hero__headline em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  color: var(--gold);
}
.hero__sub {
  max-width: 560px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.82);
  margin-bottom: 40px;
}
.hero__cta-block { margin-top: 32px; }
.hero__trustline {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245, 241, 234, 0.6);
  display: flex; flex-wrap: wrap; gap: 6px 18px;
}
.hero__trustline span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trustline .dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; display: inline-block; }

.hero__book-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__book {
  position: relative;
  max-width: 460px;
  width: 100%;
  transform: rotate(-2.2deg);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55)) drop-shadow(0 8px 16px rgba(0,0,0,0.45));
  animation: bookFloat 6s ease-in-out infinite;
}
.hero__book img { width: 100%; }
.hero__edition-mark {
  position: absolute;
  bottom: -8px;
  left: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  border-left: 1px solid var(--gold);
  padding-left: 10px;
  line-height: 1.4;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: transform 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn--ink:hover { background: #1a1b1d; }
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-weight: 700;
}
.btn--gold:hover { background: #d8b25c; }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(245, 241, 234, 0.35);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--paper {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.btn--full { width: 100%; }
.btn--lg { padding: 22px 32px; font-size: 14px; }

/* Editorial CTA — gold rule above + below, label between */
.cta-rule {
  display: inline-block;
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 18px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  cursor: pointer;
  transition: color 240ms var(--ease);
  width: auto;
  min-width: 480px;
}
.cta-rule .arrow {
  display: inline-block;
  margin-left: 14px;
  transition: transform 250ms var(--ease);
}
.cta-rule:hover { color: var(--gold); }
.cta-rule:hover .arrow { transform: translateX(6px); }
.cta-rule::before, .cta-rule::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 6px;
  background: var(--gold);
  left: 0;
}
.cta-rule::before { top: -1px; }
.cta-rule::after { bottom: -1px; }

/* ---------- Trust bar ---------- */
.trustbar {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  padding: 28px 0;
  background: var(--ink);
}
.trustbar__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
}
.trustbar__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--paper-2);
  text-transform: uppercase;
  line-height: 1.4;
}
.trustbar__item strong {
  color: var(--gold);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* ---------- Promise / cream sections ---------- */
.promise {
  background: var(--paper);
  color: var(--ink);
  padding-block: var(--section-y);
}
.promise__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}
.promise__display {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 28px 0 48px;
}
.promise__display .drop-cap {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3em;
  color: var(--burgundy);
  margin-right: 4px;
}
.promise__body p {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(6, 7, 7, 0.82);
  margin: 0 0 22px;
  max-width: 640px;
}
.promise__hang {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gold);
  max-width: 560px;
}
.promise__marginalia {
  position: absolute;
  top: 0;
  right: -4px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- Pain agitation ---------- */
.pain {
  background: var(--ink);
  padding-block: var(--section-y);
}
.pain__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.pain__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 76, 0.25);
}
.pain__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
}
.pain__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(6, 7, 7, 0.4) 100%);
}
.pain__caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  border-left: 1px solid var(--gold);
  padding-left: 10px;
}
.pain__copy h2 { color: var(--paper); margin: 24px 0 28px; }
.pain__copy p {
  color: rgba(245, 241, 234, 0.78);
  font-size: 19px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 14px;
}
.pain__pullquote {
  margin-top: 56px;
  position: relative;
  padding-left: 48px;
  max-width: 600px;
}
.pain__pullquote::before {
  content: '\201C';
  position: absolute;
  left: -8px; top: -28px;
  font-family: var(--display);
  font-style: italic;
  font-size: 96px;
  color: var(--burgundy);
  line-height: 1;
}
.pain__pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.36;
  color: var(--burgundy);
  margin: 0;
}
.pain__pullquote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- Audience cards ---------- */
.audience { background: var(--paper); color: var(--ink); padding-block: var(--section-y); }
.audience__head { text-align: center; margin-bottom: 72px; }
.audience__head h2 { color: var(--ink); margin-top: 18px; }
.audience__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.audience__card {
  background: rgba(6, 7, 7, 0.03);
  border-top: 1px solid var(--gold);
  padding: 40px 32px 36px;
  position: relative;
}
.audience__card .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.audience__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
}
.audience__card p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(6, 7, 7, 0.74);
  margin: 0;
}
.audience__close {
  text-align: center;
  margin-top: 64px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

/* ---------- Chapter modules ---------- */
.chapters { background: var(--ink); padding-block: var(--section-y); }
.chapters__head { text-align: center; max-width: 720px; margin: 0 auto 96px; }
.chapters__head h2 { color: var(--paper); margin-top: 18px; }
.chapters__head p { color: var(--paper-2); margin-top: 24px; font-size: 17px; }
.chapter-row {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 56px;
  align-items: flex-start;
  padding: 48px 0;
  border-top: 1px solid rgba(201, 162, 76, 0.18);
}
.chapter-row:last-child { border-bottom: 1px solid rgba(201, 162, 76, 0.18); }
.chapter-row__plate {
  position: relative;
  aspect-ratio: 4 / 5;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(201, 162, 76, 0.3);
  overflow: hidden;
}
.chapter-row__plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(0.18) contrast(1.05) brightness(0.92);
  transition: filter 600ms var(--ease);
}
.chapter-row:hover .chapter-row__plate img { filter: grayscale(100%) sepia(0.22) contrast(1.12) brightness(1); }
.chapter-row__caption {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(6,7,7,0.7);
  padding: 4px 8px;
}
.chapter-row__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.chapter-row__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin: 14px 0 18px;
}
.chapter-row__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.chapter-row__teaser {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.72);
  max-width: 540px;
}

/* ---------- Kit (cream) ---------- */
.kit { background: var(--paper); color: var(--ink); padding-block: var(--section-y); }
.kit__head { text-align: center; margin-bottom: 72px; }
.kit__head h2 { color: var(--ink); margin-top: 18px; }
.kit__hero {
  margin: 0 0 80px;
  position: relative;
  height: 360px;
  background: linear-gradient(135deg, #2a2520 0%, #18130f 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6,7,7,0.1);
}
.kit__hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(6, 7, 7, 0.04) 0px,
      rgba(6, 7, 7, 0.04) 1px,
      transparent 1px,
      transparent 5px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(6, 7, 7, 0.03) 0px,
      rgba(6, 7, 7, 0.03) 1px,
      transparent 1px,
      transparent 5px
    ),
    radial-gradient(ellipse at center, rgba(245, 241, 234, 1), rgba(220, 220, 222, 0.5));
  opacity: 0.85;
}
.kit__hero-imgs {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  z-index: 2;
}
.kit__hero-imgs img {
  height: 240px;
  width: auto;
  filter: grayscale(100%) drop-shadow(0 16px 32px rgba(0,0,0,0.6));
}
.kit__hero-imgs img:nth-child(1) { transform: rotate(-3deg); }
.kit__hero-imgs img:nth-child(2) { transform: rotate(2deg) translateY(-8px); height: 260px; }
.kit__hero-caption {
  position: absolute;
  bottom: 16px; left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  border-left: 1px solid var(--gold);
  padding-left: 10px;
  z-index: 3;
}
.kit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.kit__tier {
  padding: 40px 32px 36px;
  border-left: 1px solid rgba(6,7,7,0.12);
  position: relative;
}
.kit__tier:first-child { border-left: 0; padding-left: 0; }
.kit__tier:last-child { padding-right: 0; }
.kit__tier .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.kit__tier h3 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 1.18;
  color: var(--ink);
  margin: 14px 0 16px;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.kit__tier p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(6, 7, 7, 0.74);
  margin: 0 0 20px;
}
.kit__tier .price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(6,7,7,0.5);
  text-transform: uppercase;
}
.kit__tier .price s { color: rgba(6,7,7,0.45); }
.kit__close {
  text-align: center;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 720px;
  margin-inline: auto;
}

/* ---------- Beyond the book (centerpiece) ---------- */
.beyond { background: var(--ink); padding-block: var(--section-y); position: relative; }
.beyond__head { max-width: 760px; }
.beyond__head h2 { color: var(--paper); margin: 18px 0 28px; }
.beyond__head h2 em { color: var(--gold); font-style: italic; font-variation-settings: 'opsz' 144, 'WONK' 1; }
.beyond__head .body-l { font-size: 19px; max-width: 700px; }
.beyond__body {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
}
.beyond__body p {
  color: rgba(245, 241, 234, 0.8);
  font-size: 16.5px;
  line-height: 1.62;
  margin: 0;
}
.beyond__body p strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 12px;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  letter-spacing: -0.005em;
}
.beyond__close {
  margin-top: 88px;
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid var(--gold);
  max-width: 720px;
  margin-inline: auto;
}
.beyond__close p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.36;
  color: var(--paper);
  margin: 0 0 18px;
}

/* ---------- Form section ---------- */
.formsec { background: var(--ink); padding-block: 96px var(--section-y); position: relative; }
.formsec::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(245, 241, 234, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.6;
}
.formsec__inner { position: relative; z-index: 1; }
.formsec__head {
  text-align: center;
  margin-bottom: 56px;
}
.formsec__card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: 1px;
  border: 1px solid rgba(201, 162, 76, 0.4);
  position: relative;
  overflow: hidden;
}
.formsec__step1 {
  padding: 56px 64px 48px;
  max-width: 560px;
  margin: 0 auto;
}
.formsec__step1 h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.formsec__step1 .sub {
  font-size: 15px;
  color: rgba(6,7,7,0.7);
  margin: 0 0 36px;
}

.field {
  display: block;
  margin-bottom: 28px;
  position: relative;
}
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(6,7,7,0.55);
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(6,7,7,0.18);
  background: transparent;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 220ms var(--ease);
}
.field input:focus, .field select:focus {
  outline: none;
  border-bottom: 1px solid var(--gold);
  border-bottom-width: 2px;
  margin-bottom: -1px;
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field-group-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  border-top: 1px solid rgba(6,7,7,0.12);
  padding-top: 24px;
  margin-bottom: 20px;
}

.formsec__helpline {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(6,7,7,0.45);
  text-transform: uppercase;
  margin-top: -16px;
  margin-bottom: 32px;
}
.formsec__trust {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(6,7,7,0.5);
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.formsec__trust::before {
  content: '';
  width: 10px; height: 10px;
  border: 1px solid currentColor;
  border-radius: 1px;
}
.formsec__micro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(6,7,7,0.62);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* Step 2 */
.formsec__step2 {
  display: none;
  padding: 0 56px 48px;
  border-top: 1px solid rgba(6,7,7,0.12);
  animation: stepReveal 480ms var(--ease) both;
}
.formsec__card.is-open .formsec__step2 { display: block; }
.formsec__card.is-open .formsec__step1-cta { display: none; }
.formsec__step2-head {
  padding-top: 40px;
  text-align: center;
  margin-bottom: 32px;
}
.formsec__step2-head h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--ink);
}
.formsec__step2-head p {
  font-size: 14px;
  color: rgba(6,7,7,0.65);
  margin: 0;
}
.formsec__step2-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  padding: 0 8px;
}

.summary {
  background: rgba(6,7,7,0.04);
  padding: 28px 24px 24px;
  border-left: 1px solid var(--gold);
}
.summary__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.summary__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(6,7,7,0.14);
  color: rgba(6,7,7,0.78);
}
.summary__row:last-of-type { border-bottom: 0; }
.summary__row .item { font-family: var(--sans); }
.summary__row .item em { font-family: var(--display); font-style: italic; }
.summary__row .amt { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--ink); }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.summary__total .amt { font-family: var(--mono); font-size: 18px; }
.summary__foot {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Bump */
.bump {
  margin-top: 32px;
  background: rgba(201, 162, 76, 0.08);
  border: 1px solid rgba(201, 162, 76, 0.4);
  padding: 22px 24px;
  position: relative;
}
.bump__eyebrow {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.bump__check {
  display: flex; gap: 14px; align-items: flex-start;
  cursor: pointer;
}
.bump__check input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 1px;
  position: relative;
  flex: none;
  margin-top: 2px;
  background: transparent;
  cursor: pointer;
  transition: background 200ms var(--ease);
}
.bump__check input[type="checkbox"]:checked { background: var(--gold); }
.bump__check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}
.bump__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
}
.bump__label .price-strike { color: rgba(6,7,7,0.45); text-decoration: line-through; }
.bump__detail {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(6,7,7,0.78);
  margin: 12px 0 0;
  padding-left: 32px;
}

/* ---------- About author ---------- */
.about { background: var(--paper); color: var(--ink); padding-block: var(--section-y); }
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: flex-start;
}
.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(6,7,7,0.1);
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}
.about__portrait::after {
  content: 'PHILIP, FLORENCE — 2026';
  position: absolute;
  left: 0; bottom: -28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(6,7,7,0.5);
  text-transform: uppercase;
}
.about__copy h2 { color: var(--ink); margin: 18px 0 14px; }
.about__copy .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(6,7,7,0.7);
  margin: 0 0 36px;
}
.about__copy p {
  font-size: 17px;
  line-height: 1.66;
  color: rgba(6,7,7,0.82);
  margin: 0 0 22px;
  max-width: 640px;
}
.about__credentials {
  list-style: none;
  margin: 36px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.about__credentials li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(6,7,7,0.74);
  line-height: 1.5;
  display: flex;
  gap: 10px;
}
.about__credentials li::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--gold);
  margin-top: 8px;
  flex: none;
}
.about__close {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  padding-left: 24px;
  border-left: 1px solid var(--gold);
}

/* ---------- Endorsements ---------- */
.endorse { background: var(--ink); padding-block: var(--section-y); }
.endorse__peer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 96px;
}
.endorse__quote {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 162, 76, 0.4);
}
.endorse__quote .body-l {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.42;
  color: var(--paper);
  margin: 0 0 28px;
}
.endorse__quote-foot {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
}
.endorse__quote-foot img {
  width: 48px; height: 48px;
  border-radius: 50%;
  filter: grayscale(100%);
  object-fit: cover;
}
.endorse__quote-foot .name {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}
.endorse__quote-foot .role {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.endorse__head { margin-bottom: 56px; text-align: left; max-width: 720px; }
.endorse__wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.07);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review__head { display: flex; align-items: center; gap: 14px; }
.review__head img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}
.review__stars {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.review__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.86);
  margin: 0;
  flex: 1;
}
.review__name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-top: auto;
}
.review__role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 234, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Why is this free ---------- */
.why { background: var(--paper); color: var(--ink); padding-block: var(--section-y); }
.why__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.why__inner h2 { color: var(--ink); margin: 18px 0 32px; }
.why__inner p {
  font-size: 17.5px;
  line-height: 1.7;
  color: rgba(6,7,7,0.82);
  margin: 0 0 22px;
}
.why__inner p em { font-family: var(--serif); font-style: italic; font-size: 1.05em; }
.why__list {
  margin: 36px 0;
  padding: 32px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.why__list dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.why__list dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(6,7,7,0.78);
}

/* ---------- Guarantee ---------- */
.guarantee { background: var(--paper); color: var(--ink); padding-block: var(--section-y); }
.guarantee__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--gold);
  padding: 64px 48px 56px;
  position: relative;
  background: rgba(6,7,7,0.02);
}
.guarantee__seal {
  width: 56px; height: 56px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.guarantee__seal::before, .guarantee__seal::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.guarantee__seal::after { inset: 8px; border-style: dashed; opacity: 0.5; }
.guarantee__seal span {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 24px;
  font-weight: 500;
  z-index: 1;
}
.guarantee__head {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.guarantee__body {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(6,7,7,0.78);
  margin: 0 0 28px;
}
.guarantee__sig {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq { background: var(--ink); padding-block: var(--section-y); }
.faq__head { text-align: center; margin-bottom: 64px; }
.faq__head h2 { color: var(--paper); margin-top: 18px; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-top: 1px solid rgba(201, 162, 76, 0.32);
}
.faq__item:last-child { border-bottom: 1px solid rgba(201, 162, 76, 0.32); }
.faq__q {
  display: flex;
  width: 100%;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  transition: color 220ms var(--ease);
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  flex: none;
  width: 16px; height: 16px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 280ms var(--ease);
}
.faq__icon::before {
  left: 0; right: 0; top: 50%;
  height: 1px;
  transform: translateY(-0.5px);
}
.faq__icon::after {
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
}
.faq__item.is-open .faq__icon::after { transform: translateX(-0.5px) rotate(90deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms var(--ease);
}
.faq__a-inner {
  padding: 0 4px 28px;
  font-size: 16px;
  line-height: 1.66;
  color: rgba(245, 241, 234, 0.74);
  max-width: 640px;
}
.faq__item.is-open .faq__a { max-height: 480px; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--ink-2);
  padding-block: 144px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/david-michelangelo.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.06;
  filter: grayscale(100%) contrast(1.1);
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.final-cta__inner { max-width: 820px; margin: 0 auto; }
.final-cta__book {
  width: 200px;
  margin: 0 auto 48px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
  transform: rotate(-1.5deg);
  animation: bookFloat 6s ease-in-out infinite;
}
.final-cta h2 {
  color: var(--paper);
  margin: 16px 0 28px;
}
.final-cta h2 em {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.final-cta__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: rgba(245, 241, 234, 0.78);
  margin: 0 auto 44px;
  max-width: 560px;
}
.final-cta__micro {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 24px;
}
.final-cta__micro2 {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245, 241, 234, 0.56);
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.colophon-footer {
  background: var(--paper);
  color: var(--ink);
  padding-block: 80px 36px;
}
.colophon-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gold);
}
.colophon-footer__col { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; line-height: 1.85; color: rgba(6,7,7,0.7); text-transform: uppercase; }
.colophon-footer__col strong { color: var(--ink); font-weight: 500; }
.colophon-footer__col--center {
  text-align: center;
}
.colophon-footer__mark {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-style: italic;
  color: var(--gold);
  font-size: 24px;
}
.colophon-footer__col--right { text-align: right; }
.colophon-footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(6,7,7,0.6);
  text-transform: uppercase;
}
.colophon-footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.colophon-footer__links a { transition: color 200ms var(--ease); }
.colophon-footer__links a:hover { color: var(--gold); }

/* ---------- OTO / Confirmation specific ---------- */
.confirm-banner {
  background: var(--ink);
  border-bottom: 1px solid rgba(201, 162, 76, 0.3);
  padding: 18px 0;
  text-align: center;
}
.confirm-banner .colophon { color: var(--gold); }

/* OTO hero */
.oto-hero {
  background: var(--ink);
  padding-block: 72px 96px;
  position: relative;
}
.oto-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  color: var(--paper);
  letter-spacing: -0.018em;
  margin: 24px 0 28px;
  max-width: 920px;
}
.oto-hero h1 em { color: var(--gold); font-style: italic; font-variation-settings: 'opsz' 144, 'WONK' 1; }
.oto-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.78);
  max-width: 720px;
  margin: 0 0 40px;
}

/* Author letter */
.letter {
  background: var(--paper);
  color: var(--ink);
  padding-block: var(--section-y);
}
.letter__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.letter__head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}
.letter__body {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  color: rgba(6,7,7,0.86);
}
.letter__body p { margin: 0 0 22px; }
.letter__body .drop-cap::first-letter,
.letter__body p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  float: left;
  font-size: 5em;
  line-height: 0.85;
  padding: 8px 12px 0 0;
  color: var(--burgundy);
  font-weight: 500;
}
.letter__sig {
  margin-top: 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
}
.letter__sig small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
  font-style: normal;
}

/* OTO components grid */
.toolkit { background: var(--ink); padding-block: var(--section-y); }
.toolkit__head { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.toolkit__head h2 { color: var(--paper); margin-top: 18px; }
.toolkit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(201, 162, 76, 0.24);
}
.toolkit__item {
  padding: 36px 32px 32px;
  border-right: 1px solid rgba(201, 162, 76, 0.24);
  border-bottom: 1px solid rgba(201, 162, 76, 0.24);
  position: relative;
  transition: background 280ms var(--ease);
}
.toolkit__item:nth-child(2n) { border-right: 0; }
.toolkit__item:nth-last-child(-n+2) { border-bottom: 0; }
.toolkit__item:hover { background: rgba(201, 162, 76, 0.04); }
.toolkit__item .num {
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(245, 241, 234, 0.4);
}
.toolkit__item h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18;
  color: var(--paper);
  margin: 0 0 14px;
  max-width: 80%;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.toolkit__item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.72);
  margin: 0 0 16px;
}
.toolkit__item .meta {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  gap: 16px;
}
.toolkit__item .meta s { color: rgba(245, 241, 234, 0.4); }

/* Stack table (value stack) */
.stack {
  max-width: 720px;
  margin: 64px auto 0;
  border-top: 1px solid var(--gold);
}
.stack__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 4px;
  border-bottom: 1px dashed rgba(201,162,76,0.3);
  color: rgba(245, 241, 234, 0.82);
}
.stack__row .item { font-family: var(--sans); font-size: 15px; }
.stack__row .item em { font-family: var(--display); font-style: italic; color: var(--paper); }
.stack__row .amt { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--paper); }
.stack__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 4px 8px;
  font-family: var(--display);
  font-style: italic;
  color: var(--paper);
}
.stack__total .label { font-size: 28px; font-variation-settings: 'opsz' 144, 'WONK' 1; }
.stack__total .price { font-family: var(--mono); font-size: 32px; color: var(--gold); letter-spacing: -0.01em; font-style: normal; }
.stack__sub {
  text-align: center;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* OTO CTA block */
.oto-cta-block {
  background: var(--ink);
  padding-block: 96px;
  text-align: center;
}
.oto-cta-block__inner {
  max-width: 640px;
  margin: 0 auto;
}
.oto-cta-block__btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 24px 44px;
  border: 1px solid var(--gold);
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.oto-cta-block__btn:hover { background: #d8b25c; }
.oto-cta-block__sub {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 234, 0.65);
  text-transform: uppercase;
}
.oto-decline {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245, 241, 234, 0.5);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 200ms var(--ease);
}
.oto-decline:hover { color: var(--gold); }

/* Two-column qual */
.qual { background: var(--paper); color: var(--ink); padding-block: var(--section-y); }
.qual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 920px;
  margin: 0 auto;
}
.qual__col h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
}
.qual__col ul {
  margin: 0; padding: 0; list-style: none;
}
.qual__col li {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(6,7,7,0.78);
  padding: 12px 0;
  border-bottom: 1px dashed rgba(6,7,7,0.14);
}
.qual__col li:last-child { border-bottom: 0; }

/* Cases */
.cases { background: var(--ink); padding-block: var(--section-y); }
.cases__grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cases__item .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.86);
  margin: 0 0 18px;
}
.cases__item .who {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 76, 0.4);
}

/* ---------- Confirmation page ---------- */
.welcome {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.welcome::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(245, 241, 234, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 241, 234, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.welcome__hero {
  text-align: center;
  padding: 120px 0 64px;
  position: relative;
}
.welcome__seal {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
  position: relative;
}
.welcome__seal::before, .welcome__seal::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.welcome__seal::after { inset: 12px; border-style: dashed; opacity: 0.5; }
.welcome__seal span {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 32px;
  font-weight: 500;
}
.welcome__hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  color: var(--paper);
  letter-spacing: -0.022em;
  margin: 0 0 32px;
}
.welcome__hero h1 em { color: var(--gold); font-style: italic; font-variation-settings: 'opsz' 144, 'WONK' 1; }
.welcome__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.82);
  max-width: 620px;
  margin: 0 auto 36px;
}
.welcome__receipt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 1px solid var(--gold);
  display: inline-block;
}
.welcome__cards {
  max-width: 1080px;
  margin: 64px auto 96px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.welcome__card {
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(201, 162, 76, 0.3);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
}
.welcome__card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.welcome__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.18;
  color: var(--paper);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.welcome__card p {
  font-size: 15px;
  line-height: 1.62;
  color: rgba(245, 241, 234, 0.72);
  margin: 0 0 24px;
  flex: 1;
}
.welcome__card .btn { font-size: 11px; padding: 14px 20px; }
.welcome__foot {
  text-align: center;
  padding: 32px 32px 64px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.welcome__foot-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  color: rgba(245, 241, 234, 0.62);
  text-transform: none;
  margin-top: 18px;
  display: block;
}

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Keyframes ---------- */
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bookFloat {
  0%, 100% { transform: rotate(-2.2deg) translateY(0); }
  50%      { transform: rotate(-2.2deg) translateY(-4px); }
}
@keyframes stepReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__col-left { padding-right: 0; }
  .hero__book { max-width: 360px; margin: 0 auto; }
  .pain__grid, .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .audience__grid, .endorse__peer, .endorse__wall, .cases__grid, .welcome__cards { grid-template-columns: 1fr; }
  .kit__grid { grid-template-columns: 1fr; }
  .kit__tier { border-left: 0; padding-left: 0 !important; padding-right: 0 !important; border-top: 1px solid rgba(6,7,7,0.12); padding-top: 32px; }
  .kit__tier:first-child { border-top: 0; padding-top: 0; }
  .beyond__body { grid-template-columns: 1fr; gap: 36px; }
  .chapter-row { grid-template-columns: 1fr; gap: 24px; }
  .chapter-row__plate { aspect-ratio: 16/9; max-height: 280px; }
  .toolkit__grid { grid-template-columns: 1fr; }
  .toolkit__item { border-right: 0 !important; }
  .formsec__step2-grid { grid-template-columns: 1fr; gap: 24px; }
  .qual__grid { grid-template-columns: 1fr; gap: 36px; }
  .colophon-footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .colophon-footer__col--right { text-align: left; }
}

@media (max-width: 768px) {
  :root { --section-y: var(--section-y-mobile); }
  .container { padding: 0 20px; }
  .trustbar__row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trustbar__item { padding-left: 14px; font-size: 9.5px; }
  .why__list { grid-template-columns: 1fr; }
  .about__credentials { grid-template-columns: 1fr; }
  .formsec__step1, .formsec__step2 { padding-left: 24px; padding-right: 24px; }
  .field--row { grid-template-columns: 1fr; }
  .cta-rule { min-width: 100%; padding: 16px 0; font-size: 12px; }
  .colophon-footer__bottom { flex-direction: column; align-items: flex-start; }
  .endorse__peer { gap: 36px; }
  .publisher-bar__nav { display: none; }
  .promise__marginalia { display: none; }
  .hero__statue { width: 100%; right: 0; opacity: 0.04; }
}

/* Print */
@media print {
  body { background: white; color: black; }
  .hero__statue, .reveal { display: none !important; opacity: 1 !important; }
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn:focus-visible, .cta-rule:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.field input:focus-visible, .field select:focus-visible {
  outline: none;
}

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

/* =============================================================
   Inline CTAs (added scroll-points)
   ============================================================= */
.inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 162, 76, 0.18);
  gap: 18px;
}
.inline-cta--light {
  border-top-color: rgba(6, 7, 7, 0.12);
}
.inline-cta__sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
}
.cta-rule--ink {
  color: var(--ink) !important;
  border-top-color: rgba(6, 7, 7, 0.32);
  border-bottom-color: rgba(6, 7, 7, 0.32);
}
.cta-rule--ink:hover {
  border-top-color: var(--gold);
  border-bottom-color: var(--gold);
}

/* =============================================================
   Sticky bottom CTA bar
   ============================================================= */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(6, 7, 7, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 162, 76, 0.34);
  transform: translateY(110%);
  transition: transform 360ms var(--ease);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.sticky-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.3;
}
.sticky-cta__copy strong { font-weight: 500; }
.sticky-cta__sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
}
.sticky-cta__btn {
  white-space: nowrap;
  font-size: 12.5px !important;
  padding: 14px 24px !important;
}
@media (max-width: 760px) {
  .sticky-cta__inner { padding: 12px 0; gap: 12px; }
  .sticky-cta__copy { font-size: 12.5px; }
  .sticky-cta__sub { display: none; }
  .sticky-cta__btn { padding: 12px 18px !important; font-size: 11.5px !important; }
}

/* =============================================================
   Typographic chapter plates (replaces broken external images)
   Editorial card with gold hairline border, roman numeral, caption.
   ============================================================= */
.plate {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.04), rgba(245, 241, 234, 0.015));
  border: 1px solid rgba(201, 162, 76, 0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.plate::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 76, 0.18);
  z-index: 0;
  pointer-events: none;
}
.plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(201, 162, 76, 0.05) 0px,
      rgba(201, 162, 76, 0.05) 1px,
      transparent 1px,
      transparent 8px
    );
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.plate__numeral {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.plate__numeral::before,
.plate__numeral::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 18px;
  opacity: 0.55;
}
.plate__caption {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: rgba(245, 241, 234, 0.65);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}
.plate__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(245, 241, 234, 0.78);
  font-variation-settings: 'opsz' 96;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  max-width: 220px;
}
.plate__mark {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.32em;
  color: rgba(201, 162, 76, 0.5);
  text-transform: uppercase;
  z-index: 1;
}

/* Pain section plate variant — on charcoal */
.pain__plate {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.05), rgba(245, 241, 234, 0.02));
  border: 1px solid rgba(201, 162, 76, 0.32);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  isolation: isolate;
}
.pain__plate::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 162, 76, 0.16);
  pointer-events: none;
}
.pain__plate__numeral {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(72px, 8vw, 124px);
  font-weight: 400;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  line-height: 1;
  margin-bottom: 32px;
  position: relative;
}
.pain__plate__caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: rgba(245, 241, 234, 0.6);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pain__plate__legend {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: rgba(245, 241, 234, 0.82);
  max-width: 260px;
  line-height: 1.32;
  font-variation-settings: 'opsz' 96;
}
.pain__plate__rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.6;
}

/* =============================================================
   DR audit additions — hero defuse line, hero promise pull,
   synopsis card, final-cta instruction, featured bump variant.
   ============================================================= */

/* Hero defuse line — italic Garamond, restrained, sits under the
   trust micro-copy above the trust line. */
.hero__defuse {
  margin-top: 14px;
  max-width: 540px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.62);
}

/* Hero promise pull-line — promotes the Promise sentence into the
   first viewport. Hairline gold rules above and below. */
.hero__pull {
  margin-top: 38px;
  padding: 22px 0 22px;
  max-width: 620px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.35;
  color: var(--paper);
  border-top: 1px solid rgba(201, 162, 76, 0.45);
  border-bottom: 1px solid rgba(201, 162, 76, 0.45);
  font-variation-settings: 'opsz' 96;
}

/* Synopsis card — between hero/trust bar and the Promise section.
   Editorial card on paper background. */
.synopsis {
  background: var(--paper);
  color: var(--ink);
  padding-block: 80px;
}
.synopsis__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
.synopsis__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.synopsis__eyebrow::before,
.synopsis__eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px;
  opacity: 0.6;
}
.synopsis__body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(6, 7, 7, 0.82);
  margin: 0;
}
@media (max-width: 760px) {
  .synopsis { padding-block: 56px; }
  .synopsis__body { font-size: 17px; }
}

/* Final CTA instruction line — mono caps, gold, 11px. */
.final-cta__instruction {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Featured bump — used on Hire-That-Didn't-Help variant where the
   Delegation Atlas is the most relevant addition. Slightly heavier
   gold border, larger interior, an italic editorial note slot above. */
.bump--featured {
  background: rgba(201, 162, 76, 0.12);
  border: 1.5px solid rgba(201, 162, 76, 0.6);
  padding: 28px 28px;
}
.bump__editor-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(6, 7, 7, 0.7);
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}

/* =============================================================
   COMPACT DR COMPONENTS — used on landing-hire / -holiday / -plateau.
   The variants are tight, cold-paid pages: 5–7 sections,
   ~2,500–3,500px desktop scroll. Components below override / extend
   the master components for the compact layout.
   ============================================================= */

/* Compact hero — single viewport, smaller book, no statue ghost. */
.hero--compact {
  padding-block: 56px 72px;
  min-height: auto;
}
.hero--compact .hero__inner {
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero--compact .display-xl {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.04;
  margin: 18px 0 18px;
}
.hero--compact .hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero--compact .hero__cta-block { margin-top: 20px; }
.hero--compact .cta-rule {
  min-width: 0;
  width: 100%;
  max-width: 460px;
  padding: 16px 0;
  font-size: 12px;
}
.hero--compact .hero__defuse {
  font-size: 12.5px;
  margin-top: 12px;
  color: rgba(245, 241, 234, 0.55);
  font-family: var(--serif);
  font-style: italic;
}
.hero--compact .hero__trustline {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.hero--compact .hero__book {
  max-width: 360px;
  transform: rotate(-1.6deg);
  filter: drop-shadow(0 28px 44px rgba(0,0,0,0.55)) drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}
.hero--compact .hero__edition-mark { font-size: 9px; }

/* Compact stack — "what you get" mini value-stack on dark.
   Replaces full kit section. 3 line items + total. */
.compact-stack {
  background: var(--ink);
  padding-block: 64px 72px;
  border-top: 1px solid rgba(245, 241, 234, 0.07);
  border-bottom: 1px solid rgba(245, 241, 234, 0.07);
}
.compact-stack__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.compact-stack__head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold);
}
.compact-stack__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(201, 162, 76, 0.22);
  gap: 24px;
}
.compact-stack__row .item {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(245, 241, 234, 0.86);
  line-height: 1.4;
}
.compact-stack__row .item em {
  font-family: var(--display);
  font-style: italic;
  color: var(--paper);
}
.compact-stack__row .item small {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(245, 241, 234, 0.55);
  margin-top: 2px;
}
.compact-stack__row .amt {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--paper);
  white-space: nowrap;
}
.compact-stack__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0 8px;
  margin-top: 10px;
  border-top: 1px solid var(--gold);
  font-family: var(--display);
  color: var(--paper);
}
.compact-stack__total .label {
  font-size: 22px;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.compact-stack__total .price {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--gold);
  font-style: normal;
}
.compact-stack__total .price s {
  color: rgba(245, 241, 234, 0.4);
  margin-right: 10px;
  font-size: 14px;
}
.compact-stack__sub {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}

/* Pain mirror card — single second-person paragraph on dark.
   Replaces the full pain-agitation section. */
.pain-mirror {
  background: var(--ink-2);
  padding-block: 64px;
}
.pain-mirror__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.pain-mirror__eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pain-mirror__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.pain-mirror__body {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--paper);
  margin: 0;
  font-style: normal;
}
.pain-mirror__body em {
  font-style: italic;
  color: var(--gold);
}

/* Mini bio — 2-line author bio strip, no portrait. */
.mini-bio {
  background: var(--ink);
  padding-block: 48px;
  border-top: 1px solid rgba(245, 241, 234, 0.07);
}
.mini-bio__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.mini-bio__eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.mini-bio__body {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.85);
  margin: 0;
}
.mini-bio__body strong {
  font-family: var(--sans);
  font-weight: 600;
  font-style: normal;
  color: var(--paper);
}

/* Compact why-is-this-free — paper section, ~70 words, no list. */
.why--compact { padding-block: 64px; }
.why--compact .why__inner { max-width: 680px; }
.why--compact h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  margin: 14px 0 22px;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.why--compact p {
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 16px;
}

/* Compact form — inline, smaller padding, no extra eyebrow card. */
.formsec--compact { padding-block: 64px 72px; }
.formsec--compact .formsec__head { margin-bottom: 32px; }
.formsec--compact .formsec__step1 { padding: 40px 40px 32px; }
.formsec--compact .formsec__step1 h3 { font-size: 30px; margin: 0 0 8px; }
.formsec--compact .formsec__step1 .sub { font-size: 16px; margin: 0 0 28px; }

/* Compact final CTA strip — single line + button, no large book hero. */
.final-cta--compact {
  padding-block: 72px;
  background: var(--ink-2);
}
.final-cta--compact::before { display: none; }
.final-cta--compact .final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 720px;
}
.final-cta--compact h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  margin: 0;
}
.final-cta--compact .final-cta__sub {
  font-size: 17px;
  margin: 0;
  max-width: 560px;
}

/* Compact footer — single row. */
.colophon-footer--compact { padding-block: 36px 28px; }
.colophon-footer--compact .colophon-footer__cols { display: none; }
.colophon-footer--compact .colophon-footer__bottom {
  padding-top: 0;
  border-top: 0;
}

/* Mobile tweaks for compact components */
@media (max-width: 1024px) {
  .hero--compact .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero--compact .hero__book { max-width: 280px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .hero--compact { padding-block: 36px 48px; }
  .hero--compact .display-xl { font-size: 36px; }
  .compact-stack { padding-block: 48px 56px; }
  .compact-stack__row { flex-wrap: wrap; gap: 6px 12px; }
  .pain-mirror { padding-block: 48px; }
  .pain-mirror__body { font-size: 18px; line-height: 1.45; }
  .mini-bio { padding-block: 36px; }
  .mini-bio__body { font-size: 15.5px; }
  .why--compact { padding-block: 48px; }
  .formsec--compact { padding-block: 48px 56px; }
  .formsec--compact .formsec__step1 { padding: 28px 24px 28px; }
  .final-cta--compact { padding-block: 56px; }
}

/* =============================================================
   LAUNCH-EDITION REBUILD (Medici · 2026-05) — exact PDF copy
   Components for landing-hire / landing-holiday / landing-plateau
   Designed for a single-CTA Buy Now flow into Thrive Cart.
   ============================================================= */

/* Hero — copy left, video right */
.heroL {
  position: relative;
  padding: 88px 0 96px;
  background: var(--ink);
  overflow: hidden;
}
.heroL::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(201, 162, 76, 0.10), transparent 70%),
    radial-gradient(40% 40% at 100% 100%, rgba(90, 26, 26, 0.18), transparent 70%);
  pointer-events: none;
}
.heroL__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.heroL__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.heroL__eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; display: inline-block;
}
.heroL__headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--paper);
  margin: 0 0 22px;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
}
.heroL__sub {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--paper-2);
  margin: 0 0 14px;
  max-width: 56ch;
}
.heroL__trailer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.62);
  margin: 0 0 30px;
  display: inline-flex; align-items: center; gap: 10px;
}
.heroL__trailer .icon-play {
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.heroL__trailer .icon-play svg { width: 9px; height: 9px; }
.heroL__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.heroL__bullets li {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper-2);
  padding-left: 28px;
  position: relative;
}
.heroL__bullets li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 14px; height: 1px;
  background: var(--gold);
}
.heroL__cta-defuse {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.68);
  margin: 18px 0 0;
}

/* Video frame — used in hero + can be re-used elsewhere */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(245, 241, 234, 0.14);
  background: var(--ink-2);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(201, 162, 76, 0.08) inset;
}
.video-frame iframe,
.video-frame video,
.video-frame__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
}
.video-frame__poster {
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-2) center/cover no-repeat;
}
.video-frame__poster::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 100%);
}
.video-frame__play {
  position: relative; z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.94);
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.video-frame__poster:hover .video-frame__play { transform: scale(1.06); background: var(--gold); }
.video-frame__play svg { width: 26px; height: 26px; color: var(--ink); }
.video-frame__label {
  position: absolute; left: 16px; top: 16px; z-index: 3;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper);
  background: rgba(6, 7, 7, 0.7);
  border: 1px solid rgba(245, 241, 234, 0.18);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

/* Generic section header (eyebrow + display heading) */
.sectionL {
  padding: 96px 0;
  background: var(--ink);
}
.sectionL--paper { background: var(--paper); color: var(--ink); }
.sectionL--paper .sectionL__lead,
.sectionL--paper .sectionL__body { color: rgba(6, 7, 7, 0.78); }
.sectionL__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.sectionL__eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--gold); display: inline-block;
}
.sectionL__heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: inherit;
  margin: 0 0 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  max-width: 22ch;
}
.sectionL__lead {
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
  color: var(--paper-2);
  margin: 0 0 18px;
  max-width: 62ch;
}
.sectionL__body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper-2);
  margin: 0 0 14px;
  max-width: 62ch;
}

/* Problem section — photo LEFT, copy RIGHT on desktop */
.problemL {
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.problemL__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}
.problemL__photo {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-height: 540px;
  background: var(--ink-2) center/cover no-repeat;
  border-right: 1px solid rgba(245, 241, 234, 0.08);
}
.problemL__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(-120deg, rgba(6, 7, 7, 0.45), transparent 50%);
}
.problemL__copy {
  grid-column: 2;
  grid-row: 1;
  padding: 96px 0 96px 64px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Book feature — copy left, mockup/photo right (paper background) */
.bookL {
  background: var(--paper);
  color: var(--ink);
  padding: 112px 0;
}
.bookL__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.bookL__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(6, 7, 7, 0.55);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.bookL__eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--ink); display: inline-block; opacity: 0.4;
}
.bookL__heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 18ch;
}
.bookL__body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(6, 7, 7, 0.78);
  margin: 0 0 16px;
  max-width: 56ch;
}
.bookL__photo {
  position: relative;
}
.bookL__photo img {
  width: 100%;
  display: block;
  border: 1px solid rgba(6, 7, 7, 0.08);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

/* Offer — three-row stack on dark */
.offerL {
  background: var(--ink);
  padding: 112px 0;
  position: relative;
}
.offerL__inner {
  max-width: var(--maxw-mid);
  margin: 0 auto;
}
.offerL__head {
  text-align: center;
  margin-bottom: 56px;
}
.offerL__head .sectionL__eyebrow { justify-content: center; }
.offerL__head .sectionL__heading { margin: 0 auto; }
.offerL__rows {
  border-top: 1px solid rgba(245, 241, 234, 0.14);
  margin-bottom: 32px;
}
.offerL__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.14);
  align-items: center;
}
.offerL__row__thumb {
  width: 120px;
  height: 120px;
  background: var(--ink-2);
  border: 1px solid rgba(245, 241, 234, 0.10);
  overflow: hidden;
  position: relative;
}
.offerL__row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offerL__row__copy { min-width: 0; }
.offerL__row__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
  color: var(--paper);
  margin: 0 0 8px;
}
.offerL__row__desc {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--paper-2);
  margin: 0;
  max-width: 64ch;
}
.offerL__row__value {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 6px 12px;
  border: 1px solid rgba(201, 162, 76, 0.35);
  border-radius: 2px;
  background: rgba(201, 162, 76, 0.06);
}
.offerL__total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 24px 0 8px;
  align-items: baseline;
}
.offerL__total__label {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 24px);
  color: var(--paper);
  margin: 0;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.offerL__total__label em { color: var(--gold); font-style: italic; }
.offerL__photo {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.offerL__photo img {
  width: 100%;
  display: block;
  filter: grayscale(0.1);
}

/* CTA band — reusable conversion block */
.ctaL {
  text-align: center;
  margin-top: 40px;
}
.ctaL__button {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  padding: 22px 32px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  border: 0;
  border-radius: 2px;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
  cursor: pointer;
}
.ctaL__button:hover { background: #d8b25c; transform: translateY(-1px); }
.ctaL__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.62);
  margin: 18px 0 0;
}
.sectionL--paper .ctaL__sub { color: rgba(6, 7, 7, 0.55); }

/* Who this is for — band with photo */
.whoL {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
}
.whoL__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  min-height: 460px;
}
.whoL__photo {
  position: relative;
  min-height: 460px;
  background: var(--ink-2) center/cover no-repeat;
  border-right: 1px solid rgba(245, 241, 234, 0.08);
}
.whoL__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(-120deg, rgba(6, 7, 7, 0.45), transparent 50%);
}
.whoL__copy {
  padding: 96px 0 96px 64px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Author block — copy LEFT, photo RIGHT on desktop */
.authorL {
  background: var(--paper);
  color: var(--ink);
  padding: 112px 0;
}
.authorL__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 72px;
  align-items: center;
}
.authorL__copy { grid-column: 1; grid-row: 1; }
.authorL__photo {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-2) center/cover no-repeat;
  filter: grayscale(0.1);
}
.authorL__photo::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(6, 7, 7, 0.08);
}
.authorL__heading {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 24px;
}
.authorL__body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(6, 7, 7, 0.78);
  margin: 0 0 16px;
  max-width: 56ch;
}
.authorL__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
  color: var(--ink);
  margin: 24px 0 0;
}

/* Why free — quiet, centered */
.whyL {
  background: var(--ink);
  padding: 112px 0;
  text-align: center;
}
.whyL__inner { max-width: 720px; margin: 0 auto; }
.whyL__heading {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--paper);
  margin: 0 0 28px;
  font-variation-settings: 'opsz' 144, 'WONK' 1;
}
.whyL__body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper-2);
  margin: 0 0 14px;
}
.whyL__punch {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  color: var(--paper);
  margin: 36px 0 0;
}
.whyL__punch em { color: var(--gold); font-style: italic; font-variation-settings: 'opsz' 144, 'WONK' 1; }

/* FAQ */
.faqL {
  background: var(--paper);
  color: var(--ink);
  padding: 112px 0;
}
.faqL__inner { max-width: 820px; margin: 0 auto; }
.faqL__head { text-align: center; margin-bottom: 56px; }
.faqL__head .sectionL__eyebrow {
  color: rgba(6, 7, 7, 0.55);
  justify-content: center;
}
.faqL__head .sectionL__eyebrow::before { background: var(--ink); opacity: 0.4; }
.faqL__head .sectionL__heading { color: var(--ink); margin: 0 auto; }
.faqL__item {
  border-top: 1px solid rgba(6, 7, 7, 0.12);
}
.faqL__item:last-child { border-bottom: 1px solid rgba(6, 7, 7, 0.12); }
.faqL__trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 26px 0;
  background: transparent;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.2;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faqL__trigger .plus {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  transition: transform 200ms var(--ease);
}
.faqL__item.is-open .faqL__trigger .plus { transform: rotate(45deg); }
.faqL__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease);
}
.faqL__item.is-open .faqL__panel { grid-template-rows: 1fr; }
.faqL__panel > div { overflow: hidden; }
.faqL__panel p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(6, 7, 7, 0.78);
  margin: 0 0 28px;
  max-width: 60ch;
}

/* Footer colophon */
.footerL {
  background: var(--ink);
  color: var(--paper-2);
  padding: 64px 0 48px;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
}
.footerL__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.46);
}

/* =============================================================
   RESPONSIVE · mobile-first refinements
   - 600px breakpoint: collapse to single column on phones & narrow tablets
   - 600-1280 keeps desktop layout (3-col offer rows, side-by-side
     hero/problem/author, etc.) so narrow laptop windows look right.
   - Inside the breakpoint we reorder the hero so the video sits
     ABOVE THE FOLD on mobile (just below the page header).
   ============================================================= */
@media (max-width: 600px) {
  /* Universal safety: prevent any horizontal overflow on small screens. */
  html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }
  .container { padding: 0 20px; max-width: 100vw; box-sizing: border-box; }
  /* Constrain text content (not full-bleed media) to viewport. */
  .heroL__copy h1,
  .heroL__copy p,
  .heroL__copy ul,
  .problemL__copy p,
  .problemL__copy h2,
  .bookL__copy p,
  .bookL__copy h2,
  .authorL__copy p,
  .authorL__copy h2,
  .whoL__copy p,
  .whoL__copy h2,
  .whyL__inner p,
  .whyL__inner h2,
  .offerL__row__name,
  .offerL__row__desc,
  .offerL__total__label,
  .faqL__trigger span,
  .faqL__panel p {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
  img, svg, iframe { max-width: 100%; }

  /* Pre-strip — shrink and truncate, never wrap */
  .prestrip { padding: 8px 0; }
  .prestrip .colophon {
    font-size: 9px !important;
    letter-spacing: 0.14em !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  /* HERO — mobile-first: video block first, then full copy block */
  .heroL { padding: 24px 0 48px; }
  .heroL__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .heroL__video { order: -1; min-width: 0; }   /* pull video above the copy block */
  .heroL__copy { padding: 0; min-width: 0; max-width: 100%; }
  .heroL__copy > * { max-width: 100%; min-width: 0; }
  .heroL__eyebrow { margin-bottom: 14px; font-size: 10px; }
  .heroL__headline {
    font-size: clamp(20px, 5vw, 24px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    margin-bottom: 16px;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    hyphens: auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    /* Fraunces "text" optical size on mobile — narrower glyphs. */
    font-variation-settings: 'opsz' 16, 'SOFT' 0, 'WONK' 0 !important;
  }
  .heroL__sub {
    font-size: 14px !important;
    max-width: 100% !important;
    width: 100% !important;
    line-height: 1.5 !important;
    margin-bottom: 14px;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    box-sizing: border-box;
  }
  .heroL__trailer { font-size: 10px; margin-bottom: 22px; }
  .heroL__bullets { margin-bottom: 28px; padding-left: 0; }
  .heroL__bullets li { font-size: 14.5px; max-width: 100%; padding-left: 22px; }
  .heroL__bullets li::before { width: 12px; top: 10px; }
  .video-frame { aspect-ratio: 16 / 9; }
  .video-frame__play { width: 64px; height: 64px; }
  .video-frame__play svg { width: 20px; height: 20px; }
  .video-frame__label { font-size: 9px; padding: 5px 8px; }

  /* PROBLEM — stack copy then photo on mobile.
     Photo is presented as a small, well-fitted card (not full-bleed),
     square-cropped at chest height so both faces + book stay in frame. */
  .problemL__inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .problemL__photo {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    min-height: 0;
    margin: 8px auto 24px;
    background-size: cover !important;
    background-position: center 22% !important;
    border-right: 0;
    border: 1px solid rgba(245, 241, 234, 0.10);
  }
  .problemL__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 56px 0 28px;
  }

  /* BOOK */
  .bookL { padding: 64px 0; }
  .bookL__inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .bookL__copy, .bookL__photo { min-width: 0; }

  /* OFFER — tight stacked row */
  .offerL { padding: 64px 0; }
  .offerL__head { margin-bottom: 36px; }
  .offerL__rows { margin-bottom: 24px; }
  .offerL__row {
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-areas: 'thumb copy' 'value value';
    column-gap: 16px;
    row-gap: 10px;
    align-items: start;
    padding: 22px 0;
  }
  .offerL__row__thumb {
    grid-area: thumb;
    width: 80px;
    height: 80px;
    align-self: start;
  }
  .offerL__row__copy { grid-area: copy; }
  .offerL__row__name { font-size: 19px; margin: 0 0 6px; }
  .offerL__row__desc { font-size: 14.5px; }
  .offerL__row__value { grid-area: value; justify-self: start; font-size: 11px; }
  .offerL__total__label { font-size: 18px; }

  /* WHO */
  .whoL__inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .whoL__photo { min-height: 280px; }
  .whoL__copy {
    padding: 56px 24px !important;
  }

  /* AUTHOR — portrait first on mobile, full-image visible (no head/feet crop).
     Uses aspect 2:3 to match the standing portrait, with background-size
     covering width so the whole figure stays in frame. */
  .authorL { padding: 64px 0; }
  .authorL__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .authorL__copy { min-width: 0; }
  .authorL__photo {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 2 / 3;
    margin: 0 auto;
    background-size: cover !important;
    background-position: center 30% !important;
  }
  .authorL__copy {
    grid-column: 1;
    grid-row: 2;
  }
  .authorL__heading { font-size: clamp(28px, 7vw, 36px); }
  .authorL__body { font-size: 16px; }

  /* WHY / FAQ */
  .whyL, .faqL { padding: 64px 0; }
  .whyL__heading { font-size: clamp(26px, 7vw, 34px); }
  .faqL__trigger { font-size: 17px; padding: 22px 0; }
  .faqL__panel p { font-size: 15.5px; }

  /* Generic section adjustments + opsz fix for ALL Fraunces headings */
  .sectionL { padding: 64px 0; }
  .sectionL__heading,
  .bookL__heading,
  .authorL__heading,
  .whyL__heading,
  .offerL__row__name,
  .faqL__trigger,
  .offerL__total__label {
    font-variation-settings: 'opsz' 24, 'SOFT' 0, 'WONK' 0 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }
  .sectionL__heading { font-size: clamp(24px, 6.5vw, 32px); }
  .sectionL__body { font-size: 15px; overflow-wrap: anywhere; }
  .bookL__body { font-size: 15px; overflow-wrap: anywhere; }
  .authorL__body { font-size: 15px; overflow-wrap: anywhere; }
  .whyL__body { font-size: 15px; overflow-wrap: anywhere; }
  .whyL__punch { font-size: clamp(19px, 5vw, 24px); overflow-wrap: anywhere; }

  /* CTA buttons — tighter on mobile */
  .ctaL__button { font-size: 12px; padding: 18px 22px; letter-spacing: 0.18em; }
  .ctaL__sub { font-size: 13px; }

  /* Pre-strip + header — compress on mobile */
  .prestrip { padding: 10px 0; font-size: 10px; }
  .publisher-bar { padding: 12px 0; }
  .publisher-bar__nav .btn { padding: 10px 16px !important; font-size: 10px !important; }

  /* Footer */
  .footerL { padding: 40px 0 32px; }
  .footerL__inner { gap: 16px; font-size: 10px; }
}

/* Tighter at phone widths (<=420px) — keeps fonts within viewport */
@media (max-width: 420px) {
  .container { padding: 0 16px !important; }
  .heroL { padding: 16px 0 40px; }
  .heroL__headline { font-size: clamp(18px, 5vw, 22px) !important; line-height: 1.2 !important; }
  .heroL__sub { font-size: 13.5px !important; }
  .heroL__bullets li { padding-left: 20px; font-size: 13.5px; }
  .offerL__row { grid-template-columns: 64px minmax(0, 1fr); column-gap: 12px; padding: 18px 0; }
  .offerL__row__thumb { width: 64px; height: 64px; }
  .offerL__row__name { font-size: 16px; }
  .offerL__row__desc { font-size: 13.5px; }
  .video-frame__play { width: 56px; height: 56px; }
  .video-frame__play svg { width: 17px; height: 17px; }
  .ctaL__button { font-size: 11px; padding: 16px 18px; letter-spacing: 0.12em; }
  .sectionL__heading { font-size: clamp(22px, 6.4vw, 28px) !important; }
  .bookL__heading { font-size: clamp(22px, 6.4vw, 28px) !important; }
  .authorL__heading { font-size: clamp(22px, 6.4vw, 28px) !important; }
  .whyL__heading { font-size: clamp(22px, 6.4vw, 28px) !important; }
  .whyL__punch { font-size: clamp(17px, 4.6vw, 22px) !important; }
  .faqL__trigger { font-size: 15px; }
}
