/* ─────────────────────────────────────────────────────────────
   femiagboola.com — light editorial theme.
   White ground, ink-navy type, warm gold accents; the ink/gold
   pair (#0f1a2b / #c9a24b) matches the Growth Will Cost You jacket.
   Dark bands (quote sections, footer, one hero slide) keep the
   brand's navy as punctuation.
   ───────────────────────────────────────────────────────────── */

:root {
  --bg:        #ffffff;
  --panel:     #f7f4ec;   /* warm ivory alternate sections */
  --ink:       #0f1a2b;   /* headings, dark bands */
  --ink-soft:  #16233a;
  --text:      #3d4655;   /* body copy */
  --muted:     #6b7383;
  --gold:      #c9a24b;   /* fills, rules, lines */
  --gold-deep: #96762b;   /* gold as TEXT on white (contrast-safe) */
  --gold-pale: #e8c97a;
  --line:      #e7e0cd;   /* hairline borders */
  --cream:     #f5efe0;   /* text on dark bands */
  --cream-dim: #c3bba6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(15, 26, 43, 0.05), 0 2px 8px rgba(15, 26, 43, 0.04);
  --shadow-md: 0 2px 6px rgba(15, 26, 43, 0.06), 0 12px 32px rgba(15, 26, 43, 0.09);
  --shadow-lg: 0 6px 18px rgba(15, 26, 43, 0.10), 0 24px 60px rgba(15, 26, 43, 0.16);
}

::selection { background: rgba(201, 162, 75, 0.35); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-deep); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.12; text-wrap: balance; letter-spacing: 0.005em; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h1 em, h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* ── Reveal: fade only — no movement. Hidden state only when JS is running. ── */
.fade { transition: opacity 1s ease; }
.js .fade { opacity: 0; }
.js .fade.in { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .js .fade { opacity: 1; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0.04em; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.nav-logo .nav-mark { height: 40px; width: auto; display: block; }
.footer-logo { height: 130px; width: auto; margin-bottom: 0.4rem; }
.nav-links { display: flex; gap: 2.3rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.3s;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.active { color: var(--gold-deep); border-bottom-color: var(--gold); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--ink); font-size: 1.6rem; line-height: 1; padding: 0.2rem 0.4rem;
}

/* ── Hero slider ── */
.slider {
  position: relative; overflow: hidden;
  height: clamp(600px, 92vh, 880px);
  border-bottom: 1px solid var(--line);
}
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding-top: 4.2rem;                    /* clear the fixed nav */
  opacity: 0; pointer-events: none;
  transition: opacity 1.1s ease;
}
.slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .slide { transition: none; } }

.slide-bg { position: absolute; inset: 0; z-index: 0; }
.sb-ivory {
  background:
    radial-gradient(ellipse 75% 60% at 78% 38%, rgba(201, 162, 75, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 6% 90%, rgba(201, 162, 75, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #fffdf8 0%, #faf7ef 100%);
}
.sb-lines {
  position: absolute; right: 0; top: 0; height: 100%; width: 46%; opacity: 0.35;
  background: repeating-linear-gradient(90deg, rgba(201, 162, 75, 0.16) 0 1px, transparent 1px 64px);
}
.sb-ink {
  background:
    radial-gradient(ellipse 80% 60% at 70% 45%, rgba(201, 162, 75, 0.1) 0%, transparent 70%),
    linear-gradient(168deg, #14213a 0%, #0f1a2b 55%, #0b1424 100%);
}

.slide-inner { position: relative; z-index: 1; width: 100%; }
.slide-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.slide-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold); flex: 0 0 auto; }
.slide h1, .slide .s-title {
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(2.9rem, 6.6vw, 5.3rem); line-height: 1.04; letter-spacing: 0.002em;
  text-wrap: balance;
}
.slide h1 span, .slide .s-title span { font-style: italic; font-weight: 400; color: var(--gold-deep); }
.slide .s-text {
  margin: 1.6rem 0 2.4rem; max-width: 600px;
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text); line-height: 1.8;
}
.slide .s-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.3vw, 1.6rem); color: var(--gold-deep);
  margin: 1.4rem 0 1.6rem; line-height: 1.45;
}

