/* ============================================================
   NOURISH — site styles (built on tokens.css)
   Static, lightweight editorial blog that sells one ebook.
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-sm); }

.container { max-width: var(--maxw-content); margin: 0 auto; padding: 0 28px; }
.section { padding-block: var(--space-9); }
.section--tight { padding-block: var(--space-8); }
.center { text-align: center; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--primary); color: var(--on-primary); padding: 12px 18px; border-radius: var(--radius-md); z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- icons (Lucide) ---------- */
.icon, [data-lucide] { width: 20px; height: 20px; stroke-width: 2; flex: none; }
.icon-sm, [data-lucide].sm { width: 16px; height: 16px; }
.icon-lg { width: 26px; height: 26px; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: var(--text-sm);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--primary); margin: 0 0 var(--space-4);
}
.eyebrow [data-lucide] { width: 16px; height: 16px; }

/* ---------- headings ---------- */
.display { font-family: var(--font-display); font-weight: 500; color: var(--ink-800); letter-spacing: var(--tracking-tight); margin: 0; }
.h1 { font-size: clamp(2.5rem, 5vw, var(--text-4xl)); line-height: var(--leading-tight); }
.h2 { font-size: clamp(2rem, 4vw, var(--text-3xl)); line-height: var(--leading-snug); }
.h3 { font-size: var(--text-2xl); line-height: var(--leading-snug); }
.serif-italic { font-style: italic; }
.lead { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--text-secondary); margin: 0; }
.muted { color: var(--text-secondary); }

/* ============================================================
   DISCLOSURE RIBBON (compliance — persistent, honest)
   ============================================================ */
.disclosure-bar {
  background: var(--green-800); color: var(--text-ondark-muted);
  font-size: var(--text-xs); letter-spacing: 0.02em;
}
.disclosure-bar .container { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 38px; padding-block: 7px; text-align: center; }
.disclosure-bar [data-lucide] { width: 15px; height: 15px; color: var(--green-200); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: var(--text-base); line-height: 1; text-decoration: none;
  padding: 15px 26px; border-radius: var(--radius-md);
  border: 1.5px solid transparent; min-height: 52px; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.975); }
.btn [data-lucide] { width: 19px; height: 19px; }

.btn--accent { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--accent-hover); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--on-accent); }
.btn--accent:active { background: var(--accent-press); transform: scale(0.975); }

.btn--primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--on-primary); }

.btn--ghost { background: transparent; color: var(--primary); border-color: var(--green-300); }
.btn--ghost:hover { background: var(--green-50); border-color: var(--green-400); color: var(--primary); }

.btn--lg { font-size: var(--text-md); padding: 18px 32px; min-height: 60px; }
.btn--block { width: 100%; }
.btn--ondark { background: var(--cream-50); color: var(--green-700); }
.btn--ondark:hover { background: #fff; color: var(--green-700); }

/* ============================================================
   PLACEHOLDER IMAGE — clearly marked, owner replaces with real photos
   ============================================================ */
.ph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--cream-100);
  background-image: repeating-linear-gradient(45deg,
    transparent, transparent 13px,
    color-mix(in srgb, var(--sand-300) 55%, transparent) 13px,
    color-mix(in srgb, var(--sand-300) 55%, transparent) 14px);
  border: 1.5px dashed var(--sand-300);
  border-radius: var(--radius-lg);
  color: var(--stone-500); overflow: hidden;
}
.ph__tag {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--cream-50); border: 1px dashed var(--sand-300);
  border-radius: var(--radius-sm); padding: 8px 14px; text-align: center;
  max-width: 84%;
}
.ph__tag b {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--clay-600); text-transform: uppercase;
}
.ph__tag span { font-size: 12px; color: var(--stone-500); line-height: 1.35; }
.ph--circle { border-radius: var(--radius-pill); }

