:root {
  --ink: #2a2319;
  --ink-soft: #4a4238;
  --paper: #e8e2d8;
  --paper-deep: #d4cbc0;
  --parchment: #efe8de;
  --brass: #7a5c2e;
  --brass-light: #9a7b4a;
  --faded-red: #6b3a3a;
  --muted: #6b6358;
  --line: rgba(42, 35, 25, 0.2);
  --shadow-soft: rgba(42, 35, 25, 0.12);
  --font-display: "EB Garamond", "Georgia", serif;
  --font-ui: "Libre Franklin", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 252, 245, 0.5) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  min-height: 100vh;
  position: relative;
}

/* Soft drifting blobs — under parchment art, not over it (see z-index stack below) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 58vmin 52vmin at 28% 38%, rgba(220, 210, 198, 0.5) 0%, rgba(220, 210, 198, 0) 68%),
    radial-gradient(ellipse 52vmin 48vmin at 72% 62%, rgba(200, 188, 175, 0.42) 0%, transparent 70%),
    radial-gradient(ellipse 44vmin 46vmin at 58% 24%, rgba(232, 224, 214, 0.38) 0%, transparent 68%),
    radial-gradient(ellipse 50vmin 50vmin at 14% 72%, rgba(208, 196, 182, 0.44) 0%, transparent 69%);
  background-repeat: no-repeat;
  background-size: 130% 130%;
  background-position:
    48% 46%,
    52% 54%,
    54% 36%,
    42% 64%;
  animation: blobDrift 56s ease-in-out infinite;
  opacity: 0.88;
}

body.page-episodes::before {
  opacity: 0.72;
}

@keyframes blobDrift {
  0%,
  100% {
    background-position:
      42% 44%,
      58% 56%,
      56% 32%,
      36% 66%;
  }
  20% {
    background-position:
      48% 38%,
      52% 60%,
      62% 44%,
      44% 58%;
  }
  40% {
    background-position:
      54% 50%,
      46% 48%,
      48% 52%,
      52% 44%;
  }
  60% {
    background-position:
      46% 58%,
      56% 42%,
      44% 40%,
      58% 54%;
  }
  80% {
    background-position:
      52% 46%,
      44% 54%,
      52% 58%,
      40% 50%;
  }
}

.site-header,
body > main,
.site-footer {
  position: relative;
  z-index: 2;
}

/* Archival art paints above ambient blobs so tints don’t muddy the artwork */
.site-art-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    url("images/art-watermark.png"),
    url("images/art-iwo.png");
  background-position: right 3% top 6%, left -8% bottom 5%;
  background-size: min(300px, 38vw) auto, min(460px, 58vw) auto;
  background-repeat: no-repeat;
  opacity: 0.11;
  filter: brightness(0.52) saturate(0.92);
}

.page-episodes .site-art-layer {
  opacity: 0.09;
  background-image:
    url("images/art-vietnam.png"),
    url("images/art-watermark.png");
  background-position: left 2% bottom 18%, right 5% top 10%;
  filter: brightness(0.42) saturate(0.88);
}

a {
  color: var(--brass);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* ——— Museum frame & typography ——— */
.exhibit-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.35rem 3rem;
}

.exhibit-plaque {
  border: 1px solid var(--line);
  border-top: 3px double var(--brass);
  border-bottom: 3px double var(--brass);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(232, 226, 216, 0.6) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 32px var(--shadow-soft);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.page-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.page-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.lead-caps {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(232, 226, 216, 0.97) 0%, rgba(232, 226, 216, 0.92) 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px var(--shadow-soft);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 900px) {
  .brand-block {
    flex: 0 1 auto;
    max-width: min(400px, 42vw);
  }
}

.header-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.92;
  filter: brightness(0.95) contrast(0.96);
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--ink);
  letter-spacing: 0.03em;
  flex: 1 1 auto;
  min-width: 0;
}

.brand:hover {
  color: var(--brass);
  text-decoration: none;
}

.nav-exhibit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
}

@media (min-width: 900px) {
  .nav-exhibit {
    justify-content: center;
  }
}

.nav-exhibit a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.nav-exhibit a:hover {
  color: var(--ink);
  border-bottom-color: var(--brass-light);
}

.nav-exhibit a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brass);
}

/* ——— Home ——— */
.home-sky {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem 3.5rem;
  overflow: hidden;
}

.home-sky-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    142deg,
    #ddd5cb 0%,
    #e9e3da 42%,
    #d4ccc2 100%
  );
  background-size: 280% 280%;
  animation: homeGradientShift 36s ease-in-out infinite;
}

