/* =============================================================
   THE BOONE FAMILY RECEIPT BOOK — landing page
   Aesthetic: 1940s–60s American household book / farm almanac.
   Palette is warm throughout. Burgundy + antique gold are the accents.
   ============================================================= */

/* ---------- 1. TOKENS ---------------------------------------- */
:root {
  /* paper */
  --cream:      #f7efdc;
  --ivory:      #efe4c9;
  --ivory-deep: #e7d9b8;
  --paper-edge: #d9c79c;

  /* ink */
  --ink:        #2b2118;
  --ink-soft:   #4a3b2c;
  --ink-faint:  #75634e;

  /* greens */
  --forest:       #1b2f21;
  --forest-deep:  #122117;
  --forest-mid:   #2b4531;

  /* accents */
  --wine:       #7a1a1c;
  --wine-deep:  #5c1214;
  --wine-light: #9b2a2a;
  --gold:       #c19434;
  --gold-light: #e0bd6a;
  --gold-pale:  #f0d9a0;
  --mustard:    #d9a62e;

  --shadow-warm: 0 18px 44px -22px rgba(43, 33, 24, .55);

  /* type */
  --display: "Bodoni Moda", "Bodoni MT", Didot, Georgia, serif;
  --body:    "Source Serif 4", Georgia, "Times New Roman", serif;
  --label:   "IBM Plex Mono", ui-monospace, "Courier New", monospace;
  --script:  "Mrs Saint Delafield", cursive;

  /* layout */
  --topbar-h: 54px;
  --wrap: 1180px;
  --pad: clamp(1.15rem, 4vw, 2.5rem);
}

/* ---------- 2. RESET / BASE ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: var(--topbar-h);
  font-family: var(--body);
  font-size: clamp(1.0625rem, .55vw + .95rem, 1.1875rem);
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-variant-numeric: lining-nums;
}

[hidden] { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1.05em; }
a { color: var(--wine); }
s { color: inherit; opacity: .72; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--gold-pale); color: var(--ink); }

/* Paper grain — fixed, non-interactive, never on a scroll container */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--wine); color: #fff; padding: .8rem 1.2rem;
  font-family: var(--label); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* Focus — visible everywhere */
:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
.sec--dark :where(a, button):focus-visible,
.sec--forest :where(a, button):focus-visible { outline-color: var(--gold-light); }

/* ---------- 3. LAYOUT HELPERS -------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); position: relative; z-index: 2; }
.wrap--narrow { max-width: 820px; }

.sec { padding-block: clamp(3.5rem, 7vw, 6.5rem); position: relative; }
.sec--paper  { background: var(--cream); }
.sec--ivory  { background: var(--ivory); }
.sec--dark   { background: var(--forest-deep); color: var(--ivory); }
.sec--forest { background: var(--forest); color: var(--ivory); }

/* hairline between adjacent paper sections */
.sec--paper + .sec--ivory,
.sec--ivory + .sec--paper { border-top: 1px solid var(--paper-edge); }

.sec--dark::before, .sec--forest::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(224,189,106,.10), transparent 62%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.014) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

[id] { scroll-margin-top: calc(var(--topbar-h) + 1.25rem); }
/* leave room for the desktop purchase strip that sits under the top bar */
@media (min-width: 901px) { [id] { scroll-margin-top: calc(var(--topbar-h) + 5.25rem); } }

/* ---------- 4. TYPOGRAPHY ------------------------------------ */
.eyebrow {
  font-family: var(--label);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 1rem;
}
.eyebrow--gold { color: var(--gold-light); }
.eyebrow--rule { display: flex; align-items: center; gap: 1rem; }
.eyebrow--rule::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--paper-edge), transparent); }

.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.1vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.h2--big { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
.h2--light { color: var(--cream); }
.h2--center { text-align: center; }
.wine { color: var(--wine); }
.gold { color: var(--gold-light); }

.dek {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto;
  text-wrap: balance;
}
.dek--light { color: var(--gold-pale); opacity: .92; }
.sec__head--center .dek { margin-inline: auto; }

.lead { font-size: 1.13em; }

.sec__head { margin-bottom: clamp(2rem, 4vw, 3rem); position: relative; }
.sec__head--center { text-align: center; }
.sec__head--center .h2 { margin-inline: auto; max-width: 20ch; }

.sec__intro { max-width: 62ch; margin: 0 auto 2.5rem; text-align: center; color: var(--ink-soft); font-size: 1.08em; }

.numeral {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--wine);
  opacity: .45;
  margin-bottom: .35rem;
}
.numeral--gold { color: var(--gold); opacity: .6; }

/* Page references — the "verify it yourself" mechanic */
.pageref {
  display: inline-block;
  font-family: var(--label);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--wine);
  border-bottom: 1px solid rgba(122,26,28,.35);
  padding-bottom: 2px;
  text-decoration: none;
}
.pageref--lg { font-size: .84rem; }
a.pageref:hover { color: var(--wine-deep); border-color: var(--wine); }
.sec--dark .pageref { color: var(--gold-light); border-color: rgba(224,189,106,.4); }

.pg {
  font-family: var(--label);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--wine);
  background: rgba(122,26,28,.08);
  padding: .12em .45em;
  border-radius: 2px;
  white-space: nowrap;
}

/* ---------- 5. BUTTONS --------------------------------------- */
.btn {
  --btn-bg: var(--wine);
  --btn-fg: #fdf7e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--label);
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  padding: 1.05rem 1.9rem;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(43,33,24,.28), inset 0 1px 0 rgba(255,255,255,.14);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 14px -6px rgba(43,33,24,.5), inset 0 1px 0 rgba(255,255,255,.2); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(43,33,24,.3); }

.btn--wine { --btn-bg: var(--wine); }
.btn--wine:hover { background: var(--wine-light); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: #241a08; }
.btn--gold:hover { background: var(--gold-light); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--ink-faint);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(122,26,28,.06); border-color: var(--wine); color: var(--wine); box-shadow: none; }

.btn--sm { padding: .6rem 1rem; font-size: .76rem; letter-spacing: .1em; }
.btn--lg { padding: 1.2rem 2.3rem; font-size: .95rem; }
.btn--xl { padding: 1.4rem 2.4rem; font-size: clamp(.95rem, 1.5vw, 1.08rem); }
.btn--block { display: flex; width: 100%; }

