:root {
  --green-950: #0d3331;
  --green-900: #123f3d;
  --green-800: #174b48;
  --gold: #b8893f;
  --gold-soft: #d3ad68;
  --aqua: #4c9298;
  --coral: #d96b5f;
  --coral-soft: #f0a092;
  --paper: #f7f1e5;
  --paper-strong: #fffaf0;
  --ink: #14201f;
  --muted: #6d6254;
  --line: rgba(184, 137, 63, 0.32);
  --shadow: 0 24px 70px rgba(8, 27, 26, 0.28);
}

* {
  box-sizing: border-box;
}

img,
audio {
  max-width: 100%;
}

main,
section,
article,
aside,
div {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 90%;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 52px);
  color: var(--paper-strong);
  border-bottom: 1px solid rgba(211, 173, 104, 0.16);
  background:
    linear-gradient(180deg, rgba(8, 31, 30, 0.88), rgba(8, 31, 30, 0.68)),
    rgba(8, 31, 30, 0.72);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.header-socials,
.social-button,
.support-button,
.button,
.text-link,
.episode-card a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: start;
  color: rgba(255, 250, 240, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(211, 173, 104, 0.38);
  border-radius: 50%;
}

.nav {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border-radius: 4px;
  color: rgba(255, 250, 240, 0.78);
  overflow: hidden;
}

.nav a::before {
  content: "";
  width: 4px;
  height: 18px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(211, 173, 104, 0.5);
}

.nav a::after {
  content: "";
  position: absolute;
  inset: auto 14px 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav a:hover {
  color: var(--paper-strong);
  background: rgba(255, 250, 240, 0.08);
}

.nav a:hover::before {
  background: var(--coral-soft);
}

.nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.header-socials {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-self: end;
}

.support-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--paper-strong);
  background: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.support-button:hover {
  transform: translateY(-1px);
  background: var(--coral-soft);
  border-color: var(--coral-soft);
}

.social-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(211, 173, 104, 0.7);
  border-radius: 50%;
  color: var(--paper-strong);
  background: rgba(255, 250, 240, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-button:hover {
  transform: translateY(-1px);
  border-color: var(--gold-soft);
}

.social-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-button.spotify:hover {
  color: #122b20;
  background: #1ed760;
  border-color: #1ed760;
}

.social-button.youtube:hover {
  color: #fff;
  background: #ff0033;
  border-color: #ff0033;
}

.social-button.instagram:hover {
  color: #fff;
  background: #d62976;
  border-color: #d62976;
}

.social-button.facebook:hover {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 74px;
  color: var(--paper-strong);
  background: var(--green-950);
}

.hero-banner,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner {
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 28, 27, 0.96), rgba(6, 28, 27, 0.74) 48%, rgba(6, 28, 27, 0.36)),
    linear-gradient(0deg, rgba(6, 28, 27, 0.96), rgba(6, 28, 27, 0.06) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.eyebrow,
.section-kicker,
.tag,
.series-card span {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Spectral", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8.4vw, 7.8rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5.2vw, 4.7rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.hero-copy {
  width: min(690px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: #092927;
  background: var(--gold-soft);
}

.button.secondary {
  border: 1px solid rgba(211, 173, 104, 0.7);
  color: var(--paper-strong);
  background: rgba(255, 250, 240, 0.06);
}

.portal-hero {
  padding: 94px clamp(20px, 5vw, 68px) 30px;
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 33% 11%, rgba(76, 146, 152, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(13, 51, 49, 0.72), rgba(13, 51, 49, 0) 120px),
    linear-gradient(90deg, rgba(76, 146, 152, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(211, 173, 104, 0.1), transparent 34%),
    var(--green-950);
}

.portal-hero-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(260px, 420px);
  gap: clamp(22px, 5vw, 68px);
  max-width: 1320px;
  margin: 0 auto 22px;
  align-items: end;
}

.hero-brand-lockup {
  position: relative;
  display: grid;
  width: min(680px, 100%);
  min-height: clamp(180px, 21vw, 248px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-brand-lockup img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border: 0;
  border-radius: 0;
  opacity: 0.9;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 10%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 14%, #000 82%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0, #000 10%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 14%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-brand-copy {
  max-width: 520px;
  padding: clamp(26px, 4vw, 48px) clamp(16px, 3vw, 34px);
}

.hero-brand-copy p {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.6vw, 2.05rem);
  line-height: 1;
}

.portal-hero-head h1 {
  margin: 0;
  color: var(--paper-strong);
  font-size: clamp(3.35rem, 7vw, 6.4rem);
  line-height: 0.9;
  text-shadow: 0 18px 45px rgba(5, 21, 20, 0.42);
}

.portal-hero-head p:last-child {
  margin-bottom: 8px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.58;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(280px, 0.74fr);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.lead-story,
.latest-panel,
.series-pill {
  border: 1px solid rgba(211, 173, 104, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.075);
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(230px, 350px) minmax(0, 1fr);
  overflow: hidden;
  min-height: 320px;
}

.lead-story > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  background: #050706;
}

.lead-story-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.7vw, 32px);
}

