:root {
  --ink: #2b241e;
  --muted: #70675d;
  --paper: #f3eadc;
  --cream: #fff8ec;
  --parchment: #eadcc8;
  --walnut: #4a3428;
  --sage: #78846e;
  --sage-dark: #394634;
  --plum: #584252;
  --midnight: #26334b;
  --candle: #c79b57;
  --rosewood: #9f6958;
  --line: rgba(43, 36, 30, 0.16);
  --shadow: 0 24px 70px rgba(43, 36, 30, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-title-size: clamp(2.2rem, 4vw, 3.9rem);
  --section-title-size: clamp(1.75rem, 2.8vw, 2.75rem);
  --card-title-size: 1.36rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.92), rgba(243, 234, 220, 0.98)),
    repeating-linear-gradient(90deg, rgba(74, 52, 40, 0.024) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, rgba(74, 52, 40, 0.018) 0 1px, transparent 1px 11px),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--walnut);
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.8rem clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(250, 241, 228, 0.94)),
    rgba(255, 248, 236, 0.96);
  border-bottom: 1px solid rgba(74, 52, 40, 0.24);
  box-shadow: 0 10px 28px rgba(43, 36, 30, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 236, 0.7);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta {
  color: var(--cream);
  background: var(--walnut);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  min-height: 38px;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.74);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: var(--cream);
  outline: 0;
  box-shadow: 0 10px 24px rgba(36, 29, 24, 0.1);
}

.theme-toggle-icon {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 0;
  background:
    url("assets/web/lamp-off.png") center / contain no-repeat;
}

.theme-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-theme-toggle {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: clamp(3.1rem, 6vw, 5.2rem) clamp(1rem, 4vw, 4rem);
}

section[id],
#listen {
  scroll-margin-top: 88px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding-top: clamp(2.6rem, 5vw, 4.2rem);
  padding-bottom: clamp(2.6rem, 5vw, 4.4rem);
}

.eyebrow,
.label {
  margin: 0 0 0.85rem;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.25rem;
  font-size: var(--hero-title-size);
}

h2 {
  margin-bottom: 1rem;
  font-size: var(--section-title-size);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: var(--card-title-size);
}

.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button.primary {
  color: var(--cream);
  background: var(--walnut);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 248, 236, 0.78);
}

.trust-row {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span {
  padding-right: 0.8rem;
  border-right: 1px solid var(--line);
}

.trust-row span:last-child {
  border-right: 0;
}

.hero-listen {
  max-width: 560px;
  margin-top: 1.65rem;
  padding: 1rem;
  border: 1px solid rgba(74, 52, 40, 0.18);
  border-left: 4px solid var(--candle);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(199, 155, 87, 0.18), rgba(255, 248, 236, 0.8) 44%, rgba(120, 132, 110, 0.12)),
    rgba(255, 248, 236, 0.86);
  box-shadow: 0 16px 42px rgba(43, 36, 30, 0.1);
}

.hero-listen-heading {
  margin-bottom: 0.85rem;
}

.hero-listen-heading .label {
  margin-bottom: 0;
  color: var(--sage-dark);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.cover-art {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(38, 51, 75, 0.1) 42%, rgba(15, 23, 39, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.035) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(0deg, rgba(255, 248, 236, 0.025) 0 1px, transparent 1px 14px),
    var(--midnight);
}

.cover-art::before {
  position: absolute;
  inset: -1%;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 23, 39, 0.5), rgba(15, 23, 39, 0.08) 44%, rgba(15, 23, 39, 0.52)),
    linear-gradient(180deg, rgba(15, 23, 39, 0.32), rgba(15, 23, 39, 0.62)),
    url("assets/web/hero-reading-chair.webp") 38% center / cover no-repeat;
  opacity: 0.82;
  transform: scale(1.04);
}

.cover-art::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow:
    inset 0 0 70px rgba(15, 23, 39, 0.72),
    inset 0 -36px 70px rgba(15, 23, 39, 0.46);
}

.cover-art img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(92%, 500px);
  height: auto;
  max-height: clamp(300px, 34vw, 440px);
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 28px rgba(255, 248, 236, 0.18));
}

.now-playing {
  padding: 1.5rem;
}

.now-playing h2 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.now-playing p {
  color: var(--muted);
}

.latest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
}

.latest-actions .episode-play-button,
.latest-actions .button {
  flex: 0 1 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: center;
  padding-top: clamp(2.1rem, 3.5vw, 3.2rem);
  padding-bottom: clamp(2.1rem, 3.5vw, 3.2rem);
  background:
    linear-gradient(135deg, rgba(38, 51, 75, 0.98), rgba(88, 66, 82, 0.96)),
    var(--midnight);
  color: var(--cream);
}

.intro-band h2 {
  max-width: 680px;
  margin-bottom: 0.75rem;
  font-size: var(--section-title-size);
}

.intro-band p {
  max-width: 780px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 1rem;
}

.intro-copy {
  max-width: 820px;
}

.story-kinds {
  max-width: 760px;
  margin-top: 1.05rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-left: 4px solid var(--candle);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.08);
}

.story-kinds h3 {
  margin-bottom: 0.45rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.15;
}

.story-kinds p {
  margin-bottom: 0.45rem;
  color: rgba(255, 248, 236, 0.74);
  font-size: 0.94rem;
  line-height: 1.5;
}

.story-kinds p:last-child {
  margin-bottom: 0;
}

.review-carousel {
  overflow: hidden;
  align-self: center;
}

.review-track {
  display: grid;
  min-height: 168px;
}

.review-track:has(.review-card:nth-child(2)) .review-card {
  animation: review-fade 18s ease-in-out infinite;
}

.review-track:has(.review-card:nth-child(2)) .review-card:nth-child(2) {
  animation-delay: 6s;
}

.review-track:has(.review-card:nth-child(2)) .review-card:nth-child(3) {
  animation-delay: 12s;
}