/* ============================================================
   BADGES / PILLS / RATING
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: var(--text-sm); font-weight: 600;
  padding: 6px 13px; border-radius: var(--radius-pill);
}
.badge [data-lucide] { width: 15px; height: 15px; }
.badge--green { background: var(--green-100); color: var(--green-700); }
.badge--clay { background: var(--clay-100); color: var(--clay-700); }
.badge--gold { background: #FBF0D8; color: var(--gold-500); }
.badge--neutral { background: var(--cream-100); color: var(--ink-700); border: 1px solid var(--sand-300); }

.stars { display: inline-flex; align-items: center; gap: 2px; }
.stars [data-lucide] { width: 19px; height: 19px; fill: var(--gold-400); color: var(--gold-400); }
.rating-text { font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); margin-left: 8px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card--link { color: inherit; display: block; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.card__body { padding: var(--space-5); }

/* feature card */
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-xs);
}
.feature__ico {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--green-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
}
.feature__ico [data-lucide] { width: 26px; height: 26px; }
.feature h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); line-height: var(--leading-snug); color: var(--ink-800); margin: 0 0 10px; }
.feature p { margin: 0; font-size: var(--text-base); color: var(--text-secondary); line-height: var(--leading-normal); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream-50) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: var(--space-5); }
.header__nav { display: flex; align-items: center; gap: var(--space-5); }
.header__nav a {
  color: var(--ink-700); font-weight: 500; font-size: var(--text-base); white-space: nowrap;
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: color var(--dur-base), border-color var(--dur-base);
}
.header__nav a:hover, .header__nav a[aria-current="page"] { color: var(--primary); border-color: var(--primary); text-decoration: none; }
.header__cta { display: flex; align-items: center; gap: var(--space-4); }
.header__burger { display: none; background: none; border: 1px solid var(--border-strong); border-radius: var(--radius-md); color: var(--ink-800); width: 46px; height: 46px; align-items: center; justify-content: center; }

/* ---------- logo (typographic) ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink-900); }
.logo:hover { text-decoration: none; }
.logo__mark {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--green-500); color: var(--cream-50);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.logo__mark [data-lucide] { width: 23px; height: 23px; stroke-width: 2.2; }
.logo__word { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; letter-spacing: -0.01em; color: var(--ink-800); line-height: 1; }
.logo__word i { color: var(--green-600); font-style: italic; }

/* mobile nav drawer */
.mnav { display: none; border-bottom: 1px solid var(--border); background: var(--cream-50); }
.mnav.open { display: block; }
.mnav__inner { display: flex; flex-direction: column; padding: var(--space-3) 0 var(--space-5); }
.mnav a { padding: 13px 0; color: var(--ink-800); font-weight: 500; border-bottom: 1px solid var(--border); }
.mnav .btn { margin-top: var(--space-4); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 460px at 80% 6%, var(--green-50), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8); align-items: center;
  padding-block: var(--space-9) var(--space-8);
}
.hero h1 { margin: 0 0 var(--space-6); max-width: 15ch; line-height: 1.12; }
.hero .lead { max-width: 48ch; margin-bottom: var(--space-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; margin-bottom: var(--space-5); }
.hero__social { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; color: var(--text-secondary); font-size: var(--text-sm); }
.hero__book { position: relative; display: flex; justify-content: center; }
.book-cover {
  width: 330px; max-width: 100%; aspect-ratio: 5 / 7;
  border-radius: 6px 12px 12px 6px;
  box-shadow: var(--shadow-lg), -3px 0 0 rgba(0,0,0,0.06) inset;
  transform: rotate(2.5deg);
}
.book-cover .ph__tag { transform: rotate(-2.5deg); }
.book-float { position: relative; }
.book-float .badge { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); box-shadow: var(--shadow-md); }

/* reassurance strip */
.reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4) var(--space-7); }
.reassure span { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-700); font-weight: 500; }
.reassure [data-lucide] { color: var(--primary); }
.divider-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-tint); }

/* ============================================================
   DARK PANEL (forest)
   ============================================================ */
.panel-dark { background: var(--green-700); color: var(--text-ondark); }
.panel-dark .display, .panel-dark .h2, .panel-dark h2, .panel-dark h3 { color: var(--cream-50); }
.panel-dark .lead { color: var(--text-ondark-muted); }
.panel-dark .eyebrow { color: var(--green-200); }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.step__num {
  font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 500;
  color: var(--accent); letter-spacing: 0.1em;
  border: 1.5px solid var(--clay-200); border-radius: var(--radius-pill);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); line-height: var(--leading-snug); color: var(--ink-800); margin: 0 0 8px; }
.step p { margin: 0; color: var(--text-secondary); }

/* ============================================================
   CHAPTER / CONTENTS LIST
   ============================================================ */