.lead-story-body h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.65vw, 2.55rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.lead-story-body p {
  color: rgba(255, 250, 240, 0.77);
  line-height: 1.62;
}

.lead-story-body audio {
  margin: 10px 0 18px;
}

.latest-panel {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.11), rgba(255, 250, 240, 0.055)),
    rgba(255, 250, 240, 0.075);
}

.panel-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.panel-heading a {
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: none;
}

.latest-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
}

.compact-list {
  display: grid;
}

.compact-item {
  display: grid;
  gap: 6px;
  padding: 10px 0 11px;
  border-top: 1px solid rgba(211, 173, 104, 0.22);
  text-decoration: none;
}

.compact-item:hover strong {
  color: var(--gold-soft);
}

.compact-item span,
.compact-item small {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-item strong {
  color: var(--paper-strong);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.compact-item small {
  color: rgba(255, 250, 240, 0.54);
  text-transform: none;
}

.channel-strip {
  display: flex;
  gap: 10px;
  max-width: 100%;
  padding: 14px clamp(20px, 5vw, 72px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  color: var(--paper-strong);
  background: var(--green-900);
}

.channel-strip a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(211, 173, 104, 0.36);
  border-radius: 999px;
  color: var(--paper-strong);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.spotlight-band {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 5vw, 68px);
  color: var(--paper-strong);
  background:
    linear-gradient(110deg, rgba(217, 107, 95, 0.2), transparent 34%),
    linear-gradient(180deg, var(--green-900), var(--green-950));
}

.spotlight-band .section-heading {
  align-items: center;
}

.spotlight-band .section-heading > p {
  max-width: 380px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.6;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.spotlight-card {
  position: relative;
  display: grid;
  grid-column: span 3;
  min-height: 340px;
  overflow: hidden;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  color: var(--paper-strong);
  isolation: isolate;
  text-decoration: none;
  background: #050706;
}

.spotlight-card:first-child {
  grid-column: span 6;
}

.spotlight-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transform: scale(1.01);
  transition: opacity 180ms ease, transform 180ms ease;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0.12), rgba(5, 7, 6, 0.92)),
    linear-gradient(90deg, rgba(5, 7, 6, 0.72), transparent 68%);
}

.spotlight-card:hover img {
  opacity: 0.62;
  transform: scale(1.04);
}

.spotlight-card > span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(240, 160, 146, 0.58);
  border-radius: 999px;
  color: var(--coral-soft);
  background: rgba(5, 7, 6, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight-card h3 {
  max-width: 620px;
  margin-bottom: 10px;
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.spotlight-card:not(:first-child) h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.spotlight-card p {
  max-width: 520px;
  margin-bottom: 16px;
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.55;
}

.spotlight-card small {
  display: block;
  color: rgba(255, 250, 240, 0.58);
  font-weight: 800;
  line-height: 1.4;
}

.portal-section {
  padding: clamp(34px, 5vw, 56px) clamp(20px, 5vw, 68px);
  background:
    linear-gradient(90deg, rgba(76, 146, 152, 0.12), transparent 38%),
    var(--paper);
}

.series-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
}

.series-pill {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  padding: 18px;
  color: var(--paper-strong);
  background: var(--green-900);
  text-decoration: none;
}

.series-pill:nth-child(2n) {
  background: var(--green-800);
}

.series-pill:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(184, 137, 63, 0.24), transparent 56%),
    var(--green-900);
}

