/*
Theme Name: Dark Poutine
Theme URI: https://darkpoutine.com
Author: Dark Poutine Podcast
Author URI: https://darkpoutine.com
Description: Official theme for Dark Poutine – True Crime & Dark History podcast. Dark, atmospheric design built from the podcast logo palette.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: podcast, dark, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, blog
Text Domain: dark-poutine
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Logo Palette)
───────────────────────────────────────── */
:root {
  --void:        #0e0d0f;
  --charcoal:    #1c1a1e;
  --shadow:      #27242b;
  --mist:        #4a5866;
  --mist-light:  #7a8fa0;
  --blood:       #8b1a14;
  --crimson:     #c42020;
  --ember:       #e03030;
  --bone:        #e2ddd7;
  --parchment:   #f5f0e8;
  --ink:         #b0a898;

  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--crimson);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--ember);
}

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--blood); border-radius: 3px; }

/* ─────────────────────────────────────────
   NOISE TEXTURE OVERLAY
───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* ─────────────────────────────────────────
   SITE HEADER & NAV
───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(14,13,15,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--shadow);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-logo img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--parchment);
  text-transform: uppercase;
  line-height: 1.2;
}

.site-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--mist-light);
  margin-top: 2px;
}

/* WordPress nav menu */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--parchment);
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* "Support" nav item — highlighted */
.main-navigation ul li.menu-item-support > a,
.main-navigation ul li a[href*="support"],
.main-navigation ul li a[href*="donate"] {
  background: var(--blood);
  color: var(--parchment) !important;
  padding: 8px 18px !important;
  border: 1px solid var(--crimson);
  transition: background 0.2s, border-color 0.2s !important;
}

.main-navigation ul li a[href*="support"]:hover,
.main-navigation ul li a[href*="donate"]:hover {
  background: var(--crimson) !important;
}

.main-navigation ul li a[href*="support"]::after,
.main-navigation ul li a[href*="donate"]::after {
  display: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--shadow);
  color: var(--bone);
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   HERO (front page)
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 85%, rgba(139,26,20,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(139,26,20,0.12) 0%, transparent 60%),
    linear-gradient(to bottom, #0e0d0f 0%, #131115 50%, #1a0e0e 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 220px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' preserveAspectRatio='none'%3E%3Cpath fill='%230a090b' d='M0,220 L0,160 L20,150 L30,120 L45,145 L60,100 L75,130 L90,85 L105,115 L115,70 L130,105 L140,60 L155,95 L165,55 L175,90 L185,45 L200,80 L210,40 L225,75 L235,35 L248,70 L255,30 L268,65 L275,25 L290,60 L300,20 L315,58 L325,18 L340,55 L350,22 L362,58 L370,18 L383,55 L393,15 L408,52 L418,12 L433,50 L443,15 L455,52 L463,18 L475,55 L485,20 L498,57 L508,17 L520,55 L530,20 L542,57 L553,22 L565,60 L574,25 L587,62 L596,28 L610,65 L620,30 L633,67 L642,32 L656,68 L666,33 L678,70 L688,35 L700,72 L712,37 L722,73 L732,38 L742,75 L754,40 L766,77 L776,42 L788,78 L798,43 L810,80 L822,45 L833,82 L843,48 L854,84 L866,50 L877,87 L888,53 L900,90 L912,60 L922,95 L933,65 L945,102 L955,72 L967,108 L978,78 L990,115 L1002,82 L1015,120 L1026,92 L1040,130 L1052,100 L1067,138 L1080,112 L1095,148 L1110,125 L1128,158 L1145,140 L1165,168 L1180,158 L1200,170 L1200,220 Z'/%3E%3C/svg%3E") bottom center / cover no-repeat;
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--blood);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 10px;
  text-shadow: 0 0 60px rgba(139,26,20,0.4);
}

.hero h1 .accent {
  color: var(--crimson);
  display: block;
}

.hero-sub {
  font-size: 19px;
  color: var(--ink);
  font-style: italic;
  max-width: 520px;
  margin: 24px auto 40px;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--blood);
  border-color: var(--crimson);
  color: var(--parchment);
}
.btn-primary:hover {
  background: var(--crimson);
  border-color: var(--ember);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--shadow);
  color: var(--mist-light);
}
.btn-ghost:hover {
  border-color: var(--mist-light);
  color: var(--parchment);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   PAGE TITLE BAR (inner pages)
───────────────────────────────────────── */
.page-title-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--shadow);
  padding: 56px 40px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title-bar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blood), var(--crimson), var(--blood), transparent);
}

.page-title-bar .page-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}

.page-title-bar h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--parchment);
  text-shadow: 0 0 40px rgba(139,26,20,0.3);
}

/* ─────────────────────────────────────────
   MAIN CONTENT WRAPPER
───────────────────────────────────────── */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
}

/* ─────────────────────────────────────────
   EPISODE / POST FEED
───────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--shadow);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment);
}

.section-header a {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  text-decoration: none;
}
.section-header a:hover { color: var(--ember); }

.episode-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.episode-card:hover { background: rgba(255,255,255,0.015); }
.episode-card:hover .ep-title { color: var(--crimson); }

.ep-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--blood);
  opacity: 0.5;
  line-height: 1;
  text-align: right;
  padding-top: 4px;
}

.ep-date {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
}

.ep-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.ep-excerpt {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
}

.ep-listen {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
  padding-top: 6px;
  transition: color 0.2s;
}

.episode-card:hover .ep-listen { color: var(--crimson); }

/* ─────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────── */
.single-post-content {
  max-width: 720px;
  margin: 0 auto;
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3 {
  font-family: var(--font-display);
  color: var(--parchment);
  letter-spacing: 0.04em;
  margin: 1.8em 0 0.6em;
}

.single-post-content h1 { font-size: 36px; }
.single-post-content h2 { font-size: 26px; }
.single-post-content h3 { font-size: 20px; }

.single-post-content p {
  margin-bottom: 1.4em;
  color: var(--bone);
}

.single-post-content a { color: var(--crimson); }
.single-post-content a:hover { color: var(--ember); }

.single-post-content ul,
.single-post-content ol {
  margin: 0 0 1.4em 1.5em;
  color: var(--bone);
}

.single-post-content li { margin-bottom: 0.4em; }

.post-meta {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--shadow);
}