.review-carousel:hover .review-card {
  animation-play-state: paused;
}

.review-card {
  grid-area: 1 / 1;
  margin: 0;
  padding: 1.05rem 1.15rem;
  opacity: 1;
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.06);
}

.review-track:has(.review-card:nth-child(2)) .review-card {
  opacity: 0;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.16rem;
  margin-bottom: 0.6rem;
  color: #ffd43b;
}

.review-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  filter: drop-shadow(0 1px 0 rgba(43, 36, 30, 0.22));
}

.review-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.42;
  color: var(--cream);
}

.review-card figcaption {
  margin-bottom: 0.45rem;
  color: rgba(255, 248, 236, 0.7);
  font-weight: 800;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-source img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@keyframes review-fade {
  0% {
    opacity: 0;
  }

  4%,
  34% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
  }
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.platform-list a {
  min-height: 72px;
  padding: 0.68rem 0.78rem;
  border: 1px solid rgba(74, 52, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.82);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(36, 29, 24, 0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.platform-list a:hover,
.platform-list a:focus-visible {
  background: var(--cream);
  border-color: rgba(199, 155, 87, 0.44);
  outline: 0;
  box-shadow: 0 14px 28px rgba(36, 29, 24, 0.12);
  transform: translateY(-2px);
}

.platform-list span,
.platform-list small {
  display: block;
}

.platform-list span {
  font-size: 0.95rem;
  font-weight: 800;
}

.platform-list small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.reading-panel {
  position: relative;
  z-index: 2;
  grid-column: 1;
  justify-self: center;
  width: 100%;
  max-width: 820px;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(74, 52, 40, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(199, 155, 87, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(243, 234, 220, 0.82)),
    var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 236, 0.8),
    0 20px 54px rgba(43, 36, 30, 0.12);
}

.reading-panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.reading-panel-heading .eyebrow {
  margin-bottom: 0;
  color: var(--sage-dark);
}

.reading-panel-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reading-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.reading-item {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  padding: 0.82rem 0.85rem 0.82rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.9), rgba(243, 234, 220, 0.72)),
    var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.72);
}

.reading-item.current {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.94), rgba(234, 220, 200, 0.64)),
    rgba(120, 132, 110, 0.1);
}

.reading-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(120, 132, 110, 0.42);
}

.reading-item.current::before {
  background: var(--candle);
}

.reading-item span {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reading-item strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.08;
}

.reading-item p,
.rewind-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rewind-note {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.7rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(120, 132, 110, 0.26);
  border-left: 4px solid var(--candle);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(120, 132, 110, 0.16), rgba(255, 248, 236, 0.66)),
    rgba(255, 248, 236, 0.72);
}

.rewind-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cream);
  border-radius: 50%;
  background: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.rewind-title span {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--sage-dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rewind-title strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.08;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.55rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

.tone-key {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: -0.45rem 0 0.95rem;
}

.tone-key span {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 58px;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.8rem 0.62rem 0.95rem;
  color: rgba(255, 248, 236, 0.68);
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(52, 63, 48, 0.74), rgba(47, 38, 39, 0.66)),
    rgba(43, 36, 30, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 236, 0.1),
    0 8px 22px rgba(43, 36, 30, 0.1);
  font-size: 0.84rem;
  line-height: 1.32;
  backdrop-filter: blur(10px);
}

.tone-key span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(87, 65, 56, 0.72), rgba(50, 43, 56, 0.66)),
    rgba(43, 36, 30, 0.58);
}

.tone-key span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(55, 50, 66, 0.74), rgba(45, 52, 58, 0.66)),
    rgba(43, 36, 30, 0.58);
}

.tone-key span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--sage);
}

.tone-key span:nth-child(1)::before {
  background: var(--candle);
}

.tone-key span:nth-child(2)::before {
  background: var(--rosewood);
}

.tone-key span:nth-child(3)::before {
  background: var(--plum);
}

.tone-key strong {
  display: inline-block;
  flex: 0 0 auto;
  margin-bottom: 0;
  color: var(--cream);
  font-size: 0.82rem;
  line-height: 1.15;
  white-space: nowrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.filter {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.7);
  cursor: pointer;
}

.filter.is-active {
  color: var(--cream);
  background: var(--sage-dark);
}

.episode-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.episode-card,
.support-card {
  min-height: 250px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.78);
}

.episode-card {
  overflow: hidden;
  padding: 0;
}

.episode-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  box-sizing: border-box;
  padding: 0.65rem;
  object-fit: contain;
  object-position: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(38, 51, 75, 0.12), rgba(88, 66, 82, 0.08)),
    var(--cream);
}

.episode-card > :not(img) {
  margin-left: 1.3rem;
  margin-right: 1.3rem;
}

.episode-card > .tag {
  margin-top: 1.3rem;
  margin-bottom: 0.65rem;
}

.episode-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.95rem;
}

.episode-guide-badge,
.episode-guide-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 32px;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.episode-guide-badge {
  color: var(--sage-dark);
  border: 1px solid rgba(120, 132, 110, 0.28);
  background: rgba(120, 132, 110, 0.14);
}

.episode-guide-badge.sensitive {
  color: #6d4d1c;
  border-color: rgba(199, 155, 87, 0.34);
  background: rgba(199, 155, 87, 0.18);
}

.episode-guide-badge.dark {
  color: var(--plum);
  border-color: rgba(88, 66, 82, 0.3);
  background: rgba(88, 66, 82, 0.13);
}

.episode-guide-note {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.5);
  font-weight: 700;
}

.episode-card > .episode-meta {
  margin-bottom: 1rem;
}

.episode-card > audio {
  display: block;
  width: calc(100% - 2.6rem);
  margin: 1rem 1.3rem 0;
}

.episode-summary {
  font-size: 0.94rem;
  line-height: 1.52;
}

.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
}

