/* ============================================================
   EXORCISTA UNIVERSE — theexorcista.com
   Single stylesheet · dark cinematic · mobile-first
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --text: #e8e8e8;
  --text-dim: #8a8a8a;
  --silver: #c5c5c5;
  --red: #c11212;
  --red-hot: #ff1a1a;
  --gold: #b89b3a;

  --f-display: 'Cinzel', 'Times New Roman', serif;
  --f-body: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 64px;
  --max-w: 1280px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-hot); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; letter-spacing: .02em; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.eyebrow {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.accent { color: var(--red); }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 7rem 0; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text);
}
.nav__logo span { color: var(--red); }
.nav__menu { display: none; gap: 2rem; list-style: none; }
.nav__menu a {
  font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
}
.nav__cta {
  padding: .5rem 1rem;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: background .2s;
}
.nav__cta:hover { background: var(--red-hot); color: #fff; }
.nav__burger { display: block; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .2s; }
@media (min-width: 900px) {
  .nav__menu { display: flex; }
  .nav__burger { display: none; }
}

/* Mobile menu drawer */
.nav__drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
}
.nav__drawer.open { display: block; }
.nav__drawer ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.nav__drawer a { font-size: 1.1rem; letter-spacing: .1em; text-transform: uppercase; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../img/hero-arena.jpg') center / cover no-repeat;
  filter: brightness(.4) saturate(1.1);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.95) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 6rem 0 4rem;
}
@media (min-width: 900px) {
  .hero__content { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
}
.hero__text .eyebrow { color: var(--red-hot); }
.hero__title { margin-bottom: 1.5rem; }
.hero__title em { font-style: normal; color: var(--red); text-shadow: 0 0 40px rgba(193,18,18,.4); }
.hero__lede {
  font-size: 1.2rem; color: var(--silver);
  max-width: 540px; margin-bottom: 2rem;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 1.75rem;
  font-size: .9rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  border-radius: 2px;
  transition: all .2s;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-hot); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,.2); }
.btn--ghost:hover { border-color: var(--red-hot); color: var(--red-hot); }