.chapters { display: flex; flex-direction: column; gap: 2px; }
.chapter {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) 0; border-bottom: 1px solid var(--border);
}
.chapter:last-child { border-bottom: 0; }
.chapter__no { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--text-muted); width: 34px; flex: none; }
.chapter__title { font-weight: 500; color: var(--ink-800); }
.chapter__meta { margin-left: auto; font-size: var(--text-sm); color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.quote-card blockquote {
  font-family: var(--font-display); font-style: italic; font-size: var(--text-lg);
  line-height: var(--leading-snug); color: var(--ink-700); margin: 0;
}
.quote-card__person { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.avatar-initial { width: 46px; height: 46px; flex: none; border-radius: var(--radius-pill);
  background: var(--green-100); color: var(--green-700); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); }
.quote-card__name { font-weight: 600; color: var(--ink-800); font-size: var(--text-sm); }
.quote-card__role { font-size: var(--text-xs); color: var(--text-muted); }

/* ============================================================
   FAQ (native details/summary — no JS)
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) 0; font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-lg); color: var(--ink-800);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary [data-lucide] { color: var(--primary); transition: transform var(--dur-base) var(--ease-out); }
.faq__item[open] summary [data-lucide] { transform: rotate(45deg); }
.faq__item p { margin: 0; padding: 0 0 var(--space-5); color: var(--text-secondary); max-width: 64ch; }

/* ============================================================
   EMAIL / CONTACT FORM
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-5); }
.field label { font-weight: 600; font-size: var(--text-sm); color: var(--ink-800); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: var(--text-base); color: var(--text);
  background: var(--surface); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 14px 16px; min-height: 52px; width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; line-height: var(--leading-normal); }
.field input::placeholder, .field textarea::placeholder { color: var(--stone-400); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: var(--shadow-focus); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-800); color: var(--text-ondark-muted); padding: var(--space-8) 0 var(--space-6); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: var(--space-6); padding-bottom: var(--space-7); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .logo__word { color: var(--cream-50); }
.footer .logo__word i { color: var(--green-200); }
.footer__brandcol p { margin: var(--space-4) 0 0; max-width: 34ch; font-size: var(--text-sm); line-height: var(--leading-normal); }
.footer h4 { color: var(--cream-50); font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 var(--space-4); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer a { color: var(--text-ondark-muted); font-size: var(--text-sm); }
.footer a:hover { color: var(--cream-50); }
.footer__co { font-size: var(--text-sm); line-height: var(--leading-normal); }
.footer__co strong { color: var(--cream-50); font-weight: 600; }
.footer__legal { padding-top: var(--space-6); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-xs); color: rgba(231,239,233,0.62); }
.footer__disclaimer { max-width: 72ch; line-height: 1.55; }
.footer__disclaimer + .footer__disclaimer { margin-top: var(--space-3); }

/* ============================================================
   BLOG INDEX
   ============================================================ */
.blog-hero { padding-block: var(--space-8) var(--space-6); text-align: center; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.post-card { display: flex; flex-direction: column; }
.post-card .post-card__img { aspect-ratio: 3 / 2; border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.post-card .card__body { display: flex; flex-direction: column; height: 100%; }
.post-card .eyebrow { margin-bottom: 10px; font-size: var(--text-xs); }
.post-card h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--text-xl); line-height: var(--leading-snug); color: var(--ink-800); margin: 0 0 10px; }
.post-card p { margin: 0 0 var(--space-5); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-normal); }
.post-card__meta { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); margin-top: auto; display: inline-flex; align-items: center; gap: 8px; }
.post-card__meta [data-lucide] { width: 14px; height: 14px; color: var(--primary); }

.featured { background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius-xl); overflow: hidden; }
.featured__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.featured__img { min-height: 100%; border: 0; border-radius: 0; }
.featured__body { padding: var(--space-8); }
.featured__body h2 { margin: 0 0 var(--space-4); max-width: 18ch; }

/* ============================================================
   ARTICLE / PROSE
   ============================================================ */
.article { max-width: var(--maxw-prose); margin: 0 auto; padding: var(--space-7) 0 var(--space-8); }
.article__head { max-width: var(--maxw-prose); margin: 0 auto; text-align: center; padding-top: var(--space-7); }
.article__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem,4.5vw,var(--text-3xl)); line-height: var(--leading-snug); letter-spacing: var(--tracking-tight); color: var(--ink-800); margin: var(--space-4) 0; }
.article__byline { display: inline-flex; align-items: center; gap: var(--space-3); color: var(--text-muted); font-size: var(--text-sm); }
.article__byline .ph { width: 40px; height: 40px; }
.article__hero { max-width: 1000px; margin: var(--space-7) auto; aspect-ratio: 16/8; }
.article__rule { width: 64px; height: 3px; border-radius: 2px; background: var(--clay-300); margin: var(--space-6) auto var(--space-7); }

.adv-banner {
  max-width: var(--maxw-prose); margin: var(--space-5) auto 0; display: flex; align-items: flex-start; gap: 10px;
  background: var(--cream-100); border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  padding: 13px 16px; font-size: var(--text-sm); color: var(--ink-700); line-height: var(--leading-normal);
}
.adv-banner [data-lucide] { width: 17px; height: 17px; color: var(--clay-600); margin-top: 3px; }