.episode-play-button,
.episode-details-button,
.episode-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.48rem 0.76rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.66);
  color: var(--plum);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.episode-details-button:hover,
.episode-link:hover {
  background: var(--cream);
}

.episode-card[hidden] {
  display: none;
}

.episode-empty {
  margin: 1.2rem 0 0;
  padding: 1rem 1.2rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.68);
}

.episode-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(36, 29, 24, 0.62);
  backdrop-filter: blur(8px);
}

.episode-modal[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.episode-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(1.35rem, 3vw, 2rem);
  color: var(--ink);
  border: 1px solid rgba(43, 36, 30, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(243, 234, 220, 0.98)),
    var(--cream);
  box-shadow: var(--shadow);
}

.episode-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.82);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.episode-modal-panel h2 {
  max-width: 620px;
  padding-right: 3rem;
}

.episode-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.episode-detail-meta span {
  padding: 0.26rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.72);
}

.episode-detail-copy p {
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.tag,
.support-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.episode-card p,
.support-card p {
  color: var(--muted);
}

.support-card p {
  font-size: 0.96rem;
}

.episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.episode-meta span {
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.start-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: center;
  justify-content: center;
  padding-top: clamp(1.7rem, 3vw, 2.8rem);
  padding-bottom: clamp(1.7rem, 3vw, 2.8rem);
  min-height: clamp(360px, 34vw, 500px);
  background:
    radial-gradient(circle at 78% 8%, rgba(199, 155, 87, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(234, 220, 200, 0.38), rgba(255, 248, 236, 0.84) 52%, rgba(243, 234, 220, 0.44)),
    var(--paper);
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
}

.reading-art {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: min(100%, 180px);
  justify-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0.48;
  box-shadow: none;
  filter: sepia(0.08) saturate(0.82) contrast(0.95);
  mix-blend-mode: multiply;
  object-fit: contain;
  pointer-events: none;
}

.reading-art-left {
  left: max(-4.8rem, calc(50% - 720px));
  width: clamp(430px, 42vw, 660px);
  transform: translateY(-62%) rotate(-4deg);
}

.reading-art-right {
  right: max(-7rem, calc(50% - 760px));
  width: clamp(390px, 34vw, 590px);
  opacity: 0.42;
  transform: translateY(-18%) rotate(2deg);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  align-items: start;
  padding-top: clamp(2.8rem, 4.5vw, 4rem);
  padding-bottom: clamp(1.6rem, 2.8vw, 2.4rem);
  border-top: 1px solid rgba(74, 52, 40, 0.16);
  background:
    linear-gradient(180deg, rgba(234, 220, 200, 0.5), rgba(255, 248, 236, 0.94)),
    var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.7);
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 20px 54px rgba(43, 36, 30, 0.12);
}

.about-media img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.about-copy p {
  margin-bottom: 0.72rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0.95rem 0;
}

.about-details article {
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.9), rgba(243, 234, 220, 0.74)),
    var(--cream);
}

.about-details span {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-details strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.15;
}

.about-details p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.about-amon-note {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--sage);
  background: rgba(120, 132, 110, 0.11);
}

.about-seo {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.about-signoff {
  margin-top: 0.8rem;
  color: var(--walnut) !important;
  font-family: var(--serif);
  font-size: 1.16rem !important;
  line-height: 1.35;
}

.socials-section {
  padding-top: clamp(2rem, 3.4vw, 3.1rem);
  padding-bottom: clamp(2.2rem, 3.6vw, 3.2rem);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(57, 70, 52, 0.98), rgba(38, 51, 75, 0.96)),
    var(--sage-dark);
}

.socials-section .eyebrow {
  color: var(--candle);
}

.socials-section .section-heading p {
  color: rgba(255, 248, 236, 0.72);
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.social-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 170px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.92), rgba(243, 234, 220, 0.9)),
    var(--cream);
  box-shadow: 0 16px 42px rgba(43, 36, 30, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.social-card:hover,
.social-card:focus-visible {
  background: var(--cream);
  outline: 0;
  box-shadow: 0 20px 52px rgba(43, 36, 30, 0.14);
  transform: translateY(-2px);
}

.social-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.social-card span {
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.08;
}

.social-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.credits-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.62fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: center;
  padding-top: clamp(1.8rem, 3vw, 2.8rem);
  padding-bottom: clamp(1rem, 2vw, 1.8rem);
  border-top: 1px solid rgba(74, 52, 40, 0.18);
  background:
    linear-gradient(180deg, rgba(234, 220, 200, 0.42), rgba(255, 248, 236, 0.98) 34%, rgba(243, 234, 220, 0.96)),
    var(--cream);
}

.credits-copy {
  max-width: 760px;
}

.credits-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.artwork-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: clamp(95px, 8.5vw, 130px) clamp(155px, 13vw, 215px);
  gap: 0;
  align-self: center;
  min-height: clamp(260px, 23vw, 355px);
  padding: 0.45rem 0.2rem;
  isolation: isolate;
}

.artwork-piece {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.82);
  box-shadow: 0 16px 38px rgba(43, 36, 30, 0.13);
  object-fit: cover;
}

.artwork-feature {
  grid-column: 1 / 7;
  grid-row: 1;
  z-index: 5;
  width: 98%;
  height: 96%;
  justify-self: center;
  align-self: end;
  transform: rotate(-1.4deg) translate(0.3rem, 0.3rem);
  object-fit: contain;
  object-position: center;
}

.artwork-logo-card {
  grid-column: 6 / 13;
  grid-row: 1;
  z-index: 4;
  width: 94%;
  height: 94%;
  justify-self: end;
  align-self: start;
  padding: clamp(0.55rem, 1.1vw, 0.9rem);
  transform: rotate(1.8deg) translate(-0.25rem, 0.1rem);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 248, 236, 0.96), rgba(243, 234, 220, 0.72));
}

