/* ============================================================
   BStock — design system
   Cool clean kitchen daylight (paper), warm honey accent
   (appetite), pine/herb green (fresh, give-back).
   Fraunces (display) + Hanken Grotesk (body). Light + dark.
   No build step. Vanilla CSS.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #F1F4F3;
  --surface: #FBFCFC;
  --surface-2: #E9EEEC;
  --ink: #1B2A27;
  --ink-2: #3A4B47;
  --muted: #5E706B;
  --faint: #8A9A95;
  --line: #DBE3E0;
  --line-soft: #E7ECEA;
  --honey: #B5741E;
  --honey-ink: #8F5B14;
  --honey-soft: #F2E6D2;
  --pine: #2E5D4E;
  --pine-soft: #DEE9E3;
  --cream: #FBF6EC;
  --danger: #A5443B;
  --ok: #2E7D5B;
  --shadow-sm: 0 1px 2px rgba(20,35,32,.05), 0 2px 6px rgba(20,35,32,.04);
  --shadow-md: 0 2px 6px rgba(20,35,32,.06), 0 14px 34px rgba(20,35,32,.08);
  --shadow-lg: 0 8px 24px rgba(20,35,32,.10), 0 30px 60px rgba(20,35,32,.12);

  --serif: 'Fraunces', 'Iowan Old Style', Palatino, Georgia, serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 100px;
  --maxw: 1160px;
  --pad: clamp(16px, 5vw, 40px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121917;
    --surface: #18211E;
    --surface-2: #1F2A26;
    --ink: #EAF0ED;
    --ink-2: #C4D0CC;
    --muted: #9AACA6;
    --faint: #6C7E79;
    --line: #29332F;
    --line-soft: #222c28;
    --honey: #D99B47;
    --honey-ink: #E7B36E;
    --honey-soft: #2A2114;
    --pine: #74B79E;
    --pine-soft: #17271F;
    --cream: #1C2019;
    --danger: #D2685C;
    --ok: #5CA37E;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
    --shadow-md: 0 2px 6px rgba(0,0,0,.3), 0 14px 34px rgba(0,0,0,.35);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.4), 0 30px 60px rgba(0,0,0,.45);
  }
}
:root[data-theme="light"] {
  --bg: #F1F4F3; --surface: #FBFCFC; --surface-2: #E9EEEC; --ink: #1B2A27; --ink-2: #3A4B47;
  --muted: #5E706B; --faint: #8A9A95; --line: #DBE3E0; --line-soft: #E7ECEA;
  --honey: #B5741E; --honey-ink: #8F5B14; --honey-soft: #F2E6D2; --pine: #2E5D4E; --pine-soft: #DEE9E3;
  --cream: #FBF6EC; --danger: #A5443B; --ok: #2E7D5B;
  --shadow-sm: 0 1px 2px rgba(20,35,32,.05), 0 2px 6px rgba(20,35,32,.04);
  --shadow-md: 0 2px 6px rgba(20,35,32,.06), 0 14px 34px rgba(20,35,32,.08);
  --shadow-lg: 0 8px 24px rgba(20,35,32,.10), 0 30px 60px rgba(20,35,32,.12);
}
:root[data-theme="dark"] {
  --bg: #121917; --surface: #18211E; --surface-2: #1F2A26; --ink: #EAF0ED; --ink-2: #C4D0CC;
  --muted: #9AACA6; --faint: #6C7E79; --line: #29332F; --line-soft: #222c28;
  --honey: #D99B47; --honey-ink: #E7B36E; --honey-soft: #2A2114; --pine: #74B79E; --pine-soft: #17271F;
  --cream: #1C2019; --danger: #D2685C; --ok: #5CA37E;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 2px 6px rgba(0,0,0,.3), 0 14px 34px rgba(0,0,0,.35);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.4), 0 30px 60px rgba(0,0,0,.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 550; line-height: 1.1; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
p { margin: 0; }
:focus-visible { outline: 2.5px solid var(--honey); outline-offset: 3px; border-radius: 3px; }

.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;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: var(--r-sm);
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--tint { background: var(--surface-2); }
.section--pine { background: var(--pine); color: #F3F8F5; }
.section__head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
.section__intro { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section--pine .section__intro { color: #CFE2D9; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--honey-ink); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--honey); }
.section--pine .eyebrow { color: #DCC79B; }
.section--pine .eyebrow::before { background: #DCC79B; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  font-weight: 650; font-size: .98rem; line-height: 1; letter-spacing: .01em;
  transition: transform .15s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--honey); color: #FFF9EF; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--honey-ink); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn--onpine { background: #F6EFDD; color: #23433A; }
.btn--onpine:hover { background: #fff; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 1.28rem; color: var(--ink); letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand small { display: block; font-family: var(--sans); font-weight: 600; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--faint); margin-top: 2px; }
.nav { display: none; margin-left: auto; align-items: center; gap: 6px; }
.nav a { padding: 9px 14px; border-radius: var(--r-sm); font-weight: 550; font-size: .96rem; color: var(--ink-2); transition: color .15s ease, background .15s ease; }
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a.active { color: var(--honey-ink); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav + .header-actions { margin-left: 12px; }
.theme-toggle {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: transparent; color: var(--ink-2);
}
.theme-toggle:hover { border-color: var(--ink); color: var(--ink); }
.theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .moon { display: block; }
}
.nav-cta { display: none; }
.nav-toggle {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: transparent; color: var(--ink);
}
#mobileNav {
  border-top: 1px solid var(--line); background: var(--bg);
  padding: 10px var(--pad) 22px;
}
#mobileNav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
#mobileNav a { display: block; padding: 13px 6px; font-size: 1.05rem; font-weight: 550; border-bottom: 1px solid var(--line-soft); }
#mobileNav .btn { margin-top: 14px; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  #mobileNav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(40px, 7vw, 84px) clamp(48px, 8vw, 96px); overflow: hidden; }
.hero__inner { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 940px) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 550; }
.hero__title em { font-style: italic; color: var(--honey-ink); }
.hero__lede { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); margin-top: 20px; max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { margin-top: 16px; font-size: .9rem; color: var(--faint); }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.hero__media--frame::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 2px solid var(--honey); border-radius: var(--r-lg); opacity: .5;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--ink-2); font-weight: 550; }
.badge svg { width: 18px; height: 18px; color: var(--pine); flex: none; }

/* ---------- Trust bar ---------- */
.trustbar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; padding-block: 30px; border-block: 1px solid var(--line); }
.trust-item { text-align: center; }
.trust-item b { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--honey-ink); }
.trust-item span { font-size: .86rem; color: var(--muted); }