.home-sky-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 90% 75% at 50% 28%, rgba(255, 255, 255, 0.28) 0%, transparent 58%);
  pointer-events: none;
}

.home-sky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/art-landing.png") center bottom / 115% auto no-repeat;
  opacity: 0.1;
  filter: brightness(0.55);
  pointer-events: none;
  z-index: 1;
}

@keyframes homeGradientShift {
  0%,
  100% {
    background-position: 8% 42%;
  }
  50% {
    background-position: 92% 58%;
  }
}

.home-sky-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  text-align: center;
}

.home-kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  animation: homeFadeUp 1s ease-out both;
}

.home-tagline {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: homeFadeUp 1s 0.12s ease-out both;
}

.home-tagline em {
  font-style: normal;
  font-weight: 700;
  color: var(--faded-red);
}

.listen-wrap {
  margin-bottom: 2rem;
  animation: homeFadeUp 1s 0.24s ease-out both;
}

.listen-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  background: linear-gradient(180deg, var(--brass-light) 0%, var(--brass) 100%);
  border: 1px solid rgba(42, 35, 25, 0.35);
  border-radius: 2px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.listen-btn {
  text-decoration: none;
  color: var(--parchment);
}

.listen-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-soft);
}

.listen-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.35s ease;
}

.listen-btn:hover .listen-sub {
  opacity: 1;
  max-height: 2rem;
}

.home-intro {
  margin: 0 auto;
  max-width: 520px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  animation: homeFadeUp 1s 0.36s ease-out both;
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-mission {
  position: relative;
  isolation: isolate;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.home-mission::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100vw, 920px);
  height: 100%;
  background: radial-gradient(
    ellipse 100% 85% at 50% 12%,
    rgba(218, 206, 192, 0.38) 0%,
    rgba(232, 226, 218, 0.14) 48%,
    transparent 72%
  );
  animation: missionGlow 32s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.home-mission .exhibit-plaque {
  position: relative;
  z-index: 1;
}

@keyframes missionGlow {
  0% {
    opacity: 0.62;
  }
  100% {
    opacity: 0.95;
  }
}

/* ——— About VVM timeline ——— */
.mission-page {
  padding-bottom: 3rem;
}

.mission-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.mission-hero h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.mission-hero .mission-sub {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--brass-light), var(--brass), var(--brass-light));
  opacity: 0.6;
}

.timeline-node {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
}

.timeline-node:last-child {
  margin-bottom: 0;
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  background: var(--parchment);
  box-shadow: 0 0 0 3px var(--paper);
}

.timeline-node h2,
.timeline-node h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.timeline-node p {
  margin: 0;
  color: var(--ink-soft);
}

.timeline-node .era-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-1 {
  transition-delay: 0.08s;
}
.reveal-stagger-2 {
  transition-delay: 0.16s;
}
.reveal-stagger-3 {
  transition-delay: 0.24s;
}

.mission-thanks {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.mission-thanks h2,
.mission-thanks h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}

/* ——— About Ethan ——— */
.ethan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .ethan-grid {
    grid-template-columns: 1fr;
  }
}

.ethan-text p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.ethan-text p:last-child {
  margin-bottom: 0;
}

.ethan-photo-caption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* ——— Episodes carousel (dark inset for contrast) ——— */
.episodes-stage {
  background: var(--ink);
  color: var(--parchment);
  margin: 0 -1.35rem;
  padding: 0 1.35rem 2rem;
}

@media (min-width: 1000px) {
  .episodes-stage {
    margin: 0 calc(50% - 50vw + 1.35rem);
    padding-left: max(1.35rem, calc(50vw - 480px));
    padding-right: max(1.35rem, calc(50vw - 480px));
  }
}

.hero-episode {
  position: relative;
  min-height: min(78vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.32) saturate(1.05);
  transition: opacity 0.55s ease, transform 10s ease-out;
  transform: scale(1.03);
}

.hero-bg.is-switching {
  opacity: 0.82;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 22, 18, 0.5) 0%,
    rgba(26, 22, 18, 0.78) 50%,
    var(--ink) 100%
  );
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--parchment);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: rgba(122, 92, 46, 0.45);
  border-color: rgba(255, 255, 255, 0.35);
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
}

.carousel-btn--prev {
  left: clamp(0.25rem, 2vw, 1.25rem);
}

.carousel-btn--next {
  right: clamp(0.25rem, 2vw, 1.25rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 226, 216, 0.65);
}

.hero-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #faf6f0;
}

.hero-sub {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-style: italic;
  color: rgba(232, 226, 216, 0.85);
}

.hero-desc {
  margin: 0 auto 2rem;
  max-width: 560px;
  font-size: 1rem;
  color: rgba(232, 226, 216, 0.92);
}

