/* ============================================================
   JGMTS Theme — main.css
   Extracted from single-file HTML. DO NOT edit inline styles
   in the HTML — edit here instead.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink: #16130F;
  --ink-2: #1E1A15;
  --paper: #EAE4D7;
  --paper-hi: #F4EFE4;
  --paper-2: #E0D9C8;
  --graphite: #6E6A60;
  --graphite-soft: #8B877C;
  --redline: #B5362A;
  --redline-soft: #C9533F;
  --rule-ink: rgba(234,228,215,.18);
  --rule-paper: rgba(22,19,15,.16);

  --grotesk: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --mono: "Space Mono", ui-monospace, Menlo, monospace;

  --pad: clamp(1.3rem, 5vw, 6.5rem);
  --rail: 78px;
  --maxw: 1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--redline); color: var(--paper-hi); }
:focus-visible { outline: 2px solid var(--redline); outline-offset: 3px; }

/* ── Flight-log margin rail ────────────────────────────────── */
.rail {
  position: fixed; top: 0; left: 0; width: var(--rail); height: 100vh; z-index: 40;
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  padding: 18px 0 22px; border-right: 1px solid var(--rule-paper);
  background: transparent; font-family: var(--mono); pointer-events: none;
}
.rail .vbrand {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: .62rem; letter-spacing: .42em; text-transform: uppercase; color: var(--graphite);
}
.rail .log { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.rail .leg  { font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.rail .lbl  { font-size: .5rem; letter-spacing: .2em; text-transform: uppercase; color: var(--redline); max-width: 62px; }
.rail .alt  { font-size: .56rem; letter-spacing: .12em; color: var(--graphite); }
.rail .track { flex: 1; width: 1px; background: var(--rule-paper); position: relative; margin: 14px 0; overflow: hidden; }
.rail .track i { position: absolute; top: 0; left: -1px; width: 3px; height: 0; background: var(--redline); }

body.on-ink .rail { border-color: var(--rule-ink); }
body.on-ink .rail .vbrand,
body.on-ink .rail .alt { color: var(--paper-2); }
body.on-ink .rail .leg  { color: var(--paper-hi); }
body.on-ink .rail .track { background: var(--rule-ink); }

/* ── Progress hairline ──────────────────────────────────────── */
#prog { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--redline); z-index: 60; }

/* ── Nav ────────────────────────────────────────────────────── */
header.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px var(--pad) 15px calc(var(--rail) + 22px);
  transition: background .35s, padding .35s, color .35s;
}
/* ── Logo ───────────────────────────────────────────────────── */
.nav .brand {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink); display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
.nav .brand b { font-weight: 700; }
.nav .brand .brand-sep { opacity: .4; }
.nav .brand .brand-press { opacity: .65; }
.nav .brand img { height: 36px; width: auto; display: block; }
body.on-ink .nav .brand { color: var(--paper-hi); }
body.on-ink .nav .brand img { filter: invert(1) brightness(2); }

/* ── Nav links ──────────────────────────────────────────────── */
.nav-links {
  display: flex; align-items: center;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}
.nav-links ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 26px; }
.nav-links li { margin: 0; }
.nav-links a { color: var(--ink); opacity: .7; transition: opacity .2s; text-decoration: none; }
.nav-links a:hover { opacity: 1; }
.nav-links .current-menu-item > a { opacity: 1; }

/* ── Nav buy button ─────────────────────────────────────────── */
.nav-buy {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  background: var(--redline); color: var(--paper-hi) !important;
  padding: 9px 18px; border-radius: 2px; text-decoration: none;
  flex-shrink: 0; transition: background .2s;
}
.nav-buy:hover { background: var(--ink); }

/* ── Hamburger ──────────────────────────────────────────────── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px 4px; color: var(--ink); flex-shrink: 0; z-index: 60;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: currentColor;
  margin: 5px 0; transition: transform .3s, opacity .3s;
  border-radius: 1px;
}
body.on-ink .hamburger { color: var(--paper-hi); }
header.nav.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
header.nav.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.scrolled header.nav { background: var(--paper); box-shadow: 0 1px 0 var(--rule-paper); }
body.scrolled.on-ink header.nav { background: var(--ink); }
body.on-ink .nav-links a { color: var(--paper-hi); }

/* ── Mobile nav ─────────────────────────────────────────────── */
@media (max-width: 760px) {
  .hamburger { display: block; }
  .nav-buy { display: none; }
  .nav-links { display: none; }
  header.nav.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; inset: 0; z-index: 45;
    background: var(--paper); gap: 8px;
  }
  body.on-ink header.nav.nav-open .nav-links { background: var(--ink); }
  header.nav.nav-open .nav-links ul { flex-direction: column; gap: 0; }
  header.nav.nav-open .nav-links li { width: 100%; text-align: center; }
  header.nav.nav-open .nav-links a {
    display: block; padding: 18px 24px; font-size: 1rem;
    letter-spacing: .18em; opacity: 1; border-bottom: 1px solid var(--rule-paper);
  }
  header.nav.nav-open .nav-links .nav-buy {
    display: inline-block; margin-top: 24px; padding: 14px 32px;
  }
}