.ctaline { text-align: center; margin: 2.6rem 0 0; }
.ctaline--left { text-align: left; }

.was-line {
  font-family: var(--label);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: .8rem 0 1.3rem;
}

/* ---------- 6. STICKY TOP BAR -------------------------------- */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--topbar-h);
  background: var(--forest-deep);
  border-bottom: 1px solid rgba(224,189,106,.28);
  color: var(--gold-pale);
}
.topbar__in {
  height: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding-inline: clamp(.7rem, 2.5vw, 1.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.topbar__left {
  margin: 0;
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--label); font-size: .72rem; letter-spacing: .1em;
  color: rgba(240,217,160,.8);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d8412f; box-shadow: 0 0 0 0 rgba(216,65,47,.6);
  animation: pulse 2.6s ease-out infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(216,65,47,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(216,65,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,65,47,0); }
}

.topbar__mid { display: flex; align-items: center; gap: .8rem; justify-content: center; }
.topbar__label {
  font-family: var(--label); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(240,217,160,.72);
}
.topbar__label--ended { color: var(--gold-light); }

.clock { display: inline-flex; align-items: flex-end; gap: .12rem; }
.clock__cell {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(122,26,28,.55);
  border: 1px solid rgba(224,189,106,.3);
  border-radius: 2px;
  padding: .16rem .38rem .1rem;
  min-width: 2.5rem;
}
.clock__cell b {
  font-family: var(--label); font-weight: 600; font-size: .95rem; line-height: 1;
  color: #fbf1d8; font-variant-numeric: tabular-nums;
}
.clock__cell i {
  font-family: var(--label); font-style: normal; font-size: .5rem;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(240,217,160,.62); margin-top: 2px;
}
.clock__sep { color: rgba(224,189,106,.5); font-family: var(--label); align-self: center; padding-bottom: .3rem; }

.topbar__cta { justify-self: end; white-space: nowrap; }
.topbar__cta em { font-style: normal; opacity: .85; }
.only-sm { display: none; }

/* ---------- 7. STICKY DESKTOP STRIP -------------------------- */
.strip {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 85;
  background: rgba(247,239,220,.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--paper-edge);
  box-shadow: 0 10px 24px -18px rgba(43,33,24,.6);
  transform: translateY(-115%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.strip.is-on { transform: translateY(0); }
.strip__in {
  max-width: 1180px; margin-inline: auto;
  padding: .55rem clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; gap: 1.1rem;
}
.strip__cover { width: 42px; border: 1px solid var(--paper-edge); box-shadow: 0 3px 8px -4px rgba(43,33,24,.6); }
.strip__txt { flex: 1; min-width: 0; }
.strip__title { font-family: var(--display); font-weight: 700; font-size: 1.02rem; margin: 0; line-height: 1.2; }
.strip__meta { font-family: var(--label); font-size: .68rem; letter-spacing: .1em; color: var(--ink-faint); margin: .18rem 0 0; }
.strip__price { margin: 0; font-family: var(--display); white-space: nowrap; }
.strip__price .was { text-decoration: line-through; color: var(--ink-faint); font-size: 1.05rem; }
.strip__price .now { color: var(--wine); font-weight: 700; font-size: 1.6rem; }

/* ---------- 8. HERO ------------------------------------------ */
.hero {
  padding-block: clamp(2.2rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(90% 70% at 78% 18%, rgba(224,189,106,.22), transparent 60%),
    radial-gradient(70% 60% at 8% 90%, rgba(122,26,28,.07), transparent 62%),
    var(--cream);
  border-bottom: 1px solid var(--paper-edge);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__h1 { margin: 0 0 1.4rem; font-family: var(--display); font-weight: 700; line-height: 1; }
.hero__line1 {
  display: block;
  font-size: clamp(1.9rem, 4.4vw, 3.15rem);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.hero__cut {
  display: block;
  font-family: var(--label); font-weight: 500;
  font-size: clamp(.82rem, 1.4vw, 1rem);
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .25rem;
}
.hero__figure {
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: clamp(4.6rem, 15vw, 9.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--wine);
  position: relative;
  margin-left: -.045em;
  text-shadow: 2px 3px 0 rgba(193,148,52,.24);
}
.hero__figure::after {
  content: "";
  position: absolute;
  left: .02em; right: -.02em; bottom: .12em;
  height: .28em;
  background: linear-gradient(90deg, rgba(217,166,46,.55), rgba(217,166,46,.26));
  z-index: -1;
  transform: rotate(-.5deg);
}
.hero__year {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: .15em;
}

.hero__sub {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: .9rem;
}
.hero__month {
  font-family: var(--body);
  font-size: 1.05rem;
  padding: .7rem 0 .9rem;
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
  max-width: 40ch;
  margin-bottom: 1.4rem;
}
.hero__month b { color: var(--wine); }
.hero__body { max-width: 46ch; color: var(--ink-soft); font-size: .99rem; }
.hero__cta { margin-top: 1.8rem; }

.trustrow {
  display: flex; flex-wrap: wrap; gap: .5rem 1.35rem;
  margin-top: 1.6rem; padding-top: 1.3rem;
  border-top: 1px solid var(--paper-edge);
  font-family: var(--label); font-size: .73rem; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-faint);
}
.trustrow li { display: flex; align-items: center; gap: .35rem; }
.stars { color: var(--mustard); letter-spacing: .05em; font-size: .8rem; }

/* 3D book */
.hero__book { perspective: 1600px; display: flex; flex-direction: column; align-items: center; }
.book {
  position: relative;
  width: min(420px, 78%);
  transform: rotateY(-16deg) rotateX(3deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
  filter: drop-shadow(28px 34px 34px rgba(43,33,24,.35));
}
.book:hover { transform: rotateY(-8deg) rotateX(1.5deg) rotateZ(0deg) translateY(-6px); }
.book__face {
  width: 100%;
  border-radius: 2px 5px 5px 2px;
  box-shadow: inset 0 0 60px rgba(43,33,24,.12);
  position: relative; z-index: 3;
}
.book__spine {
  position: absolute; top: 0; bottom: 0; left: -1px; width: 15px;
  background: linear-gradient(90deg, #0d1a12, #21382a 55%, rgba(0,0,0,.35));
  transform: translateZ(-12px) rotateY(0deg);
  border-radius: 3px 0 0 3px;
  z-index: 1;
}
.book__pages {
  position: absolute; top: 1.2%; bottom: 1.2%; right: -13px; width: 20px;
  background: repeating-linear-gradient(90deg, #f4ead2 0 1px, #d8c9a6 1px 2.5px);
  border-radius: 0 3px 3px 0;
  transform: translateZ(-6px);
  box-shadow: inset -3px 0 6px rgba(43,33,24,.28);
  z-index: 2;
}
.book__caption {
  margin-top: 1.6rem;
  font-family: var(--label); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-faint); text-align: center;
}

/* ---------- 9. STATS STRIP ----------------------------------- */
.stats {
  background: var(--forest);
  color: var(--gold-pale);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-block: 3px double rgba(224,189,106,.4);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats__grid li { padding: .3rem .5rem; position: relative; }
.stats__grid li + li::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 1px; background: rgba(224,189,106,.28);
}
.stats__grid b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 4rem); line-height: 1;
  color: var(--gold-light);
}
.stats__grid span {
  display: block; margin-top: .5rem;
  font-family: var(--label); font-size: clamp(.62rem, 1.4vw, .76rem);
  letter-spacing: .2em; text-transform: uppercase; color: rgba(239,228,201,.78);
}
.stats__foot {
  text-align: center; margin: 1.8rem 0 0;
  font-family: var(--label); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(239,228,201,.6);
}

/* ---------- 10. PAIN ----------------------------------------- */
.pain__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: start;
}
.pain__lead { max-width: 46ch; }
.leaks {
  border-top: 2px solid var(--wine);
  padding-top: .5rem;
}
.leaks li {
  display: flex; gap: .85rem;
  padding: .62rem 0;
  border-bottom: 1px dotted var(--paper-edge);
  font-size: .98rem;
  color: var(--ink-soft);
}
.leaks li::before {
  content: "—"; color: var(--wine); flex: none; font-weight: 700;
}

.pullquote {
  margin: clamp(2.5rem, 5vw, 4rem) auto;
  max-width: 38ch;
  text-align: center;
  position: relative;
}
.pullquote blockquote { margin: 0; }
.pullquote p {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
  line-height: 1.28;
  font-style: italic;
  color: var(--forest);
  margin: 0;
  text-wrap: balance;
}
.pullquote::before, .pullquote::after {
  content: "";
  display: block;
  width: 70px; height: 9px; margin: 0 auto 1.4rem;
  background:
    linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent) center/100% 1px no-repeat,
    radial-gradient(circle at center, var(--wine) 3.5px, transparent 3.6px) center/9px 9px no-repeat;
}
.pullquote::after { margin: 1.4rem auto 0; }
.pullquote--script { max-width: 34ch; margin-inline: 0; text-align: left; }
.pullquote--script p { font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--wine); }
.pullquote--script::before, .pullquote--script::after { margin-inline: 0; }
.pullquote--script figcaption {
  font-family: var(--label); font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: .9rem;
}
.pullquote--dark p { color: var(--gold-pale); }
.pullquote--dark::before, .pullquote--dark::after {
  background:
    linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent) center/100% 1px no-repeat,
    radial-gradient(circle at center, var(--gold) 3.5px, transparent 3.6px) center/9px 9px no-repeat;
}

.transition {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--ink);
  margin: 0;
}

