/* ============================================================
   MAKE ME MOLDABLE — Julius Houston
   Built to the locked visual reference. Desktop target: 1448px.
   Cormorant Garamond (display) · Libre Baskerville (body)
   Montserrat (micro caps) · Allura (script)
   ============================================================ */

:root {
  /* Color */
  --navy:        #202C3A;
  --navy-deep:   #192634;
  --navy-2:      #2A3948;
  --band:        #283746;
  --off-white:   #F5F3EF;
  --cream:       #F8F6F2;
  --paper:       #FCFBF8;
  --warm-gray:   #F0ECE7;
  --review-bg:   #F2EEE9;
  --author-bg:   #F7F5F1;
  --trust-bg:    #FAF8F5;
  --gold:        #C4934F;
  --gold-lt:     #D4A65F;
  --gold-dk:     #956A36;
  --gold-icon:   #D7AE63;
  --ink:         #202A37;
  --ink-2:       #66645F;
  --ink-3:       #68717A;
  --border:      #DDD7CF;
  --white:       #FAF9F6;

  /* Type */
  --display: "Cormorant Garamond", Georgia, serif;
  --body:    "Libre Baskerville", Georgia, serif;
  --micro:   "Montserrat", Arial, sans-serif;
  --script:  "Allura", cursive;

  /* Shape */
  --r-sm:  3px;
  --r-md:  4px;
  --r-card: 6px;
  --r-btn: 7px;
  --r-pill: 12px;
  --shadow-card: 0 3px 14px rgba(25,35,45,0.04);
  --shadow-btn:  0 4px 12px rgba(0,0,0,0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1240px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.container {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
}
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Micro caps ---------- */
.micro {
  font-family: var(--micro); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.28em; font-size: 8px; line-height: 1.2;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 13px; line-height: 1;
  border: 1px solid transparent; border-radius: var(--r-btn); cursor: pointer;
  white-space: nowrap; height: 45px; padding-inline: 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s;
}
.btn .icon { width: 16px; height: 16px; stroke-width: 1.8; }
.btn-gold {
  background: linear-gradient(180deg, #D0A15B 0%, #AD7A3C 100%);
  border-color: rgba(255,255,255,0.22); color: #fff; box-shadow: var(--shadow-btn);
}
.btn-gold:hover { background: linear-gradient(180deg, #D8AB68 0%, #B58546 100%); transform: translateY(-1px); }
.btn-gold:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(0,0,0,.16); }
.btn-ghost {
  background: rgba(22,35,49,0.42); border: 1.5px solid rgba(255,255,255,0.88); color: #fff;
}
.btn-ghost:hover { background: rgba(22,35,49,0.62); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0); }
.btn-outline {
  background: transparent; border: 1px solid #384450; color: var(--ink);
  border-radius: var(--r-md); height: 27px; padding-inline: 18px; font-size: 10.5px;
}
.btn-outline:hover { background: rgba(32,44,58,.05); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ---------- Owner review banner ---------- */
.owner-banner { display: none; background: #FDF6E3; border-bottom: 1px solid #E4CE93; color: #6B4E0C; }
body.owner-review .owner-banner { display: block; }
.owner-banner .container { display: flex; align-items: baseline; gap: 10px; padding-block: 7px; flex-wrap: wrap; }
.owner-banner strong { font-family: var(--micro); font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.owner-banner span { font-size: 10.5px; line-height: 1.4; }
.owner-banner button { margin-left: auto; font-family: var(--micro); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }

/* ============================================================
   HEADER — 51px
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--off-white); border-bottom: 1px solid rgba(32,44,58,0.08);
}
.header-row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  min-height: 51px; gap: 16px;
}
.brand { display: block; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 23px; line-height: .9; color: var(--ink); }
.brand-tag { display: block; margin-top: 4px; font-family: var(--micro); font-weight: 500; font-size: 7.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-2); }
.nav { display: flex; align-items: center; justify-content: center; gap: 34px; }
.nav a { font-family: var(--body); font-weight: 700; font-size: 12px; color: var(--ink); position: relative; padding-block: 3px; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right .3s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.header-aside { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.btn-header {
  width: 150px; height: 32px; border-radius: var(--r-pill); padding-inline: 0;
  font-size: 12px; gap: 7px;
  background: linear-gradient(180deg, #D0A15B 0%, #B78342 100%);
}
.btn-header .icon { width: 14px; height: 14px; }
.header-motto {
  margin: 0; font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 11px; line-height: 1.1; color: #657080; text-align: right;
}
.nav-toggle { display: none; width: 34px; height: 34px; align-items: center; justify-content: center; justify-self: end; color: var(--ink); }

/* ============================================================
   HERO — 406px
   ============================================================ */
.hero { position: relative; overflow: hidden; min-height: 406px; background: var(--navy-deep); }
.hero-art { position: absolute; inset: 0; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
/* hero-books.webp is cut to the hero band ratio (3.566:1) so nothing crops at 1448px */
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  /* Eased off the spec's 0.78 so the sunrise stays luminous — the headline
     keeps its contrast from its own text-shadow instead of a heavier scrim. */
  background: linear-gradient(90deg,
    rgba(19,32,45,0.70) 0%,
    rgba(19,32,45,0.54) 26%,
    rgba(19,32,45,0.15) 48%,
    rgba(19,32,45,0) 62%);
}
.hero-inner { position: relative; z-index: 2; min-width: 0; padding-block: 36px 28px; }
.hero-copy { max-width: 420px; }
.hero-overline {
  display: flex; align-items: center; gap: 7px; margin: 0;
  font-family: var(--micro); font-weight: 500; font-size: 9px;
  letter-spacing: .28em; text-transform: uppercase; color: #E9D4A5; text-shadow: 0 1px 8px rgba(12,22,34,.5);
}
.hero-overline::before { content: "\203A"; font-size: 12px; line-height: 1; opacity: .85; }
.hero h1 {
  margin: 14px 0 0; font-family: var(--display); font-weight: 600;
  font-size: 46px; line-height: .94; letter-spacing: -0.015em; color: var(--white);
  text-shadow: 0 2px 18px rgba(12,22,34,.55);
}
.hero-lead {
  margin: 16px 0 0; max-width: 410px;
  font-family: var(--body); font-weight: 400; font-size: 14px; line-height: 1.45;
  color: rgba(250,249,246,0.94); text-shadow: 0 1px 10px rgba(12,22,34,.5);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-cta .btn-gold { width: 200px; }
.hero-cta .btn-ghost { width: 170px; }
.hero-note {
  margin: 8px 0 0; font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 15px; color: #EFE7D8; text-shadow: 0 1px 10px rgba(12,22,34,.5);
}

/* ============================================================
   TRUST STRIP — 58px
   ============================================================ */
.trust { background: var(--trust-bg); border-bottom: 1px solid rgba(32,44,58,0.055); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center; gap: 16px; min-height: 58px; padding-block: 8px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .icon { width: 28px; height: 28px; color: var(--navy); }
.trust-item strong { display: block; font-family: var(--body); font-weight: 700; font-size: 12px; line-height: 1.25; }
.trust-item span { display: block; font-family: var(--body); font-weight: 400; font-size: 10px; line-height: 1.3; color: var(--ink-3); }

/* ============================================================
   REVIEWS — 149px
   ============================================================ */
.reviews { background: var(--review-bg); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px; align-items: stretch; padding-block: 10px;
}
.reviews-aside { display: flex; flex-direction: column; justify-content: center; padding-right: 8px; }
.reviews-aside h2 { margin: 0; font-family: var(--display); font-weight: 700; font-size: 26px; line-height: .9; }
.rating-row { display: flex; align-items: center; gap: 9px; margin-top: 11px; }
.rating-row b { font-family: var(--body); font-weight: 700; font-size: 14px; }
.reviews-aside p { margin: 9px 0 0; font-family: var(--body); font-size: 10.5px; line-height: 1.35; color: var(--ink-3); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); flex: none; }
.stars .icon { width: 22px; height: 22px; fill: var(--gold); stroke: var(--gold); stroke-width: 1; }
.review-card {
  background: var(--paper); border: 1px solid rgba(32,44,58,0.055); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: 13px 20px; display: flex; flex-direction: column;
}
.review-card .stars .icon { width: 13px; height: 13px; }
.review-card blockquote {
  margin: 5px 0 0; font-family: var(--body); font-weight: 400; font-size: 12px; line-height: 1.26;
}
.review-card cite { margin-top: auto; padding-top: 5px; font-style: normal; font-family: var(--body); font-weight: 700; font-size: 10.5px; color: var(--ink-2); }

/* ============================================================
   WHAT YOU'LL LEARN — 106px
   ============================================================ */
.learn { background: linear-gradient(100deg, #253442, #2D3B49); color: #FAF7F1; }
.learn-grid {
  display: grid; grid-template-columns: 1.18fr repeat(4, minmax(0, 1fr));
  align-items: center; min-height: 106px; padding-block: 8px;
}
.learn-aside { padding-right: 30px; }
.learn-aside h2 { margin: 0; font-family: var(--display); font-weight: 600; font-size: 29px; line-height: 1; }
.learn-aside p { margin: 7px 0 0; font-family: var(--body); font-size: 12px; line-height: 1.35; color: rgba(250,247,241,.74); max-width: 27ch; }
.learn-item { padding-inline: 26px; border-left: 1px solid rgba(214,176,104,0.26); }
.learn-item .icon { width: 29px; height: 29px; color: var(--gold-icon); stroke: var(--gold-icon); stroke-width: 1.7; }
.learn-item h3 { margin: 8px 0 0; font-family: var(--body); font-weight: 700; font-size: 13px; line-height: 1.2; }
.learn-item p { margin: 5px 0 0; font-family: var(--body); font-weight: 400; font-size: 11px; line-height: 1.3; color: rgba(250,247,241,.72); }

/* ============================================================
   A LOOK INSIDE — interior spread + chapter promise
   ============================================================ */
.inside {
  background: linear-gradient(90deg, #EFE6D7 0%, #F4EDE2 32%, #FAF6EF 60%, #FBF9F4 100%);
  border-block: 1px solid rgba(32,44,58,0.06);
}
.inside-grid { display: grid; grid-template-columns: 44% minmax(0, 1fr); align-items: center; min-height: 420px; }
/* The whole spread stays in frame — it sits on the band rather than filling the column,
   with its left edge on the same gutter as every other section. */
.inside-photo {
  margin: 0; display: flex; align-items: center;
  padding: 26px 24px 26px max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.inside-photo img {
  width: auto; max-width: 100%; max-height: 368px;
  /* cutout PNG — the shadow follows the book's silhouette, not a bounding box */
  filter: drop-shadow(0 12px 22px rgba(25,35,45,0.20));
}
.inside-copy {
  max-width: 620px; margin-left: auto;
  margin-right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  padding: 26px 0 26px 34px;
}
.inside-eyebrow { margin: 0; color: var(--gold-dk); letter-spacing: .3em; }
.inside-copy h2 {
  margin: 11px 0 0; font-family: var(--display); font-weight: 600;
  font-size: 29px; line-height: 1.08; color: var(--navy);
}
.inside-lead { margin: 10px 0 0; font-family: var(--body); font-size: 12.5px; line-height: 1.55; color: var(--ink-2); }
.inside-features {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none; margin: 16px 0 0; padding: 0;
}
.inside-features li { padding-inline: 16px; }
.inside-features li:first-child { padding-left: 0; }
.inside-features li + li { border-left: 1px solid rgba(196,147,79,0.32); }
.inside-features .icon { width: 22px; height: 22px; color: var(--gold-dk); stroke: var(--gold-dk); }
.inside-features h3 { margin: 7px 0 0; font-family: var(--body); font-weight: 700; font-size: 12px; line-height: 1.2; color: var(--navy); }
.inside-features p { margin: 4px 0 0; font-family: var(--body); font-weight: 400; font-size: 10.5px; line-height: 1.35; color: var(--ink-2); }
.inside-meta {
  margin: 16px 0 0; text-align: center;
  font-family: var(--body); font-size: 11px; line-height: 1.4; color: var(--ink-2);
}
.inside-meta span[data-price], .inside-meta > span { color: var(--ink-3); }
.inside-cta { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 12px; flex-wrap: wrap; }
.inside-cta .btn { height: 40px; font-size: 12px; width: 178px; }
.btn-navy { background: var(--navy); border-color: var(--navy); color: var(--white); box-shadow: var(--shadow-btn); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-navy:active { transform: translateY(0); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--body); font-weight: 700; font-size: 12px; color: var(--navy);
}
.link-arrow .icon { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }

/* ============================================================
   AUTHOR · FAQ · SCRIPT QUOTE — 164px
   ============================================================ */
.threecol { background: var(--author-bg); }
.threecol-grid {
  display: grid; grid-template-columns: 52% 32% 16%;
  align-items: center; min-height: 164px; padding-block: 8px;
}
.author-block { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 22px; align-items: center; padding-right: 34px; }
.author-photo { width: 190px; height: 142px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-kicker { margin: 0; font-family: var(--body); font-weight: 400; font-size: 11px; color: var(--ink-2); }
.author-name { margin: 2px 0 6px; font-family: var(--display); font-weight: 600; font-size: 26px; line-height: 1; }
.author-block p.bio { margin: 0 0 10px; font-family: var(--body); font-weight: 400; font-size: 11px; line-height: 1.32; color: var(--ink-2); }

.faq { padding-inline: 26px; border-inline: 1px solid rgba(32,44,58,0.08); }
.faq > h2 { margin: 0 0 6px; font-family: var(--display); font-weight: 600; font-size: 19px; line-height: 1; }
.faq-list { display: grid; gap: 3px; }
.faq-item { background: rgba(255,255,255,0.48); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 20px; padding: 2px 12px; text-align: left;
  font-family: var(--body); font-weight: 700; font-size: 10px; line-height: 1.25;
}
.faq-q .icon { width: 13px; height: 13px; color: var(--ink-2); transition: transform .28s var(--ease); }
.faq-item.open .faq-q .icon { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0; padding: 2px 12px 9px; font-family: var(--body); font-size: 10.5px; line-height: 1.45; color: var(--ink-2); }

.verse { text-align: center; padding-left: 26px; }
.verse p.script { margin: 0; font-family: var(--script); font-weight: 400; font-size: 31px; line-height: .96; color: #263849; }
.verse p.script span { display: block; white-space: nowrap; }
.swash { display: block; width: 74px; height: 7px; margin: 9px auto 7px; color: var(--gold); }
.verse-ref { margin: 0; font-family: var(--micro); font-weight: 500; font-size: 7.5px; letter-spacing: .33em; text-transform: uppercase; color: #34404C; }

/* ============================================================
   BOTTOM CTA — 91px
   ============================================================ */
.closer { background: var(--navy); color: var(--white); }
.closer-grid {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 40px;
  align-items: center; min-height: 91px; padding-block: 14px;
}
.closer-brand .brand-name { color: var(--white); }
.closer-brand .brand-name { font-size: 20px; }
.closer-brand .brand-tag { color: rgba(250,249,246,.58); letter-spacing: .28em; font-size: 7px; }
.closer-pitch h2 { margin: 0; font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.1; }
.closer-pitch p { margin: 5px 0 0; font-family: var(--body); font-weight: 400; font-size: 10.5px; line-height: 1.4; color: rgba(250,249,246,.72); }
.closer-cta { display: flex; gap: 10px; }
.closer-cta .btn { height: 40px; font-size: 12px; }
.closer-cta .btn-gold { width: 178px; }
.closer-cta .btn-ghost { width: 152px; }

.site-footer { background: var(--navy-deep); color: rgba(250,249,246,.55); }
.footer-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; padding-block: 14px; font-family: var(--body); font-size: 10px; }
.site-footer a:hover { color: var(--white); }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page { padding-block: 52px 66px; }
.page-narrow { max-width: 720px; }
.page h1 { margin: 8px 0 0; font-family: var(--display); font-weight: 600; font-size: 42px; line-height: 1; }
.page h2 { margin: 30px 0 8px; font-family: var(--display); font-weight: 600; font-size: 24px; line-height: 1; }
.page p { font-family: var(--body); font-size: 12.5px; line-height: 1.65; color: var(--ink-2); }
.excerpt { background: var(--paper); border: 1px solid rgba(32,44,58,.055); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 30px 34px; margin-top: 22px; }
.excerpt p { font-size: 13px; line-height: 1.75; color: var(--ink); }
.excerpt p:first-of-type::first-letter {
  float: left; font-family: var(--display); font-weight: 600; font-size: 54px; line-height: .8;
  padding: 5px 10px 0 0; color: var(--gold-dk);
}
.notice { border: 1px solid #E4CE93; background: #FDF6E3; color: #6B4E0C; border-radius: var(--r-md); padding: 12px 16px; font-size: 11.5px; line-height: 1.5; margin-top: 20px; }
.notice code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 11px; }
.about-grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 32px; align-items: start; }
.about-grid .author-photo { width: 240px; height: 180px; }

/* ---------- Sticky mobile buy (shown under 720px) ---------- */
.sticky-buy { display: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%);
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-card);
  box-shadow: 0 10px 30px rgba(0,0,0,.12); padding: 10px 18px;
  font-family: var(--body); font-size: 11.5px; z-index: 90; display: none; max-width: calc(100vw - 32px);
}
.toast.err { color: #A32B2B; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1240px) {
  .nav { gap: 24px; }
  .learn-grid { grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr)); }
  .learn-item { padding-inline: 18px; }
  .threecol-grid { grid-template-columns: 50% 33% 17%; }
  .author-block { grid-template-columns: 165px minmax(0, 1fr); padding-right: 22px; }
  .author-photo { width: 165px; height: 124px; }
}

@media (max-width: 1050px) {
  .header-motto { display: none; }
  .hero h1 { font-size: 42px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; padding-block: 16px; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-block: 22px; }
  .reviews-aside { padding-right: 0; }
  .learn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; padding-block: 26px; }
  .learn-aside { grid-column: 1 / -1; padding-right: 0; }
  .learn-item:nth-child(2), .learn-item:nth-child(4) { border-left: 0; padding-left: 0; }
  .inside-grid { grid-template-columns: 1fr; min-height: 0; }
  .inside-photo { justify-content: center; padding: 28px var(--gutter) 4px; }
  .inside-photo img { max-height: 300px; }
  .inside-copy { max-width: none; margin-inline: auto; padding: 22px var(--gutter) 30px; }
  .threecol-grid { grid-template-columns: 1fr 1fr; gap: 26px 0; padding-block: 30px; align-items: start; }
  .faq { border-right: 0; padding-right: 0; }
  .verse { grid-column: 1 / -1; padding-left: 0; }
  .closer-grid { gap: 24px; }
}

@media (max-width: 860px) {
  .header-row { grid-template-columns: auto 1fr; }
  .nav { display: none; }
  .header-aside { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav {
    display: flex; grid-column: 1 / -1; flex-direction: column; align-items: flex-start;
    gap: 2px; padding-bottom: 12px;
  }
  .site-header.open .nav a { font-size: 15px; padding-block: 7px; }
  .closer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .hero { min-height: 0; }
  .hero-art { position: relative; height: 260px; }
  .hero-art img { object-position: 58% 50%; }
  .hero-scrim { display: none; }
  .hero { background: var(--navy-deep); }
  .hero-inner { padding-block: 30px 34px; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: 34px; }
  .hero-cta .btn { width: 100%; }
  .threecol-grid { grid-template-columns: 1fr; }
  .faq { border: 0; padding-inline: 0; }
  .author-block { grid-template-columns: 1fr; gap: 16px; padding-right: 0; }
  .author-photo { width: 100%; max-width: 260px; height: 190px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .inside-features { grid-template-columns: 1fr; gap: 14px; }
  .inside-features li { padding-inline: 0; }
  .inside-features li + li { border-left: 0; border-top: 1px solid rgba(196,147,79,0.32); padding-top: 14px; }
  .inside-cta { flex-direction: column; align-items: stretch; }
  .inside-cta .btn { width: 100%; }
  .link-arrow { justify-content: center; }
  .learn-item { border-left: 0; padding-inline: 0; }
  .closer-cta { flex-direction: column; }
  .closer-cta .btn { width: 100%; }
  .sticky-buy {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
    background: rgba(25,38,52,.94); backdrop-filter: blur(10px);
  }
  .sticky-buy .btn { width: 100%; height: 42px; }
  body { padding-bottom: 62px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .author-photo { width: 100%; max-width: 280px; }
}

