/* ================================================================== *
 * Power Rock Podcast — classic-rock theme
 * Palette from Jim's site: black + red, with a fire/ember layer.
 * ================================================================== */
:root {
  --font-frak: 'Pirata One', 'Times New Roman', serif;
  --font-display: 'Anton', system-ui, sans-serif;
  --font-cond: 'Oswald', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --black: #000;
  --ink: #0a0807;
  --ink-2: #16110d;
  --ink-3: #1f1813;
  --line: #2c2318;
  --smoke: #a89c8e;
  --bone: #f3ede1;

  --red: #ff1f1f;
  --red-hot: #ff3b30;
  --red-deep: #d51a1a;
  --red-blood: #8f0f14;
  --ember: #ff6a1a;
  --flame: #ffa11a;
  --gold: #ffc23a;

  --glow: 0 0 0 1px rgba(255, 74, 26, 0.35), 0 8px 44px -6px rgba(255, 74, 26, 0.5);
  --maxw: 76rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-sans);
  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; }
::selection { background: var(--red); color: #fff; }
* { scrollbar-color: var(--red-deep) var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }

/* --- type helpers --- */
.eyebrow { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.28em; font-weight: 600; font-size: 0.75rem; color: var(--flame); }
.display { font-family: var(--font-display); text-transform: uppercase; line-height: 0.92; letter-spacing: 0.01em; }
.frak { font-family: var(--font-frak); line-height: 0.95; }
.chrome {
  background: linear-gradient(180deg, #fff 0, #d8d8dc 18%, #8a8a90 48%, #f2f2f4 52%, #6f6f76 82%, #cfcfd4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.6));
}
.fire-text {
  background: linear-gradient(180deg, #ffe08a 0, var(--gold) 26%, var(--ember) 62%, var(--red) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 18px rgba(255, 74, 26, 0.55));
}
.flame-rule { height: 3px; border: 0; margin: 0; background: linear-gradient(90deg, transparent, var(--ember) 20%, var(--gold) 50%, var(--ember) 80%, transparent); box-shadow: 0 0 18px rgba(255, 74, 26, 0.6); }

/* --- buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; border-radius: 0.4rem; padding: 0.75rem 1.4rem; cursor: pointer; border: 1px solid transparent; transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn-ember { background: linear-gradient(180deg, var(--flame), var(--ember) 55%, var(--red)); color: #1a0a00; font-weight: 700; box-shadow: 0 6px 26px -8px rgba(255, 106, 26, 0.85); }
.btn-ember:hover { filter: brightness(1.08); box-shadow: 0 10px 32px -6px rgba(255, 106, 26, 0.95); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ember); color: #fff; }

.card { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border: 1px solid var(--line); border-radius: 0.9rem; }

/* --- grain + reveal --- */
.grain::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; z-index: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E"); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ================================================================== *
 * NAV
 * ================================================================== */
.site-nav { position: fixed; inset: 0 0 auto 0; z-index: 40; border-bottom: 1px solid transparent; transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s; }
.site-nav.scrolled { background: rgba(0, 0, 0, 0.85); border-bottom-color: var(--line); backdrop-filter: blur(10px); }
.site-nav .inner { display: flex; height: 68px; align-items: center; justify-content: space-between; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-cond); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--smoke); transition: color 0.2s; }
.nav-links a:hover { color: var(--bone); }
.nav-toggle { background: none; border: 0; color: var(--bone); cursor: pointer; padding: 0.25rem; }
.nav-toggle svg { width: 1.75rem; height: 1.75rem; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: rgba(0, 0, 0, 0.96); backdrop-filter: blur(10px); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.85rem 0; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.12em; color: var(--smoke); }
@media (min-width: 860px) { .nav-links { display: flex; } .nav-toggle { display: none; } }

/* logo lockup */
.logo { display: inline-flex; align-items: center; gap: 0.75rem; }
.prp-mark { display: inline-block; object-fit: contain; }
.logo .prp-mark { height: 2.9rem; width: 2.9rem; flex: none; filter: drop-shadow(0 2px 10px rgba(255, 106, 26, 0.45)); }
.logo .word { line-height: 1; }
.logo .word .name { font-family: var(--font-frak); font-size: 1.7rem; display: block; }
.logo .word .sub { font-family: var(--font-cond); font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.46em; color: var(--flame); display: block; }

/* ================================================================== *
 * HERO
 * ================================================================== */
.hero { position: relative; overflow: hidden; }
.hero .glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(70% 50% at 50% 108%, rgba(255, 106, 26, 0.38), transparent 60%), radial-gradient(55% 45% at 50% -8%, rgba(255, 193, 58, 0.14), transparent 60%), radial-gradient(40% 40% at 82% 30%, rgba(143, 15, 20, 0.4), transparent 70%); }
.hero .grille { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05; background-image: repeating-linear-gradient(90deg, #fff 0 1px, transparent 1px 7px); }
.hero .inner { position: relative; z-index: 10; min-height: 94vh; display: grid; align-items: center; gap: 2rem; padding-block: 7rem 5rem; }
@media (min-width: 900px) { .hero .inner { grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; } }
@media (max-width: 899px) { .hero .inner { min-height: auto; padding-top: 6rem; } .hero-art { order: -1; } }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: 100%; max-width: 680px; height: auto; filter: drop-shadow(0 0 70px rgba(255, 106, 26, 0.4)); }
@media (max-width: 899px) { .hero-art img { max-width: 340px; } }
.hero .eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }
.hero .eyebrow-row .prp-mark { width: 2.5rem; height: 2.5rem; }
.hero h1 { font-family: var(--font-frak); font-size: clamp(2.75rem, 8.5vw, 6.75rem); margin: 1.5rem 0 0; line-height: 0.95; }
.hero h1 span { display: block; }
.hero .lede { max-width: 42rem; margin-top: 1.75rem; font-size: 1.2rem; color: var(--smoke); }
.hero .lede strong { color: var(--bone); font-weight: 600; }
.hero .cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .stats { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.hero .stats .big { font-family: var(--font-display); font-size: 1.75rem; color: var(--bone); }
.hero .stats .small { font-family: var(--font-cond); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--smoke); }
.hero .base-flame { position: absolute; inset: auto 0 0 0; z-index: 10; }

