/* ============================================================
   MARINATE FOR MINUTES — Main Stylesheet
   www.carlcooper.com/Books/Marinateforminutes
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #090c08;
  --dark:       #0f1209;
  --warm-dark:  #151a0e;
  --card:       #1c2114;
  --card-hover: #232a18;
  --border:     rgba(195,158,90,0.18);
  --gold:       #c39e5a;
  --gold-hi:    #d9b87a;
  --gold-dim:   rgba(195,158,90,0.38);
  --cream:      #f4ede0;
  --ivory:      #faf6ee;
  --text:       #ddd8c4;
  --sub:        #a8997e;
  --faint:      #5e5444;
  --red:        #8c3020;
  /* ── Natural greens ── */
  --herb:         #4e7c5f;
  --herb-hi:      #6a9e78;
  --herb-dim:     rgba(78,124,95,0.20);
  --sage:         #7aab8a;
  --moss:         #3a5c42;
  --green-border: rgba(78,124,95,0.30);
  --serif: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --sans:  Optima, Candara, 'Gill Sans', 'Trebuchet MS', sans-serif;
  --max:   1160px;
  --gap:   clamp(1.2rem, 4vw, 2.5rem);
  --sec:   clamp(4rem, 8vw, 7rem);
  --rad:   3px;
  --shad:  0 12px 48px rgba(0,0,0,0.55);
  --t:     all 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--serif); background: var(--dark); color: var(--text); line-height: 1.78; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: var(--t); }
a:hover { color: var(--gold-hi); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--serif); font-weight: normal; line-height: 1.18; color: var(--cream); letter-spacing: 0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
p  { margin-bottom: 1.3em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
em, i { font-style: italic; color: var(--gold-hi); }
strong { font-weight: bold; color: var(--cream); }
blockquote { border-left: 2px solid var(--herb); padding: 0.9rem 1.6rem; margin: 2rem 0; font-style: italic; color: var(--sub); font-size: 1.08rem; }

.lead { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--sub); font-style: italic; line-height: 1.85; }
.drop-cap::first-letter { float: left; font-size: 4.2em; line-height: 0.76; padding-right: 0.1em; color: var(--herb-hi); }
.eyebrow { font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.section-label { font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--sage); display: block; margin-bottom: 0.7rem; }

/* Gold & green rule ornaments */
.ornament { display: block; text-align: center; color: var(--herb-dim); font-size: 0.75rem; letter-spacing: 0.6em; margin: 3rem 0; }
.ornament::before { content: '—  ✦  ✦  ✦  —'; color: var(--herb); }
.divider { width: 40px; height: 1px; background: linear-gradient(to right, var(--herb), var(--gold)); margin: 1.25rem 0; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }
.section { padding: var(--sec) var(--gap); }
.section-sm { padding: clamp(2.5rem,5vw,4rem) var(--gap); }
.centered { text-align: center; }
.centered p { margin-left: auto; margin-right: auto; }