/* ---------- 11. WILLA ---------------------------------------- */
.willa__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.willa__photo { position: sticky; top: calc(var(--topbar-h) + 2rem); }
.framed {
  margin: 0;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--paper-edge);
  box-shadow: var(--shadow-warm);
  transform: rotate(-.7deg);
}
.framed img { border: 1px solid rgba(43,33,24,.18); filter: sepia(.16) saturate(.96); }
.framed figcaption {
  margin-top: .85rem;
  font-family: var(--label); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint); text-align: center;
}
.willa__copy .numeral { margin-bottom: .2rem; }
.willa__copy p { max-width: 58ch; }

.sig {
  font-family: var(--script);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: .9;
  color: var(--wine);
  margin: 2rem 0 .1rem;
}
.sig-cap {
  font-family: var(--label); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* ---------- 12. VERDICTS / SPLIT ----------------------------- */
.verdicts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .8rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}
.v {
  padding: 1rem 1.1rem;
  background: var(--ivory);
  border: 1px solid var(--paper-edge);
  border-top: 4px solid var(--ink-faint);
}
.v b { display: block; font-family: var(--display); font-size: 1.06rem; margin-bottom: .3rem; }
.v span { font-size: .88rem; color: var(--ink-faint); line-height: 1.5; }
.v--works    { border-top-color: #3f6b41; }
.v--change   { border-top-color: var(--gold); }
.v--notworth { border-top-color: #96793d; }
.v--never    { border-top-color: var(--wine-light); }
.v--ruled    { border-top-color: var(--wine-deep); background: rgba(122,26,28,.07); }

.split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: stretch;
  background: var(--ivory);
  border: 1px solid var(--paper-edge);
  padding: clamp(1.3rem, 3vw, 2.4rem);
}
.split__label {
  font-family: var(--label); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint);
  padding-bottom: .6rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--paper-edge);
}
.split__col--old .split__txt {
  font-family: var(--display); font-style: italic; font-size: 1.1rem;
  color: var(--ink-soft);
  padding: .7rem 0; margin: 0;
  border-bottom: 1px dotted var(--paper-edge);
}
.split__col--new .split__txt {
  font-size: .95rem; padding: .7rem 0; margin: 0;
  border-bottom: 1px dotted var(--paper-edge);
  color: var(--ink-soft);
}
.split__rule { display: flex; align-items: center; justify-content: center; position: relative; }
.split__rule span {
  font-family: var(--display); font-style: italic; font-size: 1.3rem;
  color: var(--wine); background: var(--ivory); padding: .3rem .45rem;
  position: relative;
}
.split__rule::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--paper-edge);
}
.split__rule span { position: relative; z-index: 1; }

