/* ============================================================
   Bible Book Club — modern, calm, searchable.
   Palette + type pulled directly from the live brand site:
   forest greens, warm cream, mint + peach accents.
   Montserrat (UI/body) · Georgia (display headings).
   ============================================================ */

:root {
  /* greens (from the brand's Elementor kit) */
  --green:        #425d44;   /* primary */
  --green-accent: #4e6551;
  --green-mid:    #618564;
  --green-soft:   #78967a;
  --green-deep:   #2b332d;   /* near-black green — dark sections */
  --green-ink:    #303e31;   /* logo green */
  --green-darker: #1f271f;

  /* light accents */
  --mint:         #dbefdc;
  --mint-bright:  #c5e6bf;
  --peach:        #ffbc7d;

  /* surfaces */
  --cream:    #f5f0ec;
  --cream-2:  #ece4da;
  --paper:    #ffffff;

  /* ink */
  --ink:       #1f1f1f;
  --ink-soft:  #4a554b;
  --ink-faint: #7a847b;

  --ring: rgba(66, 93, 68, 0.30);
  --shadow-sm: 0 1px 2px rgba(31, 39, 31, 0.06), 0 2px 8px rgba(31, 39, 31, 0.05);
  --shadow-md: 0 10px 28px rgba(31, 39, 31, 0.12);
  --shadow-lg: 0 22px 60px rgba(31, 39, 31, 0.20);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --wrap: 1140px;
  --header-h: 70px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: var(--player-pad, 0px);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.005em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem;
  font-weight: 700; color: var(--green-mid); margin-bottom: 14px;
}
.eyebrow-light { color: var(--mint-bright); }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 200;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--green); border-color: rgba(66, 93, 68, 0.35); }
.btn-ghost:hover { border-color: var(--green); background: rgba(66, 93, 68, 0.07); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: #fff; color: var(--green-deep); border-color: #fff; transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(245, 240, 236, 0.72);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: rgba(66, 93, 68, 0.16); background: rgba(245, 240, 236, 0.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-serif); font-weight: 700; font-size: 1.16rem; color: var(--green-deep); }
.brand-logo { width: 38px; height: 38px; object-fit: contain; }
.brand-text { letter-spacing: -0.01em; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a { padding: 8px 12px; border-radius: var(--r-pill); font-weight: 600; color: var(--ink-soft); font-size: 0.88rem; transition: color 0.2s var(--ease), background 0.2s var(--ease); }
.site-nav a:hover { color: var(--green-deep); background: rgba(66, 93, 68, 0.08); }
.site-nav a.is-active { color: var(--green-deep); background: var(--mint); }

.header-ctas { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  color: var(--green-deep); border: 1.5px solid rgba(66, 93, 68, 0.18); background: var(--paper);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.icon-btn:hover { background: var(--mint); border-color: var(--green-mid); transform: translateY(-1px); }
.icon-btn svg { width: 18px; height: 18px; }

.nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.86rem;
  border: 1.5px solid transparent; transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-btn svg { width: 14px; height: 14px; }
.nav-btn-ghost { background: var(--paper); color: var(--green-deep); border-color: rgba(66, 93, 68, 0.22); }
.nav-btn-ghost:hover { border-color: var(--green-mid); background: var(--mint); }
.nav-btn-primary { background: var(--green); color: #fff; }
.nav-btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }

.subscribe-wrap { position: relative; }
.subscribe-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 270px;
  background: var(--paper); border-radius: var(--r-md); border: 1px solid rgba(66, 93, 68, 0.14);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 110;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-6px) scale(0.98); transform-origin: top right;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  pointer-events: none;
}
.subscribe-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.subscribe-menu[hidden] { display: none; }
.subscribe-menu a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--r-sm);
  color: var(--ink); font-weight: 500; font-size: 0.92rem;
  transition: background 0.15s var(--ease);
}
.subscribe-menu a:hover { background: var(--mint); }
.sm-ico { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 7px; flex: none; overflow: hidden; }
.sm-ico svg { width: 32px; height: 32px; display: block; }
.subscribe-menu a span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.subscribe-menu a strong { font-weight: 700; color: var(--green-deep); font-size: 0.93rem; }
.subscribe-menu a em { font-style: normal; font-size: 0.76rem; color: var(--ink-faint); margin-top: 2px; }

.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 50%; padding: 0; place-items: center; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--green-deep); border-radius: 2px; margin: 4px 0; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero (full-bleed photograph) ───────────────────────── */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 88vh, 840px);
  display: grid; align-items: center;
  padding: clamp(80px, 12vh, 140px) 0 clamp(96px, 14vh, 160px);
  text-align: center; color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 39, 31, 0.50) 0%, rgba(31, 39, 31, 0.30) 38%, rgba(43, 51, 45, 0.88) 100%),
    radial-gradient(120% 95% at 50% 32%, rgba(66, 93, 68, 0.18), rgba(31, 39, 31, 0.55) 100%);
}

