/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Design Tokens ── */
:root {
  --night:         #09060f;
  --deep:          #130d22;
  --surface:       #1d1535;

  --purple:        #851370;
  --purple-dark:   #5c0d4e;
  --purple-mid:    #6e1060;
  --purple-glow:   rgba(133, 19, 112, 0.35);

  --gold:          #c9a227;
  --gold-bright:   #f0cc58;
  --gold-dim:      rgba(201, 162, 39, 0.18);

  --cream:         #faf4eb;
  --warm:          #fdf9f2;

  --text-on-dark:  #ede0c8;
  --text-muted-dk: #8a7a9a;
  --text-on-light: #1a0f2e;
  --text-muted-lt: #6b5068;

  --border-dark:   rgba(255,255,255,0.08);
  --border-light:  rgba(133,19,112,0.14);
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm);
  color: var(--text-on-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--night);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 4px 20px rgba(201,162,39,0.45);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-purple {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.btn-purple:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 60px;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
#nav.scrolled {
  background: rgba(9, 6, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.nav-star {
  font-size: 1rem;
  color: var(--gold);
}
.nav-title { line-height: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.nav-link:hover { color: #fff; }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  background: var(--gold);
  color: var(--night);
  border: 2px solid var(--gold);
  transition: background 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  background: var(--gold-bright);
  box-shadow: 0 3px 14px rgba(201,162,39,0.4);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-video.playing { opacity: 1; }

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(9,6,15,0.72) 0%,
    rgba(9,6,15,0.30) 40%,
    rgba(9,6,15,0.55) 70%,
    rgba(9,6,15,0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.platform-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  border-radius: 40px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.platform-pill svg { width: 0.9em; height: 0.9em; }
.platform-pill.yt:hover { color: #ff4444; border-color: #ff4444; background: rgba(255,68,68,0.1); }
.platform-pill.sp:hover { color: #1db954; border-color: #1db954; background: rgba(29,185,84,0.1); }
.platform-pill.ap:hover { color: #9933cc; border-color: #9933cc; background: rgba(153,51,204,0.1); }
.platform-pill.pc:hover { color: #f43e37; border-color: #f43e37; background: rgba(244,62,55,0.1); }
.platform-pill.am:hover { color: #25d1da; border-color: #25d1da; background: rgba(37,209,218,0.1); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,162,39,0.7), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
.scroll-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════
   FEATURED EPISODE
═══════════════════════════════════════ */
.featured {
  background: var(--warm);
  padding: 6rem 2rem;
}

.featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.featured-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(19,13,34,0.22);
}
.featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.featured-img-wrap:hover .featured-img { transform: scale(1.03); }
.featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--night);
  padding: 0.3rem 0.75rem;
}

.eyebrow {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.featured-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-on-light);
  margin-bottom: 1.1rem;
}

.featured-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted-lt);
  margin-bottom: 0.75rem;
}

.featured-credit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--purple);
  opacity: 0.75;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

/* ═══════════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════════ */
.about {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  text-align: center;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: #7ba0c4;
  z-index: 0;
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(9,6,15,0.90) 0%,
    rgba(92,13,78,0.60) 50%,
    rgba(9,6,15,0.88) 100%
  );
}

.about-body {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 auto;
}

.about-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 0.75rem;
}

.about-source {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 2rem;
}

.about-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(237,224,200,0.75);
}

/* ═══════════════════════════════════════
   EPISODES GRID
═══════════════════════════════════════ */
.episodes {
  background: var(--cream);
  padding: 6rem 2rem;
}

.episodes-inner { max-width: 1100px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.section-rule {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple);
  white-space: nowrap;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

/* ── Episode Card ── */
.ep-card {
  background: #fff;
  box-shadow: 0 2px 20px rgba(19,13,34,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ep-card:hover {
  box-shadow: 0 12px 40px rgba(19,13,34,0.16);
  transform: translateY(-4px);
}
.ep-card-latest {
  box-shadow: 0 2px 20px rgba(19,13,34,0.08), 0 0 0 2px var(--gold);
}
.ep-card-latest:hover {
  box-shadow: 0 12px 40px rgba(19,13,34,0.16), 0 0 0 2px var(--gold);
}

.ep-img-wrap {
  position: relative;
  overflow: hidden;
}
.ep-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.ep-card:hover .ep-img { transform: scale(1.05); }

.ep-num {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--deep);
  color: rgba(255,255,255,0.9);
  padding: 0.25rem 0.65rem;
}
.ep-latest-tag {
  background: var(--gold);
  color: var(--night);
}

.ep-body {
  padding: 1.5rem 1.6rem 1.75rem;
}
.ep-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-on-light);
  margin-bottom: 0.65rem;
}
.ep-body p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted-lt);
  margin-bottom: 1.1rem;
}

