/* ============================================================
   Being Unapologetic with Omika — Professional Podcast Site
   Mobile-first. Base styles = phone. min-width queries scale up.
   ============================================================ */

:root {
  /* Palette matched to the original Being Unapologetic with Omika brand
     (black/pink/cream/orange) — same theme, rebuilt properly: mobile-first,
     working nav, real stats, no visual bugs. */
  --ink: #08090b;
  --ink-soft: #4a4149;
  --paper: #f7eddf;
  --paper-dim: #fff0d2;
  --accent: #ef3e91;
  --accent-2: #ff9f56;
  --accent-soft: #ffd7b4;
  --line: rgba(8,9,11,0.12);
  --line-strong: rgba(8,9,11,0.24);
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gutter: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Grain texture overlay (subtle, editorial) ---------- */
.grain {
  position: fixed; inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Cursor glow (desktop only) ---------- */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,62,145,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  display: none;
}
@media (min-width: 900px) and (hover: hover) {
  .cursor-glow { display: block; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  /* Solid (non-blur) background: a backdrop-filter/transform/filter on this
     ancestor would become the containing block for the fixed-position
     .main-nav mobile menu inside it, breaking its full-screen coverage. */
  background: rgba(250, 249, 246, 0.97);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  display: flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}
.brand small {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  display: none;
}

.main-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 100px 28px 0;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.main-nav.open { transform: translateX(0); }
.main-nav a {
  font-family: var(--serif);
  font-size: clamp(1rem, 4.6vw, 1.3rem);
  font-weight: 600;
  padding: 10px 0;
  color: var(--paper);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.25s ease;
  border-bottom: 1px solid rgba(247,237,223,0.12);
}
.main-nav.open a { opacity: 1; transform: translateY(0); }
.main-nav.open a:nth-child(1) { transition-delay: 0.08s; }
.main-nav.open a:nth-child(2) { transition-delay: 0.14s; }
.main-nav.open a:nth-child(3) { transition-delay: 0.2s; }
.main-nav.open a:nth-child(4) { transition-delay: 0.26s; }
.main-nav a:hover { color: var(--accent-2); padding-left: 10px; }
.main-nav a.active { color: var(--accent-2); }
.nav-cta { border-bottom: none !important; }

.menu-toggle {
  position: relative;
  z-index: 95;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s ease, background 0.3s ease;
}
.menu-toggle.open span { background: var(--paper); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.open { position: fixed; top: 16px; right: var(--gutter); }

@media (min-width: 860px) {
  .brand small { display: inline; }
  .brand { font-size: 1.15rem; }
  .main-nav {
    position: static;
    background: none;
    color: inherit;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    gap: clamp(16px, 2.4vw, 34px);
    transform: none;
  }
  .main-nav a {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    color: var(--ink-soft);
    opacity: 1;
    transform: none;
    border-bottom: none;
    transition: color 0.25s var(--ease);
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    height: 1px; width: 0;
    background: var(--accent);
    transition: width 0.3s var(--ease);
  }
  .main-nav a:hover, .main-nav a.active { color: var(--accent); padding-left: 0; }
  .main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
  .nav-cta {
    border: 1px solid var(--ink) !important;
    padding: 9px 18px !important;
    border-radius: 999px;
    color: var(--ink) !important;
  }
  .nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
  .nav-cta::after { display: none; }
  .menu-toggle { display: none; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Word-by-word split reveal for hero headline */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotate(3deg);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.split-word.in { opacity: 1; transform: translateY(0) rotate(0); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent-2);
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 3px 3px 0 var(--ink);
  animation: badge-sway 4s ease-in-out infinite;
}
@keyframes badge-sway {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1deg); }
}
.eyebrow::before { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 40px 0 48px;
  overflow: hidden;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 11vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 26px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-bounce), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--accent);
  background-image: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.35) 45%, transparent 60%);
  background-size: 220% 100%;
  background-position: 120% 0;
}
.btn-primary:hover {
  background-color: var(--accent); color: var(--ink); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink);
  background-position: -20% 0;
  transition: background-position 0.7s var(--ease), transform 0.4s var(--ease-bounce), background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-primary:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--ink); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); box-shadow: 4px 4px 0 var(--accent-2); }