.tag {
  display: inline-block;
  font-family: var(--label); font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .2em .5em; margin-right: .45em;
  border-radius: 2px;
  color: #fdf7e8; background: var(--ink-faint);
  vertical-align: 2px;
}
.tag--ruled  { background: var(--wine-deep); }
.tag--never  { background: var(--wine-light); }
.tag--change { background: #96793d; }

.feature-lines {
  margin: clamp(2.2rem, 4vw, 3rem) auto 0;
  max-width: 54ch; text-align: center;
}
.feature-lines p {
  font-family: var(--display); font-size: clamp(1.05rem, 1.9vw, 1.32rem);
  padding: .85rem 0; margin: 0;
  border-bottom: 1px solid var(--paper-edge);
}
.feature-lines p:first-child { border-top: 1px solid var(--paper-edge); }

.bigcallout {
  margin-top: clamp(2.5rem, 5vw, 3.6rem);
  text-align: center;
  padding: clamp(1.8rem, 4vw, 3rem) 1rem;
  background: var(--forest);
  color: var(--gold-pale);
  border: 1px solid var(--forest-mid);
  box-shadow: inset 0 0 0 6px rgba(224,189,106,.16);
}
.bigcallout__num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(3rem, 9vw, 5.6rem); line-height: .98;
  color: var(--gold-light); margin: 0;
  letter-spacing: -.02em;
}
.bigcallout__txt {
  font-family: var(--label); font-size: clamp(.72rem, 1.8vw, .95rem);
  letter-spacing: .24em; text-transform: uppercase;
  margin: .9rem 0 1.5rem; color: rgba(239,228,201,.85);
}
.bigcallout .pageref { color: var(--gold-light); border-color: rgba(224,189,106,.45); }

/* ---------- 13. THE MATH ------------------------------------- */
.ledger__head {
  text-align: center;
  font-family: var(--label); font-size: .72rem; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(224,189,106,.75);
  margin-bottom: 1.4rem;
}
.ledger {
  max-width: 720px; margin: 0 auto;
  border-top: 1px solid rgba(224,189,106,.3);
}
.ledger li {
  display: flex; align-items: baseline; gap: .6rem;
  padding: .75rem .2rem;
  border-bottom: 1px solid rgba(224,189,106,.16);
}
.ledger__cat {
  font-family: var(--label); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(239,228,201,.9);
  flex: none;
}
.ledger__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(224,189,106,.4);
  transform: translateY(-.25em);
}
.ledger__amt {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--gold-light);
  flex: none;
  font-variant-numeric: tabular-nums;
}

.math__total {
  margin: clamp(2.5rem, 5vw, 3.8rem) auto 1.6rem;
  text-align: center;
  max-width: 620px;
  padding: clamp(1.6rem, 4vw, 2.6rem) 1rem;
  border: 3px double rgba(224,189,106,.45);
  background: rgba(122,26,28,.16);
}
.math__upto {
  font-family: var(--label); font-size: .74rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(239,228,201,.75); margin: 0 0 .4rem;
}
.math__month, .math__year {
  font-family: var(--display); font-weight: 900;
  line-height: .95; margin: 0; letter-spacing: -.03em;
}
.math__month { font-size: clamp(2.6rem, 8vw, 4.2rem); color: var(--cream); }
.math__year  { font-size: clamp(3.4rem, 13vw, 7rem); color: var(--gold-light); }
.math__month span, .math__year span {
  display: inline-block;
  font-family: var(--label); font-weight: 400;
  font-size: .2em; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(239,228,201,.7);
  margin-left: .5em; vertical-align: .55em;
}
.math__approx {
  font-family: var(--display); font-size: 1.8rem; color: rgba(224,189,106,.6);
  margin: .5rem 0;
}

.disclaimer {
  max-width: 62ch; margin: 0 auto;
  text-align: center;
  font-size: .92rem; line-height: 1.65;
  color: rgba(239,228,201,.72);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(224,189,106,.22);
}
.disclaimer b { color: var(--gold-pale); }

.admit { max-width: 58ch; margin: 0 auto; text-align: center; color: rgba(239,228,201,.85); }
.admit__refs { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: center; margin: 1.2rem 0 0; }

/* ---------- 14. CONTENTS ------------------------------------- */
.parts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  counter-reset: part;
}
.part {
  background: var(--ivory);
  border: 1px solid var(--paper-edge);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.part:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }
.part--big { grid-column: 1 / -1; background: var(--cream); border-color: var(--gold); border-width: 2px; }
.part--wine { background: rgba(122,26,28,.07); border-color: rgba(122,26,28,.35); }
.part__no {
  font-family: var(--label); font-size: .7rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--wine); margin: 0 0 .5rem;
}
.part__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.1;
  margin: 0 0 .35rem;
}
.part__pages {
  font-family: var(--label); font-size: .72rem; letter-spacing: .12em;
  color: var(--ink-faint); margin: 0 0 1.1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--paper-edge);
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center;
}
.part__flag {
  background: var(--gold); color: #241a08; padding: .18em .55em;
  border-radius: 2px; letter-spacing: .08em; font-size: .66rem; text-transform: uppercase;
}
.part__list li {
  display: flex; flex-wrap: wrap; gap: .4rem .7rem; align-items: baseline;
  padding: .5rem 0;
  font-size: .97rem; color: var(--ink-soft);
  border-bottom: 1px dotted rgba(217,199,156,.7);
}
.part__list li:last-child { border-bottom: 0; }
.part__list--two { columns: 2; column-gap: 2rem; }
.part__list--two li { break-inside: avoid; }

/* ---------- 15. LESSON CARDS --------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.card {
  background: var(--cream);
  border: 1px solid var(--paper-edge);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 3px 3px 0 rgba(217,199,156,.55);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 3.1rem; height: 1px;
  background: rgba(122,26,28,.14);
}
.card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(217,199,156,.75); }
.card__ref {
  font-family: var(--label); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--wine); margin: 0 0 .6rem;
}
.card__title {
  font-family: var(--display); font-weight: 700;
  font-size: 1.25rem; line-height: 1.18; margin: 0 0 .7rem;
}
.card p:last-child { margin: 0; font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.card--wine { border-left-color: var(--wine); background: rgba(122,26,28,.06); }

/* ---------- 16. SAFETY --------------------------------------- */
.checks { max-width: 66ch; margin: 0 auto clamp(2.2rem, 4vw, 3rem); }
.checks li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .8rem 0; border-bottom: 1px solid var(--paper-edge);
  font-size: 1rem;
}
.checks li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: .35em;
  background: var(--forest);
  clip-path: polygon(14% 46%, 0 60%, 38% 96%, 100% 22%, 86% 8%, 37% 68%);
}
.checks .pg { align-self: center; }

