/* ══════════════════════════════════════════════════════════════
   THE COMPASS INSTITUTE — Shared Design System
   Navy + Copper + Antique Brown Redesign
   ══════════════════════════════════════════════════════════════ */

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

:root {
  /* NAVY FAMILY */
  --navy-deep:      #0F1729;
  --navy-primary:   #1A2540;
  --navy-text:      #1B2A4A;
  --navy-mid:       #2E3F5C;

  /* COPPER FAMILY */
  --copper:         #C4793A;
  --copper-light:   #D9956A;
  --copper-dark:    #9E5E2A;
  --copper-glow:    #E8B07A;

  /* ANTIQUE BROWN */
  --brown:          #8B7355;
  --brown-light:    #B0A090;
  --brown-dark:     #5E4D3A;

  /* WARM WHITES */
  --warm-white:     #F7F4EF;
  --warm-card:      #FFFFFF;
  --warm-alt:       #EDE9E1;

  /* BODY TEXT */
  --text-primary:   #1B2A4A;
  --text-secondary: #363D4F;
  --text-muted:     #5C5A52;

  /* BORDERS */
  --border:         #D8D4CA;
  --border-warm:    #C8C0B0;
  --border-copper:  #C4793A;

  /* GRAIN TEXTURE */
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");

  /* LEGACY ALIASES — keep blog/podcast pages working with new palette */
  --void:         #0F1729;
  --deep:         #1A2540;
  --surface:      #22304A;
  --panel:        #2E3F5C;
  --gold:         #C4793A;
  --gold-bright:  #D9956A;
  --gold-dim:     rgba(196,121,58,0.40);
  --border-gold:  rgba(196,121,58,0.30);
  --white:        #F7F4EF;
  --white-dim:    rgba(247,244,239,0.90);
  --white-faint:  rgba(247,244,239,0.70);
  --rust:         #8B4A2A;
  --sage:         #3D5C4A;
}

/* ── SELECTION ── */
::selection {
  background: rgba(196,121,58,0.20);
  color: var(--navy-text);
}

/* ── FOCUS ── */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--warm-white);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 180px 180px;
}

nav > * { position: relative; z-index: 1; }

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-brand-top {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-brand-sub {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A9AB0;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #C8D0E0;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--copper-light); }
.nav-links a.active { color: var(--copper); }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--copper);
  text-decoration: none;
  border: none;
  padding: 10px 22px;
  border-radius: 2px;
  margin-left: 24px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--copper-light);
}

/* ── MOBILE NAV TOGGLE ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 210;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 199;
  background: var(--navy-deep);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(247,244,239,0.88);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.mobile-nav a:hover { color: var(--copper-light); }

.mobile-nav .mobile-nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--copper);
  text-decoration: none;
  border: none;
  border-radius: 2px;
  padding: 12px 32px;
  margin-top: 16px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 140px 10vw 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--navy-deep);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 180px 180px;
}

.hero > * { position: relative; z-index: 1; }

/* Old decorative elements — hidden */
.hero-bg,
.hero-lines { display: none; }

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeRight 1s ease forwards 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--copper);
  display: block;
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  max-width: 900px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeRight 1s ease forwards 0.5s;
}

.hero-headline strong {
  font-weight: 700;
  font-style: italic;
  color: var(--copper-glow);
}

.hero-thesis {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(247,244,239,0.88);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeRight 1s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeRight 1s ease forwards 0.9s;
}

/* ── BUTTONS ── */
/* Primary CTA on dark backgrounds — copper fill */
.btn-gold {
  display: inline-block;
  background: var(--copper);
  color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  border: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.btn-gold:hover { background: var(--copper-light); }

/* Secondary CTA on dark backgrounds — copper outline */
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--copper-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 29px;
  border: 1.5px solid var(--copper);
  border-radius: 2px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.btn-ghost:hover { background: rgba(196,121,58,0.10); }

/* Primary CTA on light backgrounds — navy fill */
.btn-primary-light {
  display: inline-block;
  background: var(--navy-primary);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  border: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.btn-primary-light:hover { background: var(--navy-mid); }

/* Outline on light backgrounds — copper dark outline */
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--copper-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 29px;
  border: 1.5px solid var(--copper-dark);
  border-radius: 2px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.btn-outline:hover { background: rgba(158,94,42,0.08); }

/* ── SHARED SECTION UTILITIES ── */
section {
  padding: 96px 10vw;
  position: relative;
}

.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.label::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--copper-dark);
  opacity: 0.4;
}