.btn-outline:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); background: var(--paper-dim); }

.hero-portrait {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: min(320px, 78vw);
  margin: 0 auto;
  border: 6px solid var(--paper);
  box-shadow: 0 0 0 3px var(--ink), 14px 14px 0 var(--accent);
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-portrait { animation: none; }
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.hero-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(8,9,11,0.4) 100%);
}
.hero-tag {
  position: absolute;
  bottom: 14%; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 2;
  color: #fff;
  background: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff5a3c;
  box-shadow: 0 0 0 0 rgba(255,90,60,0.6);
  animation: pulse 2s infinite;
}

.value-num { display: block; transition: transform 0.3s var(--ease-bounce); }
.value-card:hover .value-num { transform: scale(1.25) rotate(-6deg); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,60,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,90,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,60,0); }
}

@media (min-width: 720px) {
  .hero { padding: 64px 0 70px; }
  .hero-actions { gap: 16px; }
  .btn { padding: 15px 30px; font-size: 0.86rem; }
}
@media (min-width: 900px) {
  .hero { padding: clamp(72px, 12vw, 140px) 0 clamp(60px, 8vw, 100px); }
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
  }
  .hero-grid > div:first-child { flex: 1.15; }
  .hero-portrait { flex: 0.85; width: min(420px, 100%); margin: 0; }
  .hero-portrait:hover img { transform: scale(1.06) rotate(2deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--paper-dim);
}
.marquee-track {
  display: inline-flex;
  animation: scroll-left 26s linear infinite;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 20px;
  color: var(--ink-soft);
}
.marquee-track span::after { content: "◆"; margin-left: 20px; color: var(--accent); }
@media (min-width: 720px) {
  .marquee { padding: 16px 0; }
  .marquee-track span { font-size: 0.82rem; padding: 0 28px; }
  .marquee-track span::after { margin-left: 28px; }
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section shell ---------- */
section { padding: 40px 0; }
section + section { padding-top: 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
h2.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 7vw, 2.8rem);
  line-height: 1.1;
  max-width: 18ch;
  margin: 0;
}
h2.section-title em { font-style: italic; color: var(--accent); }
.section-note {
  max-width: 40ch;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
@media (min-width: 720px) {
  section { padding: clamp(70px, 10vw, 120px) 0; }
  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  h2.section-title { max-width: 16ch; }
}

/* ---------- About / two column ---------- */
.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.split p { color: var(--ink-soft); margin: 0 0 18px; font-size: 0.94rem; }
.split p:last-child { margin-bottom: 0; }
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 5vw, 1.7rem);
  line-height: 1.35;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0 0;
  color: var(--ink);
}
@media (min-width: 860px) {
  .split { flex-direction: row; gap: clamp(40px, 6vw, 90px); align-items: start; }
  .split p { font-size: 1rem; }
}

/* ---------- Value grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-card {
  background: var(--paper);
  padding: 28px 24px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.value-card:nth-child(2n) { background: var(--accent-soft); }
.value-card:active { background: var(--ink); color: var(--paper); }
.value-card:hover .value-num { color: var(--accent); }
.value-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.value-card p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }
@media (min-width: 560px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) and (hover: hover) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .value-card { padding: 34px 28px; }
  .value-card:hover {
    background: var(--ink); color: var(--paper);
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 24px 50px -20px rgba(13,15,18,0.4);
    z-index: 2;
  }
  .value-card:hover p { color: rgba(250,249,246,0.75); }
}

/* ---------- Episode card ---------- */
.episode-feature {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ep-poster {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.ep-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ep-poster:active img { transform: scale(1.05); }
.ep-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,15,18,0.28);
}
.play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(250,249,246,0.94);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--ink);
  transition: transform 0.4s var(--ease-bounce);
}
.ep-poster:active .play-btn { transform: scale(1.15); }