.hero__image {
  position: relative;
  display: flex; justify-content: center;
}
.hero__image img {
  max-height: 70vh; width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.8));
}
.hero__badge {
  position: absolute; bottom: 2rem; left: 1.5rem;
  padding: .75rem 1rem;
  background: rgba(193,18,18,.95);
  color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

/* ============================================================
   UNIVERSE GRID (4 shows)
   ============================================================ */
.universe { background: var(--bg); position: relative; }
.section__head { text-align: center; margin-bottom: 4rem; }
.section__head p { max-width: 640px; margin: 1rem auto 0; color: var(--text-dim); }

.shows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .shows { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .shows { grid-template-columns: repeat(5, 1fr); } }

.show {
  position: relative;
  background: #000;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  aspect-ratio: 2 / 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 10px;
}
.show:hover { transform: translateY(-4px); border-color: var(--red); color: var(--text); }
.show__bg { position: absolute; inset: 0; z-index: 0; opacity: 1; transition: opacity .3s; pointer-events: none; }
.show:hover .show__bg { opacity: 1; }
.show__bg img { width: 100%; height: 100%; object-fit: contain; object-position: center center; pointer-events: none; background: #000; }
.show__bg::after { content: none; }
/* Tag caption rendered BELOW the card so it never overlaps baked-in titles */
.show__content { position: absolute; left: 0; right: 0; bottom: -2.4rem; z-index: 2; pointer-events: none; display: flex; justify-content: center; }
.show__tag {
  display: inline-block;
  padding: .28rem .55rem;
  background: transparent;
  color: var(--red-hot, #ff3b3b);
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  border-radius: 0;
}
.show__tag--coming  { color: #c5a23b; }
.show__tag--archive { color: #9a9a9a; }
/* Titles & subtitles are baked into the cover art — hide duplicate text overlays */
.show__title, .show__subtitle { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
/* hero card treatment disabled — all five cards render equal 2:3 tiles so covers aren't cropped */

/* ============================================================
   ALBUM BANNER
   ============================================================ */
.album {
  background: linear-gradient(135deg, #1a0505 0%, #0a0a0a 50%, #0a050a 100%);
  position: relative; overflow: hidden;
}
.album::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(193,18,18,.2) 0%, transparent 60%);
  pointer-events: none;
}
.album__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative; z-index: 2;
}
@media (min-width: 900px) { .album__wrap { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.album__cover {
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 80px rgba(193,18,18,.15);
  overflow: hidden;
  background: #000;
}
.album__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album__cover--portrait { aspect-ratio: 2/3; max-width: 420px; background: #000; }
.album__cover--portrait img { object-fit: contain; }
.album__text h2 { margin-bottom: 1rem; }
.album__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin: 1.5rem 0 2rem;
  font-size: .85rem; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase;
}
.album__meta span strong { color: var(--text); display: block; font-size: 1rem; }
.album__dsps {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.album__dsps a {
  display: inline-block;
  padding: .75rem 1.25rem;
  border: 1px solid rgba(255,255,255,.15);
  font-size: .85rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .2s;
}
.album__dsps a:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   EP1 FEATURE
   ============================================================ */
.ep1 {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ep1__wrap {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .ep1__wrap { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.ep1__visual {
  position: relative;
}
.ep1__visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(193,18,18,.2));
}
.ep1__countdown {
  display: flex; gap: 1rem; margin: 2rem 0;
}
.ep1__countdown div {
  background: var(--bg-3);
  padding: 1rem;
  text-align: center;
  flex: 1;
  border: 1px solid rgba(193,18,18,.3);
}
.ep1__countdown strong {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--red);
}
.ep1__countdown span {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim);
}

/* ============================================================
   PRESS
   ============================================================ */
.press { background: var(--bg); }
.press__head { text-align: center; margin-bottom: 3rem; }
.press__head p {
  font-size: .8rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-dim);
}
.press__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem 4rem;
}
.press__logo {
  font-family: var(--f-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--silver);
  opacity: .6;
  transition: opacity .2s;
  letter-spacing: .05em;
}
.press__logo:hover { opacity: 1; color: var(--text); }

/* ============================================================
   CREATOR
   ============================================================ */
.creator {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.creator__wrap {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .creator__wrap { grid-template-columns: 1fr 1.5fr; gap: 5rem; } }
.creator__image {
  max-width: 400px; margin: 0 auto;
  position: relative;
}
.creator__image img {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  filter: grayscale(.2) contrast(1.05);
}
.creator__quote {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--silver);
  margin: 1.5rem 0 2rem;
  font-style: italic;
}
.creator__name {
  font-weight: 600; color: var(--text);
  font-size: 1rem;
}
.creator__title {
  font-size: .85rem; color: var(--text-dim);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news {
  background: var(--bg-3);
  text-align: center;
  padding: 5rem 1.5rem;
}
.news h2 { margin-bottom: 1rem; }
.news p { color: var(--text-dim); max-width: 520px; margin: 0 auto 2rem; }
.news__form {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  max-width: 500px; margin: 0 auto;
}
.news__form input {
  flex: 1; min-width: 200px;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text);
  font-family: var(--f-body);
  font-size: .95rem;
}
.news__form input:focus { outline: none; border-color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__wrap {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 700px) { .footer__wrap { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand h4 {
  font-size: 1.2rem; letter-spacing: .2em; margin-bottom: 1rem;
}
.footer__brand p { color: var(--text-dim); font-size: .9rem; }
.footer__col h5 {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 1rem;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: .6rem; }
.footer__col a { color: var(--text-dim); font-size: .9rem; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  color: var(--text-dim); font-size: .8rem;
}
.footer__social { display: flex; gap: 1.5rem; }
.footer__social a { color: var(--text-dim); letter-spacing: .1em; }

/* ============================================================
   HOME HERO (unified TOC + flagship)
   ============================================================ */
.home-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 6rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #181818 0%, #0a0a0a 60%, #050505 100%);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
/* Transparent briefcase-with-skull watermark behind TOC */
.home-hero__briefcase {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 85vw);
  aspect-ratio: 1 / 1;
  background: url('/assets/img/brand/briefcase-skull-web.png') center/contain no-repeat;
  opacity: .16;
  filter: grayscale(.4) brightness(.85) contrast(1.15);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 40%, transparent 92%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 40%, transparent 92%);
}
.home-hero__briefcase::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(193,18,18,.4) 0%, rgba(193,18,18,0) 70%);
  filter: blur(40px);
  pointer-events: none;
}
.home-hero .container { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .home-hero__briefcase { opacity: .11; width: 110vw; top: 8%; }
}
.home-hero__toc {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.home-hero__toc .eyebrow {
  letter-spacing: .35em;
  color: var(--red);
  margin-bottom: 2.5rem;
}
.home-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  color: #fff;
}
.home-hero__title .accent {
  color: var(--red);
}
.home-hero__lede {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--silver);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.home-hero__meta {
  font-family: var(--f-display);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--silver);
  font-size: .78rem;
  margin: 0;
}
.home-hero__divider {
  width: 80px;
  height: 1px;
  background: var(--red);
  margin: 5rem auto 4rem;
  opacity: .6;
}
.home-hero__flagship {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .home-hero__flagship {
    grid-template-columns: 440px 1fr;
    gap: 4rem;
  }
}
.home-hero__char {
  position: relative;
}
.home-hero__char img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(193,18,18,.08);
}
.home-hero__body .show-block__tag {
  color: var(--red);
  letter-spacing: .3em;
  font-size: .7rem;
  margin-bottom: 1.25rem;
}
.home-hero__body h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: #fff;
  text-transform: none;
}
.home-hero__body .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--silver-2, #d4d4d4);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.home-hero__body .desc {
  color: var(--silver);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0 0 2rem;
}