/* dark slide overrides */
.slide.dark .s-title, .slide.dark h1 { color: #ffffff; }
.slide.dark .s-title span { color: var(--gold-pale); }
.slide.dark .s-text { color: var(--cream-dim); }
.slide.dark .slide-eyebrow { color: var(--gold); }

/* book slide layout */
.slide-book-grid { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: center; }

/* slider controls */
.slider-ctrl {
  position: absolute; left: 0; right: 0; bottom: 2rem; z-index: 5;
  display: flex; justify-content: center; align-items: center; gap: 1.4rem;
}
.s-dots { display: flex; gap: 0.7rem; }
.s-dot {
  width: 9px; height: 9px; border-radius: 999px; cursor: pointer; padding: 0;
  border: 1px solid var(--gold-deep); background: transparent;
  transition: background 0.35s, width 0.35s, border-color 0.35s;
}
.s-dot.active { background: var(--gold); border-color: var(--gold); width: 26px; }
.s-arrow {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.85);
  color: var(--ink); font-size: 1rem; line-height: 1;
  transition: border-color 0.3s, color 0.3s;
}
.s-arrow:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ── Buttons ── */
.btn, .btn-outline {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.95rem 2.1rem; border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn { background: var(--ink); color: #ffffff; border: 1px solid var(--ink); box-shadow: var(--shadow-sm); }
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid #c8bd9c; }
.btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); background: rgba(201, 162, 75, 0.06); }
.slide.dark .btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.slide.dark .btn:hover { background: var(--gold-pale); border-color: var(--gold-pale); }
.slide.dark .btn-outline { color: var(--cream); border-color: rgba(201, 162, 75, 0.55); }
.slide.dark .btn-outline:hover { color: #ffffff; border-color: var(--gold-pale); }
.cta-row { display: flex; gap: 1.1rem; flex-wrap: wrap; }

/* ── Sections ── */
section { padding: 7rem 0; position: relative; }
section.tint {
  background: linear-gradient(180deg, #f9f6ee 0%, var(--panel) 60px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section-head { margin-bottom: 3.2rem; }
.section-head p.lede { max-width: 620px; color: var(--muted); margin-top: 1.1rem; font-size: 1.02rem; }
.gold-rule { width: 64px; height: 2px; background: var(--gold); margin: 1.4rem 0; }

.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.eyebrow::before { content: ''; width: 42px; height: 1px; background: var(--gold); flex: 0 0 auto; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 42px; height: 1px; background: var(--gold); flex: 0 0 auto; }

.text-muted { color: var(--muted); }

/* ── Book jacket (CSS recreation of the real cover — always navy) ── */
.jacket {
  position: relative; aspect-ratio: 2 / 3; width: 100%; max-width: 340px;
  background:
    radial-gradient(ellipse 90% 55% at 50% 12%, rgba(201, 162, 75, 0.10) 0%, transparent 65%),
    linear-gradient(168deg, #13213a 0%, #0f1a2b 45%, #0b1424 100%);
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: 4px;
  box-shadow:
    0 2px 6px rgba(15, 26, 43, 0.2),
    18px 28px 50px rgba(15, 26, 43, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 9% 8% 7%;
}
.jacket::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(rgba(255,255,255,0.10), rgba(0,0,0,0.28));
}
.jacket .j-rule { width: 24%; height: 2px; background: var(--gold); opacity: 0.85; margin-bottom: 9%; }
.jacket .j-title {
  font-family: var(--serif); color: var(--cream); line-height: 1.06;
  letter-spacing: 0.06em; font-weight: 600;
}
.jacket .j-t1, .jacket .j-t2 { display: block; font-size: clamp(1.5rem, 4.2vw, 2.05rem); }
.jacket .j-you {
  position: relative; display: inline-block;
  font-size: clamp(2rem, 6vw, 2.9rem); color: var(--gold-pale); letter-spacing: 0.1em;
}
.jacket .j-sub {
  margin-top: 16%; font-family: var(--serif); font-style: italic;
  font-size: clamp(0.8rem, 2vw, 0.95rem); color: var(--cream-dim); line-height: 1.5;
  max-width: 88%;
}
.jacket .j-author { margin-top: auto; }
.jacket .j-author .j-name {
  font-family: var(--sans); font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: clamp(0.72rem, 1.8vw, 0.85rem); color: var(--cream);
}
.jacket .j-author .j-of {
  margin-top: 0.45rem; font-size: clamp(0.58rem, 1.4vw, 0.66rem);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}

/* ── Book feature band ── */
.book-band { display: grid; grid-template-columns: 340px 1fr; gap: 4.5rem; align-items: center; }
.book-band .tagline {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem); color: var(--gold-deep);
  line-height: 1.4; margin: 1.2rem 0 1.4rem;
}
.book-meta { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1.8rem 0 2.2rem; }
.book-meta div { font-size: 0.86rem; color: var(--muted); }
.book-meta strong { display: block; color: var(--ink); font-weight: 500; letter-spacing: 0.08em; font-size: 0.78rem; text-transform: uppercase; margin-bottom: 0.2rem; }

/* ── Pillars / cards ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 5px; padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.card .num { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.93rem; color: var(--text); }
.card ul { margin-top: 0.9rem; list-style: none; }
.card ul li {
  font-size: 0.88rem; color: var(--text); padding: 0.32rem 0 0.32rem 1.3rem; position: relative;
}
.card ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.55rem; }
.card .card-link { display: inline-block; margin-top: 1.1rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: var(--gold-deep); }
.card .card-link:hover { color: var(--ink); }

/* ── Quote band (stays ink navy) ── */
.quote-band {
  text-align: center; background: var(--ink);
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: '”'; position: absolute; top: -0.28em; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 22rem; line-height: 1;
  color: rgba(201, 162, 75, 0.07); pointer-events: none;
}
.quote-band > .wrap { position: relative; }
.quote-band blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem); color: #ffffff;
  max-width: 820px; margin: 0 auto; line-height: 1.45;
}
.quote-band cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal; font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.quote-band .eyebrow, .quote-band .eyebrow.center { color: var(--gold); }
.quote-band .btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.quote-band .btn:hover { background: var(--gold-pale); border-color: var(--gold-pale); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 4rem; align-items: start; }
.portrait {
  aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 18px 24px 48px rgba(15, 26, 43, 0.14);
  position: sticky; top: 6.5rem;
  background: #ffffff;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait-fallback {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(201, 162, 75, 0.14) 0%, transparent 70%),
    linear-gradient(165deg, #fffdf8, #f3efe3);
}
.portrait-fallback .mono {
  font-family: var(--serif); font-size: 4.6rem; font-weight: 600; color: var(--gold-deep);
  border: 1px solid var(--gold); border-radius: 50%;
  width: 8.4rem; height: 8.4rem; display: flex; align-items: center; justify-content: center;
}
.portrait-fallback .mono-cap { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }
.prose p { margin-bottom: 1.25rem; color: var(--text); font-size: 1rem; }
.prose p strong { color: var(--ink); font-weight: 500; }
.prose p em { color: var(--gold-deep); }
.credentials { margin-top: 2rem; display: grid; gap: 0.85rem; }
.credential { display: flex; gap: 0.85rem; align-items: baseline; font-size: 0.92rem; color: var(--text); }
.credential .ico { color: var(--gold); font-size: 0.8rem; }

/* ── Book page ── */
.book-hero { padding-top: 10rem; }
.jacket-copy p { margin-bottom: 1.3rem; color: var(--text); font-size: 1.04rem; line-height: 1.85; }
.jacket-copy p.closer {
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep);
  font-style: italic; line-height: 1.5;
}
.also-by {
  border: 1px solid var(--line); border-radius: 4px;
  background: #ffffff; padding: 2rem 2.2rem;
  box-shadow: 0 1px 2px rgba(15, 26, 43, 0.04);
  display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap;
}
.also-by .mini-jacket {
  flex: 0 0 74px; aspect-ratio: 2/3; border-radius: 2px;
  background: linear-gradient(165deg, #1b2a44, #0f1a2b);
  border: 1px solid rgba(201, 162, 75, 0.45);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--serif); font-size: 0.62rem; color: var(--cream); line-height: 1.3; padding: 0.4rem;
}

/* ── Store ── */
.store-list { display: grid; gap: 4.5rem; }
.store-item {
  display: grid; grid-template-columns: 300px 1fr; gap: 3.5rem; align-items: start;
  padding-bottom: 4.5rem; border-bottom: 1px solid var(--line);
}
.store-item:last-child { border-bottom: 0; padding-bottom: 0; }
.store-item > div { min-width: 0; }   /* let the details strip scroll instead of widening the grid */
.store-item .jacket { max-width: 280px; }
.store-status {
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.7rem;
}
.store-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.store-subtitle { font-family: var(--serif); font-style: italic; color: var(--muted); margin-top: 0.3rem; }
.cover-img {
  width: 100%; max-width: 280px; border-radius: 4px;
  box-shadow: 0 2px 6px rgba(15, 26, 43, 0.18), 18px 28px 50px rgba(15, 26, 43, 0.28);
  border: 1px solid rgba(15, 26, 43, 0.08);
  transition: box-shadow 0.4s;
}
.cover-img:hover { box-shadow: 0 4px 10px rgba(15, 26, 43, 0.2), 24px 36px 64px rgba(15, 26, 43, 0.34); }
.generic-jacket .j-title { margin-top: 12%; }
.generic-jacket .j-sub { margin-top: 10%; margin-bottom: auto; }

/* ── Articles ── */
.article-list { display: grid; }
.article-row {
  display: grid; grid-template-columns: 150px 1fr; gap: 2rem;
  padding: 2rem 0.5rem; border-bottom: 1px solid var(--line);
  text-decoration: none; transition: background 0.3s;
}
.article-row:hover { background: var(--panel); }
.article-row .article-date { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); padding-top: 0.45rem; }
.article-row h3 { font-size: 1.5rem; }
.article-row p { color: var(--text); font-size: 0.95rem; margin-top: 0.5rem; }
.article-row .card-link { margin-top: 0.7rem; display: inline-block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.article-body h3 { margin: 2rem 0 0.8rem; font-size: 1.5rem; }
.article-body blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold-deep);
  border-left: 2px solid var(--gold); padding: 0.3rem 0 0.3rem 1.4rem; margin: 1.6rem 0;
}
.empty-state {
  text-align: center; background: var(--panel); border: 1px solid var(--line);
  border-radius: 4px; padding: 4rem 2rem;
}