/* ── Section shell ──────────────────────────────────────────── */
.spread {
  position: relative;
  padding: clamp(4.5rem, 11vh, 9rem) var(--pad) clamp(4.5rem, 11vh, 9rem) calc(var(--rail) + var(--pad));
}
.ink { background: var(--ink); color: var(--paper-hi); }
.ink h1, .ink h2, .ink h3 { color: var(--paper-hi); }
.wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }

/* ── Typography ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--redline);
  display: flex; align-items: center; gap: .7em; margin-bottom: 1.6rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--redline); }
.ink .eyebrow { color: var(--redline-soft); }
h1, h2, h3, .display {
  font-family: var(--grotesk); font-weight: 900; line-height: .96;
  letter-spacing: -.02em; text-transform: none;
}
.kicker { font-family: var(--mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--graphite); }
.prose { font-family: var(--serif); font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.66; color: var(--ink); }
.ink .prose { color: #D9D2C4; }
.prose p + p { margin-top: 1.15rem; }

/* ── Reveal animations ──────────────────────────────────────── */
/* opacity/transform set by JS (gsap.set) — not CSS — so content stays visible if JS fails */
.gsap-ready .reveal { opacity: 0; transform: translateY(24px); }
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > i { display: inline-block; font-style: inherit; transform: translateY(108%); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 2px;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.btn .ar { transition: transform .25s; }
.btn:hover .ar { transform: translateX(5px); }
.btn-red { background: var(--redline); color: var(--paper-hi); }
.btn-red:hover { background: var(--ink); transform: translateY(-2px); }
.ink .btn-red:hover { background: var(--paper-hi); color: var(--ink); }
.btn-out { border: 1px solid var(--ink); color: var(--ink); }
.btn-out:hover { background: var(--ink); color: var(--paper-hi); transform: translateY(-2px); }
.ink .btn-out { border-color: var(--paper-2); color: var(--paper-hi); }
.ink .btn-out:hover { background: var(--paper-hi); color: var(--ink); }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100svh; display: flex; align-items: center;
  background:
    linear-gradient(transparent 0, transparent calc(100% - 1px), var(--rule-paper) 100%),
    radial-gradient(var(--rule-paper) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px;
  background-position: 0 0, 0 0;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
#hero h1 { font-size: clamp(3.1rem, 9vw, 8rem); font-weight: 900; }
#hero h1 .l2 { display: block; }
.hero-sub { font-family: var(--grotesk); font-weight: 700; font-size: clamp(1rem, 2.3vw, 1.7rem); letter-spacing: .02em; color: var(--redline); margin-top: .4rem; }
.hero-by  { font-family: var(--mono); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--graphite); margin: 1.5rem 0 1.4rem; }
.hero-lede { font-family: var(--serif); font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: var(--ink); max-width: 46ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--graphite); }
.stars { color: var(--redline); letter-spacing: 2px; font-family: var(--grotesk); }

/* ── 3D book ────────────────────────────────────────────────── */
.book-stage { perspective: 1600px; display: flex; justify-content: center; }
.book {position: relative; max-width: 100%; display: inline-block;}
.book .face { display: block;}
.book .face img { width: 100%; height: 100%; object-fit: cover; }

/* ── Praise (ink) ───────────────────────────────────────────── */
.praise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3vw, 3.4rem); }
.blurb { position: relative; padding-left: 24px; }
.blurb::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; background: var(--redline); }
.blurb q { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2.1vw, 1.75rem); line-height: 1.34; quotes: none; }
.blurb cite { display: block; margin-top: 1.1rem; font-family: var(--mono); font-style: normal; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-2); }
.blurb cite b { color: var(--redline-soft); font-weight: 400; }