.series-pill span {
  color: var(--gold-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.series-pill small {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.intro,
.series,
.episodes,
.share-story {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 68px);
}

.intro {
  display: grid;
  grid-template-columns: 190px minmax(280px, 860px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, var(--paper-strong), rgba(255, 250, 240, 0.68)),
    var(--paper-strong);
}

.intro-mark img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-copy p,
.share-story p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 1320px;
  margin: 0 auto 28px;
}

.section-heading.split {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
}

.text-link {
  color: var(--green-900);
  font-weight: 900;
}

.series {
  color: var(--paper-strong);
  background:
    linear-gradient(135deg, rgba(76, 146, 152, 0.18), transparent 36%),
    var(--green-950);
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.series-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(211, 173, 104, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.045);
}

.series-card.featured {
  background: linear-gradient(180deg, rgba(184, 137, 63, 0.32), rgba(255, 250, 240, 0.05));
}

.series-card h3 {
  font-size: 1.32rem;
  line-height: 1.32;
}

.episodes {
  background:
    linear-gradient(180deg, rgba(18, 63, 61, 0.06), transparent 220px),
    var(--paper);
}

.episode-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.episode-card {
  display: grid;
  grid-column: span 4;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 31, 0.14);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(8, 27, 26, 0.08);
}

.episode-card:nth-child(1) {
  grid-column: span 6;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: 1fr;
  background:
    linear-gradient(135deg, rgba(184, 137, 63, 0.1), transparent 48%),
    var(--paper-strong);
}

.episode-card:nth-child(2),
.episode-card:nth-child(3) {
  grid-column: span 3;
}

.episode-card:hover {
  border-color: rgba(184, 137, 63, 0.42);
}

.episode-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #050706;
}

.episode-card:nth-child(1) img {
  height: 100%;
  aspect-ratio: auto;
}

.episode-card div {
  padding: 20px;
}

.episode-card:nth-child(1) div {
  align-self: center;
  padding: 24px;
}

.episode-card:nth-child(1) h3 {
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
}

.tag {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
}

.episode-card:nth-child(2n) .tag {
  color: var(--coral);
}

.series-pill:nth-child(3n) span,
.share-story .section-kicker {
  color: var(--coral-soft);
}

.episode-card p {
  color: var(--muted);
  line-height: 1.62;
}

.episode-card-meta {
  display: block;
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.episode-card a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--green-900);
  font-weight: 900;
}

.share-story {
  display: grid;
  grid-template-columns: minmax(280px, 800px) minmax(260px, 520px);
  gap: clamp(24px, 6vw, 76px);
  align-items: end;
  color: var(--paper-strong);
  background: var(--green-900);
}

.share-story p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.76);
}

.site-footer {
  color: var(--paper-strong);
  background:
    linear-gradient(135deg, rgba(217, 107, 95, 0.16), transparent 36%),
    linear-gradient(180deg, var(--green-900), var(--green-950));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(420px, 1.25fr);
  gap: clamp(34px, 7vw, 92px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 82px) clamp(20px, 5vw, 68px);
}

.footer-brand {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(240, 160, 146, 0.55);
  border-radius: 8px;
}

.footer-brand h2 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1.02;
}

.footer-brand p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: var(--coral-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.35;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 68px) 28px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: rgba(255, 250, 240, 0.72);
  text-decoration: none;
}

.player-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 520px) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: var(--paper-strong);
  background: var(--green-800);
}

.player-band h2 {
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
}

.player-band p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.65;
}

audio {
  width: 100%;
}

.listing-page,
.episode-page,
.contact-page,
.simple-page,
.admin-page {
  min-height: 100vh;
  padding: 128px clamp(20px, 5vw, 72px) clamp(64px, 9vw, 118px);
}

.listing-page .section-heading,
.episode-page,
.contact-shell,
.simple-page,
.admin-page {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.listing-page h1,
.episode-detail h1,
.contact-shell h1,
.simple-page h1,
.admin-page h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.95;
}

.lead,
.episode-meta {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.series-grid.light .series-card {
  color: var(--ink);
  background: var(--paper-strong);
  border-color: rgba(20, 32, 31, 0.14);
}

.series-grid.light .series-card h3 {
  color: var(--muted);
}

.series-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: none;
}