.artwork-portrait,
.artwork-horse,
.artwork-cow {
  grid-row: 2;
  width: 104%;
  height: 100%;
  align-self: start;
  object-fit: cover;
}

.artwork-portrait {
  grid-column: 1 / 5;
  z-index: 2;
  justify-self: end;
  transform: rotate(-2.4deg) translate(0.35rem, -0.25rem);
  object-position: center 18%;
}

.artwork-horse {
  grid-column: 4 / 9;
  z-index: 3;
  justify-self: center;
  transform: rotate(1.2deg) translate(0, 0.15rem);
  object-position: 35% 50%;
}

.artwork-cow {
  grid-column: 8 / 13;
  z-index: 1;
  justify-self: start;
  transform: rotate(2.2deg) translate(-0.3rem, -0.05rem);
  object-position: 72% 38%;
}

.credit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.credit-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.support-section {
  padding-top: clamp(2.8rem, 4.4vw, 4rem);
  padding-bottom: clamp(2.9rem, 4.5vw, 4.2rem);
  background:
    linear-gradient(135deg, rgba(74, 52, 40, 0.98), rgba(38, 51, 75, 0.96)),
    var(--walnut);
  color: var(--cream);
}

.support-section .eyebrow,
.support-section .section-heading p,
.support-card p {
  color: rgba(255, 248, 236, 0.72);
}

.episodes-section {
  padding-top: clamp(2.9rem, 4.6vw, 4.2rem);
  padding-bottom: clamp(3rem, 4.8vw, 4.4rem);
}

.archive-link {
  margin-top: 0.45rem;
}

.home-latest .tone-key,
.home-latest .filters {
  display: none;
}

.home-latest .episode-card:nth-child(n+5) {
  display: none;
}

.home-latest .episode-card {
  min-height: 0;
}

.home-latest .episode-card > img {
  aspect-ratio: 16 / 9;
  padding: 0.5rem;
}

.home-latest .episode-card > :not(img) {
  margin-left: 1rem;
  margin-right: 1rem;
}

.home-latest .episode-card > .tag {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.home-latest .episode-guide {
  margin-bottom: 0.65rem;
}

.home-latest .episode-summary {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.8em;
  font-size: 0.88rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-latest .episode-card > audio {
  display: none;
}

.home-latest .episode-actions {
  margin: 0.85rem 1rem 1rem;
}

.home-latest .episode-link,
.home-latest .episode-details-button {
  min-height: 34px;
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
}

.archive-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(3rem, 5vw, 4.4rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 18%, rgba(199, 155, 87, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(38, 51, 75, 0.98), rgba(74, 52, 40, 0.94) 52%, rgba(57, 70, 52, 0.96)),
    var(--midnight);
}

.archive-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.archive-hero p {
  max-width: 780px;
  color: rgba(255, 248, 236, 0.75);
  font-size: 1.03rem;
}

.archive-hero .eyebrow {
  color: var(--candle);
}

.archive-hero-copy .archive-tone-key {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 1.05rem 0 0;
}

.archive-hero-copy .archive-tone-key span {
  min-height: 58px;
  justify-content: flex-start;
}

.archive-controls {
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.88), rgba(243, 234, 220, 0.74)),
    var(--cream);
  box-shadow: 0 18px 46px rgba(43, 36, 30, 0.12);
}

.search-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.search-field span {
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.9);
  font: inherit;
}

.search-field input:focus {
  border-color: rgba(199, 155, 87, 0.7);
  outline: 2px solid rgba(199, 155, 87, 0.24);
}

.archive-filters {
  margin-bottom: 0;
}

.archive-tone-key {
  margin: 1.05rem 0 0;
}

.archive-tone-key span {
  min-height: 44px;
  justify-content: flex-start;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.episode-archive-section {
  padding-top: clamp(2rem, 3.8vw, 3rem);
  background:
    linear-gradient(180deg, rgba(234, 220, 200, 0.48), rgba(255, 248, 236, 0.96)),
    var(--cream);
}

.archive-toolbar {
  max-width: 1040px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.archive-count {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.episode-archive-page .archive-grid {
  grid-template-columns: minmax(0, 1000px);
  justify-content: center;
  gap: 0.72rem;
}

.episode-archive-page .episode-card {
  display: grid;
  grid-template-columns: clamp(160px, 14vw, 190px) minmax(0, 1fr);
  align-items: start;
  min-height: 0;
  border-color: rgba(74, 52, 40, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(243, 234, 220, 0.82)),
    var(--cream);
  box-shadow: 0 12px 30px rgba(43, 36, 30, 0.08);
}

.episode-archive-page .episode-card > img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  padding: 0.58rem;
  object-fit: contain;
  object-position: center;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(38, 51, 75, 0.1), rgba(88, 66, 82, 0.06)),
    rgba(255, 248, 236, 0.82);
}

.archive-episode-main {
  min-width: 0;
  padding: 1rem 1.05rem 1.05rem;
}

.episode-archive-page .episode-card > :not(img),
.episode-archive-page .archive-episode-main > * {
  margin-left: 1rem;
  margin-right: 1rem;
}

.episode-archive-page .episode-card > .archive-episode-main,
.episode-archive-page .archive-episode-main > * {
  margin-left: 0;
  margin-right: 0;
}

.archive-episode-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.episode-archive-page .tag {
  margin-bottom: 0;
}

.archive-episode-date {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.episode-archive-page .episode-guide {
  margin-bottom: 0.7rem;
}

.episode-archive-page .episode-card h3 {
  margin-bottom: 0.42rem;
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
}

.episode-archive-page .episode-card h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.episode-archive-page .episode-card h3 a:hover,
.episode-archive-page .episode-card h3 a:focus-visible {
  color: var(--plum);
}

.episode-archive-page .episode-summary {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.episode-archive-page .archive-audio {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
}

.episode-archive-page .episode-actions {
  margin: 0.65rem 0 0;
}

.episode-play-button {
  color: var(--cream);
  border: 1px solid var(--walnut);
  background: var(--walnut);
}

.episode-play-button:hover {
  background: var(--plum);
}

.episode-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.episode-detail-page {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.92), rgba(243, 234, 220, 0.98)),
    var(--paper);
}

.episode-page-hero {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 760px);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  padding-top: clamp(2.2rem, 4vw, 3.2rem);
  padding-bottom: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 20%, rgba(199, 155, 87, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(38, 51, 75, 0.98), rgba(74, 52, 40, 0.94) 52%, rgba(57, 70, 52, 0.96)),
    var(--midnight);
}