/* ================================================================== *
 * SECTION SHELL
 * ================================================================== */
.section { padding: 6rem 0; scroll-margin-top: 5rem; }
.section .head { max-width: 40rem; }
.section .head h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3rem); color: var(--bone); margin: 0.6rem 0 0; line-height: 1; }
.section .head p { margin-top: 1rem; color: var(--smoke); }

/* ================================================================== *
 * EPISODES
 * ================================================================== */
.ep-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
.ep-grid.featured { grid-template-columns: 1fr; }
.ep-grid.rest { grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 640px) { .ep-grid.rest { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ep-grid.featured { grid-template-columns: 1fr 1fr; } .ep-grid.rest { grid-template-columns: 1fr 1fr 1fr; } }

.ep { position: relative; display: flex; flex-direction: column; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; cursor: pointer; }
.ep:hover { border-color: rgba(255, 106, 26, 0.6); box-shadow: var(--glow); }
.ep .art { position: relative; overflow: hidden; aspect-ratio: 1; }
.ep.is-featured .art { aspect-ratio: 16/10; }
@media (min-width: 640px) { .ep.is-featured { flex-direction: row; } .ep.is-featured .art { width: 42%; aspect-ratio: auto; } }
.ep .art img, .ep .art .placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ep:hover .art img { transform: scale(1.05); }
.ep .art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 55%); }
.ep .badges { position: absolute; left: 0.75rem; top: 0.75rem; z-index: 2; display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start; }
.ep .badge { display: inline-flex; align-items: center; gap: 0.3rem; border-radius: 999px; padding: 0.25rem 0.6rem; font-family: var(--font-cond); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.ep .badge svg { width: 0.8rem; height: 0.8rem; }
.ep .badge--vet { background: linear-gradient(180deg, #4a5a30, #2b3618); color: #e8f0d4; border: 1px solid rgba(150, 180, 90, 0.5); }
.ep .play { position: absolute; right: 0.75rem; bottom: 0.75rem; z-index: 3; width: 3rem; height: 3rem; border-radius: 999px; border: 0; display: grid; place-items: center; cursor: pointer; background: var(--red); color: #fff; box-shadow: 0 4px 18px -4px rgba(255, 31, 31, 0.9); transition: transform 0.2s, background 0.2s; }
.ep .play:hover { transform: scale(1.06); background: var(--red-hot); }
.ep .play.disabled { background: var(--ink-3); color: var(--smoke); cursor: not-allowed; box-shadow: none; }
.ep .play svg { width: 1.25rem; height: 1.25rem; }
.ep .body { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.25rem; flex: 1; }
.ep .meta { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-cond); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; }
.ep .meta .genre { color: var(--flame); font-weight: 600; }
.ep .meta .dot, .ep .meta .year { color: var(--smoke); }
.ep h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--bone); margin: 0; line-height: 1.05; }
.ep .guest { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; font-weight: 500; color: var(--smoke); margin: 0; }
.guest svg { width: 0.9rem; height: 0.9rem; flex: none; color: var(--ember); }
.ep .desc { font-size: 0.9rem; color: var(--smoke); margin: 0.25rem 0 0; }
.ep:not(.is-featured) .desc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ep .soon { margin-top: auto; padding-top: 0.5rem; font-family: var(--font-cond); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(168, 156, 142, 0.7); }

/* placeholder cover (no image) */
.placeholder { position: relative; display: grid; place-items: center; background: linear-gradient(135deg, #1a0a0a, #050506); }
.placeholder .initials { font-family: var(--font-display); font-size: 3rem; color: rgba(243, 237, 225, 0.9); }
.placeholder .glowdot { position: absolute; right: -2rem; top: -2.5rem; width: 10rem; height: 10rem; border-radius: 999px; filter: blur(40px); background: radial-gradient(circle, rgba(255, 74, 26, 0.55), transparent 70%); }

/* eq bars */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; margin-left: auto; }
.eq span { width: 3px; background: #fff; transform-origin: bottom; animation: eq 0.9s ease-in-out infinite; }
.eq span:nth-child(2) { animation-delay: 0.25s; }
.eq span:nth-child(3) { animation-delay: 0.1s; }
.eq span:nth-child(4) { animation-delay: 0.4s; }
@keyframes eq { 0%, 100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

/* Interviews toolbar (search + year filter + load more) */
.ep-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 2.5rem; }
.ep-search { display: flex; align-items: center; gap: 0.5rem; background: var(--ink-2); border: 1px solid var(--line); border-radius: 0.5rem; padding: 0.5rem 0.8rem; flex: 1; min-width: 220px; max-width: 420px; }
.ep-search svg { width: 1.05rem; height: 1.05rem; color: var(--smoke); flex: none; }
.ep-search input { flex: 1; background: transparent; border: 0; outline: none; color: var(--bone); font-family: var(--font-sans); font-size: 0.95rem; }
.ep-search input::placeholder { color: color-mix(in srgb, var(--smoke) 80%, transparent); }
.ep-search:focus-within { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.15); }
.prp-select { background: var(--ink-2); border: 1px solid var(--line); border-radius: 0.5rem; padding: 0.55rem 2.2rem 0.55rem 0.8rem; color: var(--bone); font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a89c8e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.7rem center; }
.prp-select:focus { outline: none; border-color: var(--ember); }
.ep-count { margin-left: auto; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: var(--smoke); }
.ep-empty { margin-top: 2rem; color: var(--smoke); }
.ep-more-wrap { margin-top: 2.5rem; text-align: center; }
.ep-more-wrap .btn[hidden] { display: none; }

/* ================================================================== *
 * ABOUT
 * ================================================================== */
.about { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); }
.about .glow { position: absolute; inset: 0; pointer-events: none; opacity: 0.4; background: radial-gradient(50% 60% at 15% 30%, rgba(255, 31, 31, 0.12), transparent 70%); }
.about .grid { position: relative; display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .about .grid { grid-template-columns: 1.1fr 0.9fr; } }
.about .story p { color: var(--smoke); margin: 0 0 1.25rem; }
.about .story p strong { color: var(--bone); }
.about blockquote { margin: 2rem 0 0; border-left: 2px solid var(--red); padding-left: 1.25rem; font-family: var(--font-cond); font-style: italic; font-size: 1.15rem; color: var(--bone); }
.about .side { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.about figure { margin: 0; overflow: hidden; position: relative; }
.about figure .imgwrap { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.about figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about figure::after { }
.about figure .cap-shade { position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.2) 40%, transparent); }
.about figure figcaption { position: absolute; left: 0; bottom: 0; padding: 1.25rem; }
.about figure figcaption .name { font-family: var(--font-frak); font-size: 1.6rem; }
.about figure figcaption .role { font-family: var(--font-cond); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--flame); }
.about .pillars { padding: 1.75rem; }
.about .pillars .prp-mark { width: 3.25rem; height: 3.25rem; }
.about .pillars .lead { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--bone); margin: 1rem 0 0; }
.about .pillars ul { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.about .pillars li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: var(--smoke); margin-bottom: 0.75rem; }
.about .pillars li::before { content: ''; margin-top: 0.5rem; width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--ember); flex: none; }