.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; max-width: 760px; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.76rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.82); margin-bottom: 26px;
}
.hero-wordmark { margin: 0; line-height: 0; }
.hero-wordmark img {
  width: clamp(248px, 38vw, 440px); height: auto; margin: 0 auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
}
.hero-lede {
  margin-top: 28px; font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: rgba(255, 255, 255, 0.92); max-width: 46ch; line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; justify-content: center; }

.hero-stats {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 0; margin-top: 48px; padding: 0;
}
.hero-stats li { display: flex; flex-direction: column; padding: 0 clamp(18px, 3.2vw, 36px); }
.hero-stats li + li { border-left: 1px solid rgba(255, 255, 255, 0.22); }
.hero-stats .num { font-family: var(--font-serif); font-size: clamp(1.7rem, 2.6vw, 2.1rem); font-weight: 700; color: #fff; line-height: 1; }
.hero-stats .lbl { font-size: 0.72rem; color: rgba(255, 255, 255, 0.72); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 8px; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  color: #fff; background: rgba(255, 255, 255, 0.10); border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px); animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll:hover { background: rgba(255, 255, 255, 0.2); }
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ── Page hero (subpage banners) ────────────────────────── */
.page-hero { padding: clamp(56px, 9vw, 120px) 0 clamp(36px, 5vw, 60px); background: var(--cream); border-bottom: 1px solid rgba(66, 93, 68, 0.08); }
.page-hero .eyebrow { color: var(--green-mid); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--green-deep); max-width: 18ch; margin-bottom: 18px; }
.page-hero-sub { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.55; }
.page-hero-dark { background: var(--green-deep); border-bottom-color: transparent; }
.page-hero-dark .eyebrow { color: var(--mint-bright); }
.page-hero-dark h1 { color: #fff; }
.page-hero-dark .page-hero-sub { color: rgba(255, 255, 255, 0.78); }

/* Photo hero — full-bleed cinematic book image with dark gradient scrim for legibility */
.page-hero-photo {
  position: relative; isolation: isolate;
  background-size: cover; background-position: center;
  background-color: var(--green-deep);
  border-bottom-color: transparent;
  padding-top: clamp(120px, 18vw, 220px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.page-hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(31, 39, 31, 0.55) 0%, rgba(31, 39, 31, 0.30) 40%, rgba(31, 39, 31, 0.78) 100%),
    radial-gradient(120% 95% at 50% 32%, rgba(66, 93, 68, 0.15), rgba(31, 39, 31, 0.45) 100%);
}
.page-hero-photo .eyebrow { color: var(--mint-bright); }
.page-hero-photo h1 { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4); }
.page-hero-photo .page-hero-sub { color: rgba(255, 255, 255, 0.88); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4); }
.page-hero-photo .eyebrow a { color: inherit; }

/* CTA chunk under a teaser section */
.section-cta { margin-top: 36px; text-align: center; }

/* Home page: latest preview, books teaser, show-notes teaser */
.latest { padding: clamp(56px, 8vw, 96px) 0; }
.books-teaser { padding: clamp(56px, 8vw, 100px) 0; background: var(--green-deep); color: #fff; }
.books-teaser .section-head h2 { color: #fff; }
.books-teaser .section-sub { color: rgba(255, 255, 255, 0.72); }
.shownotes-teaser { padding: clamp(56px, 8vw, 96px) 0; background: var(--cream-2); }
.sn-grid-teaser { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.sn-grid-teaser .sn-meta { padding-bottom: 20px; }

/* Home page: about teaser */
.about-teaser { padding: clamp(56px, 8vw, 100px) 0; background: var(--cream); }
.about-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.about-teaser h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--green-deep); margin: 10px 0 16px; }
.about-teaser p { color: var(--ink-soft); font-size: 1.05rem; max-width: 48ch; margin-bottom: 24px; }
.about-teaser-photos { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.about-teaser-photos img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.about-teaser-photos img:nth-child(2) { transform: translateY(-18px); }
@media (max-width: 760px) {
  .about-teaser-inner { grid-template-columns: 1fr; }
  .about-teaser-photos img:nth-child(2) { transform: none; }
}

/* ── Episode detail page ────────────────────────────────── */
.episode-hero h1 { max-width: 26ch; margin-bottom: 6px; }
.episode-hero .eyebrow a { color: inherit; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; text-decoration-color: rgba(66, 93, 68, 0.3); }
.episode-hero .eyebrow a:hover { text-decoration-color: var(--green); }
.ep-scripture {
  font-family: var(--font-serif); font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft); font-weight: 400; font-style: italic;
  margin-top: 4px; margin-bottom: 14px;
}
.page-hero-photo .ep-scripture { color: rgba(255, 255, 255, 0.75); text-shadow: 0 1px 10px rgba(0,0,0,0.4); }

/* Summary lead on episode page — bigger and lifted to the top per AEO */
.ed-summary-lead {
  font-size: 1.18rem; line-height: 1.55; color: var(--ink);
  padding: 22px 26px; border-radius: var(--r-md);
  background: var(--mint); border-left: 4px solid var(--green);
  font-style: normal; margin-bottom: 28px;
}

/* Jump-to-show-notes link below the player */
.ed-jump { text-align: center; margin: 18px 0 10px; }
.ed-jump a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.92rem; font-weight: 600; color: var(--green);
  padding: 8px 18px; border-radius: var(--r-pill);
  background: rgba(66, 93, 68, 0.06); border: 1px solid rgba(66, 93, 68, 0.18);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.ed-jump a:hover { background: var(--mint); transform: translateY(-1px); }

/* H2 buffer fix in episode notes content (client request) */
.ed-notes-body h2, .ed-notes-body h3 { margin-top: 32px; margin-bottom: 12px; color: var(--green-deep); font-family: var(--font-serif); }
.ed-notes-body h2:first-child, .ed-notes-body h3:first-child { margin-top: 0; }
/* Inline links inside notes should match body size (client request) */
.ed-notes-body a { font-size: inherit; }

.episode-detail { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 100px); }
.ed-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 880px) { .ed-wrap { grid-template-columns: 1fr; } }