.ep-player {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ep-player audio,
.player-row audio {
  flex: 1;
  height: 32px;
  accent-color: var(--purple);
  min-width: 0;
}

.ep-body .ep-credit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════
   CONNECT / SOCIAL
═══════════════════════════════════════ */
.connect {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}

.connect-bg {
  position: absolute;
  inset: 0;
  background: #7ba0c4;
  z-index: 0;
}
.connect-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.connect-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(9,6,15,0.88) 0%,
    rgba(9,6,15,0.78) 100%
  );
}

.connect-body {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.connect-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.connect-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.connect-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(237,224,200,0.6);
  margin-bottom: 3.5rem;
}

.platform-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}
.platform-card:hover { transform: translateY(-3px); }

.yt-card:hover { background: rgba(255,68,68,0.12); border-color: rgba(255,68,68,0.45); }
.sp-card:hover { background: rgba(29,185,84,0.12); border-color: rgba(29,185,84,0.45); }
.ap-card:hover { background: rgba(153,51,204,0.12); border-color: rgba(153,51,204,0.45); }
.pc-card:hover { background: rgba(244,62,55,0.12); border-color: rgba(244,62,55,0.45); }
.am-card:hover { background: rgba(37,209,218,0.12); border-color: rgba(37,209,218,0.45); }
.au-card:hover { background: rgba(248,153,28,0.12); border-color: rgba(248,153,28,0.45); }
.re-card:hover { background: rgba(24,144,255,0.12); border-color: rgba(24,144,255,0.45); }

.pcard-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-icon svg { width: 28px; height: 28px; }
.yt-card .pcard-icon { background: rgba(255,68,68,0.15); color: #ff4444; }
.sp-card .pcard-icon { background: rgba(29,185,84,0.15); color: #1db954; }
.ap-card .pcard-icon { background: rgba(153,51,204,0.15); color: #9933cc; }
.pc-card .pcard-icon { background: rgba(244,62,55,0.15); color: #f43e37; }
.am-card .pcard-icon { background: rgba(37,209,218,0.15); color: #25d1da; }
.au-card .pcard-icon { background: rgba(248,153,28,0.15); color: #f8991c; }
.re-card .pcard-icon { background: rgba(24,144,255,0.15); color: #1890ff; }

.pcard-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.2rem;
}
.pcard-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.pcard-handle {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.pcard-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--night);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 2.5rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.footer-star { color: var(--gold); }

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── Tablet: 768–1100px ── */
@media (max-width: 1100px) {
  .featured-inner { gap: 3rem; }
}

@media (max-width: 900px) {
  /* Featured: stack image above content */
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 640px;
  }
  .featured-img { height: 300px; }

  /* About quote smaller on tablet */
  .about-quote { font-size: clamp(1.4rem, 3vw, 1.9rem); }

  /* Platform cards: 3 per row on tablet */
  .platform-cards { gap: 1rem; }
  .platform-card { flex: 0 0 calc((100% - 2rem) / 3); padding: 1.25rem 1.25rem; }
}

/* ── Mobile: ≤640px ── */
@media (max-width: 640px) {
  /* Nav */
  #nav { padding: 0 1.1rem; height: 54px; }
  .nav-title { font-size: 0.78rem; letter-spacing: 0.1em; }
  .nav-links { gap: 0.75rem; }
  .nav-links .nav-link { display: none; }
  .nav-cta { padding: 0.38rem 0.9rem; font-size: 0.68rem; }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero-tagline { font-size: 0.82rem; margin-bottom: 2rem; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 270px;
    justify-content: center;
  }
  .hero-platforms { flex-wrap: wrap; gap: 0.45rem; }
  .hero-scroll { display: none; }

  /* Featured */
  .featured { padding: 3.5rem 1.1rem; }
  .featured-img { height: 220px; }
  .featured-body h2 { font-size: 1.25rem; }
  .featured-desc { font-size: 0.88rem; }
  .player-row { gap: 0.6rem; }

  /* About */
  .about { padding: 4.5rem 1.1rem; }
  .about-quote { font-size: 1.3rem; }
  .about-text { font-size: 0.88rem; }

  /* Episodes */
  .episodes { padding: 3.5rem 1.1rem; }
  .episodes-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ep-img { height: 190px; }
  .ep-body { padding: 1.2rem 1.25rem 1.5rem; }
  .ep-body h3 { font-size: 1rem; }

  /* Connect */
  .connect { padding: 4.5rem 1.1rem; }
  .connect-title { font-size: 1.9rem; }
  .connect-sub { font-size: 0.88rem; margin-bottom: 2.5rem; }
  .platform-cards { flex-direction: column; gap: 1rem; }
  .platform-card { flex: 0 0 auto; width: 100%; }
  .pcard-handle { font-size: 0.68rem; }

  /* Footer */
  footer { padding: 2.5rem 1.25rem 1.75rem; }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-nav { gap: 0.85rem; flex-wrap: wrap; }
  .footer-bottom p { font-size: 0.7rem; }
}

/* ── Very small mobile: ≤390px ── */
@media (max-width: 390px) {
  .nav-title { display: none; }
  .hero-title { font-size: 2.6rem; }
  .hero-eyebrow { font-size: 0.65rem; }
  .about-quote { font-size: 1.15rem; }
}


/* ═══════════════════════════════════════
   HUB HOMEPAGE
═══════════════════════════════════════ */

/* Hero */
.hub-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  overflow: hidden;
  background: var(--night);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hub-video.playing { opacity: 1; }

.hub-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,6,15,0.35) 0%, rgba(9,6,15,0.6) 100%);
  z-index: 1;
}

.hub-pill {
  position: relative;
  z-index: 2;
  background: rgba(9,6,15,0.6);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 120px;
  padding: 2.2rem 5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hub-welcome {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 0 0.35rem;
}

.hub-org-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}

/* Grid */
.hub-grid-section {
  background: var(--night);
}

.hub-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: repeat(3, minmax(110px, 1fr));
  min-height: 55vh;
}

.hub-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.75rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.hub-tile:hover { transform: scale(1.02); z-index: 1; }

.hub-tile-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  line-height: 1.4;
}