.ep-meta { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
.ep-guest { color: var(--ink-soft); margin: 14px 0 22px; font-size: 0.94rem; }
.ep-guest strong { color: var(--ink); }
@media (min-width: 900px) {
  .episode-feature { flex-direction: row; gap: clamp(30px, 5vw, 70px); align-items: center; }
  .episode-feature > *:first-child { flex: 0.9; }
  .episode-feature > *:last-child { flex: 1.1; }
  .play-btn { width: 64px; height: 64px; font-size: 1.1rem; }
  .ep-poster:hover img { transform: scale(1.05); }
  .ep-poster:hover .play-btn { transform: scale(1.12); }
}

/* ---------- Episode list ---------- */
.ep-list-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease), background 0.4s var(--ease);
}
.ep-list-item:first-child { border-top: 1px solid var(--line); }
.ep-idx { font-family: var(--serif); font-size: 1.6rem; color: var(--line-strong); transition: color 0.4s ease; }
.ep-list-title { font-family: var(--serif); font-size: 1.1rem; margin: 0 0 6px; }
.ep-list-sub { color: var(--ink-soft); font-size: 0.85rem; }
.ep-list-cta {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
@media (min-width: 640px) {
  .ep-list-item { grid-template-columns: 90px 1fr auto; gap: 26px; padding: 30px 0; }
  .ep-idx { font-size: 2rem; }
  .ep-list-title { font-size: 1.3rem; }
  .ep-list-sub { font-size: 0.9rem; }
  .ep-list-cta { display: flex; }
  .ep-list-item:hover { padding-left: 12px; }
  .ep-list-item:hover .ep-idx { color: var(--accent); }
  .ep-list-item:hover .ep-list-cta { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: rotate(45deg); }
}

.upcoming-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px dashed var(--line-strong);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 4px;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute; inset: -50% -20% auto -20%;
  height: 200%;
  background: radial-gradient(ellipse at top, rgba(239,62,145,0.22), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
  text-align: center;
  position: relative;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 2.8rem);
  color: var(--accent-2);
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.65);
  margin-top: 6px;
}
@media (min-width: 720px) {
  .stats-strip { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .stat-label { font-size: 0.72rem; }
}

/* ---------- Topics tags ---------- */
.topic-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.topic-tags span {
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 8px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all 0.35s var(--ease);
}
.topic-tags span:hover, .topic-tags span:active { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }

/* ---------- Team / host card ---------- */
.host-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  text-align: center;
  background: var(--paper-dim);
  border-radius: 18px;
  padding: 32px 24px;
}
.host-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; width: 160px; }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-card h3 { font-family: var(--serif); font-size: 1.35rem; margin: 0 0 6px; }
.host-role { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
@media (min-width: 700px) {
  .host-card { flex-direction: row; text-align: left; gap: 40px; padding: 40px; }
  .host-photo { width: 220px; }
  .host-card h3 { font-size: 1.5rem; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: var(--ink);
  border-radius: 20px;
  padding: 56px 26px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,159,86,0.4), transparent 70%);
  top: -140px; right: -100px;
  animation: float-blob 9s ease-in-out infinite;
}
@keyframes float-blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.15); }
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 7vw, 3.2rem);
  margin: 0 0 20px;
  line-height: 1.28;
  position: relative;
}
.cta-band h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--paper), var(--paper-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-band p { color: rgba(8,9,11,0.75); max-width: 50ch; margin: 0 auto 26px; position: relative; font-size: 0.92rem; }
.cta-band .btn-primary { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--paper); position: relative; }
.cta-band .btn-primary:hover { background: var(--paper); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
@media (min-width: 720px) {
  .cta-band { border-radius: 24px; padding: clamp(60px, 8vw, 90px) clamp(50px, 8vw, 90px); }
}

/* ---------- Contact form ---------- */
.contact-grid { display: flex; flex-direction: column; gap: 40px; }
.contact-info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: transform 0.3s var(--ease); }
.contact-info-item:first-child { border-top: 1px solid var(--line); }
.contact-info-item:active { transform: translateX(4px); }
.contact-info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}
.contact-info-item:hover .contact-info-icon { border-color: var(--accent); color: var(--accent); }
.contact-info-item h4 { margin: 0 0 4px; font-family: var(--serif); font-size: 1rem; }
.contact-info-item p { margin: 0; color: var(--ink-soft); font-size: 0.86rem; }