.ed-player {
  background: var(--green-deep); color: #fff; border-radius: var(--r-md); padding: 18px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm);
}
.ed-player audio { width: 100%; border-radius: var(--r-pill); }
.ed-listen { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; font-size: 0.84rem; color: rgba(255, 255, 255, 0.72); }
.ed-listen a { color: var(--mint-bright); font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.06); transition: background 0.2s var(--ease); }
.ed-listen a:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.ed-summary { margin-top: 28px; font-size: 1.12rem; line-height: 1.6; color: var(--ink-soft); font-style: italic; padding-left: 18px; border-left: 3px solid var(--mint-bright); }

.ed-notes { margin-top: 36px; }
.ed-notes h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--green-deep); margin-bottom: 16px; }
.ed-notes-body { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.ed-notes-body p { margin-bottom: 14px; }
.ed-notes-body ul, .ed-notes-body ol { margin: 0 0 16px 22px; }
.ed-notes-body li { margin-bottom: 6px; }
.ed-notes-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.ed-notes-body a:hover { color: var(--green-deep); }

.ed-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(66, 93, 68, 0.14); }
.ed-nav a, .ed-nav-empty { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: var(--r-md); background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); transition: transform 0.25s var(--ease), border-color 0.25s var(--ease); min-height: 80px; }
.ed-nav a:hover { transform: translateY(-2px); border-color: var(--green-mid); }
.ed-nav-next { text-align: right; align-items: flex-end; }
.ed-nav span { font-size: 0.78rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.ed-nav strong { color: var(--green-deep); font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem; line-height: 1.3; }
.ed-nav-empty { background: transparent; border: none; }
@media (max-width: 600px) { .ed-nav { grid-template-columns: 1fr; } .ed-nav-next { text-align: left; align-items: flex-start; } }

.ed-side { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 8px; padding: 22px; background: var(--cream-2); border-radius: var(--r-md); }
.ed-side-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--green-mid); margin-bottom: 4px; }
.ed-side-link { padding: 8px 0; font-size: 0.92rem; font-weight: 600; color: var(--green-deep); border-bottom: 1px solid rgba(66, 93, 68, 0.1); transition: color 0.2s var(--ease); }
.ed-side-link:last-of-type { border-bottom: none; }
.ed-side-link:hover { color: var(--green); }

/* ── Book detail page ───────────────────────────────────── */
.book-page { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 100px); }
.bp-heading { font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--green-deep); margin-bottom: 22px; }
.bp-eps { list-style: none; padding: 0; margin: 0; background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.bp-ep { border-bottom: 1px solid rgba(66, 93, 68, 0.08); }
.bp-ep:last-child { border-bottom: none; }
.bp-ep a { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; padding: 16px 22px; align-items: center; transition: background 0.2s var(--ease); }
.bp-ep a:hover { background: var(--cream); }
.bp-ep-num { font-size: 0.78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; }
.bp-ep-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bp-ep-title { font-family: var(--font-serif); color: var(--green-deep); font-weight: 700; font-size: 1.08rem; line-height: 1.25; }
.bp-ep-scripture { color: var(--ink-faint); font-size: 0.84rem; font-style: italic; }
.bp-ep-meta { color: var(--ink-faint); font-size: 0.82rem; text-align: right; white-space: nowrap; }
@media (max-width: 600px) {
  .bp-ep a { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .bp-ep-meta { text-align: left; }
}

/* Inline scripture sub-line below episode title in the list */
.ep-scripture-line { font-family: var(--font-serif); font-style: italic; color: var(--ink-faint); font-size: 0.92rem; margin-top: 2px; margin-bottom: 4px; }
.bp-notes { margin-top: 56px; }
.bp-notes h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--green-deep); margin-bottom: 22px; }