/* ============================================================
   PAGE HERO (non-homepage pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: .22;
  background-position: center; background-size: cover;
  filter: none;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(10,10,10,.85) 100%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { margin: 1rem 0; }
.page-hero__lede {
  color: var(--silver);
  font-size: 1.15rem;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

/* Breadcrumbs */
.crumbs {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--red); }
.crumbs span { margin: 0 .5rem; color: rgba(255,255,255,.2); }

/* ============================================================
   CONTENT (prose)
   ============================================================ */
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.prose h3 {
  margin-top: 2rem;
  margin-bottom: .75rem;
  font-size: 1.3rem;
}
.prose p {
  color: var(--silver);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.prose ul, .prose ol {
  color: var(--silver);
  margin: 0 0 1.5rem 1.5rem;
}
.prose li { margin-bottom: .5rem; line-height: 1.7; }
.prose blockquote {
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.5;
}
.prose strong { color: var(--text); }
.prose a { color: var(--red); border-bottom: 1px solid rgba(193,18,18,.35); }
.prose a:hover { color: var(--red-hot); border-color: var(--red-hot); }
.prose hr {
  border: 0;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 3rem 0;
}

/* ============================================================
   CHARACTER / LORE PROFILE
   ============================================================ */
.profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) { .profile { grid-template-columns: 1fr 1.8fr; gap: 4rem; } }
.profile__card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  position: sticky; top: calc(var(--nav-h) + 1rem);
}
.profile__img {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #1a0505, #0a0a0a);
  border: 1px solid rgba(193,18,18,.2);
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.profile__img img { width: 100%; height: 100%; object-fit: cover; }
.profile__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(20,180,120,.22), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,.06);
}
.profile__placeholder-sym {
  font-family: var(--f-display, Georgia, serif);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  color: rgba(140, 255, 180, .45);
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 0 30px rgba(60,255,160,.25);
}
.profile__stats { list-style: none; }
.profile__stats li {
  display: flex; justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .85rem;
}
.profile__stats li:last-child { border: 0; }
.profile__stats strong {
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .7rem;
}
.profile__stats span { color: var(--text); text-align: right; }

/* ============================================================
   PRESS WALL — logo/chip list of outlets on /lore/victoria-unikel/
   ============================================================ */
