/* ============================================================
   MAKE MEN TALK — Premium Dark Masculine Redesign
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,700;0,800;0,900;1,900&family=Barlow:wght@300;400;500;600&display=swap');

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

:root {
  --black:    #000000;
  --bg:       #080808;
  --bg-2:     #0f0f0f;
  --bg-3:     #161616;
  --border:   #1e1e1e;
  --border-2: #2a2a2a;
  --white:    #ffffff;
  --grey:     #a0a0a0;
  --grey-2:   #666666;
  --orange:   #f97316;
  --orange-2: #ea6c0d;
  --o-glow:   rgba(249,115,22,0.18);
  --o-soft:   rgba(249,115,22,0.08);
  --font-h:   'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-b:   'Barlow', Arial, sans-serif;
  --ease:     cubic-bezier(.22,.68,0,1.2);
  --trans:    220ms ease;
  --r:        10px;
  --r-lg:     18px;
  --max:      1240px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Container ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px,5vw,64px); }

/* ── Labels & Headings ── */
.eyebrow {
  font-family: var(--font-h);
  font-size: 12px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 14px;
}
.eyebrow-center { text-align: center; }

.h-display {
  font-family: var(--font-h);
  font-size: clamp(42px,7vw,80px);
  font-weight: 900; line-height: .95;
  text-transform: uppercase; letter-spacing: -.015em;
  color: var(--white);
}
.h-section {
  font-family: var(--font-h);
  font-size: clamp(36px,5.5vw,64px);
  font-weight: 900; line-height: .95;
  text-transform: uppercase; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 20px;
}
.accent { color: var(--orange); }
.tc { text-align: center; }
.body-lg { font-size: 18px; color: var(--grey); line-height: 1.7; }
.section-intro { max-width: 540px; margin: 0 auto 52px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 15px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 0 32px; height: 52px; border-radius: var(--r);
  cursor: pointer; transition: all var(--trans); white-space: nowrap;
  min-width: 44px;
}
.btn-orange { background: var(--orange); color: #fff; border: 2px solid var(--orange); }
.btn-orange:hover { background: var(--orange-2); border-color: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249,115,22,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--border-2); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-zoom { background: #2d8cff; color: #fff; border: 2px solid #2d8cff; }
.btn-zoom:hover { background: #1a7af0; border-color: #1a7af0; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(45,140,255,.35); }

/* ── Section wrapper ── */
.section { padding: clamp(72px,10vw,128px) 0; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
  height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo-img { height: 88px; width: auto; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px 6px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-h); font-size: 13px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey); padding: 8px 14px; border-radius: 6px;
  transition: color var(--trans); min-height: 44px; display: flex; align-items: center;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--orange) !important; color: #fff !important; margin-left: 8px; padding: 8px 20px !important; }
.nav-cta:hover { background: var(--orange-2) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 10px; min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--trans); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: calc(70px + 60px) 0 80px;
  position: relative; overflow: hidden;
  background: #000;
}

/* Noise texture overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .4;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(249,115,22,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(249,115,22,.06) 0%, transparent 60%),
    #000;
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  width: 100%;
}

.hero-text { max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--o-soft); border: 1px solid rgba(249,115,22,.25);
  border-radius: 100px; padding: 8px 20px;
  font-family: var(--font-h); font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 32px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(72px,13vw,160px);
  font-weight: 900; line-height: .88;
  text-transform: uppercase; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 32px;
}
.hero-h1 .line-accent { color: var(--orange); display: block; }
.hero-h1 .line-stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent; display: block;
}

.hero-body {
  font-size: clamp(16px,1.6vw,19px); color: var(--grey);
  line-height: 1.7; max-width: 520px; margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats { display: flex; gap: 0; }
.stat-item {
  padding: 0 32px 0 0; margin-right: 32px;
  border-right: 1px solid var(--border-2);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-h); font-size: 48px; font-weight: 900;
  line-height: 1; letter-spacing: -.03em; color: var(--white);
  display: block;
}
.stat-l {
  font-family: var(--font-h); font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--grey-2);
}

.hero-logo-mark {
  width: clamp(160px,20vw,280px);
  opacity: .08; filter: invert(1);
  flex-shrink: 0;
}

/* ============================================================
   TICKER
============================================================ */
.ticker {
  background: var(--orange); padding: 14px 0; overflow: hidden;
  border-top: 1px solid var(--orange-2); border-bottom: 1px solid var(--orange-2);
}
.ticker-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: tick 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
@keyframes tick { to { transform: translateX(-50%); } }
.ticker-track span {
  font-family: var(--font-h); font-size: 14px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase; color: #fff; padding: 0 24px;
}
.ticker-track .dot { color: rgba(255,255,255,.45); padding: 0 4px; letter-spacing: 0; }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.about-text p { color: var(--grey); margin-bottom: 20px; line-height: 1.75; }
.about-text .btn { margin-top: 20px; }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pillar {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.pillar:hover { border-color: rgba(249,115,22,.5); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.6); }
.pillar-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--o-soft); border: 1px solid rgba(249,115,22,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 16px;
}
.pillar h3 { font-family: var(--font-h); font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.pillar p { font-size: 14px; color: var(--grey-2); line-height: 1.6; }

/* ============================================================
   HOSTS
============================================================ */
.hosts { background: var(--black); }
.hosts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }

.host-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 300ms var(--ease), border-color var(--trans), box-shadow var(--trans);
}
.host-card:hover { transform: translateY(-8px); border-color: rgba(249,115,22,.4); box-shadow: 0 32px 80px rgba(0,0,0,.7); }

.host-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--bg-3);
}
/* Placeholder gradient shown when image hasn't loaded */
.host-img-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
}
.host-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 500ms ease;
  position: relative; z-index: 1;
}
.host-card:hover .host-img { transform: scale(1.06); }
.host-card:nth-child(1) .host-img { object-position: center 20%; }
.host-img-gradient {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 40%, transparent 70%);
}

.host-body { padding: 22px 20px 24px; }
.host-name { font-family: var(--font-h); font-size: 22px; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 3px; }
.host-role { font-family: var(--font-h); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 12px; }
.host-bio { font-size: 13px; color: var(--grey-2); line-height: 1.6; margin-bottom: 16px; }
.host-ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 12px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--grey);
  transition: color var(--trans);
}
.host-ig:hover { color: var(--orange); }

/* ============================================================
   TOPICS
============================================================ */
.topics { background: var(--bg); }
.topics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }

.topic-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.topic-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.35); box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.topic-num {
  font-family: var(--font-h); font-size: 72px; font-weight: 900;
  line-height: 1; letter-spacing: -.04em; color: var(--o-soft);
  margin-bottom: 0; position: absolute; top: 20px; right: 24px;
  background: linear-gradient(180deg, rgba(249,115,22,.15) 0%, transparent 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.topic-card h3 { font-family: var(--font-h); font-size: 21px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.topic-card p { font-size: 14px; color: var(--grey-2); line-height: 1.65; }
.topic-bar {
  width: 32px; height: 3px; background: var(--orange); border-radius: 2px;
  margin-bottom: 20px;
  transition: width 300ms ease;
}
.topic-card:hover .topic-bar { width: 64px; }

/* ============================================================
   QUOTE
============================================================ */
.quote-section {
  background: var(--orange); padding: 80px 0; position: relative; overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute; left: clamp(20px,4vw,60px); top: -40px;
  font-family: var(--font-h); font-size: 320px; font-weight: 900;
  color: rgba(0,0,0,.12); line-height: 1; pointer-events: none;
}
.big-quote { text-align: center; max-width: 860px; margin: 0 auto; position: relative; }
.big-quote p {
  font-family: var(--font-h); font-size: clamp(28px,4.5vw,52px);
  font-weight: 900; text-transform: uppercase; line-height: 1.1;
  color: #fff; letter-spacing: -.01em; margin-bottom: 24px;
}
.big-quote cite { font-family: var(--font-b); font-size: 14px; font-style: normal; color: rgba(255,255,255,.7); letter-spacing: .15em; text-transform: uppercase; }

/* ============================================================
   EPISODES LIST
============================================================ */
.episodes { background: var(--black); }
.ep-list { display: flex; flex-direction: column; gap: 3px; margin-top: 56px; }

.ep-card {
  display: grid; grid-template-columns: 72px 1fr 56px;
  align-items: center; gap: 24px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 28px;
  transition: all var(--trans);
}
.ep-card:hover { border-color: rgba(249,115,22,.4); background: var(--bg-3); transform: translateX(6px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }

.ep-num { font-family: var(--font-h); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); }
.ep-title { font-family: var(--font-h); font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.ep-desc { font-size: 14px; color: var(--grey-2); line-height: 1.55; margin-bottom: 10px; }
.ep-meta { display: flex; align-items: center; gap: 14px; }
.ep-time { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--grey-2); }
.ep-tag {
  font-family: var(--font-h); font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); background: var(--o-soft);
  border: 1px solid rgba(249,115,22,.2);
  padding: 3px 10px; border-radius: 100px;
}

.ep-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--trans); cursor: pointer;
}
.ep-play:hover { background: var(--orange-2); transform: scale(1.1); box-shadow: 0 0 28px rgba(249,115,22,.4); }

.ep-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   WATCH / EMBED
============================================================ */
.embed-section { background: var(--bg); }