/* ── Nuggets ── */
.nugget-hero { text-align: center; }
.nugget-today {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.7rem, 4vw, 2.8rem); color: var(--ink); line-height: 1.4;
  margin: 1.2rem 0 0;
}
.nugget-source {
  margin-top: 1.6rem; font-size: 0.8rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.nugget-card .nugget-text { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--ink-soft); line-height: 1.55; }
.nugget-card .nugget-cite { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.8rem; }

/* ── Schedule ── */
.sched-list { display: grid; gap: 1rem; }
.sched-row {
  display: grid; grid-template-columns: 74px 1fr; gap: 1.3rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 1.1rem 1.3rem;
}
.sched-date {
  text-align: center; background: var(--ink); color: var(--cream);
  border-radius: 4px; padding: 0.5rem 0.3rem; line-height: 1.25;
}
.sched-date span { display: block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.sched-date strong { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; }

/* ── Email capture band ── */
.sub-band .sub-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--ink); }
.sub-band .sub-text { color: var(--muted); font-size: 0.95rem; margin: 0.6rem 0 1.4rem; }
.sub-band .sub-text em { color: var(--gold-deep); }
.sub-form { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; position: relative; }
.sub-form input[type=email] {
  flex: 1; min-width: 220px; max-width: 360px;
  background: #fff; color: var(--ink); border: 1px solid #d9d2bd; border-radius: 3px;
  font-family: var(--sans); font-weight: 300; font-size: 0.98rem; padding: 0.9rem 1rem; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sub-form input[type=email]:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15); }