.prose__lead { font-size: var(--text-lg) !important; line-height: var(--leading-relaxed); color: var(--ink-800); }
.prose__lead::first-letter { initial-letter: 2; font-family: var(--font-display); font-weight: 600; color: var(--primary); margin-right: 8px; }
.prose { font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--ink-900); }
.prose > * { max-width: var(--maxw-prose); margin-left: auto; margin-right: auto; }
.prose p { margin: 0 0 var(--space-5); }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-2xl); color: var(--ink-800); margin: var(--space-7) auto var(--space-4); line-height: var(--leading-snug); }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); color: var(--ink-800); margin: var(--space-6) auto var(--space-3); }
.prose ul, .prose ol { margin: 0 0 var(--space-5); padding-left: 1.3em; }
.prose li { margin-bottom: var(--space-3); }
.prose strong { color: var(--ink-800); font-weight: 700; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.pullquote { font-family: var(--font-display); font-style: italic; font-size: var(--text-2xl); line-height: var(--leading-snug); color: var(--primary); border-left: 3px solid var(--green-300); padding-left: var(--space-5); margin: var(--space-7) auto; }

.article-cta { background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius-lg); padding: var(--space-6); margin: var(--space-7) auto; display: flex; gap: var(--space-5); align-items: center; flex-wrap: wrap; }
.article-cta__book { width: 104px; aspect-ratio: 5/7; flex: none; }
.article-cta__txt { flex: 1; min-width: 240px; }
.article-cta__txt h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); color: var(--ink-800); margin: 0 0 8px; }
.article-cta__txt p { margin: 0 0 var(--space-4); color: var(--text-secondary); }

/* recipe card (inside article) */
.recipe {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; max-width: var(--maxw-prose); margin: var(--space-7) auto;
}
.recipe__img { aspect-ratio: 16/9; border: 0; border-radius: 0; }
.recipe__body { padding: var(--space-6); }
.recipe__meta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin: var(--space-4) 0 var(--space-5); }
.recipe__cols { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); }
.recipe h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); color: var(--ink-800); margin: 0; }
.recipe h4 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--primary); margin: 0 0 var(--space-3); }
.recipe ul, .recipe ol { margin: 0; padding-left: 1.25em; color: var(--ink-800); }
.recipe li { margin-bottom: 8px; line-height: var(--leading-normal); }

/* ============================================================
   LEGAL / DOC PAGES
   ============================================================ */
.doc { max-width: 760px; margin: 0 auto; padding: var(--space-8) 0; }
.doc__head { margin-bottom: var(--space-6); padding-bottom: var(--space-5); border-bottom: 1px solid var(--border); }
.doc__updated { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-muted); letter-spacing: 0.04em; }
.doc h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem,4vw,var(--text-3xl)); color: var(--ink-800); letter-spacing: var(--tracking-tight); margin: var(--space-3) 0 var(--space-4); }
.doc h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); color: var(--ink-800); margin: var(--space-7) 0 var(--space-3); }
.doc p, .doc li { color: var(--ink-800); line-height: var(--leading-relaxed); }
.doc p { margin: 0 0 var(--space-4); }
.doc ul { padding-left: 1.3em; margin: 0 0 var(--space-4); }
.doc li { margin-bottom: var(--space-2); }
.doc a { text-decoration: underline; text-underline-offset: 2px; }
.doc__toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-5); margin-bottom: var(--space-6); }
.doc__toc h4 { margin: 0 0 var(--space-3); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-muted); }
.doc__toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.callout { background: var(--cream-100); border: 1px solid var(--border-strong); border-radius: var(--radius-md); padding: var(--space-5); margin: var(--space-5) 0; }
.callout p:last-child { margin-bottom: 0; }

/* ============================================================
   ABOUT / CONTACT
   ============================================================ */
.page-head { padding-block: var(--space-8) var(--space-6); text-align: center; }
.page-head h1 { margin: var(--space-3) auto var(--space-4); max-width: 20ch; }
.page-head .lead { max-width: 56ch; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-8); align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--space-6); }
.info-row { display: flex; align-items: flex-start; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; }
.info-row [data-lucide] { color: var(--primary); margin-top: 3px; }
.info-row b { display: block; color: var(--ink-800); font-size: var(--text-sm); margin-bottom: 2px; }
.info-row span, .info-row a { font-size: var(--text-sm); color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero h1, .hero .lead { max-width: none; margin-inline: auto; }
  .hero__actions, .hero__social, .reassure { justify-content: center; }
  .hero__book { order: -1; margin-bottom: var(--space-5); }
  .steps, .post-grid, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2, .featured__grid, .recipe__cols, .contact-grid { grid-template-columns: 1fr; }
  .featured__img { aspect-ratio: 16/9; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .header__nav { display: none; }
  .header__burger { display: inline-flex; }
}
@media (max-width: 620px) {
  html { font-size: 17px; }
  .header__cta .btn { display: none; }
  .post-grid, .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .article-cta { flex-direction: column; align-items: flex-start; }
  .recipe__meta .badge { font-size: var(--text-xs); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
