/* ═════════════════════════════════════════════════════════════
   MONDAY TO SUNDAY — LAMP DESIGN SYSTEM
   Single source of truth for site styles.
   Pages scope conflicts via body class: page-home, page-post, page-about.
   ═════════════════════════════════════════════════════════════ */


/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:        #0E1B2C;
  --ink-soft:   #1A2A40;
  --ember:      #D9933D;
  --ember-soft: #F2D9B0;
  --parchment:  #F7F2E8;
  --paper:      #FBF8F2;
  --rule:       #E5DDC9;
  --text:       #1F2937;
  --mid:        #6B6356;
  --text-dark:  #E8DFD0;
  --mid-dark:   #9AA4B2;

  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body:    'Newsreader', Georgia, 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;
}


/* ─── BASE ───────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--parchment);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--ember);
  text-decoration: none;
  transition: color 180ms ease-out;
}
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 2px; }
img { max-width: 100%; display: block; }


/* ─── TOPNAV (shared) ────────────────────────────────────────── */
.topnav {
  background: var(--ink);
  color: var(--text-dark);
  padding: 20px clamp(16px, 4vw, 32px);
  border-bottom: 1px solid var(--ink-soft);
}
.topnav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.topnav-brand {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 24;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.005em;
}
.topnav-brand:hover { color: var(--ember); }
.topnav-links {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topnav-links a { color: var(--mid-dark); }
.topnav-links a:hover,
.topnav-links a[aria-current="page"] { color: var(--ember); }


/* ─── FOOTER (shared) ────────────────────────────────────────── */
footer.site-footer {
  background: var(--ink);
  color: var(--mid-dark);
  text-align: center;
  padding: 32px clamp(16px, 4vw, 32px);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid var(--ink-soft);
}
footer.site-footer a { color: var(--ember); }
footer.site-footer a:hover { color: #fff; }


/* ─── WEEK STRIP (shared) ────────────────────────────────────── */
.weekstrip {
  list-style: none;
  display: flex;
  gap: clamp(10px, 2vw, 22px);
  padding: 0;
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.weekstrip li {
  color: var(--mid-dark);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease-out, border-color 180ms ease-out;
}
.weekstrip li.is-active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}
.weekstrip--light li { color: var(--mid); }
.weekstrip--light li.is-active { color: var(--ember); border-bottom-color: var(--ember); }


/* ─── BADGE LINKS (shared) ───────────────────────────────────── */
.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition: transform 180ms ease-out, opacity 180ms ease-out;
}
.badge-link:hover { transform: translateY(-2px); opacity: 0.92; color: #fff; }
.badge-link.spotify  { background: #1DB954; }
.badge-link.apple    { background: #FC3C44; }
.badge-link.tiktok   { background: var(--ink); }
.badge-link.youtube  { background: #FF0000; }
.badge-link svg { fill: #fff; }

/* Small variant for inline use inside .audio-block */
.listen-on .badge-link {
  padding: 9px 16px;
  font-size: 0.72rem;
  gap: 8px;
}


/* ─── AUDIO BLOCK (used on post pages) ───────────────────────── */
.audio-block {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--ember);
  border-radius: 4px 12px 12px 4px;
  padding: 28px 30px;
  margin-bottom: 48px;
}
.audio-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 6px;
}
.audio-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.3;
}
.audio-block audio { width: 100%; accent-color: var(--ember); }
.audio-note {
  margin: 10px 0 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.listen-on {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.listen-on-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0 0 10px;
  display: block;
}
.listen-on-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}


/* ═════════════════════════════════════════════════════════════
   NEW — YOUTUBE INTEGRATION
   ═════════════════════════════════════════════════════════════ */

/* ─── EPISODE VIDEO BLOCK (post pages) ───────────────────────── */
.episode-video {
  margin: 8px 0 48px;
}
.episode-video__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 6px;
}
.episode-video__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.3;
}
.episode-video lite-youtube {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 24px -12px rgba(14, 27, 44, 0.18);
  max-width: 100%;
}
.episode-video__note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 12px 0 0;
}


/* ─── YOUTUBE CHANNEL CARD (home + about) ────────────────────── */
.yt-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}
.yt-channel-card:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(14, 27, 44, 0.12);
  color: var(--ink);
}
.yt-channel-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #FF0000;
  border-radius: 50%;
  color: #fff;
}
.yt-channel-card__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 2px; /* optical center the triangle */
}
.yt-channel-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.yt-channel-card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mid);
}
.yt-channel-card__handle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.yt-channel-card__cta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ember);
  font-weight: 600;
  white-space: nowrap;
}


