:root {
  --black: #0b0b0b;
  --ink: #171717;
  --cream: #f3ecdc;
  --yellow: #ffc400;
  --orange: #ff5a1f;
  --white: #ffffff;
  --muted: #bdb7aa;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(11, 11, 11, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand-mark {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: .03em;
}
.brand-copy { font-weight: 800; font-size: 1.05rem; line-height: .95; }
.brand-copy small { display: block; margin-top: 5px; font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: #bdbdbd; }

.site-nav { display: flex; align-items: center; gap: 26px; font-size: .88rem; font-weight: 700; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--yellow); }
.nav-cta { padding: 10px 17px; color: var(--black)!important; background: var(--yellow); border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 50px;
  padding: 90px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 75% 24%, rgba(255,196,0,.26), transparent 24%),
    linear-gradient(125deg, #080808 0%, #18120d 58%, #241305 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -5%; right: -5%; bottom: -65px;
  height: 125px;
  background: var(--cream);
  transform: rotate(-2.5deg);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .22; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}
.hero-copy, .hero-art { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 12px; color: var(--orange); font-size: .77rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, h2 { font-family: "Anton", sans-serif; font-weight: 400; text-transform: uppercase; line-height: .98; letter-spacing: .01em; }
.hero h1 { margin: 0; font-size: clamp(4.2rem, 8vw, 7.7rem); }
.hero h1 span { color: var(--yellow); }
.hero-intro { max-width: 630px; margin: 28px 0; color: #d7d2c9; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 23px; border: 2px solid transparent; font-weight: 800; border-radius: 3px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.button-primary { color: var(--black); background: var(--yellow); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.55); }
.button-dark { color: var(--white); background: var(--black); }

.hero-art { min-height: 470px; display: grid; place-items: center; }
.hero-card {
  width: min(360px, 84vw);
  aspect-ratio: .82;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  color: var(--black);
  background: var(--yellow);
  border: 10px solid #f2f2f2;
  box-shadow: 28px 28px 0 var(--orange), 0 35px 70px rgba(0,0,0,.4);
  transform: rotate(3deg);
}
.card-kicker, .card-tagline { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-card strong { font-family: "Anton", sans-serif; font-size: 6rem; line-height: .78; }
.card-tagline { font-size: .72rem; }
.coin { position: absolute; display: grid; place-items: center; border-radius: 50%; font-family: "Anton", sans-serif; color: #2d1d00; background: linear-gradient(145deg, #e7b33e, #815003); border: 7px double #3e2600; box-shadow: 0 20px 35px rgba(0,0,0,.35); }
.coin-one { width: 115px; height: 115px; left: 0; top: 35px; font-size: 4rem; transform: rotate(-17deg); }
.coin-two { width: 90px; height: 90px; right: 5px; bottom: 22px; font-size: 1.6rem; transform: rotate(19deg); }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 105px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2, .about-panel h2, .host-copy h2, .subscribe-section h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5rem); }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.text-link { font-weight: 800; border-bottom: 2px solid var(--orange); }

.video-shell { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: #000; border: 10px solid var(--black); box-shadow: 18px 18px 0 var(--yellow); }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.about-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.about-panel, .quote-panel { padding: clamp(32px, 5vw, 65px); }
.about-panel { background: var(--white); }
.about-panel p { max-width: 700px; }
.quote-panel { position: relative; display: flex; flex-direction: column; justify-content: center; color: var(--white); background: var(--orange); }
.quote-mark { position: absolute; top: 5px; left: 25px; font-family: Georgia, serif; font-size: 10rem; line-height: 1; opacity: .18; }
.quote-panel blockquote { position: relative; margin: 0 0 24px; font-family: "Anton", sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; text-transform: uppercase; }
.quote-panel p { margin: 0; font-weight: 800; }

.episode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.episode-card { overflow: hidden; background: #fff; box-shadow: 0 14px 40px rgba(25,20,12,.1); transition: transform .2s ease; }
.episode-card:hover { transform: translateY(-6px); }
.episode-image { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #111; }
.episode-image img { width: 100%; height: 100%; object-fit: cover; }
.play-button { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 66px; height: 66px; padding-left: 5px; color: #fff; background: #e62117; border-radius: 50%; box-shadow: 0 8px 25px rgba(0,0,0,.35); }
.episode-copy { padding: 24px; }
.episode-copy span { color: var(--orange); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.episode-copy h3 { margin: 6px 0; font-size: 1.25rem; line-height: 1.25; }
.episode-copy p { margin: 0; color: #5d5b55; font-size: .92rem; }
.graphic-card-art { aspect-ratio: 16/10; display: flex; flex-direction: column; justify-content: center; align-items: center; font-family: "Anton", sans-serif; line-height: .8; transform: translateZ(0); }
.graphic-card-art span { font-size: 2rem; letter-spacing: .16em; }
.graphic-card-art strong { font-size: clamp(3.7rem, 6vw, 5.6rem); }
.yellow-card .graphic-card-art { color: var(--black); background: var(--yellow); }
.black-card .graphic-card-art { color: var(--yellow); background: var(--black); }

.host-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 65px; align-items: stretch; }
.host-portrait { min-height: 480px; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; color: var(--yellow); background: var(--black); box-shadow: -18px 18px 0 var(--orange); }
.portrait-type { align-self: center; margin-top: 30px; font-family: "Anton", sans-serif; font-size: clamp(10rem, 20vw, 16rem); line-height: 1; letter-spacing: -.08em; }
.portrait-label { font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.host-copy { align-self: center; }
.host-copy p { max-width: 680px; font-size: 1.08rem; }
.signature { font-weight: 800; }

.subscribe-section { padding: 110px 24px; text-align: center; color: var(--white); background: var(--black); }
.subscribe-section h2 { color: var(--yellow); }
.subscribe-section > p:not(.eyebrow) { max-width: 620px; margin: 20px auto 28px; color: #ccc; }

.site-footer { display: flex; justify-content: space-between; gap: 25px; padding: 28px max(24px, calc((100vw - var(--max)) / 2)); color: #d4d4d4; background: #050505; border-top: 1px solid #252525; font-size: .82rem; }
.site-footer p { margin: 0; }
.footer-brand { font-family: "Anton", sans-serif; color: var(--yellow); }
.footer-brand span { color: #fff; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 75px; text-align: center; }
  .hero-intro { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { min-height: 420px; }
  .about-section, .host-section { grid-template-columns: 1fr; }
  .episode-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 24px 24px; background: #0b0b0b; border-top: 1px solid #333;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid #292929; }
  .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0!important; }
  .hero { min-height: 0; padding-bottom: 135px; }
  .hero h1 { font-size: clamp(3.65rem, 18vw, 5.5rem); }
  .hero-card { width: 285px; }
  .hero-card strong { font-size: 4.7rem; }
  .coin-one { left: 8px; }
  .coin-two { right: 8px; }
  .section { width: min(100% - 32px, var(--max)); padding: 78px 0; }
  .split-heading { align-items: start; flex-direction: column; }
  .episode-grid { grid-template-columns: 1fr; }
  .featured-card { grid-column: auto; }
  .video-shell { border-width: 5px; box-shadow: 9px 9px 0 var(--yellow); }
  .site-footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; transition-duration: .01ms!important; }
}