/* ================================================================== *
 * GALLERY — wall of fame
 * ================================================================== */
.wall { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
@media (min-width: 640px) { .wall { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; } }
@media (min-width: 1024px) { .wall { grid-template-columns: repeat(6, 1fr); } }
.wall .tile { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 0.4rem; filter: grayscale(1); transition: filter 0.4s, transform 0.3s, box-shadow 0.3s; padding: 0; background: none; cursor: pointer; display: block; width: 100%; font: inherit; color: inherit; }
.wall .tile:hover, .wall .tile:focus-visible { filter: grayscale(0); }
.wall .tile:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(255, 74, 26, 0.6); border-color: rgba(255, 106, 26, 0.5); }
.wall .tile:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; }
.wall .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.wall .tile:hover img { transform: scale(1.1); }
.wall .tile .label { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 0.5rem; background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 55%); opacity: 0; transition: opacity 0.3s; }
.wall .tile:hover .label { opacity: 1; }
.wall .tile .label span { font-family: var(--font-cond); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: var(--bone); line-height: 1.1; }

/* ================================================================== *
 * SINGLE INTERVIEW PAGE
 * ================================================================== */
.single-ep { padding-top: 8rem; }
.single-ep .back-link { display: inline-block; text-decoration: none; margin-bottom: 1.5rem; }
.single-ep__top { display: grid; gap: 2rem; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 800px) { .single-ep__top { grid-template-columns: 340px 1fr; gap: 2.5rem; } }
.single-ep__cover img, .single-ep__cover .placeholder { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 0.9rem; border: 1px solid var(--line); }
.single-ep__meta .meta { display: flex; gap: 0.5rem; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; }
.single-ep__meta .meta .genre { color: var(--flame); font-weight: 600; }
.single-ep__meta .meta .yr { color: var(--smoke); }
.single-ep__meta h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--bone); margin: 0.5rem 0 0; line-height: 1; }
.single-ep__meta .guest { color: var(--smoke); margin: 0.6rem 0 0; font-weight: 500; }
.vet-badge { display: inline-flex; align-items: center; gap: 0.4rem; width: fit-content; margin: 0.9rem 0 0; padding: 0.3rem 0.75rem; border-radius: 999px; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; font-weight: 600; background: linear-gradient(180deg, #4a5a30, #2b3618); color: #e8f0d4; border: 1px solid rgba(150, 180, 90, 0.5); }
.vet-badge svg { width: 0.9rem; height: 0.9rem; }
.vet-hero { position: relative; overflow: hidden; }
.vet-hero .glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(60% 60% at 20% 0%, rgba(120, 150, 70, 0.18), transparent 60%), radial-gradient(50% 50% at 85% 20%, rgba(255, 106, 26, 0.16), transparent 65%); }
.vet-hero .container { position: relative; z-index: 1; }
.single-ep__play { margin-top: 1.5rem; }
.single-ep .soon { color: var(--smoke); font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.15em; }
.single-ep__body { margin-top: 3rem; max-width: 46rem; }
.single-ep__body-head { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--bone); margin: 0 0 1rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.single-ep__body .content { color: var(--bone); line-height: 1.8; }
.single-ep__body .content p { margin: 0 0 1.1rem; }
.single-ep__body .content a { color: var(--flame); text-decoration: underline; }

/* prev / next interview nav */
.ep-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.ep-nav__link { display: flex; flex-direction: column; gap: 0.3rem; padding: 1rem 1.25rem; border: 1px solid var(--line); border-radius: 0.7rem; background: linear-gradient(180deg, var(--ink-2), var(--ink)); transition: border-color 0.2s, transform 0.15s; }
.ep-nav__link:hover { border-color: rgba(255, 106, 26, 0.6); transform: translateY(-2px); }
.ep-nav__next { text-align: right; align-items: flex-end; }
.ep-nav__dir { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--flame); }
.ep-nav__name { font-family: var(--font-display); text-transform: uppercase; color: var(--bone); font-size: 1.1rem; line-height: 1.05; }
@media (max-width: 560px) { .ep-nav { grid-template-columns: 1fr; } .ep-nav__next { text-align: left; align-items: flex-start; } }