.episode-page-copy h1 {
  max-width: 860px;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
}

.episode-page-copy .eyebrow {
  color: var(--candle);
}

.episode-page-summary {
  max-width: 780px;
  color: rgba(255, 248, 236, 0.76);
  font-size: 1rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--cream);
}

.episode-page-artwork {
  grid-row: 1;
  grid-column: 1;
  margin: 0;
  padding: 0.48rem;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.16), rgba(255, 248, 236, 0.06)),
    rgba(255, 248, 236, 0.08);
  box-shadow: 0 18px 46px rgba(20, 18, 20, 0.22);
}

.episode-page-copy {
  grid-row: 1;
  grid-column: 2;
}

.episode-page-artwork img {
  display: block;
  width: 100%;
  max-height: 220px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 248, 236, 0.9);
}

.episode-player-section {
  padding-top: clamp(1.4rem, 2.4vw, 2rem);
  padding-bottom: clamp(1.4rem, 2.4vw, 2rem);
  background: var(--cream);
}

.episode-player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: stretch;
  max-width: 1180px;
}

.episode-player-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--cream);
  border: 1px solid rgba(199, 155, 87, 0.45);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(199, 155, 87, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(76, 51, 38, 0.97), rgba(43, 52, 63, 0.97)),
    var(--walnut);
  box-shadow: 0 22px 54px rgba(43, 36, 30, 0.2);
}

.episode-player-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(199, 155, 87, 0.22), transparent 16%);
}

.episode-player-card > * {
  position: relative;
  z-index: 1;
}

.episode-player-card .eyebrow {
  color: var(--candle);
}

.episode-player-card h2 {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
}

.episode-player-card audio {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.episode-listening-guide {
  padding: clamp(1rem, 1.8vw, 1.2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.94), rgba(243, 234, 220, 0.78)),
    var(--cream);
  box-shadow: 0 18px 46px rgba(43, 36, 30, 0.1);
}

.episode-listening-guide h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.32rem, 2vw, 1.86rem);
}

.episode-listening-guide .episode-guide-badge {
  margin-bottom: 0.7rem;
}

.episode-listening-guide p {
  color: var(--muted);
}

.episode-listening-guide .button {
  margin-top: 0.75rem;
}

.episode-page-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.episode-page-platforms a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.48rem 0.76rem;
  color: var(--plum);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.episode-page-platforms a:hover,
.episode-page-platforms a:focus-visible {
  background: var(--cream);
}

.episode-player-card .episode-page-platforms a {
  color: var(--cream);
  border-color: rgba(255, 248, 236, 0.26);
  background: rgba(255, 248, 236, 0.11);
}

.episode-player-card .episode-page-platforms a:hover,
.episode-player-card .episode-page-platforms a:focus-visible {
  color: var(--ink);
  background: var(--cream);
}

.episode-description-section {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
  gap: clamp(1.4rem, 3vw, 2rem);
  align-items: start;
  padding-top: clamp(1.5rem, 2.8vw, 2.3rem);
  background:
    linear-gradient(180deg, rgba(234, 220, 200, 0.3), rgba(255, 248, 236, 0.98)),
    var(--paper);
}

.episode-description-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.74);
}

.episode-description-copy {
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
}

.episode-description-copy h2 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.episode-description-copy p {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.episode-description-aside {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.episode-connect-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 88%, rgba(199, 155, 87, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 248, 236, 0.95), rgba(239, 229, 212, 0.8)),
    var(--cream);
  box-shadow: 0 14px 34px rgba(43, 36, 30, 0.07);
}

.episode-support-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(125, 91, 54, 0.18);
  border-radius: 999px;
  opacity: 0.55;
}

.episode-social-card {
  color: var(--ink);
  border-color: rgba(120, 132, 110, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(120, 132, 110, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 236, 0.92), rgba(234, 220, 200, 0.68)),
    var(--paper);
  box-shadow: 0 14px 34px rgba(43, 36, 30, 0.07);
}

.episode-connect-card p {
  color: var(--muted);
}

.episode-connect-card h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.12rem, 1.45vw, 1.36rem);
}

.episode-social-card h2 {
  color: var(--ink);
}

.episode-social-card p {
  color: var(--muted);
}

.episode-social-card .eyebrow {
  color: var(--sage-dark);
}

.episode-compact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.episode-compact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.42rem 0.62rem;
  color: var(--plum);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.episode-compact-links a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.episode-support-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
}

.episode-support-links .support-link-review {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 42px;
  color: var(--ink);
  border-color: rgba(199, 155, 87, 0.42);
  background:
    linear-gradient(135deg, rgba(199, 155, 87, 0.18), rgba(255, 248, 236, 0.86)),
    var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.72);
}

.episode-support-links .support-link-review img {
  width: 20px;
  height: 20px;
}

.episode-support-links .support-link-icon {
  justify-content: center;
  min-height: 44px;
  padding: 0.42rem;
}

.episode-support-links .support-link-icon img {
  width: 28px;
  height: 28px;
  max-width: 100%;
}

.episode-support-links .support-link-shop {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 38px;
  color: var(--plum);
}

.episode-social-links a {
  color: var(--ink);
  background: rgba(255, 248, 236, 0.78);
}

.episode-compact-links a:hover,
.episode-compact-links a:focus-visible {
  background: var(--cream);
}