/* Label on dark backgrounds */
.interfaith .label,
.practitioner .label {
  color: var(--copper-light);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

h2.display {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-text);
  margin-bottom: 28px;
}

h2.display strong {
  font-weight: 700;
  font-style: italic;
  color: var(--copper);
}

/* h2 on dark sections */
.interfaith h2.display,
.practitioner h2.display {
  color: #FFFFFF;
}

.interfaith h2.display strong,
.practitioner h2.display strong {
  color: var(--copper-glow);
}

p.body-lg {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 20px;
}

p.body-lg em {
  color: var(--copper-dark);
  font-style: normal;
}

/* body-lg on dark sections */
.interfaith p.body-lg,
.practitioner p.body-lg {
  color: #D8D4E0;
}

/* Horizontal rules */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* Pull quotes / blockquotes */
blockquote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--copper-dark);
  border-left: 3px solid var(--copper);
  padding-left: 20px;
  margin: 32px 0;
}

/* Card box-shadow utility */
.card-lift {
  box-shadow: 0 2px 12px rgba(15,23,41,0.06);
  transition: box-shadow 0.2s ease;
}

.card-lift:hover {
  box-shadow: 0 4px 24px rgba(15,23,41,0.10);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid #2E3F5C;
  padding: 40px 10vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 180px 180px;
}

footer > * { position: relative; z-index: 1; }

footer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #7A8498;
  letter-spacing: 0.02em;
}

footer p span { color: var(--brown-light); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #8A9AB0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--copper-light); }

/* ── ANIMATIONS ── */
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (blog/podcast inner pages) ── */
.page-hero {
  min-height: auto;
  padding: 160px 10vw 80px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 180px 180px;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero .hero-bg,
.page-hero .hero-lines { display: none; }

/* ── CONTENT GRID (blog/podcast cards) ── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.content-card {
  background: var(--warm-card);
  padding: 36px 32px;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
  border-top: 3px solid var(--copper);
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(15,23,41,0.06);
  transition: box-shadow 0.2s ease, border-top-color 0.2s;
  position: relative;
}

.content-card:hover {
  box-shadow: 0 4px 24px rgba(15,23,41,0.10);
}

.content-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 2px;
}

.content-card-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-card-meta .divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brown-light);
}

.content-card-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.content-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.content-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.content-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-dark);
  border: 1px solid var(--border-warm);
  padding: 4px 10px;
  border-radius: 2px;
}

.content-card-arrow {
  position: absolute;
  bottom: 36px;
  right: 32px;
  color: var(--brown-light);
  font-size: 18px;
  transition: transform 0.3s, color 0.3s;
}

.content-card:hover .content-card-arrow {
  transform: translateX(6px);
  color: var(--copper);
}

/* Featured card */
.content-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 40px;
}

.content-card.featured .content-card-image {
  height: 280px;
  margin-bottom: 0;
}

.content-card.featured .content-card-title { font-size: 32px; }
.content-card.featured .content-card-excerpt { font-size: 17px; }

/* ── PODCAST EPISODE EXTRAS ── */
.episode-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--border-warm);
  line-height: 1;
  margin-bottom: 16px;
}

.episode-duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.episode-duration::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--copper-dark);
  display: inline-block;
}

/* ── EMPTY / LOADING STATES ── */
.empty-state {
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: 3px;
  margin-top: 48px;
}

.empty-state p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

.loading-state {
  text-align: center;
  padding: 80px 40px;
  margin-top: 48px;
}

