/* ===== Fonts (self-hosted, zero third-party requests) ===== */
@font-face {
  font-family: "Fraunces";
  src: url("assets/Fraunces-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/Fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/Poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/Poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/Poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Brand tokens ===== */
:root {
  --bg: #201016;
  --bg-deep: #1C0E14;
  --surface: #2C1720;
  --line: #3a2430;
  --text: #F5E9DC;
  --cream: #F5E9DC;
  --muted: #B08CA0;
  --faint: #6e5260;
  --zest: #B7F04A;
  --gold: #D8B24A;
  --brand-grad: linear-gradient(90deg, #FF3D5E, #FF9E2C);

  --maxw: 1080px;
  --radius-card: 20px;
  --radius-pill: 999px;
}

/* ===== Reset / base ===== */
* { box-sizing: border-box; }
html {
  background: var(--bg-deep); /* prevents overscroll flash */
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--zest); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.gradient-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(28, 14, 20, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 34px; width: auto; }
.brand span {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--cream);
}
.brand:hover { text-decoration: none; }
.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color .15s ease, background .15s ease;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cream);
  text-decoration: none;
}
@media (hover: hover) {
  .nav a:hover { background: var(--surface); }
}
.nav a[aria-current="page"] { background: var(--surface); }

/* ===== Hero ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 68px 0 48px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto 0;
  height: 480px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(255, 61, 94, 0.20), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-logo {
  width: min(230px, 62vw);
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}
.hero h1 {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-desc {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 26px;
  font-size: 1.05rem;
}

/* ===== Pill (Coming soon — text only) ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--cream);
  font-weight: 600;
  font-size: .95rem;
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zest);
  box-shadow: 0 0 0 4px rgba(183, 240, 74, .18);
}

/* ===== Episode grid ===== */
.section {
  padding: 40px 0 64px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 38px;
}
.episodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ep {
  text-align: center;
}
.ep-cover {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
  transition: transform .25s ease, box-shadow .25s ease;
  aspect-ratio: 3 / 4;
}
.ep-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ep:nth-child(odd) .ep-cover { transform: rotate(-1.4deg); }
.ep:nth-child(even) .ep-cover { transform: rotate(1.4deg); }
@media (hover: hover) {
  .ep .ep-cover:hover {
    transform: rotate(0deg) translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,.45);
  }
}
.ep-title {
  margin-top: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--cream);
}

/* ===== Content pages (privacy / support) ===== */
.page-head {
  padding: 52px 0 8px;
  text-align: center;
}
.page-head h1 {
  font-size: clamp(2rem, 6vw, 3rem);
}
.effective {
  color: var(--faint);
  font-size: .92rem;
  margin-top: 4px;
}
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 22px 64px;
}
.content h2 {
  font-size: 1.35rem;
  margin-top: 2em;
  color: var(--cream);
}
.content h2:first-of-type { margin-top: .5em; }
.content p { color: var(--text); }
.content a { color: var(--zest); }
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ===== Contact card ===== */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}
.contact-card .label {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 0 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: var(--brand-grad);
  color: #1C0E14;
  font-weight: 700;
  font-size: 1rem;
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }

/* ===== FAQ ===== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.faq-item h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0 0 8px;
  line-height: 1.35;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}
.faq-item p a { color: var(--zest); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 34px 0;
  margin-top: 20px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  text-align: center;
  color: var(--faint);
  font-size: .92rem;
}
.site-footer .sep { color: var(--line); }
.site-footer a { color: var(--muted); font-weight: 600; }
.site-footer a:hover { color: var(--cream); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .episodes { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .brand span { display: none; }
  .nav a { padding: 8px 11px; }
  .hero { padding: 44px 0 34px; }
  .episodes { gap: 14px; }
}