.archive-pagination {
  max-width: 1120px;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
}

.pagination-button {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  color: var(--cream);
  border: 1px solid var(--walnut);
  border-radius: 999px;
  background: var(--walnut);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pagination-button:disabled {
  cursor: default;
  opacity: 0.45;
}

#archive-page-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.support-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.support-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  color: var(--cream);
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.16);
}

.support-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.3rem;
}

.support-card-body p {
  margin-bottom: 1rem;
}

.support-card-body span {
  color: var(--candle);
}

.support-card-body .support-action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 36px;
  margin-top: auto;
  margin-bottom: 0;
  padding: 0.42rem 0.68rem;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.08);
}

.support-card:hover .support-action {
  background: rgba(255, 248, 236, 0.14);
}

.support-card.featured {
  background: var(--sage-dark);
}

.support-card.coffee {
  background: rgba(74, 52, 40, 0.72);
}

.support-card.kofi {
  background: rgba(88, 66, 82, 0.72);
}

.support-card.lenny {
  background: rgba(38, 51, 75, 0.78);
}

.support-visual,
.support-card.merch > img {
  display: flex;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid rgba(255, 248, 236, 0.16);
}

.support-visual {
  align-items: center;
  justify-content: center;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.13), rgba(255, 248, 236, 0.03)),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.035) 0 1px, transparent 1px 12px);
}

.review-visual {
  background:
    linear-gradient(135deg, rgba(57, 70, 52, 0.95), rgba(36, 51, 43, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.04) 0 1px, transparent 1px 12px);
}

.review-slip {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.12);
}

.support-stars {
  display: inline-flex;
  gap: 0.16rem;
  margin-bottom: 0.8rem;
  color: #ffd43b;
}

.support-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  filter: drop-shadow(0 1px 0 rgba(43, 36, 30, 0.28));
}

.review-slip strong {
  display: block;
  max-width: 16rem;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.12;
}

.logo-visual img {
  display: block;
  max-width: 76%;
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
}

.support-card.coffee .logo-visual img {
  max-height: 132px;
}

.support-card.kofi .logo-visual img {
  max-height: 104px;
}

.support-card.lenny .logo-visual img {
  max-height: 112px;
}

.support-card.merch {
  background: var(--plum);
}

.support-card.merch img {
  display: block;
  object-fit: cover;
}

.shop-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(2.8rem, 4.4vw, 4rem);
  padding-bottom: clamp(2.8rem, 4.4vw, 4rem);
  background:
    linear-gradient(180deg, rgba(232, 224, 216, 0.92), rgba(234, 220, 200, 0.9)),
    #e8e0d8;
}

.shop-section > :not(.section-art) {
  position: relative;
  z-index: 1;
}

.section-art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.section-art-horse {
  left: 0;
  bottom: 0;
  width: clamp(430px, 41vw, 600px);
  height: 100%;
  max-width: 56vw;
  object-fit: contain;
  object-position: left bottom;
  opacity: 0.13;
  filter: sepia(0.08) saturate(0.72) contrast(0.95);
  mix-blend-mode: multiply;
  transform: scaleX(-1);
}

.shop-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
}

.shop-copy .button {
  margin-top: 0.7rem;
}

.shop-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.shop-preview a {
  display: block;
  border-radius: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-preview a:hover,
.shop-preview a:focus-visible {
  outline: 0;
  box-shadow: 0 18px 44px rgba(36, 29, 24, 0.16);
  transform: translateY(-2px);
}

.shop-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 14px 36px rgba(36, 29, 24, 0.12);
}

.seo-section {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.seo-section h2 {
  font-size: var(--section-title-size);
}

.seo-section p {
  max-width: 900px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 4rem) 4.75rem;
  color: rgba(255, 248, 236, 0.78);
  background: var(--midnight);
}

.site-footer strong {
  color: var(--cream);
  font-family: var(--serif);
}

.site-footer p {
  margin-bottom: 0.45rem;
}

.footer-email {
  color: var(--cream);
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}

.site-footer nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: center;
}

.social-links {
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.92rem;
}

