@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a1e45;
  --navy-light: #252a5e;
  --yellow: #f5c200;
  --white: #ffffff;
  --off-white: #f8f8fc;
  --text: #1a1e45;
  --text-muted: #6b7280;
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

#about-show { scroll-margin-top: 64px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-socials a {
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.nav-socials a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 30, 69, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-banner-bg {
  width: 100%;
  display: block;
  height: auto;
}

.hero-fallback {
  padding: 80px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-fallback-logo {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── STREAMING STRIP ── */
.streaming-strip {
  background: var(--navy-light);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.streaming-btn {
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.streaming-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}

/* ── SECTIONS ── */
.section {
  padding: 80px 24px;
}

.section.alt {
  background: var(--off-white);
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b08d00;
  margin-bottom: 10px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 16px;
}

.section p:last-child { margin-bottom: 0; }

/* ── HOST ── */
.host-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.host-photo img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ── AWARDS ── */
.awards-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.awards-grid img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

/* ── YOUTUBE ── */
.yt-thumbnail-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.yt-thumbnail-link:hover { transform: scale(1.01); }

.yt-thumbnail-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.yt-thumbnail-link:hover .yt-play-btn { opacity: 1; }

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #ff0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-youtube:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── BOOK ── */
.book-section {
  background: var(--navy);
  padding: 80px 24px;
}

.book-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: center;
}

.book-cover {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: block;
}

.book-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.book-info h3 {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--yellow);
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── BOOK PAGE ── */
.book-hero {
  background: var(--navy);
  padding: 80px 24px;
}

.book-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
}

.book-hero-cover {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  display: block;
}

.book-hero-info .book-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.book-hero-info h1 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.book-hero-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.review-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
  flex: 1;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-outline {
  display: inline-block;
  padding: 13px 28px;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 680px) {
  .book-hero-inner {
    grid-template-columns: 1fr;
  }

  .book-hero-cover {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* ── FOOTER ── */
footer {
  background: #111630;
  padding: 40px 24px;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-socials a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-socials a:hover { color: var(--yellow); }

footer p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ── YOUTUBE PAGE ── */
.yt-cta-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.yt-cta-bar span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.video-card:hover .video-thumb-wrap img {
  transform: scale(1.03);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.video-card:hover .video-play-overlay {
  opacity: 1;
}

.video-caption {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ── EPISODES PAGE ── */
.page-header {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.page-header p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-top: 8px;
}

.episodes-section {
  padding: 56px 24px;
}

.episodes-container {
  max-width: 860px;
  margin: 0 auto;
}

.episode-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.episode-card:last-child { border-bottom: none; }

.episode-thumb img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.episode-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.episode-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}

.episode-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.episode-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 12px;
}

.episode-listen-btn {
  display: inline-block;
  padding: 7px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
}

.episode-listen-btn:hover { background: var(--navy-light); }

.loading {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── FEATURED EPISODES ── */
.featured-section {
  text-align: center;
}

.featured-section .container {
  max-width: 1100px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 8px;
  text-align: left;
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.featured-card-body {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
}

.featured-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 4px 0 8px;
}

.featured-card-link {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #b08d00;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .hero {
    height: 300px;
  }

  .hero-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .host-grid {
    grid-template-columns: 1fr;
  }

  .host-photo img {
    max-width: 220px;
    margin: 0 auto;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .book-cover {
    max-width: 180px;
    margin: 0 auto;
  }

  .nav-socials { display: none; }

  .nav-toggle { display: flex; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 0;
    right: -260px;
    width: 240px;
    max-width: 80vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 28px 28px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 200;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  h2 { font-size: 1.6rem; }

  .episode-card {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }

  .episode-thumb img {
    width: 72px;
    height: 72px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    height: 220px;
  }

  .article-header h1 {
    font-size: 1.5rem;
  }
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 28px 28px;
}

.blog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #b08d00;
}

/* ── ARTICLE PAGE ── */
.article-hero {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.article-header {
  background: var(--navy);
  padding: 28px 24px 44px;
  text-align: center;
}

.article-back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.article-back-link:hover { color: var(--yellow); }

.article-header h1 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto;
}

.article-container {
  max-width: 720px;
}

.article-container h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.article-container ul {
  margin: 0 0 16px 24px;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-container li {
  margin-bottom: 6px;
}