/* Podcast — center, spans rows 1–2 */
.hub-tile--podcast {
  grid-column: 2;
  grid-row: 1 / 3;
  background: var(--purple);
  border-color: transparent;
}
.hub-tile--podcast .hub-tile-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hub-tile--podcast:hover { background: var(--purple-dark); transform: none; }

/* Left column */
.hub-tile--who {
  grid-column: 1;
  grid-row: 1;
  background: var(--surface);
}
.hub-tile--who:hover { background: #231947; border-color: rgba(201,162,39,0.2); }

.hub-tile--events {
  grid-column: 1;
  grid-row: 2;
  background: var(--deep);
  border-color: rgba(133,19,112,0.25);
}
.hub-tile--events:hover { background: var(--surface); }

/* Bnei Noah — spans left + center columns, row 3 */
.hub-tile--bnei-noah {
  grid-column: 1 / 3;
  grid-row: 3;
  background: var(--surface);
  border-top: 2px solid var(--gold);
  justify-content: flex-start;
  padding-left: 2.5rem;
}
.hub-tile--bnei-noah .hub-tile-text {
  font-size: 1.1rem;
  text-align: left;
}
.hub-tile--bnei-noah:hover { background: #231947; }

/* Right column */
.hub-tile--get-involved {
  grid-column: 3;
  grid-row: 1;
  background: var(--surface);
  border-left-color: rgba(201,162,39,0.2);
}
.hub-tile--get-involved:hover { background: #231947; }

.hub-tile--donate {
  grid-column: 3;
  grid-row: 2;
  background: var(--deep);
}
.hub-tile--donate:hover { background: var(--surface); }

.hub-tile--contact {
  grid-column: 3;
  grid-row: 3;
  background: var(--surface);
}
.hub-tile--contact:hover { background: #231947; }

/* Hub footer: logo is an <a> tag */
.footer-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile hub */
@media (max-width: 640px) {
  .hub-pill { padding: 1.75rem 2.5rem; border-radius: 80px; }
  .hub-welcome { font-size: 1.1rem; }
  .hub-org-name { font-size: 1.35rem; }

  .hub-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hub-tile--podcast  { grid-column: 1; grid-row: auto; }
  .hub-tile--who      { grid-column: 1; grid-row: auto; }
  .hub-tile--events   { grid-column: 1; grid-row: auto; }
  .hub-tile--bnei-noah { grid-column: 1; grid-row: auto; justify-content: center; padding-left: 1.75rem; }
  .hub-tile--bnei-noah .hub-tile-text { text-align: center; }
  .hub-tile--get-involved { grid-column: 1; grid-row: auto; }
  .hub-tile--donate   { grid-column: 1; grid-row: auto; }
  .hub-tile--contact  { grid-column: 1; grid-row: auto; }

  .hub-tile--podcast .hub-tile-text { font-size: 1.75rem; }
  .hub-tile { min-height: 90px; }
}

/* ═══════════════════════════════════════
   PLACEHOLDER PAGES
═══════════════════════════════════════ */
.placeholder-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--night);
}

.placeholder-body {
  text-align: center;
  padding: 2rem;
}

.placeholder-star {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.placeholder-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--cream);
  margin: 0.5rem 0 1rem;
}

.placeholder-msg {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted-dk);
  margin-bottom: 2rem;
  font-size: 1rem;
}