/* ═════════════════════════════════════════════════════════════
   HOME PAGE (index.php) — body.page-home
   ═════════════════════════════════════════════════════════════ */

/* ─── HOME HERO ──────────────────────────────────────────────── */
.page-home .hero {
  background: var(--ink);
  color: var(--text-dark);
  padding: clamp(64px, 12vh, 120px) clamp(16px, 4vw, 32px) clamp(56px, 10vh, 96px);
  text-align: center;
}
.page-home .hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 18px;
}
.page-home .hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 96;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: #fff;
}
.page-home .hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  color: var(--ember);
}
.page-home .hero-sub {
  max-width: 580px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--mid-dark);
  line-height: 1.55;
}


/* ─── FEATURED EPISODE BAND ──────────────────────────────────── */
.page-home .featured {
  background: var(--ink);
  color: var(--text-dark);
  padding: 0 clamp(16px, 4vw, 32px) clamp(64px, 10vh, 112px);
  border-bottom: 1px solid var(--ink-soft);
}
.featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.featured-art {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px var(--ink-soft);
}
.featured-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.featured-art::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(217, 147, 61, 0.08);
  pointer-events: none;
}
.featured-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 18px;
}
.featured-meta .sep { opacity: 0.4; margin: 0 8px; }
.page-home .featured h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 72;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 18px;
}
.featured-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 56ch;
  margin: 0 0 28px;
}
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ember);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease-out, background 180ms ease-out;
}
.featured-cta:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.featured-cta .arrow { transition: transform 180ms ease-out; }
.featured-cta:hover .arrow { transform: translateX(3px); }


/* ─── SECTION / PARCHMENT ────────────────────────────────────── */
section.parchment {
  padding: clamp(56px, 9vh, 96px) clamp(16px, 4vw, 32px);
}
.container-narrow { max-width: 720px; margin: 0 auto; }
.container-wide   { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}


/* ─── MISSION ────────────────────────────────────────────────── */
.mission p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--text);
}
.mission p strong { color: var(--ink); font-weight: 600; }
.mission p:last-child { margin-bottom: 0; }


/* ─── LISTEN BAR ─────────────────────────────────────────────── */
.listen-bar {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.listen-bar-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 4px;
}
.listen-bar-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mid);
}
.listen-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* ─── ARCHIVE FEED ───────────────────────────────────────────── */
.archive { margin-top: clamp(56px, 8vh, 88px); }
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.archive-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: border-color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}
.archive-card:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(14, 27, 44, 0.12);
}
.archive-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
}
.archive-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.archive-card-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 8px;
}
.archive-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 36;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.archive-card-desc {
  font-size: 0.98rem;
  color: var(--mid);
  margin: 0 0 16px;
  line-height: 1.55;
}
.archive-card-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}
.archive-card a.archive-card-link {
  color: var(--ink);
  display: contents;
}
.empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--mid);
  font-family: var(--font-body);
  font-style: italic;
}


/* ═════════════════════════════════════════════════════════════
   POST PAGE (post.php) — body.page-post
   ═════════════════════════════════════════════════════════════ */

/* ─── POST HERO ──────────────────────────────────────────────── */
.post-hero {
  background: var(--ink);
  color: var(--text-dark);
  padding: clamp(56px, 9vh, 96px) clamp(16px, 4vw, 32px) clamp(64px, 10vh, 112px);
}
.post-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.post-hero-art {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px var(--ink-soft);
}
.post-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.post-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(217, 147, 61, 0.08);
  pointer-events: none;
}
.post-hero-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 18px;
}
.post-hero-meta .sep { opacity: 0.4; margin: 0 8px; }
.post-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 96;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 20px;
}
.post-hero-lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 56ch;
  margin: 0 0 28px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-dark);
}
.back-link:hover { color: var(--ember); }


/* ─── ARTICLE BODY ───────────────────────────────────────────── */
.article {
  padding: clamp(56px, 9vh, 96px) clamp(16px, 4vw, 32px) clamp(48px, 8vh, 80px);
}
.article-inner { max-width: 720px; margin: 0 auto; }


/* ─── POST META ──────────────────────────────────────────────── */
.post-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0 0 28px;
}