/* ── Note detail page ───────────────────────────────────── */
.note-detail { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 100px); }
.nd-wrap { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .nd-wrap { grid-template-columns: 1fr; } }
.nd-figure { margin: 0; background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.nd-figure a { display: block; }
.nd-figure img { width: 100%; height: auto; display: block; }
.nd-figure figcaption { padding: 18px; text-align: center; border-top: 1px solid rgba(66, 93, 68, 0.1); display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Print: just the note image, hide everything else (client requested print + download) */
@media print {
  .site-header, .site-footer, .ed-side, .ed-nav, .player, .nd-body, .donate, .testimonials, .menu-toggle, .header-ctas, .page-hero-sub, .eyebrow { display: none !important; }
  body { background: #fff; color: #000; }
  .page-hero { padding: 0; background: #fff !important; border: none !important; }
  .page-hero::before { display: none !important; }
  .nd-wrap { display: block !important; }
  .nd-figure { border: none !important; box-shadow: none !important; }
  .nd-figure figcaption { display: none !important; }
}
.nd-body h2 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); color: var(--green-deep); margin-bottom: 14px; }
.nd-body h3 { font-size: 1.05rem; color: var(--green-deep); margin: 24px 0 8px; }
.nd-body p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }
.nd-body a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ── FAQ page ───────────────────────────────────────────── */
.faq { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 100px); }
.faq-wrap { max-width: 760px; }
.faq-item { background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); border-radius: var(--r-md); margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-family: var(--font-serif); font-size: 1.12rem; font-weight: 700; color: var(--green-deep); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex: none; width: 11px; height: 11px; border-right: 2.5px solid var(--green-mid); border-bottom: 2.5px solid var(--green-mid); transform: rotate(45deg); transition: transform 0.25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item p { padding: 0 22px 22px; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.faq-item p a { color: var(--green); text-decoration: underline; }
.faq-cta { text-align: center; margin-top: 36px; color: var(--ink-soft); font-size: 1.02rem; }
.faq-cta a { color: var(--green); font-weight: 700; }

/* ── Subscribe page ─────────────────────────────────────── */
.subscribe { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 100px); }
.sub-wrap { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 80px); }

.sub-email {
  background: var(--green-deep); color: #fff; border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 48px); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.sub-email::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; background: radial-gradient(closest-side, var(--mint-bright), transparent);
  opacity: 0.18; pointer-events: none;
}
.sub-email-inner { max-width: 640px; position: relative; }
.sub-email h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.8vw, 2.1rem); color: #fff; margin-bottom: 14px; }
.sub-email p { color: rgba(255, 255, 255, 0.82); font-size: 1.02rem; margin-bottom: 22px; line-height: 1.55; }
.sub-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 480px; }
.sub-form input {
  flex: 1 1 240px; min-width: 0;
  padding: 14px 18px; border-radius: var(--r-pill); border: none;
  background: #fff; color: var(--ink); font-size: 1rem; font-family: inherit;
}
.sub-form input:focus { outline: 3px solid var(--mint-bright); outline-offset: 2px; }
.sub-form button { padding: 13px 26px; background: var(--mint-bright); color: var(--green-deep); }
.sub-form button:hover { background: #fff; color: var(--green-deep); }
.sub-note { font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); margin-top: 14px; margin-bottom: 0; }

.sub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.sub-card {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 18px; align-items: center;
  background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); border-radius: var(--r-md);
  padding: 18px 22px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.sub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-mid); }
.sub-card-ico { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px; overflow: hidden; }
.sub-card-ico svg { width: 48px; height: 48px; display: block; }
.sub-card h3 { font-family: var(--font-serif); font-size: 1.12rem; color: var(--green-deep); margin-bottom: 4px; }
.sub-card p { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.4; }
.sub-card-arrow { color: var(--green-mid); font-size: 1.3rem; transition: transform 0.25s var(--ease), color 0.25s var(--ease); }
.sub-card:hover .sub-card-arrow { transform: translateX(4px); color: var(--green); }

/* ── Contact page ───────────────────────────────────────── */
.contact { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 100px); }
.contact-wrap { display: flex; flex-direction: column; gap: clamp(36px, 6vw, 64px); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.contact-card { background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); border-radius: var(--r-md); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--green-mid); margin-bottom: 10px; }
.contact-big { display: block; font-family: var(--font-serif); font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--green-deep); font-weight: 700; margin-bottom: 8px; word-break: break-all; }
.contact-big:hover { color: var(--green); }
.contact-meta { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; margin-bottom: 14px; }
.contact-social { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-social a { padding: 6px 12px; border-radius: var(--r-pill); background: var(--mint); color: var(--green-deep); font-size: 0.85rem; font-weight: 600; }
.contact-social a:hover { background: var(--green); color: #fff; }

.contact-form { background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); border-radius: var(--r-md); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-sm); }
.contact-form h2 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); color: var(--green-deep); margin-bottom: 8px; }
.contact-form-note { color: var(--ink-faint); font-size: 0.86rem; margin-bottom: 22px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 14px; }
.contact-form input, .contact-form textarea {
  padding: 11px 14px; border-radius: var(--r-sm); border: 1.5px solid rgba(66, 93, 68, 0.2);
  background: var(--cream); font-size: 0.96rem; color: var(--ink); font-family: inherit;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .cf-row { grid-template-columns: 1fr; } }