/* ---------- Generic grid + cards ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--honey) 40%, var(--line)); }
.card__media { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; background: var(--surface-2); }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__kicker { font-family: var(--sans); font-weight: 700; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--honey-ink); }
.card__title { font-size: 1.28rem; }
.card__text { color: var(--muted); font-size: .98rem; }
.card__cta { margin-top: auto; padding-top: 8px; font-weight: 650; color: var(--honey-ink); display: inline-flex; align-items: center; gap: 6px; }
.card:hover .card__cta { gap: 10px; }

/* ---------- Catalog + filters ---------- */
.catalog-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; align-items: center; }
.filter-group { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.filter-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-right: 4px; }
.chip {
  padding: 8px 15px; border-radius: var(--r-pill); border: 1.5px solid var(--line);
  background: var(--surface); color: var(--ink-2); font-size: .88rem; font-weight: 600;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--honey); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--honey); border-color: var(--honey); color: #FFF9EF; }
.filter-count { margin-left: auto; font-size: .86rem; color: var(--muted); font-weight: 600; }
.catalog-grid { display: grid; gap: clamp(16px, 2.4vw, 26px); grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.book-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.book-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.book-card__cover { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; background: var(--surface-2); }
.book-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.book-card__title { font-size: 1.14rem; }
.book-card__desc { font-size: .9rem; color: var(--muted); }
.book-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.tag { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 5px; background: var(--pine-soft); color: var(--pine); }
.tag--format { background: var(--honey-soft); color: var(--honey-ink); }
.book-card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.book-card__price { font-weight: 700; font-size: .9rem; color: var(--ink); }
.book-card__price .free { color: var(--pine); }
.book-card__cta { font-weight: 650; font-size: .9rem; color: var(--honey-ink); }
.no-results { text-align: center; padding: 48px 20px; color: var(--muted); }
.no-results .chip { margin-top: 14px; }

/* ---------- How it works / steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.step__num { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--honey-ink); width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--honey-soft); margin-bottom: 14px; }
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Give-back / impact ---------- */
.impact__inner { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (min-width: 900px) { .impact__inner { grid-template-columns: 1fr 1fr; } }
.impact__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.pledge { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 4.2rem); font-weight: 600; color: #FBF6EC; line-height: 1; }
.impact-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 26px; }
.impact-stat b { display: block; font-family: var(--serif); font-size: 1.8rem; color: #FBF6EC; }
.impact-stat span { font-size: .88rem; color: #CFE2D9; }

/* ---------- Lead form ---------- */
.leadform-band { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 48px); box-shadow: var(--shadow-md); }
.leadform-band .grid-split { display: grid; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (min-width: 820px) { .leadform-band .grid-split { grid-template-columns: 1fr 1fr; } }
.leadform { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .82rem; font-weight: 650; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--surface); color: var(--ink); font: inherit; font-size: .98rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--honey); box-shadow: 0 0 0 3px var(--honey-soft); }
.field textarea { resize: vertical; min-height: 84px; }
.field--row { display: grid; gap: 14px; }
@media (min-width: 520px) { .field--row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { min-height: 1.2em; font-size: .9rem; font-weight: 600; }
.form-note.ok { color: var(--ok); }
.form-note.err { color: var(--danger); }
.form-fine { font-size: .82rem; color: var(--faint); }

/* ---------- Prose (legal / long text) ---------- */
.legal-header { padding-block: clamp(40px, 6vw, 72px) 8px; }
.legal-header h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal-header .updated { color: var(--faint); font-size: .9rem; margin-top: 12px; }
.prose { max-width: 72ch; padding-block: 20px clamp(48px, 8vw, 88px); }
.prose h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; }
.prose p, .prose li { color: var(--ink-2); }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 7px; }
.prose a { color: var(--honey-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.callout-box { background: var(--surface-2); border-left: 3px solid var(--honey); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 16px 20px; margin: 20px 0; color: var(--ink-2); font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: clamp(44px, 6vw, 72px) 30px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: .95rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-2); font-size: .95rem; }
.footer-col a:hover { color: var(--honey-ink); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--faint); font-size: .84rem; }
.footer-bottom a { color: var(--faint); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Real images via <picture> ---------- */
picture { display: contents; }
.card__media, .book-card__cover { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media, .book-card:hover .book-card__cover { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) {
  .card:hover .card__media, .book-card:hover .book-card__cover { transform: none; }
}

/* ---------- Image placeholders (fallback if a photo is missing) ---------- */
.ph {
  position: relative; overflow: hidden; display: grid; place-items: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background:
    radial-gradient(130% 120% at 82% 12%, var(--honey-soft), transparent 52%),
    linear-gradient(155deg, var(--pine-soft), var(--surface-2));
}
.ph[data-label]::after {
  content: attr(data-label); position: absolute; bottom: 11px; right: 14px;
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--faint); font-weight: 700;
}
.ph svg { width: 30%; max-width: 96px; opacity: .55; }
.ph--hero { aspect-ratio: 4 / 5; border-radius: var(--r-lg); }
.ph--wide { aspect-ratio: 3 / 2; border-radius: var(--r-lg); }
.ph--card { aspect-ratio: 3 / 2; border-radius: 0; border: 0; box-shadow: none; }
.ph--cover { aspect-ratio: 4 / 5; border-radius: 0; border: 0; box-shadow: none; }

/* ---------- FAQ (native details/summary) ---------- */
.faq { display: grid; gap: 10px; max-width: 780px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; font-family: var(--serif); font-size: 1.14rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--honey-ink); font-family: var(--sans); flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 22px 20px; color: var(--muted); }
.faq details > div p { margin-bottom: 10px; }