/* ================================================================== *
 * LIGHTBOX (Wall of Fame)
 * ================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 60;
  display: none; align-items: center; justify-content: center;
  background: rgba(3, 2, 2, 0.94); backdrop-filter: blur(6px);
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lb-figure { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.lb-imgwrap { position: relative; display: inline-flex; line-height: 0; }
.lb-figure img {
  max-width: 92vw; max-height: 78vh; width: auto; height: auto;
  border-radius: 0.6rem; border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 106, 26, 0.15);
  object-fit: contain;
}
.lb-figure figcaption {
  font-family: var(--font-frak); font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--bone);
  text-align: center; text-shadow: 0 2px 12px rgba(255, 74, 26, 0.4);
}
.lb-close, .lb-nav {
  position: absolute; z-index: 2; display: grid; place-items: center;
  background: rgba(22, 17, 13, 0.8); color: var(--bone);
  border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.lb-close { top: 0.6rem; right: 0.6rem; width: 2.5rem; height: 2.5rem; background: rgba(10, 8, 7, 0.92); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); }
.lb-close svg { width: 1.25rem; height: 1.25rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; background: rgba(10, 8, 7, 0.82); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
.lb-nav svg { width: 1.5rem; height: 1.5rem; }
.lb-prev { left: 0.6rem; }
.lb-next { right: 0.6rem; }
.lb-close:hover, .lb-nav:hover { background: var(--ember); color: #1a0a00; border-color: var(--ember); }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 640px) {
  .lb-nav { width: 2.6rem; height: 2.6rem; }
  .lb-prev { left: 0.4rem; } .lb-next { right: 0.4rem; }
  .lb-figure img { max-height: 68vh; }
}

/* ================================================================== *
 * FOOTER
 * ================================================================== */