/* episode list: badge-book becomes a link */
a.badge-book { transition: background 0.2s var(--ease); }
a.badge-book:hover { background: var(--mint-bright); }
.ep-link-quiet { color: var(--ink-faint); }
.ep-link-quiet:hover { color: var(--green); }

/* ── Section heads ──────────────────────────────────────── */
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); color: var(--green-deep); }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.06rem; }

/* ── Episodes / search ──────────────────────────────────── */
.episodes { padding: clamp(56px, 8vw, 96px) 0; }
.episodes-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; max-width: 100%; }
.episodes-head .section-sub { margin: 0; max-width: 28ch; text-align: right; }
@media (max-width: 700px) {
  .episodes-head { grid-template-columns: 1fr; }
  .episodes-head .section-sub { text-align: left; }
}

.ep-toolbar { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.toolbar-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.toolbar-row > * { flex: 0 0 auto; }
.toolbar-row .book-filter { flex: 1 1 auto; min-width: 200px; max-width: 100%; }

.view-toggle { display: inline-flex; padding: 4px; background: var(--paper); border: 1.5px solid rgba(66, 93, 68, 0.18); border-radius: var(--r-pill); gap: 2px; }
.vt-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: var(--r-pill); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.vt-btn svg { width: 16px; height: 16px; }
.vt-btn[aria-pressed="true"] { background: var(--green); color: #fff; }

.book-filter { background: var(--paper); border: 1.5px solid rgba(66, 93, 68, 0.18); border-radius: var(--r-md); }
.book-filter summary { padding: 10px 18px; cursor: pointer; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); list-style: none; display: flex; align-items: center; gap: 8px; }
.book-filter summary::-webkit-details-marker { display: none; }
.book-filter summary::after { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint); transform: rotate(45deg); margin-left: auto; transition: transform 0.2s var(--ease); }
.book-filter[open] summary::after { transform: rotate(-135deg); }
.book-filter[open] summary { color: var(--green-deep); border-bottom: 1px solid rgba(66, 93, 68, 0.12); }
.bf-count { font-weight: 500; color: var(--green); }
.book-filter .book-chips { padding: 14px 18px; gap: 6px; }

.search-bar {
  position: relative; display: flex; align-items: center;
  background: var(--paper); border: 1.5px solid rgba(66, 93, 68, 0.18);
  border-radius: var(--r-pill); padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow-sm); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.search-bar:focus-within { border-color: var(--green-mid); box-shadow: 0 0 0 4px var(--ring); }
.search-icon { display: grid; place-items: center; color: var(--green-mid); }
.search-icon svg { width: 22px; height: 22px; }
#search { flex: 1; border: none; outline: none; background: transparent; padding: 14px 12px; font-size: 1.05rem; color: var(--ink); min-width: 0; }
#search::placeholder { color: var(--ink-faint); }
.search-hint { display: grid; place-items: center; min-width: 26px; height: 26px; padding: 0 8px; border-radius: 7px; background: rgba(66, 93, 68, 0.1); color: var(--green); font-size: 0.85rem; font-family: var(--font-sans); font-weight: 600; border: 1px solid rgba(66, 93, 68, 0.15); }
.search-bar:focus-within .search-hint { display: none; }
.search-clear { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink-soft); transition: background 0.2s var(--ease); }
.search-clear:hover { background: rgba(66, 93, 68, 0.1); }
.search-clear svg { width: 20px; height: 20px; }

.filters { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.book-chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; min-width: 0; }
.chip {
  padding: 7px 15px; border-radius: var(--r-pill); font-size: 0.84rem; font-weight: 600;
  background: var(--paper); color: var(--ink-soft); border: 1.5px solid rgba(66, 93, 68, 0.16);
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.chip:hover { border-color: var(--green-mid); color: var(--green-deep); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--green); color: #fff; border-color: var(--green); }
.chip .chip-count { opacity: 0.6; margin-left: 5px; font-size: 0.78em; }

.filter-controls { display: flex; align-items: center; gap: 12px; }
.sort { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--ink-faint); }
.sort select { border: 1.5px solid rgba(66, 93, 68, 0.18); background: var(--paper); border-radius: var(--r-pill); padding: 9px 14px; color: var(--ink); font-weight: 600; cursor: pointer; transition: border-color 0.2s var(--ease); }
.sort select:hover { border-color: var(--green-mid); }
.sort select:focus-visible { outline: 3px solid var(--ring); outline-offset: 1px; }

.result-count { margin: 24px 0 18px; color: var(--ink-faint); font-size: 0.9rem; }
.result-count strong { color: var(--green-deep); font-weight: 700; }