/* ─────────────────────────────────────────
   SUPPORT PAGE
───────────────────────────────────────── */
.support-intro {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}

.support-intro p {
  font-size: 19px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.8;
}

.support-intro p strong {
  color: var(--bone);
  font-style: normal;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-bottom: 80px;
  background: var(--shadow);
}

.support-card {
  background: var(--charcoal);
  padding: 48px 40px 44px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blood);
  transition: background 0.2s, height 0.2s;
}

.support-card:hover { background: #201e23; }
.support-card:hover::before { background: var(--crimson); height: 3px; }

.support-card--featured { background: #1e1418; }
.support-card--featured::before {
  background: linear-gradient(90deg, var(--blood), var(--crimson));
  height: 3px;
}

.card-badge {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-badge::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--blood);
  opacity: 0.4;
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}

.card-icon svg { width: 100%; height: 100%; }

.support-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 16px;
  line-height: 1.2;
}

.support-card p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 32px;
}

.card-action {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  transition: color 0.2s, gap 0.2s;
}

.support-card:hover .card-action { color: var(--ember); gap: 14px; }
.card-action::after { content: '→'; font-size: 14px; font-weight: 400; }

/* Pull quote */
.pull-quote-section {
  background: var(--charcoal);
  border-top: 1px solid var(--shadow);
  border-bottom: 1px solid var(--shadow);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 -40px;
}

.pull-quote-section::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 240px;
  color: var(--blood);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.pull-quote-section blockquote {
  font-family: var(--font-body);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: var(--bone);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.55;
  position: relative;
}

.pull-quote-section cite {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
  font-style: normal;
}

/* What your support does */
.what-section {
  padding: 80px 0 40px;
}

.what-section h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment);
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.what-section h3::before, .what-section h3::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--blood);
}

.what-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--shadow);
}

.what-list li {
  background: var(--charcoal);
  padding: 36px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.what-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--blood);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -4px;
}

.what-text strong {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  display: block;
  margin-bottom: 8px;
}

.what-text span {
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   STANDARD PAGE CONTENT
───────────────────────────────────────── */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  color: var(--bone);
  font-size: 18px;
  line-height: 1.8;
}

.page-content h2, .page-content h3 {
  font-family: var(--font-display);
  color: var(--parchment);
  margin: 1.6em 0 0.6em;
  letter-spacing: 0.04em;
}

.page-content p { margin-bottom: 1.4em; }

/* ─────────────────────────────────────────
   WIDGETS / SIDEBAR
───────────────────────────────────────── */
.widget-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--shadow);
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────
   COMMENTS
───────────────────────────────────────── */
.comments-area {
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--shadow);
}

.comments-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 32px;
}

.comment-body {
  background: var(--charcoal);
  padding: 24px;
  margin-bottom: 16px;
  border-left: 2px solid var(--blood);
}

.comment-author { color: var(--parchment); font-weight: 600; }
.comment-metadata { font-size: 12px; color: var(--mist); margin-bottom: 12px; }
.comment-content p { color: var(--ink); font-size: 16px; }

/* Comment form */
.comment-form input,
.comment-form textarea {
  background: var(--charcoal);
  border: 1px solid var(--shadow);
  color: var(--bone);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  width: 100%;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--blood);
}

.comment-form .submit {
  background: var(--blood);
  border: 1px solid var(--crimson);
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.2s;
  width: auto;
}

.comment-form .submit:hover { background: var(--crimson); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--shadow);
  padding: 56px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--shadow);
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  color: var(--mist-light);
  line-height: 1.85;
  list-style: none;
}

.footer-col a {
  color: var(--mist-light);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--crimson); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mist);
}

.footer-bottom a {
  color: var(--mist);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--crimson); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }

  .main-navigation { display: none; }
  .main-navigation.toggled { display: block; }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(14,13,15,0.97);
    border-bottom: 1px solid var(--shadow);
    padding: 16px 24px;
  }

  .main-navigation ul li { width: 100%; }
  .main-navigation ul li a { display: block; padding: 12px 0; }

  .menu-toggle { display: block; }

  .site-main { padding: 40px 20px; }
  .what-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .episode-card { grid-template-columns: 40px 1fr; }
  .ep-listen { display: none; }
  .pull-quote-section { margin: 0 -20px; padding: 48px 24px; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 24px; min-height: 70vh; }
  .page-title-bar { padding: 40px 24px 36px; }
}

/* ─────────────────────────────────────────
   WORDPRESS CORE ALIGNMENT HELPERS
───────────────────────────────────────── */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { color: var(--ink); font-size: 13px; font-style: italic; }

/* Pagination */
.page-numbers {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 8px 14px;
  border: 1px solid var(--shadow);
  color: var(--mist-light);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  margin: 2px;
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--blood);
  border-color: var(--crimson);
  color: var(--parchment);
}

.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 48px 0;
  flex-wrap: wrap;
}