form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.field input, .field textarea {
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 11px 2px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.form-submit { align-self: flex-start; margin-top: 8px; border: none; cursor: pointer; }
.form-note { font-size: 0.76rem; color: var(--ink-soft); margin-top: -6px; }
@media (min-width: 860px) {
  .contact-grid { flex-direction: row; gap: clamp(40px, 6vw, 90px); }
}

/* ---------- Footer ---------- */
footer {
  position: relative;
  padding: 0 0 28px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent-2) 50%, var(--accent) 80%, transparent);
}
footer::after {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,62,145,0.16), transparent 70%);
  bottom: -220px; left: -140px;
  pointer-events: none;
}

/* Real, verifiable numbers pulled directly from the site's own content —
   no fabricated audience/follower metrics. */
.footer-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 14px;
  padding: 36px 0 30px;
  border-bottom: 1px solid rgba(250,249,246,0.12);
}
.footer-stat-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6vw, 2rem);
  color: var(--accent-2);
  line-height: 1;
}
.footer-stat-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.55);
  margin-top: 5px;
}
@media (min-width: 620px) {
  .footer-stats { grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 44px 0 36px; }
  .footer-stat-label { font-size: 0.68rem; }
}

/* Unique mark: animated on-air waveform beside the brand name */
.onair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.onair-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.onair-bars span {
  width: 3px;
  background: var(--accent-2);
  border-radius: 2px;
  animation: onair-wave 1.1s ease-in-out infinite;
}
.onair-bars span:nth-child(1) { height: 40%; animation-delay: -0.9s; }
.onair-bars span:nth-child(2) { height: 100%; animation-delay: -0.6s; }
.onair-bars span:nth-child(3) { height: 65%; animation-delay: -0.3s; }
.onair-bars span:nth-child(4) { height: 85%; animation-delay: -1.05s; }
.onair-bars span:nth-child(5) { height: 50%; animation-delay: -0.15s; }
@keyframes onair-wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}
.onair-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.6);
}

.footer-grid { position: relative; display: flex; flex-direction: column; gap: 28px; padding: 40px 0; }
.footer-brand { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 10px; color: var(--paper); }
.footer-brand em { font-style: italic; color: var(--accent-2); }
.footer-desc { color: rgba(250,249,246,0.6); font-size: 0.86rem; max-width: 32ch; }
.footer-col h5 { font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(250,249,246,0.5); margin: 0 0 12px; }
.footer-col a { display: block; padding: 5px 0; font-size: 0.88rem; color: var(--paper); transition: color 0.25s var(--ease), transform 0.25s var(--ease); }
.footer-col a:hover { color: var(--accent-2); transform: translateX(3px); }
.footer-bottom {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 22px; border-top: 1px solid rgba(250,249,246,0.12);
  font-size: 0.76rem; color: rgba(250,249,246,0.5);
}
@media (min-width: 760px) {
  .footer-grid { flex-direction: row; gap: 40px; }
  .footer-grid > *:first-child { flex: 1.3; }
  .footer-grid > *:not(:first-child) { flex: 1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,15,18,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { max-width: 900px; width: 92%; aspect-ratio: 16/9; transform: scale(0.9); transition: transform 0.4s var(--ease-bounce); }
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-inner iframe { width: 100%; height: 100%; border: none; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  color: #fff; font-size: 1.4rem; cursor: pointer;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 44px 0 36px; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 9vw, 3.6rem); line-height: 1.05; margin: 0 0 16px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { max-width: 56ch; color: var(--ink-soft); font-size: 0.96rem; }
.breadcrumb {
  font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 18px;
}
.breadcrumb .accent { color: var(--accent); }
@media (min-width: 720px) {
  .page-hero { padding: clamp(60px, 9vw, 100px) 0 clamp(40px, 6vw, 60px); }
  .page-hero p { font-size: 1.05rem; }
}

/* ---------- Reduced motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