/* ── Episode cards ──────────────────────────────────────── */
.episode-list { display: grid; gap: 16px; }
.episode-list.view-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.episode-list.view-list { grid-template-columns: 1fr; gap: 0; background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.12); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.episode-list.view-list .ep {
  border: none; border-radius: 0; padding: 14px 22px;
  border-bottom: 1px solid rgba(66, 93, 68, 0.08);
  box-shadow: none; transform: none;
}
.episode-list.view-list .ep:last-child { border-bottom: none; }
.episode-list.view-list .ep:hover { transform: none; background: var(--cream); box-shadow: none; }
.episode-list.view-list .ep-top { gap: 14px; align-items: center; }
.episode-list.view-list .ep-play { width: 42px; height: 42px; }
.episode-list.view-list .ep-play svg { width: 18px; height: 18px; }
.episode-list.view-list .ep-tags { margin-bottom: 4px; }
.episode-list.view-list .ep-title { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700; }
.episode-list.view-list .ep-summary { display: none; }
.episode-list.view-list .ep-meta { margin-top: 4px; font-size: 0.8rem; }
.episode-list.view-list .ep-actions { margin-top: 10px; }
.ep {
  background: var(--paper); border: 1px solid rgba(66, 93, 68, 0.1);
  border-radius: var(--r-md); padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  opacity: 0; transform: translateY(14px); animation: epIn 0.5s var(--ease) forwards;
}
@keyframes epIn { to { opacity: 1; transform: none; } }
.ep:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(66, 93, 68, 0.22); }

.ep-top { display: flex; align-items: flex-start; gap: 18px; }
.ep-play {
  flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: #fff; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.ep-play:hover { background: var(--green-deep); transform: scale(1.06); }
.ep-play svg { width: 22px; height: 22px; margin-left: 2px; }
.ep-play.is-playing svg.i-play { display: none; }
.ep-play .i-pause { display: none; margin-left: 0; }
.ep-play.is-playing .i-pause { display: block; }

.ep-body { flex: 1; min-width: 0; }
.ep-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 9px; }
.badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); }
.badge-book { background: var(--mint); color: var(--green-deep); }
.badge-num { background: rgba(255, 188, 125, 0.24); color: #9a5a17; }
.ep-title { font-family: var(--font-serif); font-size: 1.24rem; font-weight: 700; color: var(--green-deep); line-height: 1.25; }
.ep-title button { text-align: left; }
.ep-title button:hover { color: var(--green); }
.ep-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 8px; color: var(--ink-faint); font-size: 0.84rem; }
.ep-meta .dot { opacity: 0.5; }
.ep-summary { margin-top: 12px; color: var(--ink-soft); font-size: 0.96rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ep mark { background: var(--peach); color: var(--green-darker); padding: 0 3px; border-radius: 3px; font-weight: 600; }

.ep-actions { margin-top: 14px; display: flex; gap: 16px; align-items: center; }
.ep-link { font-size: 0.86rem; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s var(--ease); }
.ep-link:hover { gap: 9px; }
.ep-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.ep-link[aria-expanded="true"] svg { transform: rotate(180deg); }

.ep-notes {
  margin-top: 0; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin-top 0.3s var(--ease);
  border-top: 1px solid transparent;
}
.ep-notes.open { max-height: 2600px; opacity: 1; margin-top: 16px; padding-top: 16px; border-top-color: rgba(66, 93, 68, 0.12); }
.ep-notes-inner { color: var(--ink-soft); font-size: 0.95rem; }
.ep-notes-inner p { margin-bottom: 12px; }
.ep-notes-inner ul, .ep-notes-inner ol { margin: 0 0 14px 20px; }
.ep-notes-inner li { margin-bottom: 6px; }
.ep-notes-inner a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.ep-notes-inner a:hover { color: var(--green-deep); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-faint); }
.empty-state p { font-size: 1.1rem; margin-bottom: 18px; }

.load-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
#scroll-sentinel { height: 1px; width: 1px; }