/* ── Statement + SVG plane (paper) ─────────────────────────── */
#statement { text-align: center; overflow: hidden; }
.plane-wrap { max-width: 760px; margin: 0 auto 2.6rem; }
.plane-wrap svg { width: 100%; height: auto; overflow: visible; }
.ink-line  { fill: none; stroke: var(--ink); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.guide-line { fill: none; stroke: var(--graphite-soft); stroke-width: 1; stroke-dasharray: 4 5; opacity: .6; }
#statement h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.9rem); line-height: 1.28; max-width: 24ch; margin: 0 auto; letter-spacing: 0; }
#statement h2 em { font-style: italic; color: var(--redline); }

/* ── Memoir (ink) ───────────────────────────────────────────── */
.memoir-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
#memoir h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); max-width: 12ch; }
#memoir .stamp { font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--graphite-soft); margin-top: 1.6rem; border: 1px solid var(--rule-ink); display: inline-block; padding: 8px 12px; }
.pull { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.4; color: var(--paper-hi); border-top: 1px solid var(--rule-ink); border-bottom: 1px solid var(--rule-ink); padding: 1.4rem 0; margin: 2rem 0; }

/* ── Meet Nick (paper) ──────────────────────────────────────── */
.pic-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pic-card { border: 1px solid var(--rule-paper); background: var(--paper-hi); padding: 1.8rem; border-radius: 3px; }
.pic-card .hd { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--rule-paper); padding-bottom: .9rem; margin-bottom: 1rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--graphite); }
.pic-card .silo { aspect-ratio: 1/1; background: var(--paper-2); border-radius: 3px; margin-bottom: 1.1rem; display: grid; place-items: center; overflow: hidden; }
.pic-card .silo img { width: 100%; height: 100%; object-fit: cover; }
.pic-card dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; font-family: var(--mono); font-size: .72rem; }
.pic-card dt { color: var(--graphite); letter-spacing: .08em; text-transform: uppercase; font-size: .6rem; align-self: center; }
.pic-card dd { color: var(--ink); font-weight: 700; }
#meet h2  { font-size: clamp(2rem, 3.8vw, 3.1rem); margin-bottom: .4rem; }
#meet .role { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--redline); margin-bottom: 1.4rem; }
#meet .btn  { margin-top: 1.4rem; }

/* ── Pricing (ink) ──────────────────────────────────────────── */
.p-head { text-align: center; margin-bottom: 3.4rem; }
.p-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.price { border: 1px solid var(--rule-ink); padding: 2rem 1.8rem; display: flex; flex-direction: column; border-radius: 3px; background: var(--ink-2); }
.price .kind { font-family: var(--mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--redline-soft); }
.price h3   { font-size: 1.5rem; margin: .5rem 0 .1rem; font-weight: 800; }
.price .desc { font-family: var(--serif); color: #B8B1A3; font-size: .92rem; margin-bottom: 1.3rem; }
.price .amt  { font-family: var(--grotesk); font-weight: 900; font-size: 2.9rem; color: var(--paper-hi); margin-bottom: 1.4rem; letter-spacing: -.02em; }
.price ul   { list-style: none; flex: 1; margin-bottom: 1.7rem; }
.price li   { display: flex; gap: .6em; font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: #CFC8BA; padding: .4rem 0; border-bottom: 1px solid var(--rule-ink); }
.price li span { color: var(--redline-soft); }
.price .btn  { justify-content: center; }
.price.feature { background: var(--paper-hi); border-color: var(--paper-hi); }
.price.feature .kind { color: var(--redline); }
.price.feature h3,
.price.feature .amt  { color: var(--ink); }
.price.feature .desc { color: var(--graphite); }
.price.feature li    { color: var(--ink); border-color: var(--rule-paper); }
.price.feature li span { color: var(--redline); }
.price.feature .btn-out { border-color: var(--ink); color: var(--ink); }
.price.feature .btn-out:hover { background: var(--ink); color: var(--paper-hi); }
.price .tag { display: inline-block; align-self: flex-start; font-family: var(--mono); font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; background: var(--redline); color: var(--paper-hi); padding: 4px 9px; border-radius: 2px; margin-bottom: 1rem; }

/* ── Reviews (paper) ────────────────────────────────────────── */
.r-head { margin-bottom: 2.6rem; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review { border-top: 2px solid var(--ink); padding-top: 1.2rem; }
.review .stars { font-size: .95rem; margin-bottom: .8rem; }
.review p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.4; }

/* ── Why (ink, big) ─────────────────────────────────────────── */
#why { text-align: center; }
#why h2 { font-size: clamp(2.6rem, 7vw, 6rem); font-weight: 900; line-height: .98; }
#why .sub { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: #C7C0B2; max-width: 40ch; margin: 1.8rem auto 0; }
#why .sub em { color: var(--redline-soft); font-style: italic; }

/* ── Free Chapter (paper) ───────────────────────────────────── */
.free-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.chap-tease { border-left: 3px solid var(--redline); padding: .6rem 0 .6rem 1.4rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); margin: 1.4rem 0 2rem; line-height: 1.45; }
#free h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .6rem; }
.form { display: grid; gap: 13px; max-width: 420px; }
.form .row { display: grid; gap: 6px; }
.form label { font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--graphite); }
.form input { font-family: var(--serif); font-size: 1rem; padding: 14px 15px; border: 1px solid var(--rule-paper); border-radius: 2px; background: var(--paper-hi); color: var(--ink); width: 100%; transition: border-color .2s; }
.form input:focus { outline: none; border-color: var(--redline); }
.form .btn-red { justify-content: center; margin-top: 4px; }
.form .note { font-family: var(--mono); font-size: .58rem; color: var(--graphite-soft); letter-spacing: .02em; }
.form-msg { font-family: var(--mono); font-size: .72rem; min-height: 1em; letter-spacing: .04em; }