/* ─── POST CONTENT (body) ────────────────────────────────────── */
.post-content { font-family: var(--font-body); }
.post-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.18;
  color: var(--ink);
  margin: 48px 0 18px;
  letter-spacing: -0.005em;
}
.post-content h2:first-child { margin-top: 0; }
.post-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 36px 0 14px;
}
.post-content p { margin: 0 0 22px; font-size: 1.12rem; line-height: 1.72; }
.post-content p:first-of-type { font-size: 1.22rem; line-height: 1.65; color: var(--ink); }
.post-content ul,
.post-content ol { margin: 0 0 22px; padding-left: 28px; font-size: 1.1rem; line-height: 1.7; }
.post-content li { margin: 0 0 8px; }
.post-content a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.post-content a:hover { color: var(--ink); }
.post-content strong { color: var(--ink); font-weight: 600; }
.post-content em { font-style: italic; }
.post-content hr { border: 0; border-top: 1px solid var(--rule); margin: 40px 0; }


/* ─── POST CONTENT INLINE CLASSES ────────────────────────────── */
.post-content .card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 26px;
  margin: 28px 0;
}
.post-content .card-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
}
.post-content .card h3 { margin-top: 0; }
.post-content .card p { font-size: 1.02rem; margin-bottom: 0; }

.post-content .pullquote {
  border-left: 4px solid var(--ember);
  background: var(--ember-soft);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 32px 0;
}
.post-content .pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.post-content .word-study {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--ember);
  border-radius: 0 0 12px 12px;
  padding: 24px 26px;
  margin: 32px 0;
}
.post-content .word-study-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 6px;
}
.post-content .word-study-term {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 8px;
}
.post-content .word-study p { font-size: 1.02rem; margin-bottom: 0; }

.post-content .insight-box {
  background: var(--ink);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 28px 30px;
  margin: 36px 0;
}
.post-content .insight-box h3 { color: #fff; margin: 0 0 12px; font-size: 1.25rem; }
.post-content .insight-box p { color: var(--text-dark); margin-bottom: 14px; font-size: 1.05rem; }
.post-content .insight-box p:last-child { margin-bottom: 0; }


/* ─── EPISODE NAV (prev / next) ──────────────────────────────── */
.episode-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.episode-nav-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}
.episode-nav-card:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(14, 27, 44, 0.12);
  color: var(--ink);
}
.episode-nav-card.next { text-align: right; }
.episode-nav-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
}
.episode-nav-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 6px;
}
.episode-nav-ep {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}
.episode-nav-card.teaser {
  background: transparent;
  border-style: dashed;
}
.teaser-date {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
}


/* ─── POST PAGE CLOSING ──────────────────────────────────────── */
.page-post .closing {
  background: var(--ink);
  color: var(--text-dark);
  padding: clamp(64px, 10vh, 96px) clamp(16px, 4vw, 32px);
  text-align: center;
}
.page-post .closing-inner { max-width: 600px; margin: 0 auto; }
.page-post .closing-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 14px;
}
.page-post .closing h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 60;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}
.page-post .closing p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0 0 24px;
}
.page-post .closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ember);
  color: var(--ink);
  padding: 13px 26px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 180ms ease-out;
}
.page-post .closing-cta:hover { background: #fff; color: var(--ink); }


/* ═════════════════════════════════════════════════════════════
   ABOUT PAGE (about.php) — body.page-about
   ═════════════════════════════════════════════════════════════ */

/* ─── ABOUT HERO (two-column profile) ────────────────────────── */
.page-about .hero {
  background: var(--ink);
  color: var(--text-dark);
  padding: clamp(48px, 8vh, 96px) clamp(16px, 4vw, 32px);
}
.page-about .hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.page-about .hero-portrait {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.page-about .hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-about .hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 18px;
}
.page-about .hero h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.page-about .hero-role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-dark);
  margin-bottom: 26px;
}
.page-about .hero-lede {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 32em;
  margin-bottom: 32px;
}
.page-about .hero-back {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease-out;
}
.page-about .hero-back:hover { color: var(--ember); border-bottom-color: var(--ember); }


/* ─── BIO BAND ───────────────────────────────────────────────── */
.bio-band {
  background: var(--parchment);
  padding: clamp(48px, 8vh, 96px) clamp(16px, 4vw, 32px) clamp(32px, 5vh, 56px);
}
.bio-inner { max-width: 720px; margin: 0 auto; }
.bio-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.bio-heading {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 48;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.bio p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.bio p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.2rem;
  line-height: 0.9;
  float: left;
  padding-right: 14px;
  padding-top: 8px;
  color: var(--ember);
}