/* ---------- Misc helpers ---------- */
.lede { font-size: 1.15rem; color: var(--muted); }
.center { text-align: center; }
.stack-gap { display: grid; gap: 18px; }
.mt-lg { margin-top: clamp(28px, 4vw, 44px); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ==========================================================
   REFINEMENT v2 — white ground, warm neutrals, stronger
   branding, refined type & motion. Overrides the base above.
   ========================================================== */

/* ---- Palette: white background + warm, food-friendly neutrals ---- */
:root {
  --bg:#ffffff; --surface:#ffffff; --surface-2:#faf5ed;
  --ink:#1c1710; --ink-2:#4e463b; --muted:#786d60; --faint:#a89b8a;
  --line:#ece4d6; --line-soft:#f4efe5;
  --honey:#b06a16; --honey-ink:#8f5510; --honey-soft:#f7ead2;
  --pine:#2c5a44; --pine-soft:#e3ebe2; --cream:#faf5ed;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg:#14110c; --surface:#1b1710; --surface-2:#221d15;
    --ink:#f2ece2; --ink-2:#cabfae; --muted:#a89c8a; --faint:#6f6456;
    --line:#2c2419; --line-soft:#241e15;
    --honey:#e0a251; --honey-ink:#edbb78; --honey-soft:#2a2012;
    --pine:#71b190; --pine-soft:#17241b; --cream:#1e1911;
  }
}
:root[data-theme="light"] {
  --bg:#ffffff; --surface:#ffffff; --surface-2:#faf5ed;
  --ink:#1c1710; --ink-2:#4e463b; --muted:#786d60; --faint:#a89b8a;
  --line:#ece4d6; --line-soft:#f4efe5;
  --honey:#b06a16; --honey-ink:#8f5510; --honey-soft:#f7ead2;
  --pine:#2c5a44; --pine-soft:#e3ebe2; --cream:#faf5ed;
}
:root[data-theme="dark"] {
  --bg:#14110c; --surface:#1b1710; --surface-2:#221d15;
  --ink:#f2ece2; --ink-2:#cabfae; --muted:#a89c8a; --faint:#6f6456;
  --line:#2c2419; --line-soft:#241e15;
  --honey:#e0a251; --honey-ink:#edbb78; --honey-soft:#2a2012;
  --pine:#71b190; --pine-soft:#17241b; --cream:#1e1911;
}

