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

:root {
  --orange:     #EF7E49;
  --orange-dim: #d96a35;
  --black:      #141210;
  --ink:        #2a2420;
  --muted:      #7a6e68;
  --white:      #fdfcfb;
  --cream:      #f8f4f0;

  --font: 'Inter', 'Helvetica Neue', sans-serif;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Grain overlay ─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ─── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Nav ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: rgba(253, 252, 251, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(20, 18, 16, 0.08);
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--orange-dim); color: var(--white) !important; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--section-pad) + 4rem) clamp(1.5rem, 5vw, 4rem) var(--section-pad);
}

/* decorative blob */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: clamp(320px, 50vw, 700px);
  height: clamp(320px, 50vw, 700px);
  background: radial-gradient(ellipse at 60% 40%, #EF7E49 0%, transparent 70%);
  opacity: 0.12;
  border-radius: 50% 60% 55% 45% / 55% 45% 60% 50%;
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-2%, 3%) scale(1.04); }
  66%       { transform: translate(2%, -2%) scale(0.97); }
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--orange);
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 16ch;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  padding: 0.875rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(239, 126, 73, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dim);
  box-shadow: 0 8px 28px rgba(239, 126, 73, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid currentColor;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Platform icons */
.icon-yt { width: 18px; height: 18px; fill: currentColor; }
.icon-sp { width: 16px; height: 16px; fill: currentColor; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* subtle dot pattern */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(239,126,73,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.section-label span {
  display: inline-block;
  width: 1.5rem;
  height: 1.5px;
  background: currentColor;
}

.about-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 2rem;
}

.about-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.0625rem;
}
.about-text p + p { margin-top: 1.25rem; }
.about-text strong { color: var(--ink); font-weight: 700; }

/* ─── EPISODES ─────────────────────────────────────────────── */
.episodes {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
}

.episodes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.episodes-header {
  margin-bottom: 3rem;
}

.episodes-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.episodes-sub {
  color: var(--muted);
  font-size: 1rem;
}

/* Side-by-side embeds */
.embeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.embed-block {}

.embed-platform-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.embed-platform-label svg { flex-shrink: 0; }

.embed-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 12px 40px rgba(20,18,16,0.12);
}

.embed-youtube {
  height: 352px;
}
.embed-youtube iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.embed-spotify {
  height: 352px;
}
.embed-spotify iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: 4px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,252,251,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(253,252,251,0.25);
  font-weight: 400;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .embeds-grid { grid-template-columns: 1fr; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