.site-footer { border-top: 1px solid var(--line); background: var(--ink); scroll-margin-top: 5rem; }
.footer-cta { border-bottom: 1px solid var(--line); }
.footer-cta .inner { display: grid; gap: 2.5rem; padding-block: 4rem; }
@media (min-width: 768px) { .footer-cta .inner { grid-template-columns: 1.1fr minmax(300px, 440px); align-items: start; } }
.footer-form h3 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.08em; color: var(--bone); font-size: 1rem; margin: 0 0 1rem; }

/* Forms (contact + intake) */
.prp-form label { display: block; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--smoke); margin-bottom: 0.9rem; }
.prp-form input, .prp-form select, .prp-form textarea {
  display: block; width: 100%; margin-top: 0.35rem;
  background: var(--ink); border: 1px solid var(--line); border-radius: 0.5rem;
  color: var(--bone); padding: 0.6rem 0.7rem;
  font-family: var(--font-sans); font-size: 0.95rem; text-transform: none; letter-spacing: 0;
}
.prp-form textarea { resize: vertical; }
.prp-form input:focus, .prp-form select:focus, .prp-form textarea:focus {
  outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.18);
}
.prp-form__row { display: grid; gap: 0 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .prp-form__row { grid-template-columns: 1fr; } }
.prp-form button { margin-top: 0.4rem; cursor: pointer; }
.prp-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.prp-form-ok {
  background: linear-gradient(180deg, rgba(255, 106, 26, 0.16), rgba(255, 31, 31, 0.1));
  border: 1px solid rgba(255, 106, 26, 0.4); color: var(--bone);
  border-radius: 0.6rem; padding: 0.9rem 1rem; margin-bottom: 1.25rem; font-weight: 600;
}
.page-content .prp-form { max-width: 640px; }