/* ---- Type: bigger, more confident, tighter display ---- */
h1, h2, h3, h4 { letter-spacing: -.022em; }
.hero__title { font-weight: 600; letter-spacing: -.03em; line-height: 1.02; }
.section__title { font-weight: 600; }
.eyebrow { font-weight: 700; letter-spacing: .22em; }
.brand { letter-spacing: -.025em; }
body { font-size: 17px; }

/* ---- Surfaces read crisp & warm on white ---- */
.card, .book-card { box-shadow: 0 1px 2px rgba(28,23,16,.04), 0 12px 30px rgba(28,23,16,.05); }
.card:hover, .book-card:hover { box-shadow: 0 4px 10px rgba(28,23,16,.06), 0 26px 52px rgba(28,23,16,.11); border-color: color-mix(in srgb, var(--honey) 45%, var(--line)); }
.site-footer { background: var(--surface-2); }
.site-header { background: color-mix(in srgb, var(--bg) 82%, transparent); }

/* ---- Branding: the window arch on the hero image ---- */
.hero__media img { border-radius: 50% 50% var(--r-md) var(--r-md) / 26% 26% 0 0; }
.hero__media--frame::after { border-radius: 50% 50% var(--r-md) var(--r-md) / 26% 26% 0 0; inset: 16px -16px -16px 16px; opacity: .55; }

/* ---- Branding: animated honey underline in the nav ---- */
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; border-radius: 2px; background: var(--honey); transform: scaleX(0); transform-origin: left center; transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