/* About-page pullquote (a div, not a child of .post-content) */
.bio .pullquote {
  border-left: 5px solid var(--ember);
  background: var(--ember-soft);
  padding: 26px 30px;
  margin: 40px 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--ink);
  border-radius: 0 4px 4px 0;
}
.signoff {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--mid);
  border-top: 1px solid var(--rule);
  padding-top: 26px;
  margin-top: 36px;
  font-style: normal !important;
  text-transform: none;
}


/* ─── PRINCIPLES ─────────────────────────────────────────────── */
.principles-band {
  background: var(--parchment);
  padding: clamp(32px, 5vh, 64px) clamp(16px, 4vw, 32px) clamp(48px, 8vh, 96px);
}
.principles-inner { max-width: 1100px; margin: 0 auto; }
.principles-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.principles-heading {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.principle {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px 26px;
}
.principle-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.principle h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.principle p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}


/* ─── LISTEN BAND (about page, centered) ─────────────────────── */
.listen-band {
  background: var(--parchment);
  padding: clamp(32px, 6vh, 64px) clamp(16px, 4vw, 32px) clamp(48px, 8vh, 96px);
  border-top: 1px solid var(--rule);
}
.listen-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.listen-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.listen-heading {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.listen-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--mid);
  margin: 0 auto 28px;
  max-width: 38em;
}
.listen-band .listen-badges {
  justify-content: center;
}


/* ─── ABOUT PAGE CLOSING ─────────────────────────────────────── */
.page-about .closing {
  background: var(--ink);
  color: var(--text-dark);
  padding: clamp(48px, 8vh, 80px) clamp(16px, 4vw, 32px);
  text-align: center;
}
.page-about .closing-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.page-about .closing h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.page-about .closing-cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--ember);
  color: var(--ink);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 180ms ease-out;
}
.page-about .closing-cta:hover { transform: translateY(-2px); color: var(--ink); }


/* ═════════════════════════════════════════════════════════════
   LITE-YOUTUBE-EMBED
   Paul Irish — https://github.com/paulirish/lite-youtube-embed
   MIT License. Bundled here to save a request.
   ═════════════════════════════════════════════════════════════ */
lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: 100%;
}
lite-youtube::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  background-image: linear-gradient(180deg, rgb(0 0 0 / 67%) 0%, rgb(0 0 0 / 54%) 14%, rgb(0 0 0 / 15%) 54%, rgb(0 0 0 / 5%) 72%, rgb(0 0 0 / 0%) 94%);
  height: 60px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  z-index: 1;
}
lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: calc(100% / (16 / 9));
}
lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
lite-youtube > .lty-playbtn {
  display: block;
  width: 68px;
  height: 48px;
  position: absolute;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: transparent;
  /* play button color stays YouTube red — recognizable affordance */
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 68 48" width="68" height="48" xmlns="http://www.w3.org/2000/svg"><path d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,0.13,34,0,34,0S12.21,0.13,6.9,1.55C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z" fill="%23f00"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>');
  filter: grayscale(100%);
  transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
  border: 0;
}
lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus { filter: none; }
lite-youtube > .lty-playbtn:before {
  content: '';
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}
lite-youtube > .lty-playbtn,
lite-youtube > .lty-playbtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
lite-youtube.lyt-activated { cursor: unset; }
lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}


/* ═════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  .featured-inner { grid-template-columns: 1fr; gap: 32px; }
  .featured-art { max-width: 360px; margin: 0 auto; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-card-img { aspect-ratio: 16 / 9; }
  .listen-bar { flex-direction: column; align-items: flex-start; }

  .post-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .post-hero-art { max-width: 320px; margin: 0 auto; }
  .post-hero h1 { text-align: left; }
  .post-hero-meta,
  .weekstrip,
  .post-hero-lede { text-align: left; }
  .episode-nav { grid-template-columns: 1fr; }
  .episode-nav-card.next { text-align: left; }
  .post-content p:first-of-type { font-size: 1.15rem; }
  .audio-block { padding: 22px; }
  .post-content .word-study,
  .post-content .insight-box,
  .post-content .pullquote { padding: 20px 22px; }

  .yt-channel-card { padding: 16px 18px; gap: 12px; }
  .yt-channel-card__cta { display: none; }
}

@media (max-width: 720px) {
  .page-about .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-about .hero-portrait { max-width: 70%; margin: 0 auto; }
  .bio p:first-of-type::first-letter { font-size: 3.4rem; padding-top: 6px; }
  .bio .pullquote { font-size: 1.1rem; padding: 22px 24px; }
}