/* ── NAV ── */
.site-nav { position: fixed; top: 0; width: 100%; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem var(--gap); transition: var(--t); }
.site-nav.scrolled { background: rgba(11,9,6,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 0.8rem var(--gap); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--serif); color: var(--gold); font-size: 1.05rem; font-style: italic; letter-spacing: 0.06em; white-space: nowrap; }
.nav-logo span { display: block; font-size: 0.58rem; font-style: normal; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.22em; color: var(--faint); margin-top: 1px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--sub); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--ink) !important; padding: 0.5rem 1.3rem !important; font-weight: 700 !important; border-radius: var(--rad); }
.nav-cta:hover { background: var(--gold-hi) !important; }
/* Dropdown */
.has-drop > a::after { content: ' ▾'; font-size: 0.6rem; }
.drop-menu { display: none; position: absolute; top: calc(100% + 0.6rem); left: 50%; transform: translateX(-50%); background: var(--card); border: 1px solid var(--border); min-width: 230px; padding: 0.4rem 0; border-radius: var(--rad); box-shadow: var(--shad); white-space: nowrap; }
/* Invisible bridge fills the gap so hover doesn't break when moving to menu */
.drop-menu::before { content: ''; position: absolute; top: -0.7rem; left: 0; right: 0; height: 0.7rem; background: transparent; }
.has-drop:hover .drop-menu { display: block; }
.drop-menu li { border-bottom: 1px solid var(--border); }
.drop-menu li:last-child { border-bottom: none; }
.drop-menu a { display: block; padding: 0.6rem 1.2rem; font-size: 0.76rem; color: var(--sub) !important; text-transform: none; letter-spacing: 0.05em; }
.drop-menu a:hover { color: var(--herb-hi) !important; background: var(--herb-dim); }
.drop-menu .free-badge::after { content: ' ★ Free'; color: var(--sage); font-size: 0.65rem; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: var(--t); }
/* Mobile menu */
.mob-menu { display: none; position: fixed; inset: 0; background: rgba(11,9,6,0.98); z-index: 1100; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem; }
.mob-menu.open { display: flex; }
.mob-menu a { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--text); }
.mob-menu a:hover { color: var(--gold); }
.mob-close { position: absolute; top: 1.5rem; right: 1.8rem; background: none; border: none; color: var(--gold); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.mob-divider { width: 40px; height: 1px; background: var(--border); }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.hero-bg { position: absolute; inset: 0; background-image: url('../photos/hero-bg.jpg'), linear-gradient(135deg, #0a0805 0%, #1c1408 50%, #0e0b06 100%); background-size: cover; background-position: center; filter: brightness(0.32) saturate(0.75); transform: scale(1.04); transition: transform 8s ease; }
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, transparent 35%, rgba(11,9,6,0.75) 100%), linear-gradient(to bottom, transparent 45%, var(--dark) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 0 var(--gap); }
.hero-title { font-size: clamp(3.2rem, 9vw, 7rem); color: var(--ivory); margin-bottom: 0.18em; line-height: 1.0; font-weight: normal; }
.hero-sub { font-style: italic; font-size: clamp(1rem, 2.8vw, 1.5rem); color: var(--gold); margin-bottom: 1.2rem; letter-spacing: 0.04em; }
.hero-tagline { color: var(--sub); font-size: clamp(0.88rem, 2vw, 1rem); margin: 0 auto 2.8rem; max-width: 50ch; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--faint); font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; }
.hero-scroll::after { content: ''; width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.2em; padding: 0.9rem 2.4rem; border-radius: var(--rad); transition: var(--t); cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--ink); font-weight: 700; }
.btn-gold:hover { background: var(--gold-hi); color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(195,158,90,0.32); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(244,237,224,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { font-size: 0.82rem; padding: 1.1rem 3rem; }
.btn-xl { font-size: 0.88rem; padding: 1.3rem 3.5rem; }
.btn-red { background: var(--red); color: var(--cream); font-weight: 600; }
.btn-red:hover { background: #a83828; color: var(--ivory); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(140,48,32,0.35); }

/* ── CARDS / GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; transition: var(--t); }
.card:hover { border-color: var(--gold-dim); transform: translateY(-4px); box-shadow: var(--shad); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--warm-dark); position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.2rem 1.4rem; }
.card-title { font-size: 1rem; color: var(--cream); margin-bottom: 0.3rem; }
.card-meta { font-family: var(--sans); font-size: 0.68rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; display: flex; gap: 1rem; margin-top: 0.3rem; }
/* Lock overlay */
.card-lock { position: absolute; inset: 0; background: rgba(11,9,6,0.65); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.4rem; }
.lock-svg { width: 22px; height: 22px; color: var(--gold); }
.lock-label { font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }

/* ── RECIPE PAGE ── */
.recipe-hero-split { display: grid; grid-template-columns: 55% 45%; min-height: 88vh; padding-top: 5.5rem; }
.recipe-img-panel { position: relative; overflow: hidden; background: var(--warm-dark); }
.recipe-img-panel img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { width: 100%; height: 100%; min-height: 380px; background: var(--card); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.8rem; color: var(--faint); font-size: 0.85rem; font-style: italic; }
.img-placeholder svg { width: 40px; height: 40px; color: var(--faint); opacity: 0.5; }
.recipe-info-panel { background: var(--dark); padding: clamp(2rem,4vw,3.5rem); display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); overflow-y: auto; }
.recipe-chapter { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--faint); margin-bottom: 0.4rem; }
.recipe-title-main { font-size: clamp(1.7rem, 3.5vw, 2.8rem); color: var(--ivory); margin-bottom: 0.2em; }
.recipe-best-for { color: var(--sub); font-style: italic; font-size: 0.95rem; margin-bottom: 1.4rem; }
/* Stars */
.stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.star { font-size: 0.9rem; color: var(--faint); }
.star.on { color: var(--gold); }
/* Equipment */
.equip-row { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.5rem; }
.equip { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.equip svg { width: 26px; height: 26px; color: var(--gold); }
.equip-name { font-family: var(--sans); font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); }
/* Times */
.time-row { display: flex; border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; margin-bottom: 1.5rem; }
.time-cell { flex: 1; padding: 0.7rem 0.4rem; text-align: center; border-right: 1px solid var(--border); }
.time-cell:last-child { border-right: none; }
.time-lbl { font-family: var(--sans); font-size: 0.54rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--faint); display: block; margin-bottom: 0.25rem; }
.time-val { font-size: 0.8rem; color: var(--text); }
/* Methods */
.methods { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tag { font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); border: 1px solid var(--border); padding: 0.22rem 0.65rem; border-radius: 20px; }