/* ── Books grid (deep-green band) ───────────────────────── */
.books { padding: clamp(56px, 8vw, 100px) 0; background: var(--green-deep); color: #fff; position: relative; }
.books .section-head h2 { color: #fff; }
.books .section-sub { color: rgba(255, 255, 255, 0.72); }
.book-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.book-card {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px; padding: 24px 24px 22px; overflow: hidden;
  text-align: left; color: #fff; text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

/* Big faded season number watermark in the top-right corner */
.book-card .bc-season {
  position: absolute; top: 12px; right: 18px; z-index: -1;
  font-family: var(--font-serif); font-style: italic;
  font-size: 4rem; font-weight: 700; line-height: 0.85;
  color: var(--mint-bright); opacity: 0.10;
  letter-spacing: -0.04em;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.book-card .bc-season::before { content: "S"; font-size: 0.5em; vertical-align: 0.6em; margin-right: 0.04em; opacity: 0.75; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Small "Old Testament" tag — moved into the natural flow at top */
.book-card .bc-test {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint-bright); font-weight: 700; opacity: 0.7;
}

/* Book name dominates */
.book-card .bc-name {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(1.4rem, 1.9vw, 1.65rem); line-height: 1.1;
  color: #fff; letter-spacing: -0.01em;
  margin-top: 28px; padding-bottom: 14px;
  position: relative;
}
/* Short underline accent that grows on hover */
.book-card .bc-name::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; background: var(--peach);
  transition: width 0.35s var(--ease);
}

.book-card .bc-count {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
}
.book-card .bc-count::after {
  content: "→"; margin-left: auto; color: var(--mint-bright);
  font-size: 1.1rem; font-weight: 400;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.book-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(197, 230, 191, 0.35);
}
.book-card:hover .bc-season { opacity: 0.22; transform: translateY(-2px); }
.book-card:hover .bc-name::after { width: 48px; }
.book-card:hover .bc-count::after { transform: translateX(4px); color: var(--peach); }

/* ── Show notes ─────────────────────────────────────────── */
.shownotes { padding: clamp(56px, 8vw, 96px) 0; background: var(--cream-2); }
.sn-tabs { display: inline-flex; gap: 4px; padding: 5px; background: var(--paper); border-radius: var(--r-pill); border: 1px solid rgba(66, 93, 68, 0.14); margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.sn-tab { padding: 8px 18px; border-radius: var(--r-pill); font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.sn-tab:hover { color: var(--green-deep); }
.sn-tab[aria-selected="true"] { background: var(--green); color: #fff; }

.sn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.sn-card {
  display: flex; flex-direction: column; background: var(--paper); border-radius: var(--r-md);
  overflow: hidden; border: 1px solid rgba(66, 93, 68, 0.1); box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.sn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(66, 93, 68, 0.24); }
.sn-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.sn-thumb-tall { aspect-ratio: 4 / 5; }
.sn-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.sn-card:hover .sn-thumb img { transform: scale(1.04); }
.sn-meta { padding: 18px 20px 20px; }
.sn-cat { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); background: var(--mint); padding: 3px 9px; border-radius: var(--r-pill); margin-bottom: 10px; }
.sn-meta h3 { font-family: var(--font-serif); font-size: 1.18rem; color: var(--green-deep); line-height: 1.25; }
.sn-meta p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 8px; }
.sn-card.is-hidden { display: none; }
.sn-note { text-align: center; margin-top: 28px; color: var(--ink-faint); font-size: 0.88rem; font-style: italic; }

/* ── About + hosts ──────────────────────────────────────── */
.about { padding: clamp(56px, 8vw, 104px) 0; }
.about-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.about-head .section-sub { font-size: 1.05rem; max-width: 60ch; }

.hosts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.host-card {
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(66, 93, 68, 0.1); box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  display: flex; flex-direction: column;
}
.host-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.host-photo { aspect-ratio: 1; overflow: hidden; background: var(--cream); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-body { padding: 22px 24px 26px; }
.host-role { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--green-mid); margin-bottom: 6px; }
.host-body h3 { font-family: var(--font-serif); font-size: 1.42rem; color: var(--green-deep); margin-bottom: 10px; }
.host-body p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

.about-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 44px; }

/* ── Shop band ──────────────────────────────────────────── */
.shop { padding: clamp(56px, 8vw, 100px) 0; background: var(--green-deep); color: #fff; }
.shop-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.shop-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); color: #fff; margin-bottom: 14px; }
.shop-copy p { color: rgba(255, 255, 255, 0.78); font-size: 1.06rem; max-width: 48ch; }
.shop-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.shop-art { display: grid; place-items: center; }
.shop-tile {
  width: 100%; max-width: 320px; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green-accent), var(--green));
  border-radius: var(--r-lg); display: grid; place-items: center; padding: 48px;
  box-shadow: var(--shadow-lg); transform: rotate(-3deg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.shop-tile img { width: 100%; height: auto; opacity: 0.95; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials { padding: clamp(56px, 8vw, 100px) 0; background: var(--cream); }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.tm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.tm-card {
  background: var(--paper); border-radius: var(--r-lg); padding: 28px 28px 26px;
  border: 1px solid rgba(66, 93, 68, 0.1); box-shadow: var(--shadow-sm); position: relative;
}
.tm-card::before {
  content: "“"; position: absolute; top: -8px; left: 22px;
  font-family: var(--font-serif); font-size: 5rem; color: var(--mint-bright); line-height: 1;
}
.tm-stars { color: var(--peach); font-size: 0.95rem; letter-spacing: 0.06em; margin-bottom: 14px; }
.tm-card blockquote { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.45; color: var(--green-deep); font-style: italic; margin-bottom: 18px; }
.tm-card figcaption { color: var(--ink-soft); font-size: 0.86rem; font-weight: 600; display: flex; flex-direction: column; gap: 2px; }
.tm-card figcaption span { color: var(--ink-faint); font-weight: 400; font-size: 0.78rem; }
.tm-cta { text-align: center; margin-top: 36px; }

/* ── Donate band ────────────────────────────────────────── */
.donate { padding: clamp(50px, 7vw, 80px) 0; background: var(--mint); text-align: center; }
.donate-inner { max-width: 640px; margin: 0 auto; }
.donate h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); color: var(--green-deep); margin-bottom: 12px; }
.donate p { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 22px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--green-darker); color: rgba(255, 255, 255, 0.7); padding: 64px 0 32px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img { width: 168px; height: auto; opacity: 0.95; margin-bottom: 16px; }
.footer-tag { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.5; max-width: 32ch; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social a:hover { background: var(--mint); color: var(--green-darker); transform: translateY(-2px); border-color: var(--mint); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mint-bright); margin-bottom: 8px; }
.footer-col a { color: rgba(255, 255, 255, 0.72); font-size: 0.91rem; font-weight: 500; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  padding-top: 24px; color: rgba(255, 255, 255, 0.4); font-size: 0.82rem; gap: 10px;
}

@media (max-width: 820px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Sticky player ──────────────────────────────────────── */
.player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: rgba(43, 51, 45, 0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--cream); box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.player.show { transform: translateY(0); }
.player-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(180px, 1.6fr) auto; align-items: center; gap: 20px; padding: 12px 24px; }

.player-meta { display: flex; align-items: center; gap: 12px; min-width: 0; }
.player-meta img { width: 48px; height: 48px; border-radius: 10px; flex: none; box-shadow: var(--shadow-sm); }
.player-text { min-width: 0; }
.player-title { font-weight: 600; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
.player-sub { font-size: 0.8rem; color: var(--mint-bright); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.player-controls { display: flex; align-items: center; gap: 8px; }
.pc-btn { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--cream); transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.pc-btn:hover { background: rgba(255, 255, 255, 0.12); }
.pc-btn svg { width: 22px; height: 22px; }
.pc-num { position: absolute; bottom: 2px; right: 2px; font-size: 0.55rem; font-weight: 700; background: rgba(43, 51, 45, 0.9); border-radius: 4px; padding: 0 2px; }
.pc-play { width: 52px; height: 52px; background: var(--mint-bright); color: var(--green-deep); }
.pc-play:hover { background: var(--mint); transform: scale(1.05); }
.pc-play svg { width: 26px; height: 26px; }

.player-seek { display: flex; align-items: center; gap: 12px; }
.player-seek .time { font-size: 0.78rem; color: var(--mint-bright); font-variant-numeric: tabular-nums; min-width: 38px; }
.player-seek .time:last-child { text-align: right; }
input[type="range"]#seek { -webkit-appearance: none; appearance: none; flex: 1; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.2); cursor: pointer; }
#seek::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 15px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }
#seek::-moz-range-thumb { width: 15px; height: 15px; border: none; border-radius: 50%; background: #fff; }

.player-extra { display: flex; align-items: center; gap: 6px; }
.speed-btn { padding: 7px 12px; border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.1); font-size: 0.82rem; font-weight: 700; transition: background 0.2s var(--ease); }
.speed-btn:hover { background: rgba(255, 255, 255, 0.2); }

/* ── Reveal on scroll ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .site-nav { display: none; }
  .menu-toggle { display: grid; }
  .shop-inner { grid-template-columns: 1fr; text-align: center; }
  .shop-copy p { margin-left: auto; margin-right: auto; }
  .shop-actions { justify-content: center; }
  .shop-art { order: -1; }
  .player-inner { grid-template-columns: 1fr auto; grid-template-areas: "meta extra" "seek seek" "controls controls"; gap: 10px 16px; }
  .player-meta { grid-area: meta; } .player-extra { grid-area: extra; }
  .player-seek { grid-area: seek; } .player-controls { grid-area: controls; justify-content: center; }
}

/* mobile menu drawer */
.mobile-drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 95;
  background: var(--cream); padding: 28px 24px 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  padding: 14px 18px; border-radius: var(--r-md); font-weight: 600; font-size: 1.05rem;
  color: var(--green-deep); border-bottom: 1px solid rgba(66, 93, 68, 0.1);
}
.mobile-drawer a:hover { background: var(--mint); }
.mobile-drawer .md-divider { height: 1px; background: rgba(66, 93, 68, 0.12); margin: 14px 0 8px; }
.mobile-drawer .md-sub { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green-mid); font-weight: 700; padding: 0 18px; margin-top: 4px; }

@media (max-width: 620px) {
  .header-ctas .nav-btn-ghost { display: none; }
  .hero { min-height: 78vh; }
  .hero-stats li { padding: 0 16px; }
  .filters { flex-direction: column; align-items: stretch; }
  .filter-controls { justify-content: flex-end; }
  .ep-top { gap: 14px; }
  .ep-play { width: 46px; height: 46px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .subscribe-menu { right: -40px; }
  .brand-text { display: none; }
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ep { opacity: 1; transform: none; }
}