/* Share row on interview pages */
.share { margin-top: 1.25rem; display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.share .eyebrow { margin-right: 0.25rem; }
.footer-cta h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--bone); margin: 0.6rem 0 0; }
.footer-cta p { color: var(--smoke); max-width: 34rem; margin: 0.75rem 0 0; }
.footer-cta .btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-cols { display: grid; gap: 2.5rem; padding: 3.5rem 0; }
@media (min-width: 768px) { .footer-cols { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-cols h3 { font-family: var(--font-cond); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--bone); margin: 0 0 1rem; }
.footer-cols p { color: var(--smoke); font-size: 0.9rem; max-width: 22rem; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: 0.5rem; }
.footer-cols a { color: var(--smoke); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.footer-cols a:hover { color: var(--bone); }
.footer-cols a svg { width: 1rem; height: 1rem; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .inner { display: flex; flex-direction: column; gap: 0.5rem; padding-block: 1.5rem; font-size: 0.75rem; color: var(--smoke); }
@media (min-width: 640px) { .footer-bottom .inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom .inner strong { color: var(--bone); font-weight: 600; }
.footer-bottom .credit-link { transition: color 0.2s; }
.footer-bottom .credit-link:hover strong { color: var(--ember); }

/* ================================================================== *
 * PLAYER BAR
 * ================================================================== */
.player { position: fixed; inset: auto 0 0 0; z-index: 50; border-top: 1px solid var(--line); background: rgba(10, 8, 7, 0.96); backdrop-filter: blur(10px); transform: translateY(100%); transition: transform 0.3s; }
.player.open { transform: none; }
.player .inner { display: flex; align-items: center; gap: 0.75rem; padding-block: 0.6rem; }
@media (min-width: 640px) { .player .inner { gap: 1rem; } }
.player .cover { width: 3rem; height: 3rem; flex: none; border-radius: 0.375rem; overflow: hidden; border: 1px solid var(--line); }
.player .cover img, .player .cover .placeholder { width: 100%; height: 100%; object-fit: cover; }
.player .toggle { width: 2.75rem; height: 2.75rem; flex: none; border: 0; border-radius: 999px; background: var(--red); color: #fff; cursor: pointer; display: grid; place-items: center; box-shadow: 0 4px 18px -4px rgba(255, 31, 31, 0.8); }
.player .toggle:hover { background: var(--red-hot); }
.player .toggle svg { width: 1.25rem; height: 1.25rem; }
.player .mid { flex: 1; min-width: 0; }
.player .titles { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.player .titles .np { font-size: 0.9rem; font-weight: 600; color: var(--bone); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player .titles .np .g { color: var(--smoke); font-weight: 400; }
.player .titles .time { flex: none; font-family: var(--font-cond); font-size: 0.75rem; color: var(--smoke); font-variant-numeric: tabular-nums; }
.player .vol { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .player .vol { display: flex; } }
.player .vol button { background: none; border: 0; color: var(--smoke); cursor: pointer; }
.player .vol button:hover { color: var(--bone); }
.player .vol svg { width: 1.25rem; height: 1.25rem; }
.player .close { flex: none; background: none; border: 0; color: var(--smoke); cursor: pointer; }
.player .close:hover { color: var(--bone); }
.player .close svg { width: 1.25rem; height: 1.25rem; }

/* range sliders */
.prp-range { -webkit-appearance: none; appearance: none; height: 6px; border-radius: 999px; background: linear-gradient(to right, var(--red) 0%, var(--red) var(--pct, 0%), var(--line) var(--pct, 0%), var(--line) 100%); cursor: pointer; width: 100%; }
.prp-range.vol { width: 5rem; }
.prp-range::-webkit-slider-thumb { -webkit-appearance: none; height: 14px; width: 14px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 3px rgba(255, 31, 31, 0.5); }
.prp-range::-moz-range-thumb { height: 14px; width: 14px; border: 0; border-radius: 999px; background: #fff; box-shadow: 0 0 0 3px rgba(255, 31, 31, 0.5); }
.player .mid .prp-range { margin-top: 0.4rem; }

/* back to top */
.to-top { position: fixed; right: 1.25rem; bottom: 1.5rem; z-index: 40; width: 3rem; height: 3rem; border: 0; border-radius: 999px; display: grid; place-items: center; cursor: pointer; opacity: 0; transform: translateY(1rem); pointer-events: none; transition: opacity 0.3s, transform 0.3s, bottom 0.3s; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 1.25rem; height: 1.25rem; }
body.player-open .to-top.show { bottom: 6rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  * { animation: none !important; }
}