/* ---- Buttons: warmer shadow + gentle lift ---- */
.btn--primary { box-shadow: 0 1px 2px rgba(28,23,16,.06), 0 8px 18px rgba(176,106,22,.20); }
.btn--primary:hover { transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

/* ---- Motion: softer reveals + a staged hero entrance ---- */
.js .reveal { transform: translateY(14px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes bs-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  .hero__inner > div:first-child > * { animation: bs-rise .7s cubic-bezier(.2,.7,.2,1) both; }
  .hero__inner > div:first-child > *:nth-child(1) { animation-delay: .04s; }
  .hero__inner > div:first-child > *:nth-child(2) { animation-delay: .12s; }
  .hero__inner > div:first-child > *:nth-child(3) { animation-delay: .20s; }
  .hero__inner > div:first-child > *:nth-child(4) { animation-delay: .28s; }
  .hero__inner > div:first-child > *:nth-child(5) { animation-delay: .36s; }
  .hero__media { animation: bs-rise .9s cubic-bezier(.2,.7,.2,1) .18s both; }
}

/* ---- Warmth details ---- */
::selection { background: var(--honey-soft); color: var(--ink); }
.trust-item b { color: var(--honey-ink); }

/* ==========================================================
   Designed product covers — branded cookbook-series look
   ========================================================== */
.book-card__cover { position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: var(--pine); border-radius: 0; }
.book-card__cover > picture, .book-card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; }
.book-card__cover img { object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.book-card:hover .book-card__cover { transform: none; }           /* container stays put… */
.book-card:hover .book-card__cover img { transform: scale(1.055); } /* …only the photo zooms */
.cover__grad { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(18,13,7,.88) 3%, rgba(18,13,7,.55) 24%, rgba(18,13,7,.06) 50%, rgba(18,13,7,.22) 100%); }
.cover__inner { position: absolute; inset: 0; padding: 15px 16px 17px; display: flex; flex-direction: column; justify-content: space-between; }
.cover__wm { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-family: var(--sans); font-weight: 700; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: #F6ECD9; }
.cover__wm svg { width: 15px; height: 15px; flex: none; }
.cover__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cover__tag { font-family: var(--sans); font-weight: 700; font-size: .57rem; letter-spacing: .12em; text-transform: uppercase;
  color: #241a0c; background: var(--honey); padding: 4px 9px; border-radius: 5px; }
.cover__tag--free { background: #F6ECD9; color: #23433A; }
.cover__title { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; line-height: 1.05; letter-spacing: -.015em;
  color: #FBF6EC; text-wrap: balance; margin: 0; }

/* ---- Mission bar (top of every page) ---- */
.promobar { background: var(--pine); color: #eef5f0; text-align: center; font-size: .82rem; font-weight: 500; padding: 9px 18px; line-height: 1.4; }
.promobar strong { color: #f0d9a6; font-weight: 700; }
.promobar a { color: #F6ECD9; font-weight: 650; border-bottom: 1px solid rgba(246,236,217,.45); padding-bottom: 1px; }
.promobar a:hover { border-bottom-color: #F6ECD9; }
@media (max-width: 560px) { .promobar { font-size: .74rem; } }

/* Course cards get the same treatment on their 3:2 media */
.card__cover { position: relative; display: block; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: var(--pine); }
.card__cover > picture, .card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; }
.card__cover img { object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__cover img { transform: scale(1.05); }

/* ==========================================================
   LOCKED to the light (white) theme — no theme switching.
   This block is last, so it wins over every dark rule above,
   including @media (prefers-color-scheme: dark).
   ========================================================== */
:root, :root[data-theme] {
  color-scheme: light;
  --bg:#ffffff; --surface:#ffffff; --surface-2:#faf5ed;
  --ink:#1c1710; --ink-2:#4e463b; --muted:#786d60; --faint:#a89b8a;
  --line:#ece4d6; --line-soft:#f4efe5;
  --honey:#b06a16; --honey-ink:#8f5510; --honey-soft:#f7ead2;
  --pine:#2c5a44; --pine-soft:#e3ebe2; --cream:#faf5ed;
  --shadow-sm: 0 1px 2px rgba(28,23,16,.05), 0 2px 6px rgba(28,23,16,.04);
  --shadow-md: 0 2px 6px rgba(28,23,16,.06), 0 14px 34px rgba(28,23,16,.08);
  --shadow-lg: 0 8px 24px rgba(28,23,16,.10), 0 30px 60px rgba(28,23,16,.12);
}