.contrasts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.2rem;
}
.contrast {
  background: var(--ivory);
  border: 1px solid var(--paper-edge);
  border-top: 5px solid var(--wine-deep);
  padding: 1.5rem;
}
.contrast__label {
  font-family: var(--label); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: .6rem;
}
.contrast__claim {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.25;
  color: var(--ink);
  text-decoration: line-through;
  text-decoration-color: rgba(122,26,28,.6);
  text-decoration-thickness: 2px;
  margin-bottom: .9rem;
}
.contrast__verdict { font-family: var(--label); font-size: .8rem; letter-spacing: .06em; margin-bottom: .6rem; }
.contrast__why { font-size: .93rem; color: var(--ink-soft); margin: 0; }

.bigline {
  margin: clamp(2.5rem, 5vw, 3.6rem) auto 0;
  text-align: center;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 1.18;
  max-width: 24ch;
}

/* ---------- 17. PRINTABLES ----------------------------------- */
.sheets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1rem, 2.2vw, 1.4rem);
  margin-bottom: 2.4rem;
}
.sheet {
  position: relative;
  background: #fdf8ea;
  border: 1px solid var(--paper-edge);
  padding: 2.6rem 1.3rem 1.4rem;
  box-shadow: 0 10px 20px -16px rgba(43,33,24,.7);
  transition: transform .22s ease;
}
.sheet:nth-child(odd)  { transform: rotate(-.5deg); }
.sheet:nth-child(even) { transform: rotate(.5deg); }
.sheet:hover { transform: rotate(0deg) translateY(-4px); }
.sheet::after {
  content: ""; position: absolute; inset: 6px; border: 1px dashed rgba(217,199,156,.9); pointer-events: none;
}
.sheet__letter {
  position: absolute; top: -.1rem; left: 1.1rem;
  font-family: var(--display); font-weight: 900; font-size: 2.6rem;
  color: rgba(122,26,28,.28); line-height: 1;
}
.sheet h3 {
  font-family: var(--display); font-weight: 700; font-size: 1.12rem;
  margin: 0 0 .45rem; line-height: 1.2;
}
.sheet p { margin: 0; font-size: .89rem; color: var(--ink-faint); line-height: 1.55; }

.printnote {
  max-width: 60ch; margin: 0 auto;
  text-align: center;
  padding: 1.3rem 1.4rem;
  background: var(--cream);
  border: 1px solid var(--paper-edge);
  border-left: 4px solid var(--gold);
}
.printnote p { margin: 0; font-size: .98rem; color: var(--ink-soft); }

/* ---------- 18. PREVIEW CAROUSEL ----------------------------- */
.carousel { position: relative; margin-top: 1rem; }
.carousel__track {
  display: flex; gap: clamp(1rem, 2.5vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad);
  padding: 1rem var(--pad) 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--paper-edge) transparent;
}
.carousel__track::-webkit-scrollbar { height: 8px; }
.carousel__track::-webkit-scrollbar-thumb { background: var(--paper-edge); border-radius: 4px; }

.page { flex: 0 0 auto; width: min(300px, 74vw); scroll-snap-align: center; }
.page__inner {
  aspect-ratio: 8.5 / 11;
  background: #fdf9ec;
  border: 1px solid var(--paper-edge);
  box-shadow: 0 16px 32px -22px rgba(43,33,24,.85);
  padding: 1.5rem 1.4rem 1.1rem;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.page__running {
  font-family: var(--label); font-size: .55rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-faint);
  padding-bottom: .5rem; margin: 0 0 .9rem;
  border-bottom: 1px solid var(--paper-edge);
}
.page__head {
  font-family: var(--display); font-weight: 700; font-size: 1.22rem;
  line-height: 1.15; margin: 0 0 1rem; color: var(--forest);
}
.page__folio {
  margin: auto 0 0; text-align: center;
  font-family: var(--label); font-size: .58rem; letter-spacing: .16em; color: var(--ink-faint);
  padding-top: .7rem; border-top: 1px solid var(--paper-edge);
}
.page__sig { font-family: var(--script); font-size: 2.1rem; color: var(--wine); margin: .6rem 0 0; }
.page__note { font-family: var(--label); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--wine); margin: .8rem 0 .5rem; }
.page__warn {
  font-family: var(--label); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wine); border: 1px solid rgba(122,26,28,.4); padding: .4rem .5rem; text-align: center; margin: .8rem 0 0;
}
.page__cap {
  margin: .9rem 0 0; text-align: center;
  font-family: var(--label); font-size: .66rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-faint);
}
.page--letter .page__inner { background: #fcf6e6; }
.page--crossed .page__inner { border-color: rgba(122,26,28,.35); }
.page--safety .page__inner { border-top: 4px solid var(--forest); }

/* abstract text blocks — deliberately not readable text */
.lines { display: flex; flex-direction: column; gap: .42rem; }
.lines i { display: block; height: 6px; background: rgba(43,33,24,.16); border-radius: 1px; }
.lines i:nth-child(3n)   { width: 88%; }
.lines i:nth-child(4n+1) { width: 96%; }
.lines i:nth-child(5n)   { width: 72%; }
.lines--struck i { position: relative; background: rgba(43,33,24,.12); }
.lines--struck i::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 50%;
  height: 2px; background: rgba(122,26,28,.65); transform: rotate(-.6deg);
}
.lines--bullets i { margin-left: 14px; position: relative; }
.lines--bullets i::before {
  content: ""; position: absolute; left: -14px; top: -1px;
  width: 7px; height: 7px; background: var(--forest); border-radius: 50%;
}
.ledger-mini, .table-mini, .grid-mini { display: grid; gap: 4px; margin-bottom: .9rem; }
.ledger-mini { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
.ledger-mini--tall { grid-template-columns: repeat(6, 1fr); }
.table-mini { grid-template-columns: repeat(3, 1fr); }
.grid-mini  { grid-template-columns: repeat(4, 1fr); }
.ledger-mini span, .table-mini span, .grid-mini span {
  height: 15px; background: rgba(43,33,24,.09); border: 1px solid rgba(43,33,24,.13);
}
.ledger-mini span:nth-child(-n+5), .table-mini span:nth-child(-n+3), .grid-mini span:nth-child(-n+4) {
  background: rgba(27,47,33,.18);
}
.tmpl { display: grid; gap: .3rem; }
.tmpl b {
  font-family: var(--label); font-size: .54rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--wine); margin-top: .35rem;
}
.tmpl i { display: block; height: 6px; background: rgba(43,33,24,.15); border-radius: 1px; }
.tmpl i:nth-of-type(even) { width: 85%; }