.press-wall {
  list-style: none;
  padding: 0;
  margin: 1rem 0 .5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .5rem;
}
.press-wall li { margin: 0; }
.press-wall a {
  display: inline-block;
  padding: .45rem .85rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  color: var(--text);
  text-decoration: none;
  font-family: var(--f-display, inherit);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.press-wall a:hover {
  border-color: var(--silver, #bfbfbf);
  background: rgba(255,255,255,.06);
  color: #fff;
}

/* ============================================================
   EPISODE / TALE GRID
   ============================================================ */
.ep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .ep-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .ep-grid { grid-template-columns: 1fr 1fr 1fr; } }

.ep-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
  display: block;
  position: relative;
}
.ep-card:hover { border-color: var(--red); transform: translateY(-2px); color: var(--text); }
.ep-card__num {
  font-family: var(--f-display);
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--red);
  margin-bottom: .5rem;
}
.ep-card__title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.ep-card__meta {
  font-size: .75rem;
  color: var(--text-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.ep-card__desc { color: var(--silver); font-size: .95rem; }
.ep-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: .25rem .5rem;
  background: var(--red);
  color: #fff;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 700;
}
.ep-card__badge--soon {
  background: rgba(184,155,58,.9); color: #000;
}
.ep-card__badge--live {
  background: #2d8f2d; color: #fff;
  animation: pulse 2s infinite;
}

/* ============================================================
   YOUTUBE EMBED
   ============================================================ */
.yt-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.yt-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.yt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 800px) { .yt-grid { grid-template-columns: 1fr 1fr; } }

/* Homepage embed blocks (Spotify artist strip + podcast show) */
.hp-spotify-embed { margin-top: 1.25rem; }
.hp-spotify-embed iframe, .hp-podcast-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #000;
}
.hp-podcast-embed {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: .75rem;
  background: var(--bg-2);
}
.album__dsps__more {
  display: inline-flex;
  align-items: center;
  color: var(--red-hot);
  font-family: var(--f-display);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-left: .5rem;
  padding: 1rem 0;
}
.album__dsps__more:hover { color: #fff; }

/* ============================================================
   EMBEDDED PLAYERS (Spotify / Apple Music / YouTube / Apple Podcasts)
   ============================================================ */
.player-embeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .player-embeds { grid-template-columns: 1fr 1fr; }
  .player-embed--wide { grid-column: 1 / -1; }
}
.player-embed {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1rem 1rem 1.25rem;
}
.player-embed__label {
  font-family: var(--f-display);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 0 0 .75rem;
  padding-left: .25rem;
}
.player-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #000;
}

/* ============================================================
   DSP / PLATFORM BUTTONS
   ============================================================ */
.dsps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 700px) { .dsps { grid-template-columns: repeat(3, 1fr); } }
.dsp {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.15);
  background: var(--bg-2);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all .2s;
  text-align: center;
}
.dsp:hover { border-color: var(--red); color: var(--red); background: var(--bg-3); }
.dsp strong { display: block; font-family: var(--f-display); font-size: 1rem; }
.dsp span { display: block; font-size: .7rem; color: var(--text-dim); letter-spacing: .15em; margin-top: .15rem; }

/* ============================================================
   TRACK LIST
   ============================================================ */
.tracks {
  list-style: none;
  counter-reset: t;
  border-top: 1px solid rgba(255,255,255,.06);
}
.tracks li {
  counter-increment: t;
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 1rem; align-items: center;
  padding: 1rem .25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
}
.tracks li::before {
  content: counter(t, decimal-leading-zero);
  color: var(--red);
  font-family: var(--f-display);
  font-size: .85rem;
}
.tracks strong { color: var(--text); font-weight: 500; }
.tracks span { color: var(--text-dim); font-size: .85rem; font-variant-numeric: tabular-nums; }

/* ============================================================
   PRESS / EPK
   ============================================================ */