/* ── Final CTA (ink) ────────────────────────────────────────── */
#final { min-height: 96svh; display: flex; align-items: center; text-align: center; overflow: hidden; }
#final .book { width: min(40%, 180px); margin: 0 auto 2.4rem; transform: rotateY(-16deg) rotateX(3deg); }
#final h2 { font-size: clamp(2.1rem, 5.4vw, 4.4rem); max-width: 18ch; margin: 0 auto 1.2rem; font-weight: 900; line-height: 1.02; }
#final .sub { font-family: var(--mono); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--redline-soft); margin-bottom: 2.4rem; }
#final .hero-ctas { justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background: #0F0D0A; color: var(--paper-2); padding: clamp(3.4rem, 7vh, 5.5rem) var(--pad) 2.4rem calc(var(--rail) + var(--pad)); border-top: 1px solid var(--rule-ink); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 2.6rem; max-width: var(--maxw); margin: 0 auto; }
.foot-brand { font-family: var(--grotesk); font-weight: 900; font-size: 1.5rem; color: var(--paper-hi); letter-spacing: -.01em; }
.foot-brand span { display: block; font-family: var(--mono); font-weight: 400; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--graphite-soft); margin-top: .5rem; }
.foot-grid p.sm { font-family: var(--serif); font-size: .96rem; color: var(--graphite-soft); max-width: 32ch; margin-top: 1rem; }
.foot-grid h4 { font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--redline-soft); margin-bottom: 1.1rem; }
.foot-grid a.lk { display: block; color: var(--paper-2); font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; padding: .32rem 0; transition: color .2s; }
.foot-grid a.lk:hover { color: var(--redline-soft); }
.foot-grid .news { display: flex; margin: .6rem 0 .7rem; max-width: 330px; }
.foot-grid .news input { font-family: var(--serif); padding: 11px 13px; border: 1px solid var(--rule-ink); border-right: none; border-radius: 2px 0 0 2px; background: transparent; color: var(--paper-hi); width: 100%; }
.foot-grid .news input:focus { outline: none; border-color: var(--redline); }
.foot-grid .news button { background: var(--redline); color: var(--paper-hi); font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; padding: 0 15px; border-radius: 0 2px 2px 0; }
.socials { display: flex; gap: 18px; margin-top: 1rem; font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.socials a { color: var(--graphite-soft); }
.socials a:hover { color: var(--redline-soft); }
.legal { max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--rule-ink); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--graphite-soft); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --rail: 0px; }
  .rail { display: none; }
  .spread { padding-left: var(--pad); }
  header.nav { padding-left: var(--pad); }
  footer { padding-left: var(--pad); }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .book-stage { order: -1; }
  .book { transform: rotateY(-14deg) rotateX(3deg); width: min(64%, 260px); }
  .memoir-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .pic-grid { grid-template-columns: 1fr; }
  .free-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .legal { flex-direction: column; }
}
@media (max-width: 820px) {
  .praise-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .prices { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  /* Override any gsap.set() inline styles */
  .reveal { opacity: 1 !important; transform: none !important; }
  .gsap-ready .reveal { opacity: 1 !important; transform: none !important; }
  .word > i { transform: none !important; }
  .book { transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ── Gutenberg editor overrides ─────────────────────────────── */
.wp-block[data-type^="nick/"] .eyebrow,
.wp-block[data-type^="nick/"] .prose p { outline: none; }