/* ── RECIPE BODY ── */
.recipe-body { max-width: var(--max); margin: 0 auto; padding: var(--sec) var(--gap); display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.ing-col h3, .inst-col h3 { font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--gold); margin-bottom: 1.5rem; font-weight: 600; }
.ing-section { margin-bottom: 2rem; }
.ing-section h4 { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--faint); margin-bottom: 0.7rem; font-weight: 600; }
.ing-list { list-style: none; }
.ing-list li { display: flex; gap: 0.5rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text); align-items: baseline; }
.ing-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--herb); flex-shrink: 0; margin-top: 0.45em; }
.ing-list li:last-child { border-bottom: none; }
.inst-step { margin-bottom: 2rem; }
.step-head { font-family: var(--sans); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.26em; color: var(--herb-hi); display: block; padding-bottom: 0.6rem; margin-bottom: 0.9rem; border-bottom: 1px solid var(--green-border); }
.inst-step p { font-size: 0.92rem; color: var(--text); margin-bottom: 0.7rem; }
.inst-step ul { list-style: none; }
.inst-step ul li { position: relative; padding: 0.35rem 0 0.35rem 1.2rem; font-size: 0.9rem; color: var(--text); }
.inst-step ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }
.notes-box { background: var(--card); border: 1px solid var(--green-border); border-left: 3px solid var(--herb); padding: 1.4rem 1.6rem; margin-top: 1.5rem; }
.notes-box h4 { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--herb-hi); margin-bottom: 0.7rem; }
.notes-box p { font-size: 0.87rem; color: var(--sub); font-style: italic; }