.carousel__btn {
  position: absolute; top: calc(50% - 2rem); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--paper-edge);
  background: var(--cream);
  color: var(--wine);
  font-size: 1.7rem; line-height: 1;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-warm);
  transition: background-color .18s ease, transform .18s ease;
}
.carousel__btn:hover { background: var(--gold-pale); transform: scale(1.06); }
.carousel__btn--prev { left: max(.5rem, calc(50vw - var(--wrap)/2 - 1.5rem)); }
.carousel__btn--next { right: max(.5rem, calc(50vw - var(--wrap)/2 - 1.5rem)); }

.preview__note {
  max-width: 62ch; margin: 1rem auto 0; text-align: center;
  font-size: .88rem; color: var(--ink-faint);
}

/* ---------- 19. OFFER / VALUE STACK -------------------------- */
.offer__grid {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.offer__book { position: sticky; top: calc(var(--topbar-h) + 2rem); text-align: center; }
.offer__cover {
  margin-inline: auto;
  width: min(360px, 78%);
  border-radius: 2px 5px 5px 2px;
  box-shadow: 18px 22px 34px -20px rgba(43,33,24,.7), 0 0 0 1px rgba(43,33,24,.12);
  transform: rotate(-1.5deg);
}
.offer__caption {
  margin-top: 1.3rem;
  font-family: var(--label); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-faint);
}

.stack { margin: 0 0 2rem; border-top: 2px solid var(--wine); }
.stack__row {
  display: flex; gap: 1rem; align-items: baseline; justify-content: space-between;
  padding: .95rem .2rem;
  border-bottom: 1px solid var(--paper-edge);
}
.stack dt { font-family: var(--display); font-weight: 700; font-size: 1.08rem; line-height: 1.25; }
.stack dt span {
  display: block; font-family: var(--body); font-weight: 400;
  font-size: .87rem; color: var(--ink-faint); margin-top: .2rem; line-height: 1.5;
}
.stack dd {
  margin: 0; flex: none; white-space: nowrap;
  font-family: var(--label); font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint);
}
.stack__row--total { border-bottom-width: 2px; border-color: var(--ink-faint); }
.stack__row--total dt { font-size: 1.15rem; }
.stack__row--total dd { font-family: var(--display); font-size: 1.35rem; color: var(--ink); letter-spacing: 0; }
.stack__row--today {
  background: rgba(122,26,28,.09);
  padding-inline: 1rem; border-bottom: 0;
  align-items: center;
}
.stack__row--today dt { font-size: 1.25rem; color: var(--wine); }
.stack__row--today dd { font-family: var(--display); letter-spacing: 0; }
.stack__row--today dd s { font-size: 1.2rem; color: var(--ink-faint); }
.stack__row--today dd b { font-size: clamp(2.2rem, 5vw, 3rem); color: var(--wine); margin-left: .3rem; }

.offer__fine { margin: 1.1rem 0 1rem; font-size: .95rem; color: var(--ink-soft); text-align: center; }
.offer__badges {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: center; margin: 0;
  font-family: var(--label); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-faint);
}
.offer__badges span { display: flex; align-items: center; gap: .4rem; }
.offer__badges span::before {
  content: ""; width: 12px; height: 12px; background: var(--forest);
  clip-path: polygon(14% 46%, 0 60%, 38% 96%, 100% 22%, 86% 8%, 37% 68%);
}

/* ---------- 20. TESTIMONIALS --------------------------------- */
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.tcard {
  background: var(--ivory);
  border: 1px solid var(--paper-edge);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  position: relative;
}
.tcard__stars { color: var(--mustard); letter-spacing: .12em; font-size: 1rem; margin-bottom: .9rem; }
.tcard__stars--empty { color: rgba(117,99,78,.45); }
.tcard__quote {
  font-family: var(--display); font-style: italic;
  font-size: 1.12rem; line-height: 1.45; color: var(--ink);
  margin-bottom: 1.2rem; flex: 1;
}
.tcard__who {
  font-family: var(--label); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 .3rem;
}
.tcard__ref { font-family: var(--label); font-size: .66rem; letter-spacing: .12em; color: var(--wine); margin: 0; }

.tcard--placeholder { background: repeating-linear-gradient(135deg, var(--ivory) 0 12px, var(--ivory-deep) 12px 24px); }
.tcard--placeholder .tcard__quote { color: var(--ink-faint); }
.tcard__flag {
  font-family: var(--label); font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--wine); color: #fdf7e8;
  padding: .3rem .6rem; align-self: flex-start; margin-bottom: 1rem;
}
.tnote {
  grid-column: 1 / -1;
  text-align: center; font-size: .88rem; color: var(--ink-faint);
  border-top: 1px solid var(--paper-edge); padding-top: 1.2rem; margin: .5rem 0 0;
}

/* ---------- 21. WHY 445 ------------------------------------- */
.needs {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  max-width: 760px; margin: 0 auto clamp(2.4rem, 4vw, 3.2rem);
}
.needs li {
  font-family: var(--label); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1rem;
  background: var(--cream);
  border: 1px solid var(--paper-edge);
  color: var(--ink-soft);
}
.fivequestions {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 3px double var(--wine);
  background: var(--cream);
}
.fivequestions__lead {
  font-family: var(--label); font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--wine); margin-bottom: 1.4rem;
}
.fivequestions ol { display: grid; gap: .3rem; }
.fivequestions li {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.4rem, 3.6vw, 2.2rem); line-height: 1.2;
}
.fivequestions li:last-child { color: var(--wine); }