.series-grid.light .series-link {
  color: var(--green-900);
}

.episode-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.episode-detail img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #050706;
}

.episode-detail audio {
  margin: 22px 0 18px;
}

.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.secondary.dark {
  color: var(--green-900);
  border-color: var(--line);
}

.content-block {
  max-width: 840px;
  margin-top: clamp(46px, 7vw, 86px);
}

.content-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.rich-text {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.contact-shell p {
  color: var(--muted);
  line-height: 1.72;
}

.form-card {
  padding: 28px;
  border: 1px solid rgba(20, 32, 31, 0.14);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(8, 27, 26, 0.08);
}

.form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid rgba(20, 32, 31, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.form-card textarea {
  resize: vertical;
}

.notice {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.notice.success {
  color: #143b24;
  background: #dff0df;
}

.notice.error {
  color: #621c1c;
  background: #f7dddd;
}

.admin-nav {
  position: sticky;
  z-index: 15;
  top: 74px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(13, 51, 49, 0.96);
}

.admin-nav a {
  color: var(--paper-strong);
  font-weight: 800;
  text-decoration: none;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-tile {
  min-height: 150px;
  padding: 24px;
  border-radius: 8px;
  color: var(--paper-strong);
  background: var(--green-900);
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.admin-table-wrap {
  overflow-x: auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper-strong);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(20, 32, 31, 0.12);
  text-align: left;
  vertical-align: top;
}

.admin-table a {
  color: var(--green-900);
  font-weight: 900;
}

.wide-form {
  max-width: 880px;
}

.checkbox {
  display: flex !important;
  grid-template-columns: auto 1fr;
  gap: 10px !important;
  align-items: center;
}

.checkbox input {
  width: auto;
}

.simple-page code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(20, 32, 31, 0.08);
}

@media (max-width: 1120px) {
  .portal-layout,
  .lead-story {
    grid-template-columns: 1fr;
  }

  .lead-story {
    min-height: auto;
  }

  .lead-story > img {
    height: auto;
    min-height: 280px;
    max-height: 460px;
  }
}

@media (max-width: 980px) {
  .series-grid,
  .admin-grid,
  .series-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .episode-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .episode-card,
  .episode-card:nth-child(2),
  .episode-card:nth-child(3) {
    grid-column: auto;
  }

  .episode-card:nth-child(1) {
    grid-column: 1 / -1;
  }

  .portal-hero-head {
    grid-template-columns: 1fr;
  }

  .hero-brand-lockup {
    width: min(600px, 100%);
    min-height: 210px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .spotlight-card,
  .spotlight-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .header-socials {
    gap: 7px;
  }

  .support-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .social-button {
    width: 38px;
    height: 38px;
  }

  .intro,
  .share-story,
  .section-heading.split,
  .player-band,
  .episode-detail,
  .contact-shell,
  .portal-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    display: grid;
    align-items: start;
  }

  .spotlight-band .section-heading > p {
    max-width: none;
  }

  .intro-mark {
    width: 170px;
  }
}

@media (max-width: 580px) {
  .brand span {
    display: none;
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-socials {
    gap: 5px;
  }

  .support-button {
    min-width: 38px;
    width: 38px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .support-button::before {
    content: "+";
    color: var(--paper-strong);
    font-size: 1.25rem;
    line-height: 1;
  }

  .social-button {
    width: 34px;
    height: 34px;
  }

  .social-button svg {
    width: 18px;
    height: 18px;
  }

  .footer-main {
    padding-top: 42px;
  }

  .footer-brand {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom {
    display: grid;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .series-grid,
  .episode-list,
  .spotlight-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    min-height: 290px;
  }

  .episode-card:nth-child(1) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .episode-card:nth-child(1) img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .series-row {
    grid-template-columns: 1fr;
  }

  .portal-hero {
    padding: 96px 18px 28px;
  }

  .channel-strip {
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 12px 18px;
  }

  .channel-strip a {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .portal-hero-head h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .hero-brand-lockup {
    min-height: 190px;
  }

  .hero-brand-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .lead-story {
    min-height: auto;
  }

  .lead-story > img {
    min-height: 240px;
  }

  .listing-page,
  .episode-page,
  .contact-page,
  .simple-page,
  .admin-page {
    padding-top: 104px;
  }
}