/* ── BUY SECTIONS ── */
.buy-hero { padding: var(--sec) var(--gap); text-align: center; background: var(--warm-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-wrap { display: inline-flex; align-items: baseline; gap: 0.15rem; margin: 1.2rem 0 0.4rem; }
.price-cur { font-size: 1.6rem; color: var(--gold); }
.price-num { font-size: clamp(3.5rem, 9vw, 5.5rem); color: var(--cream); line-height: 1; }
.price-once { font-size: 0.82rem; color: var(--sub); font-style: italic; display: block; margin-bottom: 2rem; }
.buy-perks { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin: 1.8rem 0 2.5rem; }
.perk { display: flex; align-items: center; gap: 0.5rem; font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sub); }
.perk::before { content: '✓'; color: var(--herb-hi); }
.paypal-note { font-family: var(--sans); font-size: 0.7rem; color: var(--faint); margin-top: 1.2rem; letter-spacing: 0.08em; }
.paypal-note a { color: var(--faint); text-decoration: underline; }

/* Buy strip (compact - used on recipe pages) */
.buy-strip { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem var(--gap); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.buy-strip-text h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 0.3rem; }
.buy-strip-text p { font-size: 0.88rem; color: var(--sub); margin: 0; }

/* ── TEXT / CONTENT PAGES ── */
.page-header { padding: 9rem var(--gap) 4.5rem; text-align: center; background: linear-gradient(170deg, var(--warm-dark) 0%, var(--dark) 100%); position: relative; }
.page-header::after { content: ''; display: block; width: 48px; height: 1px; background: var(--gold); margin: 1.4rem auto 0; }
.text-body { max-width: 680px; margin: 0 auto; padding: var(--sec) var(--gap); }
.text-body h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin: 2.5rem 0 0.9rem; color: var(--cream); }
.text-body h3 { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--herb-hi); margin: 2rem 0 0.7rem; }
.text-body p { color: var(--text); font-size: 0.97rem; }
.text-body ul { list-style: none; margin: 1rem 0 1.5rem; }
.text-body ul li { padding: 0.35rem 0 0.35rem 1.3rem; position: relative; font-size: 0.92rem; color: var(--text); }
.text-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--herb); font-size: 0.7rem; }
.text-rule { text-align: center; color: var(--faint); margin: 3rem 0; font-size: 0.7rem; letter-spacing: 0.55em; opacity: 0.6; }
.text-rule::before { content: '* * * * *'; }

/* ── CHAPTER PAGES ── */
.chap-header { padding: 9rem var(--gap) 4rem; background: var(--warm-dark); position: relative; overflow: hidden; }
.chap-header::after { content: attr(data-num); position: absolute; right: var(--gap); top: 50%; transform: translateY(-50%); font-size: clamp(7rem, 22vw, 16rem); font-family: var(--serif); color: rgba(78,124,95,0.06); line-height: 1; pointer-events: none; }
.chap-part { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--faint); display: block; margin-bottom: 0.4rem; }
.chap-num { font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--herb-hi); display: block; margin-bottom: 0.4rem; }
.chap-nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem var(--gap); background: var(--card); border-bottom: 1px solid var(--border); font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; }
.chap-nav a { color: var(--sub); display: flex; align-items: center; gap: 0.4rem; }
.chap-nav a:hover { color: var(--gold); }
.chap-center { color: var(--faint); }

/* ── TOC ── */
.toc-wrap { max-width: var(--max); margin: 0 auto; padding: var(--sec) var(--gap); }
.toc-part { margin-bottom: 3.5rem; }
.toc-part-title { font-family: var(--sans); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); padding-bottom: 0.8rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.toc-item { display: flex; align-items: baseline; gap: 0.8rem; padding: 0.5rem 0; color: var(--sub); font-size: 0.9rem; transition: var(--t); }
.toc-item:hover { color: var(--gold); padding-left: 0.3rem; }
.toc-num { font-family: var(--sans); font-size: 0.62rem; color: var(--faint); min-width: 1.8rem; }
.toc-locked { opacity: 0.38; cursor: default; pointer-events: none; }
.toc-locked::after { content: ' 🔒'; font-size: 0.7rem; }
.toc-free::after { content: ' ★'; color: var(--gold); font-size: 0.7rem; }
.toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }

/* ── ICON TABLE (How to Use) ── */
.styled-table { width: 100%; border-collapse: collapse; margin: 1.8rem 0; }
.styled-table th { font-family: var(--sans); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); text-align: left; padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); }
.styled-table td { padding: 0.82rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text); vertical-align: middle; }
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(195,158,90,0.04); }
.icon-cell { display: flex; align-items: center; gap: 0.7rem; }
.icon-cell svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ── HOMEPAGE STRIPS ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-img { overflow: hidden; min-height: 500px; background: var(--card); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content { background: var(--warm-dark); padding: clamp(3rem,6vw,5.5rem); display: flex; flex-direction: column; justify-content: center; }
.about-content p { color: var(--sub); }

/* Preview free recipe */
.preview-band { background: var(--ink); border-top: 1px solid var(--border); padding: var(--sec) var(--gap); }
.preview-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.preview-img-wrap { position: relative; border: 1px solid var(--border); overflow: hidden; }
.preview-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.preview-img-wrap::before { content: '★ FREE PREVIEW'; position: absolute; top: 1rem; left: 1rem; background: var(--herb); color: var(--ivory); font-family: var(--sans); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; padding: 0.3rem 0.8rem; z-index: 1; }
.preview-text p { color: var(--sub); }

/* What's Inside */
.inside-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--green-border); border: 1px solid var(--green-border); margin-top: 3rem; }
.inside-item { background: var(--dark); padding: 2rem; }
.inside-item:hover { background: var(--card); }
.inside-icon { font-size: 1.4rem; color: var(--herb-hi); margin-bottom: 0.8rem; }
.inside-title { font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cream); margin-bottom: 0.6rem; }
.inside-desc { font-size: 0.85rem; color: var(--faint); margin: 0; max-width: none; }

/* Testimonial / quote strip */
.quote-strip { background: var(--warm-dark); padding: clamp(3rem,5vw,4.5rem) var(--gap); text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote-strip blockquote { border: none; padding: 0; margin: 0 auto; max-width: 52ch; font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--sub); }
.quote-strip blockquote footer { font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--faint); margin-top: 1.2rem; font-style: normal; }

/* ── DOWNLOAD PAGE ── */
.download-center { max-width: 540px; margin: 0 auto; text-align: center; padding: var(--sec) var(--gap); }
.dl-icon { font-size: 3rem; display: block; margin-bottom: 1.5rem; }
.dl-box { background: var(--card); border: 1px solid var(--border); padding: 2rem; margin: 2rem 0; border-radius: var(--rad); }

/* ── LOCKED OVERLAY ── */
.locked-section { position: relative; }
.locked-blur { filter: blur(5px); pointer-events: none; user-select: none; opacity: 0.35; }
.locked-gate { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.gate-box { background: var(--card); border: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; max-width: 340px; }
.gate-box p { font-size: 0.88rem; color: var(--sub); margin-bottom: 1.5rem; }

/* ── APPENDIX ── */
.appendix-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.appendix-col h4 { font-family: var(--sans); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.appendix-col ul { list-style: none; }
.appendix-col ul li { padding: 0.35rem 0; font-size: 0.85rem; color: var(--sub); border-bottom: 1px solid rgba(195,158,90,0.08); display: flex; align-items: baseline; gap: 0.4rem; }
.appendix-col ul li::before { content: '—'; color: var(--faint); font-size: 0.65rem; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); border-top: 1px solid var(--border); padding: 4.5rem var(--gap) 2rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand-title { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold); margin-bottom: 0.2rem; }
.footer-brand-sub { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--faint); margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.82rem; color: var(--faint); max-width: 30ch; }
.footer-col-h { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.8rem; color: var(--faint); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 1.4rem; font-family: var(--sans); font-size: 0.66rem; color: var(--faint); letter-spacing: 0.08em; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .recipe-hero-split { grid-template-columns: 1fr; }
  .recipe-info-panel { border-left: none; border-top: 1px solid var(--border); }
  .recipe-body { grid-template-columns: 1fr; gap: 3rem; }
  .about-split { grid-template-columns: 1fr; }
  .about-img { min-height: 320px; }
  .preview-inner { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .toc-grid { grid-template-columns: 1fr; }
  .appendix-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .inside-grid { grid-template-columns: 1fr; }
  .buy-strip { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .buy-perks { flex-direction: column; align-items: center; gap: 0.9rem; }
  .appendix-cols { grid-template-columns: 1fr; }
  .time-row { flex-wrap: wrap; }
  .time-cell { flex: 1 1 calc(50% - 1px); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .chap-nav span.chap-center { display: none; }
}