.hero-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .hero-panels {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.65rem;
  }
}

.info-panel {
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  border-top: 3px solid var(--brass-light);
}

.info-panel h2,
.info-panel h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #faf6f0;
}

.info-panel p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(232, 226, 216, 0.88);
}

.quote-section {
  padding: 2.5rem 1rem 3rem;
  background: radial-gradient(ellipse at center top, rgba(122, 92, 46, 0.2) 0%, transparent 50%),
    var(--ink);
}

.animated-quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  text-align: center;
  border-left: 4px solid var(--brass-light);
  background: rgba(255, 255, 255, 0.04);
  animation: quotePulse 6s ease-in-out infinite;
}

.animated-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--parchment);
}

.animated-quote p.quote-anim {
  animation: quoteReveal 0.65s ease-out both;
}

@keyframes quoteReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quotePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(122, 92, 46, 0);
  }
  50% {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }
}

/* ——— Biographies ——— */
.bio-stage {
  padding-bottom: 2rem;
}

.bio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bio-carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.bio-carousel-btn:hover {
  background: var(--paper-deep);
  transform: scale(1.05);
}

.bio-episode-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 700px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
}

.bio-name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--ink);
}

.bio-meta {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.bio-meta span {
  display: inline-block;
}

.bio-meta .sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.bio-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.bio-body p:last-child {
  margin-bottom: 0;
}

.bio-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 240px;
  margin-left: auto;
  border: 6px solid var(--paper-deep);
  box-shadow:
    0 0 0 1px var(--line),
    0 10px 28px var(--shadow-soft);
  background-size: cover;
  background-position: center;
}

@media (max-width: 700px) {
  .bio-portrait {
    margin: 0 auto;
    max-width: 280px;
  }
}

/* ——— Contact ——— */
.contact-page ul {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.contact-page li {
  margin-bottom: 0.35rem;
}

.contact-closing {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0;
  animation: plaqueEnter 0.7s ease 0.72s forwards;
}

/* ——— Episode list (shared) ——— */
.episode-list-section {
  max-width: 900px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 1.75rem;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--ink);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.episode-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.episode-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
  cursor: pointer;
}

.episode-row:first-child {
  border-top: 1px solid var(--line);
}

.episode-row:hover {
  background: rgba(122, 92, 46, 0.06);
}

.episode-thumb {
  width: 130px;
  height: 73px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 3px 12px var(--shadow-soft);
  border: 1px solid var(--line);
}

.episode-row-body h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.episode-row-body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.episode-watch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--parchment);
  background: var(--brass);
  border: 1px solid rgba(42, 35, 25, 0.25);
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.episode-watch:hover {
  background: var(--brass-light);
  text-decoration: none;
  color: var(--parchment);
  transform: translateY(-1px);
}

.episode-watch svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .episode-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .episode-thumb {
    margin: 0 auto;
  }

  .episode-watch {
    justify-content: center;
  }
}

.site-footer {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

/* ——— Episode embedded video ——— */
.episode-video-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

.episode-video-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  background: #0a0a0a;
}

.episode-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ——— Ethan portrait ——— */
.ethan-photo-wrap {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.ethan-photo-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 8px solid var(--paper-deep);
  box-shadow:
    0 0 0 1px var(--line),
    0 12px 40px var(--shadow-soft);
}

/* ——— Static page entrance ——— */
@keyframes plaqueEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exhibit-plaque.animate-on-load {
  animation: plaqueEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.contact-page ul li {
  opacity: 0;
  animation: plaqueEnter 0.55s ease both;
}

.contact-page ul li:nth-child(1) {
  animation-delay: 0.28s;
}
.contact-page ul li:nth-child(2) {
  animation-delay: 0.36s;
}
.contact-page ul li:nth-child(3) {
  animation-delay: 0.44s;
}
.contact-page ul li:nth-child(4) {
  animation-delay: 0.52s;
}
.contact-page ul li:nth-child(5) {
  animation-delay: 0.6s;
}

/* ——— Dynamic text (Episodes + Biographies) ——— */
.text-dyn-run {
  animation: textDynIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--dyn-delay, 0ms);
}

@keyframes textDynIn {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.bio-line-dyn {
  animation: textDynIn 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--line-i, 0) * 55ms + 130ms);
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none !important;
  }

  .home-sky-bg,
  .home-mission::before {
    animation: none !important;
  }

  .text-dyn-run,
  .bio-line-dyn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .animated-quote p.quote-anim {
    animation: none !important;
  }

  .home-mission::before {
    opacity: 0.82;
    transform: translateX(-50%) !important;
  }
}