/* ---------- 22. ANTI-PROMISE --------------------------------- */
.anti { text-align: center; }
.antiquote { margin: 0 auto 2rem; max-width: 24ch; }
.antiquote blockquote { margin: 0; }
.antiquote p {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 5.4vw, 3.6rem);
  line-height: 1.12; color: var(--gold-pale); margin: 0;
  text-wrap: balance;
}
.anti__body { max-width: 52ch; margin-inline: auto; color: rgba(239,228,201,.85); font-size: 1.05rem; }

/* ---------- 23. FAQ ------------------------------------------ */
.faq { border-top: 2px solid var(--wine); }
.faq__item { border-bottom: 1px solid var(--paper-edge); }
.faq__item h3 { margin: 0; }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  text-align: left;
  background: none; border: 0; cursor: pointer;
  padding: 1.25rem .3rem;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
  transition: color .18s ease;
}
.faq__q:hover { color: var(--wine); }
.faq__ico {
  flex: none; width: 26px; height: 26px; position: relative;
  border: 1px solid var(--wine); border-radius: 50%;
}
.faq__ico::before, .faq__ico::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--wine); transform: translate(-50%,-50%);
  transition: opacity .2s ease, transform .2s ease;
}
.faq__ico::before { width: 11px; height: 2px; }
.faq__ico::after  { width: 2px; height: 11px; }
.faq__q[aria-expanded="true"] { color: var(--wine); }
.faq__q[aria-expanded="true"] .faq__ico::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq__a { padding: 0 .3rem 1.5rem; max-width: 68ch; }
.faq__a p { color: var(--ink-soft); margin-bottom: .8rem; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__list { margin-top: .5rem; display: grid; gap: .35rem; }
.faq__list li { font-size: .97rem; color: var(--ink-soft); }
.faq__list b { color: var(--wine); font-family: var(--label); font-size: .82rem; }

/* ---------- 24. GUARANTEE ------------------------------------ */
.guarantee { text-align: center; }
.seal {
  width: clamp(150px, 26vw, 200px); aspect-ratio: 1;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold-pale);
  display: grid; place-items: center;
  box-shadow: 0 0 0 5px var(--ivory), 0 0 0 6px var(--wine), 0 14px 30px -18px rgba(43,33,24,.9);
  position: relative;
}
.seal::before {
  content: ""; position: absolute; inset: 11px; border: 1px dashed rgba(240,217,160,.55); border-radius: 50%;
}
.seal__inner { text-align: center; }
.seal__days {
  display: block; font-family: var(--display); font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 2.6rem); line-height: 1; color: var(--gold-light);
}
.seal__txt {
  display: block; margin-top: .4rem;
  font-family: var(--label); font-size: clamp(.56rem, 1.4vw, .68rem);
  letter-spacing: .18em; text-transform: uppercase; line-height: 1.6;
}
.guarantee__steps {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.5rem;
  margin: 1.6rem 0; counter-reset: g;
}
.guarantee__steps li {
  counter-increment: g;
  font-family: var(--display); font-size: clamp(1.05rem, 2.2vw, 1.35rem); font-style: italic;
  display: flex; align-items: baseline; gap: .5rem;
}
.guarantee__steps li::before {
  content: counter(g);
  font-family: var(--label); font-size: .7rem; font-style: normal;
  color: #fdf7e8; background: var(--wine);
  width: 1.7em; height: 1.7em; border-radius: 50%;
  display: inline-grid; place-items: center;
}
.guarantee__copy { max-width: 54ch; margin-inline: auto; color: var(--ink-soft); }

/* ---------- 25. LAST CALL ------------------------------------ */
.last__grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.last__brand {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream); margin: 2.2rem 0 1.2rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(224,189,106,.3);
}
.last__cut {
  font-family: var(--label); font-size: .8rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(239,228,201,.75); margin: 0;
}
.last__figure {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(4rem, 13vw, 8rem); line-height: 1;
  color: var(--gold-light); margin: .1em 0 0; letter-spacing: -.04em;
}
.last__year {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 2rem); color: var(--cream);
  margin: .1em 0 2rem; letter-spacing: .05em;
}
.last__was {
  margin: 1rem 0 0;
  font-family: var(--label); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(239,228,201,.7);
}
.last__badges {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.6rem;
  padding-top: 1.4rem; border-top: 1px solid rgba(224,189,106,.25);
  font-family: var(--label); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(239,228,201,.72);
}
.last__book img {
  width: 100%;
  border-radius: 2px 5px 5px 2px;
  transform: rotate(2deg);
  box-shadow: -18px 22px 40px -22px rgba(0,0,0,.9), 0 0 0 1px rgba(224,189,106,.2);
}
.last__disclaimer {
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  max-width: 76ch; text-align: center;
  font-size: .85rem; line-height: 1.65;
  color: rgba(239,228,201,.6);
  padding-top: 1.6rem; border-top: 1px solid rgba(224,189,106,.2);
}

/* ---------- 26. FOOTER --------------------------------------- */
.foot {
  background: #16130f; color: rgba(239,228,201,.7);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}
.foot__title { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--gold-pale); margin-bottom: .4rem; }
.foot__meta, .foot__links, .foot__copy {
  font-family: var(--label); font-size: .72rem; letter-spacing: .1em; line-height: 1.9;
}
.foot__links { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin: 1rem 0; }
.foot__links a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(224,189,106,.35); }
.foot__links a:hover { color: var(--gold-pale); }
.foot__copy { color: rgba(239,228,201,.42); margin: 0; }

/* ---------- 27. MOBILE BUY BAR ------------------------------- */
.mobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  background: rgba(18,33,23,.98);
  border-top: 1px solid rgba(224,189,106,.35);
  padding: .7rem clamp(.8rem, 3vw, 1.2rem) calc(.7rem + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  display: none;
}
.mobar.is-on { transform: translateY(0); }
.mobar__fine {
  margin: .5rem 0 0; text-align: center;
  font-family: var(--label); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(239,228,201,.7);
}