.loading-state p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── TAG FILTERS ── */
.tag-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.tag-filter {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--warm-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.tag-filter:hover,
.tag-filter.active {
  border-color: var(--border-copper);
  color: var(--copper-dark);
  background: rgba(196,121,58,0.05);
}

/* ── ARTICLE HEADER ── */
.article-header {
  padding: 160px 10vw 60px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 180px 180px;
}

.article-header > * { position: relative; z-index: 1; }

.article-header .hero-bg,
.article-header .hero-lines { display: none; }

.article-back {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.article-back:hover { color: var(--copper-glow); }

.article-back::before {
  content: '\2190';
  font-size: 14px;
}

.article-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.article-meta .divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brown-light);
}

.article-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: #FFFFFF;
  max-width: 800px;
  margin-bottom: 24px;
}

.article-title strong {
  font-weight: 700;
  font-style: italic;
  color: var(--copper-glow);
}

.article-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(247,244,239,0.88);
  max-width: 640px;
  margin-bottom: 20px;
}

.article-featured-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 2px;
}

/* ── ARTICLE BODY ── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 10vw 100px;
  background: var(--warm-white);
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  font-family: 'Fraunces', serif;
  color: var(--navy-text);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-body h1 { font-size: 36px; font-weight: 600; }
.article-body h2 { font-size: 28px; font-weight: 600; }
.article-body h3 { font-size: 22px; font-weight: 600; }
.article-body h4 { font-size: 18px; font-weight: 600; font-family: 'DM Sans', sans-serif; }

.article-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.article-body a {
  color: var(--copper-dark);
  text-decoration: underline;
  text-decoration-color: rgba(196,121,58,0.4);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.article-body a:hover { color: var(--copper); }

.article-body strong {
  color: var(--navy-text);
  font-weight: 600;
}

.article-body em {
  color: var(--copper-dark);
  font-style: italic;
}

.article-body blockquote {
  border-left: 3px solid var(--copper);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--warm-alt);
  border-radius: 0 3px 3px 0;
}

.article-body blockquote p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--copper-dark);
  margin-bottom: 0;
}

.article-body ul,
.article-body ol {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-body li { margin-bottom: 8px; }
.article-body li::marker { color: var(--copper-dark); }

.article-body img {
  max-width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 2px;
}

.article-body hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.article-body code {
  font-size: 14px;
  background: var(--warm-alt);
  color: var(--copper-dark);
  padding: 2px 8px;
  border-radius: 2px;
}

.article-body pre {
  background: var(--navy-primary);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
  margin: 32px 0;
  overflow-x: auto;
}

.article-body pre code {
  background: none;
  padding: 0;
  color: var(--white-dim);
}

/* ── AUDIO PLAYER ── */
.audio-player {
  background: var(--warm-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--copper);
  border-radius: 3px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(15,23,41,0.06);
}

.audio-player-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.audio-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.audio-play-btn:hover { background: var(--copper); }

.audio-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--copper);
  transition: fill 0.2s;
}

.audio-play-btn:hover svg { fill: #FFFFFF; }

.audio-info { flex: 1; }

.audio-episode-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: 6px;
}

.audio-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-text);
  line-height: 1.25;
}

.audio-progress-container {
  width: 100%;
  cursor: pointer;
  padding: 4px 0;
}

.audio-progress-bar {
  width: 100%;
  height: 3px;
  background: var(--border);
  position: relative;
  border-radius: 2px;
}

.audio-progress-fill {
  height: 100%;
  background: var(--copper);
  border-radius: 2px;
  width: 0%;
  position: relative;
  transition: width 0.1s linear;
}

.audio-progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--copper-light);
  opacity: 0;
  transition: opacity 0.2s;
}

.audio-progress-container:hover .audio-progress-fill::after { opacity: 1; }

.audio-time {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.audio-time span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.episode-header-number {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(196,121,58,0.3);
  line-height: 1;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 64px 24px; }
  .hero { padding: 120px 24px 80px; }
  .page-hero { padding: 120px 24px 60px; }
  .article-header { padding: 120px 24px 40px; }
  .article-body { padding: 40px 24px 80px; }

  .content-grid { grid-template-columns: 1fr; }
  .content-card.featured { grid-template-columns: 1fr; }
  .content-card.featured .content-card-image { height: 200px; }

  .audio-player-top { flex-direction: column; align-items: flex-start; gap: 16px; }

  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  section { padding: 48px 16px; }
  .hero { padding: 100px 16px 64px; }
}