.epk-assets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .epk-assets { grid-template-columns: 1fr 1fr; } }
.epk-asset {
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.epk-asset strong { display: block; color: var(--text); font-weight: 500; margin-bottom: .25rem; }
.epk-asset span { color: var(--text-dim); font-size: .8rem; }

/* ============================================================
   TIMELINE (about)
   ============================================================ */
.timeline {
  border-left: 2px solid rgba(193,18,18,.3);
  padding-left: 2rem;
  margin: 2rem 0;
}
.timeline__item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: .3rem;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(193,18,18,.15);
}
.timeline__date {
  font-family: var(--f-display);
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: .25rem;
  display: block;
}
.timeline__title {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
}
.timeline__title strong { color: #fff; font-weight: 600; }

/* Era grouping */
.timeline-era { margin: 3rem 0 2rem; }
.timeline-era:first-of-type { margin-top: 1rem; }
.timeline-era__label {
  font-family: var(--f-display);
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--silver, #bfbfbf);
  text-transform: uppercase;
  margin: 0 0 .5rem;
  padding-left: 2rem;
  border-left: 2px solid transparent;
}
.timeline-era .timeline { margin: 0; }
.timeline-era + .timeline-era .timeline { padding-top: .5rem; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2rem;
  margin: 2rem 0;
}
.contact-card h3 {
  font-size: 1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.contact-card a.email {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--text);
}

/* ============================================================
   QUOTES (press)
   ============================================================ */
.press-quote {
  padding: 2rem;
  background: var(--bg-2);
  border-left: 3px solid var(--red);
  margin-bottom: 1.5rem;
}
.press-quote p {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.press-quote cite {
  color: var(--text-dim);
  font-style: normal;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .75rem;
}

/* ============================================================
   CTA BAND (between sections)
   ============================================================ */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0505, #0a0a0a);
  text-align: center;
  border-top: 1px solid rgba(193,18,18,.2);
  border-bottom: 1px solid rgba(193,18,18,.2);
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--silver); max-width: 560px; margin: 0 auto 2rem; }

/* ============================================================
   FADE-IN
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGE LAYOUT HELPERS
   ============================================================ */
.section--tight { padding: 4rem 0; }
.text-center { text-align: center; }

/* ============================================================
   SHOWS UNIVERSE (watch hub)
   ============================================================ */
.shows-universe { padding: 4rem 0 6rem; }
.show-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.show-block:first-child { border-top: none; padding-top: 0; }
@media (min-width: 900px) {
  .show-block { grid-template-columns: 340px 1fr; gap: 3rem; padding: 3rem 0; align-items: start; }
  .show-block--feature { grid-template-columns: 400px 1fr; }
  .show-block--reverse { grid-template-columns: 1fr 400px; }
  .show-block--reverse .show-block__body { order: 1; }
  .show-block--reverse .show-block__cover { order: 2; }
}
.show-block__cover { position: relative; }
.show-block__cover a { display: block; overflow: hidden; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06); transition: transform .3s ease, box-shadow .3s ease; }
.show-block__cover a:hover { transform: translateY(-4px); box-shadow: 0 24px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(193,18,18,.3); }
.show-block__cover img { width: 100%; height: auto; display: block; aspect-ratio: 2 / 3; object-fit: contain; background: #000; }
.show-block--feature .show-block__cover img { aspect-ratio: 2 / 3; }
.show-block__tag {
  display: inline-block;
  padding: .35rem 0;
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: transparent;
  color: var(--red, #c11212);
  border: 0;
  border-radius: 0;
}
.show-block__tag--coming,
.show-block__tag--archive,
.show-block__tag--live { background: transparent; color: var(--red, #c11212); }
.show-block__title { font-size: 2rem; margin: 0 0 .75rem; line-height: 1.1; }
@media (min-width: 900px) { .show-block__title { font-size: 2.4rem; } }
.show-block__lede { font-size: 1.15rem; color: var(--silver, #c7c7c7); margin-bottom: 1rem; line-height: 1.5; }
.show-block__desc { color: var(--text-dim, #9a9a9a); line-height: 1.65; margin-bottom: 1.5rem; }
.show-block__desc a { color: var(--silver, #c7c7c7); }
.show-block__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ============================================================
   SHOW HERO (individual show page — cover + text)
   ============================================================ */
.show-hero { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.show-hero__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .show-hero__wrap { grid-template-columns: 360px 1fr; gap: 3rem; }
}
.show-hero__cover { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06); background: var(--bg-3); }
.show-hero__cover img { width: 100%; height: auto; display: block; }
.show-hero__body p { line-height: 1.7; color: var(--text-dim, #9a9a9a); margin-bottom: 1rem; }
.show-hero__body p:first-of-type { color: var(--silver, #c7c7c7); font-size: 1.05rem; }
.show-hero__body strong { color: #fff; }
.show-hero__body a { color: var(--silver, #c7c7c7); text-decoration: underline; text-decoration-color: rgba(193,18,18,.5); }