.footer-note {
  max-width: 44rem;
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.86rem;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  display: inline-grid;
  min-width: 54px;
  height: 38px;
  padding: 0 0.9rem;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 248, 236, 0.28);
  border-radius: 999px;
  background: rgba(74, 52, 40, 0.86);
  box-shadow: 0 14px 34px rgba(43, 36, 30, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--walnut);
  outline: 2px solid rgba(199, 155, 87, 0.56);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .start-section {
    grid-template-columns: minmax(0, 760px);
  }

  .reading-art {
    display: none;
  }

  .reading-panel {
    grid-column: 1;
    justify-self: center;
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .header-theme-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0;
  }

  .site-nav .theme-toggle {
    display: none;
  }

  .nav-cta {
    width: fit-content;
    padding-inline: 1rem !important;
  }

  .hero,
  .intro-band,
  .archive-hero,
  .episode-page-hero,
  .episode-player-layout,
  .episode-description-section,
  .start-section,
  .about-section,
  .credits-section,
  .shop-section {
    grid-template-columns: 1fr;
  }

  .reading-art {
    display: none;
  }

  .reading-panel {
    grid-column: 1;
    justify-self: center;
    max-width: 760px;
  }

  .about-media {
    justify-self: center;
    width: min(100%, 520px);
  }

  .about-media img {
    min-height: 0;
    aspect-ratio: 1;
  }

  .credits-copy {
    max-width: none;
  }

  .section-art {
    display: none;
  }

  .episode-grid,
  .support-grid,
  .platform-list,
  .shop-preview,
  .catalogue-grid,
  .tone-key,
  .social-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-hero-copy .archive-tone-key {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .episode-archive-page .archive-grid {
    grid-template-columns: 1fr;
  }

  .episode-page-artwork {
    justify-self: center;
    width: min(100%, 260px);
  }

  .episode-page-copy,
  .episode-page-artwork {
    grid-column: auto;
    grid-row: auto;
  }

  .episode-description-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .section {
    padding-inline: 1rem;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.35rem);
  }

  .hero {
    min-height: auto;
  }

  .start-section {
    grid-template-columns: 1fr;
  }

  .hero-listen {
    padding: 0.9rem;
  }

  .hero-listen-heading {
    display: block;
  }

  .hero-listen-heading .label {
    margin-bottom: 0.35rem;
  }

  .hero-listen .platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-listen .platform-list a {
    min-height: 66px;
    padding: 0.58rem;
  }

  .hero-listen .platform-list span {
    font-size: 0.86rem;
  }

  .hero-listen .platform-list small {
    font-size: 0.72rem;
  }

  .intro-band {
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .reading-panel-heading {
    display: block;
  }

  .reading-panel-heading p:not(.eyebrow) {
    margin-top: 0.3rem;
    font-size: 0.86rem;
  }

  .review-track {
    min-height: 150px;
  }

  .review-card {
    padding: 0.9rem 1rem;
  }

  .review-card blockquote {
    font-size: 1rem;
    line-height: 1.38;
  }

  .review-source {
    margin-top: 0.6rem;
  }

  .cover-art {
    min-height: 300px;
  }

  .episode-grid,
  .support-grid,
  .shop-preview,
  .catalogue-grid,
  .tone-key,
  .social-card-grid {
    grid-template-columns: 1fr;
  }

  .episode-page-artwork {
    width: min(100%, 210px);
  }

  .episode-page-hero {
    padding-top: 1.8rem;
  }

  .episode-compact-links {
    grid-template-columns: 1fr;
  }

  .episode-support-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archive-hero-copy .archive-tone-key {
    grid-template-columns: 1fr;
  }

  .episode-archive-page .archive-grid {
    grid-template-columns: 1fr;
  }

  .artwork-strip {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: clamp(88px, 24vw, 122px) clamp(138px, 36vw, 190px);
    min-height: clamp(230px, 64vw, 330px);
    padding-inline: 0;
  }

  .artwork-piece {
    height: 100%;
  }

  .artwork-feature {
    grid-column: 1 / 7;
    grid-row: 1;
    height: 96%;
  }

  .artwork-portrait,
  .artwork-horse,
  .artwork-cow {
    aspect-ratio: auto;
  }

  .reading-item p {
    display: none;
  }

  .episode-archive-page .episode-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .episode-archive-page .episode-card > img {
    min-height: 0;
    padding: 0.45rem;
  }

  .archive-episode-main {
    padding: 0.8rem 0.75rem 0.85rem;
  }

  .episode-archive-page .episode-actions {
    margin-top: 0.6rem;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .about-media img {
    min-height: 340px;
  }

  .reading-item {
    min-height: auto;
    padding: 0.7rem;
  }

  .reading-item strong {
    font-size: 1rem;
  }

  .tone-key span {
    min-height: 48px;
    padding: 0.68rem 0.75rem 0.68rem 0.95rem;
    font-size: 0;
  }

  .tone-key strong {
    margin-bottom: 0;
    font-size: 0.88rem;
  }

  .rewind-note {
    align-items: flex-start;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .rewind-note p {
    grid-column: 1 / -1;
  }

  .episode-card,
  .support-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .episode-archive-page .episode-card {
    grid-template-columns: 1fr;
  }

  .episode-archive-page .episode-card > img {
    width: 100%;
    height: min(190px, 52vw);
    aspect-ratio: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .archive-episode-main {
    padding-top: 0.75rem;
  }
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f6ecde;
  --muted: #c8b8a8;
  --paper: #151a1e;
  --parchment: #2f2922;
  --line: rgba(255, 248, 236, 0.17);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% 0%, rgba(199, 155, 87, 0.13), transparent 30%),
    linear-gradient(180deg, #151a1e, #211b18 48%, #171b1d),
    var(--paper);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-nav {
  background:
    linear-gradient(180deg, rgba(28, 27, 24, 0.98), rgba(24, 28, 31, 0.94)),
    #181c1f;
  border-color: rgba(255, 248, 236, 0.16);
}

html[data-theme="dark"] .site-nav {
  color: rgba(246, 236, 222, 0.74);
}

html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a[aria-current="page"] {
  color: var(--cream);
}

html[data-theme="dark"] .brand-mark {
  border-color: rgba(255, 248, 236, 0.24);
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .episode-details-button,
html[data-theme="dark"] .filter,
html[data-theme="dark"] .credit-links a,
html[data-theme="dark"] .episode-page-platforms a,
html[data-theme="dark"] .episode-compact-links a {
  color: var(--cream);
  border-color: rgba(255, 248, 236, 0.2);
  background: rgba(255, 248, 236, 0.08);
}

html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:focus-visible,
html[data-theme="dark"] .button.secondary:hover,
html[data-theme="dark"] .episode-details-button:hover,
html[data-theme="dark"] .episode-details-button:focus-visible,
html[data-theme="dark"] .filter:hover,
html[data-theme="dark"] .filter:focus-visible,
html[data-theme="dark"] .credit-links a:hover,
html[data-theme="dark"] .credit-links a:focus-visible,
html[data-theme="dark"] .episode-page-platforms a:hover,
html[data-theme="dark"] .episode-page-platforms a:focus-visible,
html[data-theme="dark"] .episode-compact-links a:hover,
html[data-theme="dark"] .episode-compact-links a:focus-visible {
  background: rgba(255, 248, 236, 0.14);
}

html[data-theme="dark"] .theme-toggle-icon {
  background:
    url("assets/web/lamp-on.png") center / contain no-repeat;
  filter: drop-shadow(0 0 9px rgba(199, 155, 87, 0.45));
}

html[data-theme="dark"] .nav-toggle {
  border-color: rgba(255, 248, 236, 0.2);
  background: rgba(255, 248, 236, 0.06);
}

html[data-theme="dark"] .nav-toggle span:not(.sr-only) {
  background: var(--cream);
}

html[data-theme="dark"] .nav-cta,
html[data-theme="dark"] .button.primary,
html[data-theme="dark"] .episode-play-button,
html[data-theme="dark"] .pagination-button {
  color: var(--cream);
  border-color: rgba(199, 155, 87, 0.7);
  background: #6a452f;
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .label,
html[data-theme="dark"] .hero-listen-heading .label,
html[data-theme="dark"] .reading-panel-heading .eyebrow,
html[data-theme="dark"] .episode-page-copy .eyebrow {
  color: var(--candle);
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 155, 87, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(21, 26, 30, 0.4), rgba(31, 25, 22, 0.36));
}

html[data-theme="dark"] .hero-lede,
html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .shop-copy p,
html[data-theme="dark"] .about-copy p,
html[data-theme="dark"] .credits-copy p,
html[data-theme="dark"] .episode-card p,
html[data-theme="dark"] .reading-panel-heading p:not(.eyebrow),
html[data-theme="dark"] .reading-item p,
html[data-theme="dark"] .rewind-note p,
html[data-theme="dark"] .episode-description-copy p,
html[data-theme="dark"] .episode-connect-card p,
html[data-theme="dark"] .episode-listening-guide p,
html[data-theme="dark"] .archive-count,
html[data-theme="dark"] #archive-page-status {
  color: var(--muted);
}

html[data-theme="dark"] .hero-listen,
html[data-theme="dark"] .hero-panel,
html[data-theme="dark"] .reading-panel,
html[data-theme="dark"] .episode-card,
html[data-theme="dark"] .about-details article,
html[data-theme="dark"] .about-media,
html[data-theme="dark"] .social-card,
html[data-theme="dark"] .artwork-piece,
html[data-theme="dark"] .archive-controls,
html[data-theme="dark"] .episode-modal-panel,
html[data-theme="dark"] .episode-description-copy,
html[data-theme="dark"] .episode-listening-guide,
html[data-theme="dark"] .episode-connect-card {
  border-color: rgba(255, 248, 236, 0.16);
  background:
    linear-gradient(135deg, rgba(45, 38, 31, 0.9), rgba(28, 32, 35, 0.86)),
    #211f1a;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] .now-playing,
html[data-theme="dark"] .platform-list a,
html[data-theme="dark"] .reading-item,
html[data-theme="dark"] .rewind-note,
html[data-theme="dark"] .tone-key span,
html[data-theme="dark"] .search-field,
html[data-theme="dark"] .episode-support-card,
html[data-theme="dark"] .episode-social-card {
  border-color: rgba(255, 248, 236, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.035)),
    rgba(255, 248, 236, 0.045);
}

html[data-theme="dark"] .platform-list a:hover,
html[data-theme="dark"] .platform-list a:focus-visible {
  border-color: rgba(199, 155, 87, 0.5);
  background: rgba(255, 248, 236, 0.12);
}

html[data-theme="dark"] .episode-support-links .support-link-review {
  color: var(--cream);
  border-color: rgba(199, 155, 87, 0.48);
  background:
    linear-gradient(135deg, rgba(199, 155, 87, 0.2), rgba(255, 248, 236, 0.08)),
    rgba(255, 248, 236, 0.06);
}

html[data-theme="dark"] .episode-support-links .support-link-shop {
  color: var(--cream);
}

html[data-theme="dark"] .episode-detail-meta span,
html[data-theme="dark"] .episode-meta span {
  color: var(--muted);
  border-color: rgba(255, 248, 236, 0.15);
  background: rgba(255, 248, 236, 0.07);
}

html[data-theme="dark"] .episode-card > img,
html[data-theme="dark"] .episode-page-artwork,
html[data-theme="dark"] .episode-page-artwork img,
html[data-theme="dark"] .shop-preview img {
  border-color: rgba(255, 248, 236, 0.14);
  background:
    linear-gradient(135deg, rgba(199, 155, 87, 0.1), rgba(88, 66, 82, 0.1)),
    #211f1a;
}

html[data-theme="dark"] .start-section,
html[data-theme="dark"] .about-section,
html[data-theme="dark"] .credits-section,
html[data-theme="dark"] .shop-section,
html[data-theme="dark"] .episode-description-section,
html[data-theme="dark"] .episode-player-section,
html[data-theme="dark"] .episode-archive-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(199, 155, 87, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(37, 31, 26, 0.9), rgba(21, 26, 30, 0.96)),
    var(--paper);
}

html[data-theme="dark"] .intro-band,
html[data-theme="dark"] .support-section,
html[data-theme="dark"] .socials-section,
html[data-theme="dark"] .archive-hero,
html[data-theme="dark"] .episode-page-hero {
  background:
    radial-gradient(circle at 16% 14%, rgba(199, 155, 87, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(31, 36, 43, 0.98), rgba(63, 45, 38, 0.95)),
    var(--midnight);
}

html[data-theme="dark"] .story-kinds,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .about-amon-note {
  border-color: rgba(255, 248, 236, 0.18);
  background: rgba(255, 248, 236, 0.07);
}

html[data-theme="dark"] .search-field input {
  color: var(--cream);
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.18);
}

html[data-theme="dark"] .search-field input::placeholder {
  color: rgba(246, 236, 222, 0.52);
}

html[data-theme="dark"] .filter.is-active {
  color: var(--cream);
  border-color: rgba(199, 155, 87, 0.7);
  background: rgba(120, 132, 110, 0.48);
}

html[data-theme="dark"] .site-footer {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(24, 28, 31, 0.98), rgba(41, 31, 26, 0.98)),
    #181c1f;
}

html[data-theme="dark"] .back-to-top {
  color: var(--cream);
  border-color: rgba(199, 155, 87, 0.55);
  background: #6a452f;
}