.embed-tabs {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); margin-bottom: 36px;
}
.embed-tab {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 13px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 6px; color: var(--grey);
  cursor: pointer; transition: all var(--trans); min-height: 44px;
}
.embed-tab.active { background: var(--orange); color: #fff; }
.embed-tab:hover:not(.active) { color: var(--white); }

.embed-panel { display: none; }
.embed-panel.active { display: block; }

.embed-note {
  background: var(--bg-2); border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--r); padding: 16px 20px;
  font-size: 14px; color: var(--grey); margin-bottom: 24px;
}
.embed-note strong { color: var(--orange); }

.embed-frame-wrap {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 20px;
}
.embed-frame-wrap iframe { width: 100%; display: block; border: none; }

.embed-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.embed-row .embed-frame-wrap iframe { height: 232px; }

.episode-label { margin-bottom: 16px; }
.episode-title { font-family: var(--font-cond); font-size: clamp(20px,2.5vw,28px); font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .02em; margin: 4px 0 0; }

/* ============================================================
   LIVE / ZOOM
============================================================ */
.live-section { background: var(--black); }

.live-card {
  display: grid; grid-template-columns: 1fr 420px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.live-content { padding: clamp(40px,5vw,72px); }

.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
  border-radius: 100px; padding: 8px 18px;
  font-family: var(--font-h); font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: #22c55e;
  margin-bottom: 28px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; animation: pulse 2s ease-in-out infinite; }

.live-content .h-section { margin-bottom: 18px; }
.live-content p { color: var(--grey); line-height: 1.7; margin-bottom: 28px; max-width: 480px; }

.live-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.live-detail { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--grey); }
.live-detail svg { color: var(--orange); flex-shrink: 0; }

.live-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.live-visual {
  background: linear-gradient(135deg, #0e0600 0%, #1a0a00 50%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 420px;
}
.live-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.2) 0%, transparent 70%);
}
.zoom-logo-bg {
  position: relative; z-index: 1; text-align: center;
}
.zoom-icon-wrap {
  width: 120px; height: 120px; border-radius: 28px;
  background: #2d8cff; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 0 60px rgba(45,140,255,.4);
}
.zoom-label {
  font-family: var(--font-h); font-size: 14px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5);
}

/* ============================================================
   LISTEN / PLATFORMS
============================================================ */
.listen-section { background: var(--bg); }
.listen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.listen-text p { color: var(--grey); line-height: 1.7; }

.platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 0; }
.platform {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  font-family: var(--font-h); font-size: 15px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--white);
  transition: all var(--trans); min-height: 64px; cursor: pointer;
}
.platform:hover { border-color: var(--orange); color: var(--orange); background: var(--bg-3); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.platform svg { flex-shrink: 0; }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
  background: var(--bg-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner { max-width: 640px; text-align: center; }
.newsletter-section p { color: var(--grey); font-size: 18px; line-height: 1.7; margin-bottom: 36px; }

.nl-form { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.nl-input {
  flex: 1; min-width: 220px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--r); padding: 0 20px; height: 52px;
  font-family: var(--font-b); font-size: 16px; color: var(--white);
  transition: border-color var(--trans);
}
.nl-input::placeholder { color: var(--grey-2); }
.nl-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.nl-note { font-size: 13px; color: var(--grey-2); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }

.footer-logo-img { height: 52px; background: #fff; border-radius: 8px; padding: 4px 8px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--grey-2); margin-bottom: 24px; line-height: 1.6; }
.footer-socials { display: flex; gap: 8px; }
.fsoc {
  width: 38px; height: 38px; border-radius: var(--r); min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3); border: 1px solid var(--border-2);
  color: var(--grey); transition: all var(--trans);
}
.fsoc:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-col h4 { font-family: var(--font-h); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--grey-2); transition: color var(--trans); }
.footer-col a:hover { color: var(--orange); }

.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--grey-2); flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner span { color: var(--orange); font-weight: 600; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-mark { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hosts-grid { grid-template-columns: repeat(2,1fr); }
  .topics-grid { grid-template-columns: repeat(2,1fr); }
  .live-card { grid-template-columns: 1fr; }
  .live-visual { min-height: 220px; }
  .listen-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .embed-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(0,0,0,.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 20px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 14px 20px; font-size: 18px; }
  .nav-cta { text-align: center; justify-content: center; }

  .hero-h1 { font-size: clamp(60px,18vw,100px); }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  .pillars { grid-template-columns: 1fr; }
  .hosts-grid { grid-template-columns: 1fr 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: 1fr; }
  .ep-card { grid-template-columns: 1fr 44px; }
  .ep-num { display: none; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hosts-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-item { border-right: none; padding-right: 0; margin-right: 0; }
}

/* ============================================================
   REVEAL ANIMATION — JS adds .js-animate class to body,
   then .ready is applied per element via JS only
============================================================ */
.js-loaded .reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease, transform 600ms ease; }
.js-loaded .reveal.in { opacity: 1; transform: none; }