/* ---------- 28. PURCHASE TOAST ------------------------------- */
.toast {
  position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 86;
  width: min(330px, calc(100vw - 2.4rem));
  background: var(--cream);
  border: 1px solid var(--paper-edge);
  border-left: 4px solid var(--forest);
  box-shadow: 0 18px 36px -20px rgba(43,33,24,.85);
  padding: .9rem 1rem;
  display: flex; gap: .8rem; align-items: center;
  opacity: 0; transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.toast.is-on { opacity: 1; transform: translateY(0); }
.toast__img { width: 34px; flex: none; border: 1px solid var(--paper-edge); }
.toast__body { min-width: 0; }
.toast__who { font-family: var(--body); font-size: .92rem; margin: 0 0 .15rem; line-height: 1.35; }
.toast__who b { color: var(--wine); }
.toast__ago { font-family: var(--label); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin: 0; }

/* ---------- 29. EXIT MODAL ----------------------------------- */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1rem; }
.modal__scrim { position: absolute; inset: 0; background: rgba(18,14,10,.78); backdrop-filter: blur(2px); animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; } }
.modal__card {
  position: relative;
  width: min(720px, 100%);
  max-height: 92dvh; overflow-y: auto;
  background: var(--cream);
  border: 1px solid var(--gold);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.9), inset 0 0 0 5px rgba(224,189,106,.2);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  animation: rise .34s cubic-bezier(.2,.8,.3,1);
}
@keyframes rise { from { opacity: 0; transform: translateY(22px) scale(.98); } }
.modal__x {
  position: absolute; top: .5rem; right: .6rem;
  width: 42px; height: 42px; border: 0; background: none;
  font-size: 1.9rem; line-height: 1; color: var(--ink-faint); cursor: pointer;
  border-radius: 50%;
}
.modal__x:hover { color: var(--wine); background: rgba(122,26,28,.08); }
.modal__grid { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: clamp(1.2rem, 3vw, 2rem); align-items: start; }
.modal__cover {
  width: 100%; border-radius: 2px 4px 4px 2px;
  box-shadow: 10px 12px 24px -14px rgba(43,33,24,.8); transform: rotate(-2deg);
}
.modal__h {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.15rem); line-height: 1.12;
  margin: 0 0 .8rem; color: var(--wine);
}
.modal__body { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.modal__grid .btn + .btn { margin-top: .6rem; }
.modal__fine {
  margin: 1rem 0 0; text-align: center;
  font-family: var(--label); font-size: .66rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* ---------- 30. REVEALS -------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 31. RESPONSIVE ----------------------------------- */
@media (max-width: 1080px) {
  .carousel__btn--prev { left: .4rem; }
  .carousel__btn--next { right: .4rem; }
}

@media (max-width: 900px) {
  :root { --topbar-h: 50px; }

  .hero__grid,
  .willa__grid,
  .pain__grid,
  .offer__grid,
  .last__grid,
  .split { grid-template-columns: 1fr; }

  /* Mobile hero order: money promise → subhead → book → CTA → badges */
  .hero__grid { display: flex; flex-direction: column; gap: 1.8rem; }
  .hero__copy { display: contents; }
  .hero__copy > .eyebrow      { order: 1; }
  .hero__h1                   { order: 2; margin-bottom: .8rem; }
  .hero__sub                  { order: 3; }
  .hero__book                 { order: 4; margin-block: .6rem 1rem; }
  .hero__month                { order: 5; max-width: none; }
  .hero__body                 { order: 6; max-width: none; }
  .hero__cta                  { order: 7; margin-top: .4rem; }
  .trustrow                   { order: 8; }

  .book { width: 76%; transform: rotateY(-10deg) rotateX(2deg); }
  .hero__sub, .hero__month { max-width: none; }
  .trustrow { justify-content: flex-start; }

  .willa__photo, .offer__book { position: static; }
  .willa__photo { max-width: 460px; margin-inline: auto; }

  .split__rule { display: none; }
  .split__col--new { border-top: 1px solid var(--paper-edge); padding-top: 1.2rem; }

  .parts { grid-template-columns: 1fr; }
  .part__list--two { columns: 1; }

  .strip { display: none; }
  .mobar { display: block; }
  body.has-mobar { padding-bottom: 6.2rem; }

  .toast { left: .8rem; right: .8rem; bottom: 6.4rem; width: auto; padding: .7rem .8rem; }
  .toast__who { font-size: .85rem; }

  .modal__grid { grid-template-columns: 1fr; }
  .modal__cover { width: 120px; margin-inline: auto; }

  .topbar__in { grid-template-columns: auto 1fr auto; gap: .5rem; }
  .topbar__left { display: none; }
  .topbar__mid { justify-content: flex-start; }
  .clock__cell i { display: none; }
  .clock__cell { min-width: 2rem; padding: .25rem .3rem; }
  .hide-sm { display: none; }
  .only-sm { display: inline; }
  .topbar__cta { padding: .55rem .8rem; font-size: .68rem; letter-spacing: .06em; }
  .topbar__label { font-size: .58rem; letter-spacing: .12em; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; }
  .stats__grid li:nth-child(3)::before { display: none; }

  .btn--block-sm { display: flex; width: 100%; }
  .ctaline--left { text-align: center; }
}

@media (max-width: 560px) {
  .topbar__label { display: none; }
  .topbar__mid { justify-content: center; }
  .sheets, .cards, .contrasts, .testimonials { grid-template-columns: 1fr; }
  .verdicts { grid-template-columns: 1fr; }
  .guarantee__steps { flex-direction: column; align-items: center; gap: .5rem; }
  .carousel__btn { display: none; }
  .page { width: 78vw; }
  .stack__row { flex-direction: column; gap: .3rem; }
  .stack__row--today { flex-direction: row; align-items: center; }
}

/* ---------- 32. MOTION / PRINT ------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .book:hover, .card:hover, .part:hover, .sheet:hover { transform: none; }
}

@media print {
  .topbar, .strip, .mobar, .toast, .modal, .carousel__btn, .grain { display: none !important; }
  body { padding-top: 0; background: #fff; }
  .sec--dark, .sec--forest, .stats { background: #fff !important; color: #000 !important; }
}