.sub-ok { color: #3f7d4e; font-weight: 500; }
.sub-err { color: #8c2f2f; font-size: 0.9rem; margin-bottom: 0.8rem; }

/* ── Share row ── */
.share-row { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.share-btn {
  display: inline-block; cursor: pointer; text-decoration: none;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.6rem 1.2rem; border-radius: 999px;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  transition: border-color 0.3s, color 0.3s;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ── Amazon-style details strip (single row + scroll arrows) ── */
.details-scroller {
  position: relative;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 1.6rem 0 1rem;
}
.details-strip {
  display: flex; flex-wrap: nowrap; gap: 0;
  overflow-x: auto; scroll-behavior: smooth;
  padding: 1.1rem 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.details-strip::-webkit-scrollbar { display: none; }
.detail-cell {
  flex: 0 0 auto; width: 150px; text-align: center; padding: 0 0.8rem;
  display: flex; flex-direction: column; gap: 0.35rem; align-items: center;
  border-right: 1px solid var(--line);
}
.detail-cell:last-child { border-right: 0; }
.ds-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(15, 26, 43, 0.14);
  color: var(--ink); font-size: 1.25rem; line-height: 1; padding: 0 0 3px;
  transition: border-color 0.25s, color 0.25s;
}
.ds-arrow:hover { border-color: var(--gold); color: var(--gold-deep); }
.ds-prev { left: -14px; }
.ds-next { right: -14px; }
.details-scroller:not(.has-prev) .ds-prev { display: none; }
.details-scroller:not(.has-next) .ds-next { display: none; }
.details-scroller.has-next::after, .details-scroller.has-prev::before {
  content: ''; position: absolute; top: 1px; bottom: 1px; width: 42px; z-index: 1; pointer-events: none;
}
.details-scroller.has-next::after { right: 0; background: linear-gradient(90deg, transparent, #fff 82%); }
.details-scroller.has-prev::before { left: 0; background: linear-gradient(270deg, transparent, #fff 82%); }
.detail-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.detail-icon { line-height: 0; color: var(--ink-soft); }
.detail-icon svg { width: 26px; height: 26px; }
.detail-value { font-size: 0.85rem; font-weight: 500; color: var(--ink); line-height: 1.35; }

/* ── Press ── */
.copy-link {
  border: 0; background: none; cursor: pointer; padding: 0;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep); text-decoration: underline;
}
.copy-link:hover { color: var(--ink); }

/* ── Teachings ── */
.teaching-card { display: block; text-decoration: none; padding: 1.2rem; }
.teaching-thumb {
  position: relative; aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden;
  background: linear-gradient(165deg, #16233a, #0f1a2b);
}
.teaching-thumb img { width: 100%; height: 100%; object-fit: cover; }
.teaching-thumb-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.teaching-thumb-fallback span {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold);
  color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.teaching-kind {
  position: absolute; left: 0.6rem; bottom: 0.6rem;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(15, 26, 43, 0.85); color: var(--gold-pale);
  padding: 0.25rem 0.6rem; border-radius: 999px;
}
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden;
  background: var(--ink); box-shadow: 0 18px 50px rgba(15, 26, 43, 0.22);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── 30-Day Challenge ── */
.ch-days { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.ch-day {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 5px;
  padding: 1.1rem 1.2rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.ch-day-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.ch-day-num { font-family: var(--serif); font-weight: 600; color: var(--gold-deep); letter-spacing: 0.06em; }
.ch-check {
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: none;
  border: 1.5px solid var(--line); background: #fff; color: transparent;
  font-size: 0.9rem; line-height: 1; transition: all 0.25s;
}
.ch-day.joined .ch-check { display: block; }
.ch-check:hover { border-color: var(--gold); }
.ch-day.done { border-color: var(--gold); background: rgba(201, 162, 75, 0.06); }
.ch-day.done .ch-check { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.ch-day.current { border-color: var(--gold); box-shadow: 0 8px 26px rgba(201, 162, 75, 0.22); }
.ch-day-text { font-size: 0.88rem; line-height: 1.6; color: var(--text); }
.ch-lock {
  display: none; position: absolute; inset: 0; border-radius: 5px;
  background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(2px);
  align-items: center; justify-content: center;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.ch-day.locked .ch-lock { display: flex; }

.nav-search { font-size: 1.15rem !important; line-height: 1; }

/* ── Testimony wall / endorsements ── */
.testimony-card { position: relative; }
.testimony-mark {
  font-family: var(--serif); font-size: 3rem; line-height: 0.6;
  color: var(--gold); opacity: 0.55; margin-bottom: 0.6rem;
}

/* ── Scriptures by season ── */
.season-picker { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.season-btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--serif); font-size: 0.98rem; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.55rem 1.2rem; transition: all 0.25s;
}
.season-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.season-btn.on { background: var(--ink); border-color: var(--ink); color: var(--gold-pale); }
.season-verse {
  border-left: 2px solid var(--gold); padding: 0.4rem 0 0.4rem 1.4rem; margin: 1.4rem 0;
}
.season-verse p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.7; color: var(--ink-soft); }
.season-verse cite { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.85rem; color: var(--gold-deep); }

/* ── Study guide ── */
.study-qs { margin: 0.8rem 0 0 1.2rem; }
.study-qs li { font-size: 0.95rem; line-height: 1.7; color: var(--text); padding: 0.35rem 0; }

/* ── Launch countdown ── */
.cd-row { display: flex; gap: 0.9rem; }
.cd-cell {
  min-width: 66px; text-align: center; background: var(--ink); border-radius: 5px;
  padding: 0.7rem 0.5rem 0.55rem; border-bottom: 2px solid var(--gold);
}
.cd-cell strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: #fff; line-height: 1.1; }
.cd-cell span { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-pale); }

/* ── Print (study guide leader's kit) ── */
@media print {
  nav, footer, .sub-band, .quote-band, .cta-row, .slider, .share-row { display: none !important; }
  body { background: #fff; color: #000; }
  .card { border: 1px solid #999; box-shadow: none; break-inside: avoid; }
}

@media (max-width: 1160px) and (min-width: 761px) {
  .nav-links { gap: 1.3rem; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.1em; }
}

/* ── Live pill ── */
.live-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); text-decoration: none;
  border: 1px solid var(--gold); border-radius: 999px; padding: 0.35rem 0.9rem;
  background: rgba(201, 162, 75, 0.08);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #c0392b; animation: livepulse 1.6s ease infinite; }
@keyframes livepulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── Count the Cost quiz ── */
.quiz-progress { height: 3px; background: var(--line); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; width: 0; background: var(--gold); transition: width 0.5s ease; }
.quiz-question { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0.8rem 0 1.8rem; line-height: 1.35; }
.quiz-options { display: grid; gap: 0.8rem; }
.quiz-opt {
  text-align: left; cursor: pointer; font-family: var(--sans); font-weight: 300;
  font-size: 0.98rem; line-height: 1.5; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 1rem 1.2rem; transition: border-color 0.25s, background 0.25s;
}
.quiz-opt:hover { border-color: var(--gold); background: rgba(201, 162, 75, 0.06); }

/* ── Reader ── */
.read-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: transparent; }
.read-progress div { height: 100%; width: 0; background: var(--gold); transition: width 0.1s linear; }
.reader-body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.09rem; line-height: 1.9; color: #232c3d;
  text-align: justify; hyphens: auto; -webkit-hyphens: auto;
  text-rendering: optimizeLegibility;
}
.reader-body p { margin-bottom: 1.4rem; }
.reader-body em { font-style: italic; }
.reader-body blockquote {
  font-style: italic; color: var(--gold-deep); text-align: left;
  border-left: 2px solid var(--gold); padding: 0.2rem 0 0.2rem 1.4rem; margin: 1.6rem 0;
}
.reader-body h3 {
  font-size: 1.55rem; margin: 2.6rem 0 1.1rem; text-align: center;
}
.reader-body h3::before { content: '❦'; display: block; color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }
.reader-body > p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.4em; line-height: 0.8;
  float: left; padding: 0.08em 0.12em 0 0; color: var(--gold-deep);
}
.reader-fade {
  height: 130px; margin-top: -150px; position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--bg) 85%);
}
.reader-gate {
  background: var(--panel); border: 1px solid var(--line); border-radius: 6px;
  padding: 3rem 2rem; margin-top: 0.5rem;
}

/* ── Premium audio player ── */
.player {
  max-width: 520px;
  background:
    radial-gradient(ellipse 90% 70% at 85% -10%, rgba(201, 162, 75, 0.14) 0%, transparent 60%),
    linear-gradient(160deg, #16233a 0%, #0f1a2b 55%, #0b1424 100%);
  border: 1px solid rgba(201, 162, 75, 0.4);
  border-radius: 10px;
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.player-head { display: flex; gap: 1rem; align-items: center; }
.player-cover {
  flex: 0 0 52px; height: 78px; border-radius: 3px; position: relative;
  background: linear-gradient(165deg, #1b2a44, #0f1a2b);
  border: 1px solid rgba(201, 162, 75, 0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.4);
}
.player-cover .pc-rule { width: 14px; height: 1px; background: var(--gold); }
.player-cover .pc-t {
  font-family: var(--serif); font-weight: 600; font-size: 6px; letter-spacing: 0.08em;
  color: var(--cream); text-align: center; line-height: 1.4;
}
.player-cover .pc-you { font-family: var(--serif); font-weight: 600; font-size: 10px; letter-spacing: 0.12em; color: var(--gold-pale); }
.player-cover-note { font-size: 1.3rem; color: var(--gold); justify-content: center; }
.player-meta { flex: 1; min-width: 0; display: grid; gap: 0.15rem; }
.player-label {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem;
}
.player-title {
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0.02em;
}
.player-sub { font-size: 0.76rem; color: var(--cream-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-speed {
  flex: 0 0 auto; cursor: pointer;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--gold-pale); background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.45); border-radius: 999px;
  padding: 0.3rem 0.8rem; transition: all 0.25s;
}
.player-speed:hover { background: rgba(201, 162, 75, 0.25); color: #fff; }

/* equalizer — animates only while playing */
.player-eq { display: inline-flex; gap: 2px; align-items: flex-end; height: 10px; opacity: 0; transition: opacity 0.4s; }
.player.playing .player-eq { opacity: 1; }
.player-eq i { width: 2.5px; background: var(--gold); border-radius: 1px; height: 30%; }
.player.playing .player-eq i { animation: eq 0.9s ease-in-out infinite; }
.player.playing .player-eq i:nth-child(2) { animation-delay: 0.25s; }
.player.playing .player-eq i:nth-child(3) { animation-delay: 0.5s; }
@keyframes eq { 0%, 100% { height: 30%; } 50% { height: 100%; } }
@media (prefers-reduced-motion: reduce) { .player.playing .player-eq i { animation: none; height: 70%; } }

.player-wave {
  display: flex; align-items: center; gap: 2.5px; height: 44px;
  margin: 1.2rem 0 0.9rem; cursor: pointer; touch-action: none;
  border-radius: 4px;
}
.player-wave span {
  flex: 1; min-width: 2px; border-radius: 2px;
  background: rgba(245, 239, 224, 0.16);
  transition: background 0.2s;
}
.player-wave span.played { background: var(--gold); }
.player-wave:hover span:not(.played) { background: rgba(245, 239, 224, 0.28); }

.player-controls { display: flex; align-items: center; justify-content: space-between; }
.player-time { font-size: 0.74rem; color: var(--cream-dim); letter-spacing: 0.08em; font-variant-numeric: tabular-nums; min-width: 92px; }
.player-buttons { display: flex; align-items: center; gap: 1.1rem; }
.player-skip {
  display: inline-flex; align-items: center; gap: 0.25rem; cursor: pointer;
  border: 0; background: none; color: var(--cream-dim);
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.05em;
  transition: color 0.25s;
}
.player-skip svg { width: 20px; height: 20px; }
.player-skip:hover { color: var(--gold-pale); }
.player-play {
  width: 58px; height: 58px; border-radius: 50%; cursor: pointer;
  background: var(--gold); border: 1px solid var(--gold);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: background 0.3s, box-shadow 0.3s;
}
.player-play:hover { background: var(--gold-pale); box-shadow: 0 6px 20px rgba(201, 162, 75, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.player-play svg { width: 26px; height: 26px; }
.player-play .pp-pause { display: none; }
.player.playing .pp-play { display: none; }
.player.playing .pp-pause { display: block; }
.player-brand {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(195, 187, 166, 0.5); min-width: 92px; text-align: right;
}
@media (max-width: 480px) {
  .player { padding: 1.1rem 1rem 1rem; }
  .player-brand { display: none; }
  .player-time { min-width: 0; }
}

/* ── Journey timeline ── */
.timeline { position: relative; padding-left: 2.2rem; margin-top: 1rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--gold), rgba(201, 162, 75, 0.25));
}
.tl-item { position: relative; padding: 0 0 2.6rem 0.6rem; }
.tl-item:last-child { padding-bottom: 0.4rem; }
.tl-marker {
  position: absolute; left: -2.2rem; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--gold);
}
.tl-label { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.35rem; }
.tl-item h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.tl-item p { color: var(--text); font-size: 0.96rem; max-width: 620px; }

/* ── Ask Femi widget ── */
.ask-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%; cursor: pointer;
  background: var(--ink); color: var(--gold); font-size: 1.5rem; line-height: 1;
  border: 1px solid var(--gold); box-shadow: 0 10px 30px rgba(15, 26, 43, 0.35);
  transition: background 0.3s;
}
.ask-fab:hover { background: var(--ink-soft); }
.ask-panel {
  position: fixed; right: 1.4rem; bottom: 5.6rem; z-index: 300;
  width: min(360px, calc(100vw - 2.8rem)); max-height: 70vh;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 26, 43, 0.25);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.ask-panel.open { opacity: 1; visibility: visible; }
.ask-head {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ink); color: var(--cream); border-radius: 8px 8px 0 0;
  padding: 0.8rem 1.1rem; font-size: 0.85rem; letter-spacing: 0.06em;
}
.ask-head em { color: var(--gold-pale); }
.ask-close { border: 0; background: none; color: var(--cream-dim); font-size: 1.3rem; cursor: pointer; line-height: 1; }
.ask-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.7rem; min-height: 140px; max-height: 46vh; }
.ask-msg { font-size: 0.9rem; line-height: 1.55; padding: 0.6rem 0.9rem; border-radius: 8px; max-width: 88%; }
.ask-msg.bot { background: var(--panel); color: var(--text); align-self: flex-start; border: 1px solid var(--line); }
.ask-msg.me { background: var(--ink); color: var(--cream); align-self: flex-end; }
.ask-form { display: flex; gap: 0.5rem; padding: 0.8rem; border-top: 1px solid var(--line); }
.ask-form input {
  flex: 1; border: 1px solid #d9d2bd; border-radius: 4px; padding: 0.6rem 0.8rem;
  font-family: var(--sans); font-weight: 300; font-size: 0.9rem; color: var(--ink); outline: none;
}
.ask-form input:focus { border-color: var(--gold); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
form .field { margin-bottom: 1.3rem; }
form label { display: block; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.5rem; }
form input, form select, form textarea {
  width: 100%; background: #ffffff; color: var(--ink);
  border: 1px solid #d9d2bd; border-radius: 3px;
  font-family: var(--sans); font-weight: 300; font-size: 0.98rem;
  padding: 0.85rem 1rem; transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
form input:focus, form select:focus, form textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}
form textarea { min-height: 160px; resize: vertical; }
.notice {
  border: 1px solid var(--gold); border-radius: 3px;
  background: rgba(201, 162, 75, 0.1); color: #6d5620;
  padding: 1rem 1.3rem; margin-bottom: 1.6rem; font-size: 0.95rem;
}
.contact-direct { display: grid; gap: 1.5rem; }
.contact-direct .item strong { display: block; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.3rem; font-weight: 500; }
.contact-direct .item a { color: var(--ink); text-decoration: none; font-size: 1.05rem; }
.contact-direct .item a:hover { color: var(--gold-deep); }

/* ── Footer (stays ink navy) ── */
footer {
  border-top: 2px solid var(--gold);
  padding: 4rem 0 2.5rem; background: var(--ink);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  align-items: flex-start;
}
.footer-name { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }
.footer-tag { font-size: 0.87rem; color: var(--cream-dim); margin-top: 0.7rem; max-width: 300px; line-height: 1.75; }
.footer-col h4 {
  font-family: var(--sans); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--cream-dim); text-decoration: none; font-size: 0.88rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-pale); }
.footer-fine {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(201, 162, 75, 0.18);
  font-size: 0.78rem; color: rgba(195, 187, 166, 0.6);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-fine a { color: rgba(195, 187, 166, 0.75); text-decoration: none; }
.footer-fine a:hover { color: var(--gold-pale); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .book-band, .about-grid, .contact-grid, .slide-book-grid, .store-item { grid-template-columns: 1fr; gap: 2.8rem; }
  .store-item .jacket { margin: 0 auto; }
  .article-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.6rem 0.3rem; }
  .book-band .jacket { margin: 0 auto; }
  .slide-book-grid { gap: 1.8rem; }
  .slide-book-grid .jacket { max-width: 190px; margin: 0 auto; }
  .slide-book-grid > div:last-child { text-align: center; }
  .slide-book-grid .slide-eyebrow, .slide-book-grid .cta-row { justify-content: center; }
  .portrait { position: static; max-width: 320px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  nav { padding: 1rem 1.3rem; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 0.6rem 0 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .wrap { padding: 0 1.3rem; }
  section { padding: 4.5rem 0; }
  .slider { height: clamp(560px, 88vh, 780px); }
  .slide .s-quote { display: none; }
  .slide .s-text { font-size: 0.95rem; margin: 1.2rem 0 1.8rem; }
  .slide-book-grid .jacket { max-width: 165px; }
  .slider-ctrl { bottom: 1.1rem; }
  .s-arrow { display: none; }
}
