/* ============================================================
   OYATE ZAMBIA — Redesigned 2025
   Fonts: Oswald (display) · DM Sans (body)
   Palette: dark-forest / lime-green / sky-blue
   ============================================================ */

/* === TOKENS === */
:root {
  --c-dark:   #0c1a0e;
  --c-deep:   #1a4822;
  --c-mid:    #2a7a38;
  --c-bright: #6dc43a;
  --c-glow:   rgba(109,196,58,.35);
  --c-muted:  rgba(255,255,255,.5);
  --c-dim:    rgba(255,255,255,.28);
  --c-white:  #ffffff;
  --c-text:   #1a2b1c;
  --c-sky:      #4aadd6;
  --c-sky-light:#7cd0ec;
  --c-forest:   #1e8a4c;
  --ff-d: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --ff-b: 'DM Sans', Arial, Helvetica, sans-serif;
  --r: 8px;
  --ease: .24s ease;
  --header-h: 56px;
  --ticker-h: 38px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth; scroll-padding-top: 118px; overflow-x: clip }
body {
  margin: 0; font-family: var(--ff-b); color: var(--c-text); background: var(--c-dark);
  padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  padding-top: calc(var(--header-h) + var(--ticker-h));
  overflow-x: clip;
}
body.nav-open { overflow: hidden }
a { text-decoration: none; color: inherit }
button { font: inherit; cursor: pointer }
img { display: block; max-width: 100% }

/* === KEYFRAMES === */
@keyframes ticker-scroll {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px) }
  to   { opacity: 1; transform: translateY(0) }
}
@keyframes eq-bar {
  0%, 100% { transform: scaleY(.12) }
  50%       { transform: scaleY(1) }
}
@keyframes live-blink {
  0%, 100% { opacity: 1 }
  50%       { opacity: .15 }
}
@keyframes float {
  0%, 100% { transform: translateY(0) }
  50%       { transform: translateY(-7px) }
}
@keyframes pulse-ring {
  0%   { transform: translate(-50%,-50%) scale(.5); opacity: .7 }
  100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0 }
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(18px) }
  to   { opacity: 1; transform: translateY(0) }
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0 }
}

/* === TICKER === */
.ticker-bar {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 65;
  background: var(--c-bright);
  height: var(--ticker-h); display: flex; align-items: center; overflow: hidden;
}
.ticker-label {
  flex-shrink: 0; height: 100%;
  display: flex; align-items: center;
  background: var(--c-mid);
  color: var(--c-white);
  font-family: var(--ff-d); font-size: 11px; font-weight: 600; letter-spacing: 2px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.2);
  white-space: nowrap;
}
.ticker-wrap { overflow: hidden; flex: 1; height: 100%; display: flex; align-items: center }
.ticker-text {
  display: inline-block; white-space: nowrap;
  color: var(--c-white);
  font-family: var(--ff-b); font-size: 13px; font-weight: 500;
  animation: ticker-scroll 30s linear infinite;
}

/* === HERO === */
.site-header { position: relative }
.hero {
  height: calc(100vw * 0.4);
  min-height: 0; max-height: 740px;
  position: relative; overflow: hidden;
  background-image: url("../assets/banner.jpeg");
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    108deg,
    rgba(10,22,11,.94) 0%,
    rgba(10,22,11,.82) 35%,
    rgba(10,22,11,.38) 62%,
    transparent 100%
  );
}

/* === PAGE HERO (inner pages, e.g. Shows) === */
.hero--page { height: 380px; min-height: 380px; max-height: 380px; background-position: center 22% }
.hero--page .hero-eq { display: none }
.page-hero-content {
  position: absolute; z-index: 4; left: 50%; top: 200px; transform: translateX(-50%);
  text-align: center; max-width: 640px; padding: 0 20px;
  animation: fade-up .85s .1s both;
}
.page-hero-content .hero-eyebrow { justify-content: center }
.page-hero-content h1 {
  margin: 8px 0 12px;
  font-family: var(--ff-d); font-size: 52px; font-weight: 700;
  color: var(--c-white); letter-spacing: -1px;
}
.page-hero-content p { color: var(--c-muted); font-size: 15.5px; line-height: 1.6; margin: 0 }

/* === BRAND === */
.brand {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 10px; text-decoration: none;
}
.brand img {
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.45));
}
.brand-name {
  font-family: var(--ff-d);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--c-sky);
  line-height: 1.1;
  white-space: nowrap;
}
.brand-standalone {
  position: fixed; z-index: 65;
  top: 60px; left: 4%;
  width: auto; height: auto;
  display: none;
}
.brand-standalone img {
  width: 64px; height: 70px;
}
.brand-standalone .brand-name {
  font-size: 21px;
  letter-spacing: .3px;
}
.brand-inline {
  flex-shrink: 0;
  margin-right: 20px;
}
.brand-inline img {
  width: 46px; height: 50px;
  transition: width var(--ease), height var(--ease);
}
.brand-inline .brand-name {
  font-size: 22px;
}

/* === NAV === */
.main-nav {
  position: fixed; z-index: 70;
  top: 0; left: 0; right: 0;
  width: 100%; min-height: var(--header-h);
  background: rgba(6, 14, 8, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 40px rgba(0,0,0,.38);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
  box-sizing: border-box;
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.nav-links { display: flex; align-items: center; gap: 50px }
.nav-links a {
  font-family: var(--ff-d); font-size: 15px; font-weight: 500; letter-spacing: .6px;
  color: rgba(255,255,255,.88);
  position: relative; padding: 8px 14px 10px;
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px; width: auto; height: 2px;
  background: var(--c-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1) }
.nav-links a:hover,
.nav-links a.active { color: var(--c-bright) }
.nav-links a.active {
  font-weight: 600;
  background: rgba(109,196,58,.14);
}

.socials { display: flex; gap: 22px; align-items: center; color: rgba(255,255,255,.6) }
.socials a {
  display: flex; align-items: center; justify-content: center;
  transition: color var(--ease), transform var(--ease);
}
.socials a:hover { color: var(--c-bright); transform: translateY(-2px) }
.socials a svg { display: block }

.mobile-toggle { display: none }
.mobile-toggle span { transition: transform .22s ease, opacity .18s ease; transform-origin: center }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* === HERO CONTENT === */
.hero-content {
  position: absolute; z-index: 4;
  top: 85px; left: 12%;
  animation: fade-up .85s .1s both;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-d); font-size: 12px; font-weight: 500; letter-spacing: 3px;
  color: var(--c-bright); margin-bottom: 20px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-bright);
  animation: live-blink 1.3s ease infinite;
  flex-shrink: 0;
}
.hero-content h1 {
  margin: 0; line-height: .9;
  font-family: var(--ff-d); font-size: 80px; font-weight: 700;
  letter-spacing: -1.5px;
  text-wrap: balance;
}
.hero-content h2 {
  margin: 8px 0 26px; line-height: .96;
  font-family: var(--ff-d); font-size: 64px; font-weight: 400;
  letter-spacing: -1px; color: var(--c-bright);
}
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-bright); color: var(--c-white);
  min-width: 170px; height: 58px; padding: 0 30px;
  border-radius: 4px;
  font-family: var(--ff-d); font-size: 16px; font-weight: 600; letter-spacing: 1.2px;
  position: relative; overflow: hidden;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.cta:hover {
  background: #7bd647;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--c-glow);
}
.cta--outline {
  background: transparent;
  border: 2px solid var(--c-bright);
  color: var(--c-bright);
  min-width: 150px;
  height: 48px;
  font-size: 14px;
}
.cta--outline:hover {
  background: rgba(109,196,58,.12);
  color: var(--c-bright);
}

/* Ripple */
.ripple-btn { position: relative; overflow: hidden }
.ripple-btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple-anim .55s linear;
  pointer-events: none;
}

/* === HERO EQ BARS === */
.hero-eq {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 64px; display: flex; align-items: flex-end;
  pointer-events: none; z-index: 3; gap: 2px;
}
.hero-eq span {
  flex: 1; height: 64px;
  background: linear-gradient(to top, rgba(109,196,58,.5), rgba(109,196,58,.08));
  transform-origin: bottom; border-radius: 2px 2px 0 0;
  animation: eq-bar 1.4s ease-in-out infinite;
}
.hero-eq span:nth-child(2)  { animation-delay: .08s }
.hero-eq span:nth-child(3)  { animation-delay: .22s }
.hero-eq span:nth-child(4)  { animation-delay: .05s }
.hero-eq span:nth-child(5)  { animation-delay: .33s }
.hero-eq span:nth-child(6)  { animation-delay: .14s }
.hero-eq span:nth-child(7)  { animation-delay: .41s }
.hero-eq span:nth-child(8)  { animation-delay: .03s }
.hero-eq span:nth-child(9)  { animation-delay: .27s }
.hero-eq span:nth-child(10) { animation-delay: .11s }
.hero-eq span:nth-child(11) { animation-delay: .37s }
.hero-eq span:nth-child(12) { animation-delay: .18s }
.hero-eq span:nth-child(13) { animation-delay: .46s }
.hero-eq span:nth-child(14) { animation-delay: .07s }
.hero-eq span:nth-child(15) { animation-delay: .29s }
.hero-eq span:nth-child(16) { animation-delay: .43s }
.hero-eq span:nth-child(17) { animation-delay: .13s }
.hero-eq span:nth-child(18) { animation-delay: .35s }
.hero-eq span:nth-child(19) { animation-delay: .49s }
.hero-eq span:nth-child(20) { animation-delay: .19s }
.hero-eq span:nth-child(21) { animation-delay: .06s }
.hero-eq span:nth-child(22) { animation-delay: .39s }
.hero-eq span:nth-child(23) { animation-delay: .16s }
.hero-eq span:nth-child(24) { animation-delay: .44s }
.hero-eq span:nth-child(25) { animation-delay: .26s }
.hero-eq span:nth-child(26) { animation-delay: .09s }
.hero-eq span:nth-child(27) { animation-delay: .31s }
.hero-eq span:nth-child(28) { animation-delay: .47s }
.hero-eq span:nth-child(29) { animation-delay: .21s }
.hero-eq span:nth-child(30) { animation-delay: .38s }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none }
.reveal-delay-1 { transition-delay: .13s }
.reveal-delay-2 { transition-delay: .26s }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-eq span, .ticker-text,
  .player-card, .on-air-rings span,
  .pulse-dot, .live-dot-anim, .player-eq span {
    animation: none !important; transition: none !important;
  }
  .reveal { opacity: 1; transform: none }
  .nav-backdrop, .main-nav, .main-nav .nav-links a, .main-nav .socials {
    transition: none !important; transform: none !important;
  }
  .main-nav.open .nav-links a, .main-nav.open .socials { opacity: 1 }
}

.nav-backdrop { display: none }

/* === EYEBROW === */
.section-eyebrow {
  display: block; margin-bottom: 10px;
  font-family: var(--ff-d); font-size: 11px; font-weight: 500; letter-spacing: 3.5px;
  color: var(--c-bright);
}
.section-eyebrow--dim { color: var(--c-dim) }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--c-dark);
  padding: 90px 80px;
}

/* === BENTO GRID === */
.about-bento {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}
.bento-tile {
  position: relative; border-radius: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.bento-text {
  grid-column: span 3; grid-row: span 1;
  padding: 44px 46px;
  background: linear-gradient(160deg, rgba(109,196,58,.07), rgba(74,173,214,.04));
}
.bento-player {
  grid-column: span 1; grid-row: span 2;
}
.bento-stat {
  grid-column: span 1; grid-row: span 1;
  padding: 26px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  color: var(--c-white);
}
.bento-stat-icon { color: var(--c-bright) }
.bento-stat-num {
  font-family: var(--ff-d); font-size: 30px; font-weight: 700; letter-spacing: -.5px;
  color: var(--c-white);
}
.bento-stat-label { font-size: 12.5px; color: var(--c-muted); line-height: 1.4 }
.bento-stat:hover, .bento-text:hover {
  transform: translateY(-4px);
  border-color: rgba(109,196,58,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(109,196,58,.1);
}
.bento-stat--link { cursor: pointer }
.bento-stat--link .bento-stat-label { color: var(--c-bright); font-weight: 600 }

.about-title {
  font-family: var(--ff-d); font-size: 42px; font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -1px; line-height: 1.08;
}
.about-desc {
  color: var(--c-muted); font-size: 16.5px; line-height: 1.8;
  margin: 0 0 18px; max-width: 50ch;
}
.about-tagline {
  font-family: var(--ff-d); font-size: 24px; font-weight: 600;
  color: var(--c-bright); margin: 0; letter-spacing: .3px;
}
.about-more-link { margin-top: 20px }

/* Kinetic gradient headings — seamless shimmer loop */
.kinetic-text,
.inner-title.kinetic-text,
.about-title.kinetic-text,
.on-air-title.kinetic-text,
.host-cta h2.kinetic-text,
.hero-content h1.kinetic-text {
  background: linear-gradient(
    100deg,
    var(--c-white) 0%,
    var(--c-white) 28%,
    var(--c-bright) 36%,
    var(--c-sky-light) 42%,
    var(--c-bright) 48%,
    var(--c-white) 50%,
    var(--c-white) 78%,
    var(--c-bright) 86%,
    var(--c-sky-light) 92%,
    var(--c-bright) 98%,
    var(--c-white) 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: kinetic-shift 7s linear infinite;
}
@keyframes kinetic-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .kinetic-text,
  .inner-title.kinetic-text,
  .about-title.kinetic-text,
  .on-air-title.kinetic-text,
  .host-cta h2.kinetic-text,
  .hero-content h1.kinetic-text {
    animation: none;
    background-position: 22% 50%;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* === PLAYER CARD === */
.player-card {
  height: 100%; box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(109,196,58,.3);
  border-radius: 20px; padding: 28px 24px 22px;
  text-align: center;
  box-shadow: 0 0 50px rgba(109,196,58,.1), 0 24px 48px rgba(0,0,0,.35);
  animation: float 4.5s ease-in-out infinite;
}
.player-logo img { width: 66px; height: 66px; object-fit: contain; margin: 0 auto 12px }
.player-station {
  font-family: var(--ff-d); font-size: 15px; font-weight: 600; letter-spacing: .5px;
  color: var(--c-white); margin-bottom: 10px;
}
.player-live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(109,196,58,.15);
  border: 1px solid rgba(109,196,58,.5);
  border-radius: 50px; padding: 4px 13px; margin-bottom: 16px;
}
.live-dot-anim {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-bright); flex-shrink: 0;
  animation: live-blink 1.2s ease infinite;
}
.live-text { color: var(--c-bright); font-size: 11px; font-weight: 700; letter-spacing: 1.5px }

.player-eq {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 3px; height: 26px; margin-bottom: 14px;
}
.player-eq span {
  display: block; width: 4px; height: 26px;
  background: var(--c-bright); border-radius: 2px;
  transform-origin: bottom;
  animation: eq-bar .95s ease-in-out infinite;
}
.player-eq span:nth-child(1) { animation-delay: .0s }
.player-eq span:nth-child(2) { animation-delay: .14s }
.player-eq span:nth-child(3) { animation-delay: .07s }
.player-eq span:nth-child(4) { animation-delay: .21s }
.player-eq span:nth-child(5) { animation-delay: .04s }
.player-eq span:nth-child(6) { animation-delay: .17s }
.player-eq span:nth-child(7) { animation-delay: .10s }

.player-song {
  color: rgba(255,255,255,.38); font-size: 13px; margin-bottom: 18px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-controls { display: flex; justify-content: center; gap: 16px; align-items: center }
.play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-bright); border: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px var(--c-glow);
}
.volume-btn {
  width: 40px; height: 40px; border: 0; background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-mid); transition: color var(--ease), transform var(--ease);
}
.volume-btn:hover { color: var(--c-bright); transform: scale(1.1) }

/* ============================================================
   SCHEDULE
   ============================================================ */
.lineup {
  background: var(--c-deep);
  padding: 64px 40px 72px;
}
.section-heading { text-align: center; color: var(--c-white); margin-bottom: 0 }
.section-heading h2 {
  margin: 0; color: var(--c-bright);
  font-family: var(--ff-d); font-size: 38px; font-weight: 700; letter-spacing: -1px;
}
.section-heading p {
  margin: 18px 0 0; font-size: 16px; line-height: 1.65;
  color: var(--c-muted);
}
.view-all-link {
  display: inline-block; margin: 14px 0 32px;
  color: var(--c-bright); font-family: var(--ff-d); font-size: 13px; font-weight: 600; letter-spacing: .5px;
  transition: color var(--ease);
}
.view-all-link:hover { color: var(--c-white) }
.radio-mark { height: 35px; position: relative; width: 70px; margin: 0 auto 4px }
.radio-mark i {
  position: absolute;
  border: 3px solid var(--c-bright);
  border-right-color: transparent; border-bottom-color: transparent;
  border-radius: 100% 0 0 0;
}
.radio-mark i:first-child { width: 36px; height: 36px; left: 14px; top: 1px }
.radio-mark i:last-child  { width: 24px; height: 24px; left: 14px; top: 13px }

.day-tabs {
  width: 100%; background: var(--c-mid);
  border-radius: var(--r);
  display: grid; grid-template-columns: repeat(7,1fr);
  align-items: center; padding: 8px 10px; gap: 6px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}
.day-tabs button {
  border: 0; background: transparent; height: 50px; border-radius: 6px;
  color: rgba(255,255,255,.7);
  font-family: var(--ff-d); font-size: 14px; font-weight: 500; letter-spacing: .8px;
  transition: background var(--ease), color var(--ease), transform .15s;
}
.day-tabs button:hover:not(.selected) {
  background: rgba(255,255,255,.12); color: var(--c-white); transform: translateY(-1px);
}
.day-tabs button.selected { background: var(--c-white); color: var(--c-mid) }

.schedule {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.schedule-card {
  position: relative;
  background: linear-gradient(155deg, #ffffff 0%, #f6faf6 100%);
  border-radius: 16px;
  border: 1px solid rgba(109,196,58,.14);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.schedule-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent, var(--c-bright));
}
.schedule-card.is-live {
  border-color: rgba(109,196,58,.45);
  box-shadow: 0 6px 24px rgba(109,196,58,.16);
}
.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(109,196,58,.18);
  border-color: rgba(109,196,58,.35);
}
.schedule-card.animating { animation: card-in .35s ease both }

.card-body {
  padding: 20px 20px 18px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 168px;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.card-category {
  font-family: var(--ff-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--accent, var(--c-bright));
  background: var(--accent-soft, rgba(109,196,58,.12));
  padding: 4px 11px;
  border-radius: 20px;
}
.card-live-badge {
  flex-shrink: 0;
  background: var(--c-bright);
  color: var(--c-white);
  font-family: var(--ff-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border-radius: 20px;
  animation: live-blink 1.4s ease infinite;
}
.card-title {
  margin: 0 0 8px;
  font-family: var(--ff-d);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .2px;
  color: #0f1a12;
  line-height: 1.25;
}
.card-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5c6b60;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.card-time {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.clock {
  width: 22px; height: 22px;
  border: 2px solid var(--accent, var(--c-bright));
  border-radius: 50%;
  position: relative;
  flex: none;
}
.clock::before {
  content: "";
  position: absolute;
  left: 9px; top: 4px;
  width: 2px; height: 7px;
  background: var(--accent, var(--c-bright));
}
.clock::after {
  content: "";
  position: absolute;
  left: 9px; top: 10px;
  width: 5px; height: 2px;
  background: var(--accent, var(--c-bright));
  transform: rotate(20deg);
  transform-origin: left center;
}
.card-time-value {
  font-family: var(--ff-d);
  font-size: 14px;
  font-weight: 600;
  color: #2a3d30;
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px;
  min-width: 0;
  line-height: 1.35;
}
.card-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--accent, var(--c-bright));
  color: var(--c-white);
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(109,196,58,.28);
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}
.card-play span { display: none; }
.card-play svg {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.card-play:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(109,196,58,.4);
  filter: brightness(1.06);
}
.card-play:active { transform: scale(0.96); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--c-dark);
  padding: 88px 40px 72px;
}
.gallery-inner { max-width: 1160px; margin: 0 auto }
.gallery-header { text-align: center; margin-bottom: 52px }
.gallery-title {
  font-family: var(--ff-d); font-size: 46px; font-weight: 700;
  color: var(--c-white); margin: 0 0 14px;
  letter-spacing: -1px; line-height: 1.08;
}
.gallery-desc { color: var(--c-muted); font-size: 16px; line-height: 1.65; margin: 0 }
.gallery-desc strong { color: var(--c-bright) }

.gallery-viewer { max-width: 920px; margin: 0 auto; outline: none }
.gallery-viewer:focus-visible {
  box-shadow: 0 0 0 3px rgba(74,173,214,.35);
  border-radius: 16px;
}
.gallery-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a120b;
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}
.gallery-main {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  cursor: zoom-in;
}
.gallery-main::after {
  content: "Click to expand";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0,0,0,.5);
  color: rgba(255,255,255,.85);
  font-family: var(--ff-d);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-main:hover::after { opacity: 1 }
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .35s ease;
}
.gallery-main img.is-fading { opacity: 0 }
.gallery-main figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 36px 24px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: var(--c-white);
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}
.gallery-nav {
  position: absolute;
  top: 16px;
  z-index: 2;
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,20,20,.55);
  color: var(--c-white);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.gallery-nav:hover {
  background: rgba(20,20,20,.78);
  transform: scale(1.06);
}
.gallery-nav--prev { left: 16px }
.gallery-nav--next { right: 16px }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(109,196,58,.4) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 6px }
.gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(109,196,58,.35);
  border-radius: 6px;
}
.gallery-thumb {
  flex: 0 0 auto;
  width: 108px; height: 72px;
  padding: 0; border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover { transform: translateY(-2px) }
.gallery-thumb.selected {
  border-color: var(--c-bright);
  box-shadow: 0 0 0 3px rgba(109,196,58,.2);
}
.gallery-thumb:focus-visible {
  outline: 2px solid var(--c-sky);
  outline-offset: 2px;
}

/* Gallery fullscreen lightbox */
body.gallery-lightbox-open { overflow: hidden }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility .32s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 5, .92);
  backdrop-filter: blur(8px);
}
.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gallery-lightbox-figure {
  margin: 0;
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  background: #0a120b;
}
.gallery-lightbox-caption {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-family: var(--ff-b);
  font-size: 15px;
  text-align: center;
  max-width: 640px;
  line-height: 1.5;
}
.gallery-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-lightbox-btn {
  border: 0;
  cursor: pointer;
  font-family: var(--ff-d);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background var(--ease), transform var(--ease), color var(--ease);
}
.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}
.gallery-lightbox-close:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.06);
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-nav:hover {
  background: var(--c-bright);
  color: #08130a;
  transform: translateY(-50%) scale(1.06);
}
.gallery-lightbox-nav--prev { left: 12px }
.gallery-lightbox-nav--next { right: 12px }
.gallery-lightbox-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--c-bright);
  color: #08130a;
  text-decoration: none;
}
.gallery-lightbox-download:hover {
  background: #7bd647;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .gallery-lightbox { padding: 12px }
  .gallery-lightbox-nav { width: 42px; height: 42px }
  .gallery-lightbox-nav--prev { left: 4px }
  .gallery-lightbox-nav--next { right: 4px }
  .gallery-lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px }
  .gallery-lightbox-figure img { max-height: calc(100vh - 200px) }
  .gallery-main::after { display: none }
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-section {
  background: var(--c-deep);
  padding: 88px 80px; display: flex; align-items: center; justify-content: center;
}
.events-card {
  position: relative;
  display: flex; width: 100%; max-width: 1020px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  transition: transform var(--ease), box-shadow var(--ease);
}
.events-card::before {
  content: ''; position: absolute; inset: -1.5px; z-index: -1; border-radius: 21px;
  background: conic-gradient(from var(--spin-angle, 0deg), var(--c-bright), var(--c-sky-light), var(--c-forest), var(--c-bright));
  animation: spin-border 6s linear infinite;
  opacity: .7;
}
@keyframes spin-border {
  to { --spin-angle: 360deg }
}
@property --spin-angle {
  syntax: '<angle>'; initial-value: 0deg; inherits: false;
}
.events-card:hover { transform: translateY(-4px) }
.event-img {
  flex: 0 0 42%;
  min-height: 320px;
  overflow: hidden;
  background: #0a0a0a;
}
.event-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.event-info {
  flex: 1; background: rgba(42,122,56,.94); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 50px 42px; text-align: center;
}
.events-title {
  font-family: var(--ff-d); font-size: 30px; font-weight: 700;
  color: var(--c-white); margin: 12px 0 34px; line-height: 1.2;
}
.countdown { display: flex; align-items: flex-end; gap: 6px }
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 5px }
.count-num {
  font-family: var(--ff-d); font-size: 58px; font-weight: 700;
  color: var(--c-white); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.count-label {
  font-size: 11px; color: rgba(255,255,255,.55);
  font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
}
.count-sep {
  font-family: var(--ff-d); font-size: 52px; font-weight: 700;
  color: var(--c-bright); line-height: 1; padding-bottom: 18px;
}

/* ============================================================
   ON AIR
   ============================================================ */
.on-air-section {
  background: var(--c-dark);
  padding: 96px 20px 104px; text-align: center;
}
.on-air-inner { position: relative; display: inline-block }
.on-air-rings {
  position: absolute;
  top: 50%; left: 50%;
  pointer-events: none; z-index: 0;
}
.on-air-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(109,196,58,.25);
  width: 200px; height: 200px;
  animation: pulse-ring 2.8s ease-out infinite;
}
.on-air-rings span:nth-child(2) { animation-delay: .93s }
.on-air-rings span:nth-child(3) { animation-delay: 1.86s }
.on-air-title {
  font-family: var(--ff-d); font-size: 62px; font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 8px; position: relative; z-index: 1;
}
.on-air-desc {
  color: rgba(255,255,255,.35); font-size: 15px; margin: 0 0 30px;
  position: relative; z-index: 1;
}
.on-air-socials {
  position: relative; z-index: 1;
  display: flex; justify-content: center; gap: 14px;
}
.on-air-social {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.55);
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}
.on-air-social:hover {
  transform: translateY(-4px) scale(1.08);
  background: var(--c-bright); border-color: var(--c-bright); color: var(--c-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.anchor-target { position: relative; top: -10px; height: 0; overflow: hidden }
.site-footer {
  background: #060d07;
  border-top: 1px solid rgba(109,196,58,.12);
  padding: 64px 52px 0;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px;
  padding-bottom: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,.4); font-size: 14px; line-height: 1.7;
  margin: 16px 0 20px; max-width: 34ch;
}
.footer-logo { width: 54px; height: 60px; object-fit: contain }
.footer-socials { display: flex; gap: 10px }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.45);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.footer-socials a:hover { background: var(--c-bright); color: var(--c-dark); transform: translateY(-3px) }

.footer-col h4 {
  font-family: var(--ff-d); font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--c-bright); text-transform: uppercase; margin: 0 0 18px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px }
.footer-col a { color: rgba(255,255,255,.5); font-size: 14px; transition: color var(--ease); width: fit-content }
.footer-col a:hover { color: var(--c-white) }
.footer-col a.active,
.footer-left a.active { color: var(--c-bright); font-weight: 600 }
.footer-left a { transition: color var(--ease) }
.footer-col--cta p { color: rgba(255,255,255,.4); font-size: 13.5px; line-height: 1.6; margin: 0 0 6px }
.footer-listen-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-d); font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--c-bright);
}
.footer-listen-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--c-bright);
  animation: live-blink 1.2s ease infinite;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0; text-align: center;
  color: rgba(255,255,255,.25); font-size: 12.5px;
}
.footer-left {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 4px; padding: 20px 16px; text-align: center;
}
.footer-left a {
  color: rgba(255,255,255,.5); font-size: 13px; transition: color var(--ease);
}
.footer-left a:hover { color: var(--c-white) }
.footer-sep { color: rgba(255,255,255,.2); font-size: 12px; user-select: none }
.footer-right {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 20px 20px; text-align: center;
  color: rgba(255,255,255,.25); font-size: 11.5px; line-height: 1.5;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed; right: 26px; bottom: 88px;
  width: 50px; height: 50px; border: 0; border-radius: 50%;
  background: var(--c-bright); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px var(--c-glow);
  z-index: 20; opacity: 0; transform: translateY(14px);
  transition: opacity .25s, transform .25s, box-shadow .2s;
}
.back-top.show { opacity: 1; transform: none }
.back-top:hover {
  box-shadow: 0 8px 30px rgba(109,196,58,.55);
  transform: translateY(-3px);
}

/* ============================================================
   MINI PLAYER BAR
   ============================================================ */
@keyframes mp-eq {
  0%,100% { transform: scaleY(.18) }
  50%      { transform: scaleY(1)   }
}

.mini-player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  height: calc(68px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(8,18,9,.96);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-top: 2px solid var(--c-bright);
  box-shadow: 0 -6px 32px rgba(0,0,0,.55);
  display: flex; align-items: center; gap: 0;
  padding: 0 28px;
}

/* LEFT */
.mp-info {
  display: flex; align-items: center; gap: 12px;
  flex: 0 0 280px; min-width: 0;
  cursor: pointer;
}
.mp-logo {
  width: 40px; height: 40px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(109,196,58,.4));
}
.mp-text { min-width: 0 }
.mp-station {
  font-family: var(--ff-d); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; color: var(--c-bright); white-space: nowrap;
}
.mp-track {
  font-size: 13px; color: rgba(255,255,255,.6);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 200px;
}
.mp-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(109,196,58,.14); border: 1px solid rgba(109,196,58,.45);
  border-radius: 40px; padding: 3px 10px; flex-shrink: 0;
  font-family: var(--ff-d); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--c-bright);
}
.mp-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-bright);
  animation: live-blink 1.2s ease infinite;
}

/* CENTRE */
.mp-centre {
  flex: 1; display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 14px; padding: 0 24px;
}
.mp-waveform {
  display: flex; align-items: flex-end; gap: 3px; height: 22px;
}
.mp-waveform span {
  width: 3px; height: 22px; border-radius: 2px;
  background: var(--c-bright); opacity: .7;
  transform-origin: bottom;
  animation: mp-eq .9s ease-in-out infinite paused;
}
.mini-player.playing .mp-waveform span { animation-play-state: running }
.mp-waveform span:nth-child(2)  { animation-delay: .11s }
.mp-waveform span:nth-child(3)  { animation-delay: .24s }
.mp-waveform span:nth-child(4)  { animation-delay: .06s }
.mp-waveform span:nth-child(5)  { animation-delay: .35s }
.mp-waveform span:nth-child(6)  { animation-delay: .17s }
.mp-waveform span:nth-child(7)  { animation-delay: .42s }
.mp-waveform span:nth-child(8)  { animation-delay: .09s }
.mp-waveform span:nth-child(9)  { animation-delay: .28s }
.mp-waveform span:nth-child(10) { animation-delay: .20s }
.mp-waveform span:nth-child(11) { animation-delay: .38s }
.mp-waveform span:nth-child(12) { animation-delay: .14s }

.mp-live-label {
  font-family: var(--ff-d); font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: rgba(255,255,255,.35);
}
.mini-player.playing .mp-live-label { color: var(--c-bright) }
.mini-player:not(.stream-live) .mp-live-badge { display: none !important; }
.now-playing:not(.stream-live) .np-live-badge { display: none; }

/* RIGHT */
.mp-controls {
  display: flex; align-items: center; gap: 6px;
  flex: 0 0 auto;
}
.mp-btn {
  width: 36px; height: 36px; border: 0; background: transparent;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: color var(--ease), background var(--ease), transform .15s;
  padding: 0;
}
.mp-btn svg { width: 18px; height: 18px; display: block; flex-shrink: 0 }
.mp-btn:hover { color: var(--c-bright); background: rgba(109,196,58,.12); transform: scale(1.1) }

.mp-play {
  width: 44px; height: 44px;
  background: var(--c-bright); color: var(--c-white) !important;
  box-shadow: 0 0 18px var(--c-glow);
}
.mp-play:hover { background: #7bd647; transform: scale(1.12) !important }

.mp-vol { display: flex; align-items: center; gap: 4px; margin-left: 8px }
.mp-mute { width: 30px; height: 30px }
.mp-vol-slider {
  -webkit-appearance: none; appearance: none;
  width: 80px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.18); cursor: pointer; outline: none;
}
.mp-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--c-bright); cursor: pointer;
  box-shadow: 0 0 6px rgba(109,196,58,.6);
}
.mp-vol-slider::-moz-range-thumb {
  width: 13px; height: 13px; border-radius: 50%; border: none;
  background: var(--c-bright); cursor: pointer;
}

/* Collapse gracefully on very small screens */
@media (max-width: 640px) {
  .mini-player { padding: 0 10px; gap: 0 }
  .mp-info { flex: 1 1 auto; gap: 8px; min-width: 0; max-width: 46% }
  .mp-live-badge { display: none }
  .mp-track { display: block; max-width: none; font-size: 12px }
  .mp-station { font-size: 11px; letter-spacing: 1px }
  .mp-centre { flex: 0 1 auto; padding: 0 6px }
  .mp-waveform { gap: 2px; height: 18px }
  .mp-waveform span { height: 18px; width: 2px }
  .mp-live-label { font-size: 10px; letter-spacing: 1.2px }
  .mp-vol-slider { width: 48px }
  .mp-play { width: 40px; height: 40px }
  .mp-btn svg { width: 16px; height: 16px }
}
@media (max-width: 420px) {
  .mp-vol { display: none }
  .mp-centre { display: none }
  .mp-info { max-width: none; flex: 1 }
}

/* ============================================================
   NOW PLAYING (full-screen player)
   ============================================================ */
.now-playing {
  position: fixed; inset: 0; z-index: 100;
  display: flex; /* child gets margin:auto – centers AND stays scrollable */
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at 50% 15%, rgba(109,196,58,.16), transparent 60%),
    linear-gradient(180deg, #0c1f0e, #030603);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  visibility: hidden;
}
.now-playing.open { transform: translateY(0); visibility: visible }
@media (prefers-reduced-motion: reduce) {
  .now-playing { transition: none }
}

.np-minimize {
  position: fixed; top: 26px; left: 50%; transform: translateX(-50%);
  z-index: 101;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.06); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), transform var(--ease);
}
.np-minimize:hover { background: rgba(255,255,255,.14); transform: translateX(-50%) translateY(3px) }

.np-inner {
  width: 100%; max-width: 460px; margin: auto; padding: 78px 30px 34px; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.np-art { position: relative; width: 170px; height: 170px; margin: 0 0 20px; display: flex; align-items: center; justify-content: center }
.np-art img { width: 92px; height: 100px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)) }

/* YouTube player – tiny, in viewport so browsers allow audio */
.yt-live-host {
  position: fixed;
  right: 0;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  width: 200px;
  height: 113px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.02;
}
.yt-live-host iframe,
.yt-live-host > div {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.np-art-rings { position: absolute; inset: 0; pointer-events: none }
.np-art-rings span {
  position: absolute; inset: 0; margin: auto; border-radius: 50%;
  border: 1.5px solid rgba(109,196,58,.3); width: 100%; height: 100%;
  animation: pulse-ring 2.6s ease-out infinite;
}
.np-art-rings span:nth-child(2) { animation-delay: .87s }
.np-art-rings span:nth-child(3) { animation-delay: 1.74s }

.np-live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(109,196,58,.15); border: 1px solid rgba(109,196,58,.5);
  border-radius: 50px; padding: 5px 15px; margin-bottom: 18px;
  font-family: var(--ff-d); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--c-bright);
}
.np-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-bright); animation: live-blink 1.2s ease infinite }

.np-station { font-family: var(--ff-d); font-size: 24px; font-weight: 700; color: var(--c-white); margin: 0 0 6px }
.np-track { color: rgba(255,255,255,.45); font-size: 14.5px; margin: 0 0 26px; min-height: 20px }

.np-waveform { display: flex; align-items: flex-end; gap: 5px; height: 40px; margin-bottom: 28px }
.np-waveform span {
  width: 5px; height: 40px; border-radius: 3px; background: var(--c-bright); opacity: .8;
  transform-origin: bottom; animation: mp-eq 1s ease-in-out infinite paused;
}
.now-playing.playing .np-waveform span { animation-play-state: running }
.np-waveform span:nth-child(2) { animation-delay: .10s }
.np-waveform span:nth-child(3) { animation-delay: .22s }
.np-waveform span:nth-child(4) { animation-delay: .05s }
.np-waveform span:nth-child(5) { animation-delay: .30s }
.np-waveform span:nth-child(6) { animation-delay: .16s }
.np-waveform span:nth-child(7) { animation-delay: .38s }
.np-waveform span:nth-child(8) { animation-delay: .08s }

.np-play {
  width: 76px; height: 76px; border-radius: 50%; border: 0;
  background: var(--c-bright); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--c-glow);
  transition: transform var(--ease), box-shadow var(--ease);
  margin-bottom: 22px;
}
.np-play svg { width: 28px; height: 28px; margin-left: 3px }
.np-play:hover { transform: scale(1.06) }

.np-vol { display: flex; align-items: center; gap: 12px; width: 100%; max-width: 260px }
.np-vol-slider {
  -webkit-appearance: none; appearance: none; flex: 1;
  height: 4px; border-radius: 4px; background: rgba(255,255,255,.15); cursor: pointer; outline: none;
}
.np-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 15px; height: 15px; border-radius: 50%;
  background: var(--c-bright); cursor: pointer; box-shadow: 0 0 6px rgba(109,196,58,.6);
}
.np-vol-slider::-moz-range-thumb { width: 15px; height: 15px; border-radius: 50%; border: none; background: var(--c-bright); cursor: pointer }

@media (max-width: 480px) {
  .np-art { width: 160px; height: 160px; margin: 0 0 22px }
  .np-art img { width: 84px; height: 92px }
  .np-station { font-size: 22px }
  .np-play { width: 74px; height: 74px }
}
@media (max-height: 700px) {
  .np-inner { padding-top: 70px }
  .np-art { width: 120px; height: 120px; margin-bottom: 14px }
  .np-art img { width: 66px; height: 72px }
  .np-live-badge { margin-bottom: 12px }
  .np-track { margin-bottom: 16px }
  .np-waveform { height: 30px; margin-bottom: 18px }
  .np-waveform span { height: 30px }
  .np-play { width: 64px; height: 64px; margin-bottom: 16px }
  .np-play svg { width: 24px; height: 24px }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1400px) {
  .main-nav { padding: 0 32px }
  .nav-links { gap: 40px }
  .hero-content h1 { font-size: 68px }
  .hero-content h2 { font-size: 54px }
  .about-bento { gap: 16px }
}

@media (max-width: 1100px) {
  .about-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto }
  .bento-text { grid-column: span 2 }
  .bento-player { grid-column: span 2; grid-row: auto }
  .player-card { max-width: 420px; margin: 0 auto }
  .about-desc { max-width: none }
  .about-section { padding: 72px 40px }
  .events-section { padding: 72px 40px }
}

@media (max-width: 900px) {
  html { scroll-padding-top: calc(var(--header-h) + var(--ticker-h) + 12px) }
  .hero { height: 520px; min-height: 520px; max-height: none; background-size: cover; background-position: 62% center }
  body { padding-top: calc(var(--header-h) + var(--ticker-h)) }
  .ticker-label { font-size: 10px; letter-spacing: 1.2px; padding: 0 14px }
  .ticker-text { font-size: 12px }
  .brand-standalone { display: none !important }
  .brand-inline { display: flex !important; margin-right: 0 }
  .mobile-toggle {
    display: flex; position: fixed; right: 14px; top: 8px; z-index: 75;
    width: 44px; height: 40px; border: 0;
    background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
    border-radius: 8px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 11px;
  }
  .mobile-toggle span { height: 2px; background: var(--c-white); width: 100%; border-radius: 2px }
  .site-header .hero { overflow: visible }
  .nav-backdrop {
    display: block;
    position: fixed; inset: 0; z-index: 68;
    background: rgba(4,10,5,.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .32s ease, visibility .32s ease;
  }
  .nav-backdrop.open {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .main-nav {
    top: 0; left: 0; right: 0; width: 100%;
    background: rgba(4, 10, 6, 0.98); backdrop-filter: blur(20px);
    padding: 0 58px 0 14px;
    min-height: var(--header-h); max-height: var(--header-h);
    overflow: hidden;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    z-index: 72;
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: none;
    transition: max-height .34s cubic-bezier(.16,1,.3,1), box-shadow .32s ease, border-radius .32s ease;
  }
  .main-nav.open {
    max-height: min(85vh, 520px);
    overflow-y: auto;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    padding-bottom: 18px;
    gap: 16px;
  }
  .main-nav > .brand-inline {
    flex-shrink: 0;
    min-height: var(--header-h);
    align-items: center;
    padding: 4px 0;
  }
  .main-nav .nav-links,
  .main-nav .socials {
    display: none;
    width: 100%;
    padding: 0 6px;
  }
  .main-nav.open .nav-links,
  .main-nav.open .socials {
    display: flex;
  }
  .main-nav.open .nav-links {
    padding-top: 4px;
  }
  .main-nav .nav-links a {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .26s ease, transform .26s ease;
  }
  .main-nav:not(.open) .nav-links a { transition-delay: 0s !important }
  .main-nav.open .nav-links a {
    opacity: 1;
    transform: translateX(0);
  }
  .main-nav.open .nav-links a:nth-child(1) { transition-delay: .06s }
  .main-nav.open .nav-links a:nth-child(2) { transition-delay: .1s }
  .main-nav.open .nav-links a:nth-child(3) { transition-delay: .14s }
  .main-nav.open .nav-links a:nth-child(4) { transition-delay: .18s }
  .main-nav .socials {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .28s ease .2s, transform .28s ease .2s;
  }
  .main-nav:not(.open) .socials { transition-delay: 0s !important }
  .main-nav.open .socials { opacity: 1; transform: translateY(0) }
  .nav-links { flex-direction: column; align-items: stretch; gap: 6px; width: 100% }
  .nav-links a {
    font-size: 17px; padding: 12px 14px; width: 100%;
    border-radius: 8px;
  }
  .nav-links a::after { bottom: 8px; left: 14px; right: 14px }
  .socials { gap: 16px; padding-top: 4px }
  .hero-content { left: 5%; right: 5%; top: 78px; max-width: none }
  .hero-content h1 { font-size: clamp(36px, 10vw, 52px); letter-spacing: -1px }
  .hero-content h2 { font-size: clamp(28px, 7vw, 40px) }
  .hero-eyebrow { font-size: 11px; letter-spacing: 2px; margin-bottom: 14px }
  .hero-eq { opacity: .35; transform: scale(.92); transform-origin: bottom center }
  .lineup { padding: 44px 16px 56px }
  .section-heading h2 { font-size: 30px }
  .section-heading p { font-size: 14.5px }
  .day-tabs {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 8px; gap: 8px;
  }
  .day-tabs::-webkit-scrollbar { display: none }
  .day-tabs button {
    flex: 0 0 auto; min-width: 96px; scroll-snap-align: start;
    height: 46px; font-size: 13px;
  }
  .schedule { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px }
  .about-bento { grid-template-columns: 1fr }
  .bento-text, .bento-player, .bento-stat { grid-column: span 1 }
  .bento-text { padding: 28px 22px }
  .about-title { font-size: 32px }
  .about-section { padding: 52px 18px }
  .player-card { max-width: none; padding: 28px 22px }
  .gallery-section { padding: 52px 18px 44px }
  .gallery-main { aspect-ratio: 16 / 10 }
  .gallery-nav { width: 38px; height: 38px; top: 12px }
  .gallery-nav--prev { left: 12px }
  .gallery-nav--next { right: 12px }
  .gallery-main figcaption { font-size: 13px; padding: 28px 16px 14px }
  .gallery-thumb { width: 88px; height: 58px }
  .events-section { padding: 52px 18px }
  .events-card { flex-direction: column }
  .event-img { flex: none; min-height: 180px }
  .event-img img { min-height: 180px }
  .event-info { padding: 32px 22px }
  .events-title { font-size: 24px; margin-bottom: 24px }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; padding-bottom: 32px }
  .footer-brand p { margin-left: auto; margin-right: auto }
  .footer-socials { justify-content: center }
  .footer-col { align-items: center }
  .site-footer { padding: 44px 18px 0 }
  .footer-bottom { padding: 18px 12px; font-size: 11.5px; line-height: 1.5 }
  .on-air-title { font-size: clamp(32px, 8vw, 46px); letter-spacing: 4px }
  .on-air-section { padding: 72px 18px 88px }
  .back-top { right: 14px; bottom: calc(82px + env(safe-area-inset-bottom, 0px)) }
  .host-cta h2 { font-size: 24px }
  .host-cta .cta { width: 100%; max-width: 280px }
}

@media (max-width: 560px) {
  .hero { height: 460px; min-height: 460px; background-position: 60% center }
  .hero-content { top: 64px }
  .hero-content h1 { font-size: clamp(32px, 11vw, 42px); line-height: .92 }
  .hero-content h2 { font-size: clamp(24px, 7.5vw, 32px); margin-bottom: 18px }
  .hero-eq { display: none }
  .cta { height: 50px; min-width: 130px; font-size: 13.5px; padding: 0 22px }
  .cta--outline { height: 44px; min-width: 120px }
  .lineup { padding: 36px 14px 48px }
  .section-heading h2 { font-size: 26px }
  .day-tabs button { min-width: 84px; height: 42px; font-size: 12px; letter-spacing: .5px }
  .schedule { grid-template-columns: 1fr; gap: 14px }
  .card-body { min-height: 0; padding: 16px 16px 14px 20px }
  .card-title { font-size: 18px }
  .card-play { width: 52px; height: 52px }
  .card-play svg { width: 20px; height: 20px }
  .gallery-thumb { width: 76px; height: 52px }
  .count-num { font-size: 38px }
  .count-sep { font-size: 32px }
  .events-section { padding: 44px 14px }
  .events-title { font-size: 20px }
  .event-info { padding: 26px 18px }
  .on-air-title { font-size: clamp(26px, 9vw, 34px); letter-spacing: 2px }
  .on-air-section { padding: 60px 14px 76px }
  .about-section { padding: 44px 14px }
  .about-title { font-size: 28px }
  .bento-text { padding: 24px 18px }
  .bento-stat { padding: 22px 18px }
  .bento-stat-num { font-size: 28px }
  .site-footer { padding: 36px 14px 0 }
  .footer-grid { gap: 28px }
  .ticker-label { padding: 0 10px; letter-spacing: .8px; max-width: 108px; overflow: hidden; text-overflow: ellipsis }
  .inner-section { padding: 48px 16px }
  .inner-section--stats { padding-bottom: 48px }
  .stats-band { padding: 28px 20px; gap: 20px }
  .contact-form { padding: 24px 18px }
  .host-cta { padding: 26px 20px }
  .host-cta h2 { font-size: 22px }
  .shows-toolbar-section { padding: 18px 14px; top: auto !important }
  .shows-categories {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: 4px;
  }
  .shows-categories::-webkit-scrollbar { display: none }
  .cat-pill { flex-shrink: 0 }
  .shows-grid-section { padding: 28px 14px 64px }
}

@media (max-width: 380px) {
  .hero { height: 420px; min-height: 420px }
  .hero-content { top: 56px }
  .brand-standalone { gap: 8px }
  .brand-standalone img { width: 52px; height: 56px }
  .brand-standalone .brand-name { font-size: 16px; letter-spacing: 0 }
  .main-nav > .brand-inline .brand-name { font-size: 19px }
  .main-nav > .brand-inline img { width: 44px; height: 48px }
  .mobile-toggle { right: 10px; top: 12px; width: 40px; height: 36px }
  .page-hero-content { top: 118px; padding-right: 12px }
  .page-hero-content h1 { font-size: 28px }
  .page-hero-content p { font-size: 14px }
  .ticker-label { display: none }
  .stats-band { grid-template-columns: 1fr; gap: 16px }
  .value-card { padding: 22px 18px }
  .footer-left { flex-direction: column; gap: 10px }
  .footer-sep { display: none }
  .card-time-value { font-size: 13px }
}

/* ============================================================
   SHOWS PAGE
   ============================================================ */
.cat-lime     { --accent: var(--c-bright);    --accent-soft: rgba(109,196,58,.15) }
.cat-sky      { --accent: var(--c-sky);       --accent-soft: rgba(74,173,214,.15) }
.cat-forest   { --accent: var(--c-forest);    --accent-soft: rgba(30,138,76,.2) }
.cat-skylight { --accent: var(--c-sky-light); --accent-soft: rgba(124,208,236,.15) }

/* Toolbar */
.shows-toolbar-section {
  background: var(--c-deep); padding: 26px 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.shows-toolbar {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.shows-search {
  flex: 1 1 260px; max-width: 100%; min-width: 0;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px; padding: 11px 18px; color: rgba(255,255,255,.45);
  transition: border-color var(--ease), background var(--ease);
}
.shows-search:focus-within { border-color: var(--c-bright); background: rgba(255,255,255,.1) }
.shows-search input {
  flex: 1; min-width: 0; background: transparent; border: 0; outline: 0;
  color: var(--c-white); font-family: var(--ff-b); font-size: 14px;
}
.shows-search input::placeholder { color: rgba(255,255,255,.4) }
.shows-categories { display: flex; gap: 8px; flex-wrap: wrap; flex: 1 }
.cat-pill {
  border: 1px solid rgba(255,255,255,.22); background: transparent;
  color: rgba(255,255,255,.7);
  font-family: var(--ff-d); font-size: 12px; font-weight: 600; letter-spacing: .6px;
  padding: 9px 17px; border-radius: 30px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.cat-pill:hover:not(.selected) { border-color: var(--c-bright); color: var(--c-white) }
.cat-pill.selected { background: var(--c-bright); border-color: var(--c-bright); color: #08130a }

@media (min-width: 901px) {
  .shows-toolbar-section { position: sticky; top: 70px; z-index: 15 }
}

/* Grid — reuses homepage .schedule-card styles */
.shows-grid-section { background: var(--c-deep); padding: 40px 40px 90px }
.shows-count {
  max-width: 1200px; margin: 0 auto 22px;
  color: rgba(255,255,255,.4); font-size: 12.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.shows-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.shows-empty {
  max-width: 1200px; margin: 60px auto 0; text-align: center; color: rgba(255,255,255,.32);
}
.shows-empty svg { margin: 0 auto 14px; display: block }
.shows-empty p { font-size: 14.5px; margin: 0 }
.shows-empty span { color: var(--c-bright) }

/* Host CTA */
.host-cta-section { background: var(--c-deep); padding: 64px 40px }
.host-cta {
  max-width: 1020px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: linear-gradient(120deg, rgba(109,196,58,.12), rgba(74,173,214,.08));
  border: 1px solid rgba(109,196,58,.25); border-radius: 16px;
  padding: 40px 46px; flex-wrap: wrap;
}
.host-cta h2 { font-family: var(--ff-d); font-size: 28px; font-weight: 700; margin: 8px 0 10px }
.host-cta p { color: var(--c-muted); font-size: 15px; margin: 0; max-width: 46ch }

/* ============================================================
   INNER PAGES (About · Contact)
   ============================================================ */
.inner-section {
  background: var(--c-dark);
  padding: 72px 40px;
}
.inner-section--split { background: var(--c-deep) }
.inner-section--values { background: var(--c-dark) }
.inner-section--stats {
  padding-top: 0;
  padding-bottom: 72px;
  background: var(--c-dark);
}
.inner-wrap { max-width: 1100px; margin: 0 auto }
.inner-header { text-align: center; margin-bottom: 44px }
.inner-title {
  font-family: var(--ff-d);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--c-white);
  margin: 10px 0 0;
  line-height: 1.15;
}
.inner-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin: 0 0 16px;
}
.inner-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0;
}

.inner-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.inner-split-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(109,196,58,.25);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.inner-split-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}
.inner-split-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8,18,9,.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(109,196,58,.4);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.inner-split-badge-num {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-bright);
}
.inner-split-badge-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.values-grid--duo {
  grid-template-columns: repeat(2, 1fr);
}
.inner-body--wide {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}
.inner-split-text .about-tagline {
  font-family: var(--ff-d);
  font-weight: 600;
  color: var(--c-bright);
  margin-top: 1rem;
}
.value-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109,196,58,.35);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-icon--lime { background: rgba(109,196,58,.18); color: var(--c-bright) }
.value-icon--sky { background: rgba(74,173,214,.18); color: var(--c-sky-light) }
.value-icon--forest { background: rgba(30,138,76,.22); color: #3ecf7a }
.value-card h3 {
  font-family: var(--ff-d);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-white);
  margin: 0 0 8px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
}

.stats-band {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 36px 32px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(109,196,58,.14), rgba(74,173,214,.08));
  border: 1px solid rgba(109,196,58,.22);
}
.stat-item { text-align: center }
.stat-num {
  display: block;
  font-family: var(--ff-d);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--c-bright);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color var(--ease), background var(--ease);
}
.contact-card:hover {
  border-color: rgba(109,196,58,.3);
  background: rgba(255,255,255,.06);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon--lime { background: rgba(109,196,58,.18); color: var(--c-bright) }
.contact-card-icon--sky { background: rgba(74,173,214,.18); color: var(--c-sky-light) }
.contact-card-icon--forest { background: rgba(30,138,76,.22); color: #3ecf7a }
.contact-card h3 {
  font-family: var(--ff-d);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--c-white);
  margin: 0 0 4px;
}
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
  transition: color var(--ease);
}
.contact-card a:hover { color: var(--c-bright) }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(109,196,58,.2);
  border-radius: 18px;
  padding: 32px 28px;
}
.contact-form h3 {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-white);
  margin: 0 0 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,18,9,.6);
  color: var(--c-white);
  font-family: var(--ff-b);
  font-size: 14.5px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.28) }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--c-bright);
  box-shadow: 0 0 0 3px rgba(109,196,58,.15);
}
.form-field select { cursor: pointer }
.form-field select option { background: var(--c-dark); color: var(--c-white) }
.form-field textarea { resize: vertical; min-height: 120px }
.form-submit { width: 100%; border: 0; margin-top: 4px; cursor: pointer }
.form-note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--c-muted);
  min-height: 1.2em;
}
.form-note--success { color: var(--c-bright) }

/* ============================================================
   INNER PAGES + SHOWS — MOBILE (must follow base styles above)
   ============================================================ */
@media (max-width: 900px) {
  .hero--page {
    height: 280px; min-height: 280px; max-height: 280px;
    background-position: center 28%;
  }
  .page-hero-content {
    top: 118px; left: 5%; right: 5%;
    transform: none; text-align: left;
    max-width: none; padding: 0 4px 0 0;
  }
  .page-hero-content h1 {
    font-size: clamp(28px, 7vw, 34px);
    margin-bottom: 8px; line-height: 1.05;
  }
  .page-hero-content p { font-size: 14px; line-height: 1.55 }

  .inner-section { padding: 52px 20px }
  .inner-section--stats { padding-bottom: 52px }
  .inner-split { grid-template-columns: 1fr; gap: 32px }
  .inner-split-visual { order: -1 }
  .inner-title { font-size: clamp(26px, 7vw, 36px) }
  .inner-lead { font-size: 15px }
  .values-grid { grid-template-columns: 1fr }
  .values-grid--duo { grid-template-columns: 1fr }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 22px }
  .contact-grid { grid-template-columns: 1fr; gap: 36px }
  .form-row { grid-template-columns: 1fr }
  .contact-form { padding: 26px 22px }
  .footer-col--cta { align-items: center }

  .shows-toolbar-section { padding: 22px 20px }
  .shows-toolbar { flex-direction: column; align-items: stretch }
  .shows-search { flex: none; width: 100% }
  .shows-grid-section { padding: 32px 20px 70px }
  .shows-grid { grid-template-columns: 1fr }
  .host-cta-section { padding: 48px 20px }
  .host-cta { flex-direction: column; text-align: center; padding: 32px 26px }
  .card-footer { flex-wrap: wrap; gap: 10px }
  .card-time-value { font-size: 13px }
}

@media (max-width: 560px) {
  .hero--page { height: 260px; min-height: 260px; max-height: 260px }
  .page-hero-content { top: 104px }
  .page-hero-content h1 { font-size: clamp(24px, 8vw, 30px) }

  .inner-section { padding: 44px 14px }
  .inner-section--stats { padding-bottom: 44px }
  .inner-split { gap: 24px }
  .inner-split-badge { left: 14px; right: 14px; bottom: 14px }
  .stats-band { grid-template-columns: 1fr; gap: 16px; padding: 24px 18px }
  .value-card { padding: 22px 18px }
  .contact-form { padding: 22px 16px }
  .contact-form h3 { font-size: 20px }
  .contact-card { padding: 16px; gap: 12px }
  .contact-card h3 { font-size: 13px }
  .contact-card p,
  .contact-card a { font-size: 13px; line-height: 1.55; word-break: break-word }
  .gallery-title { font-size: clamp(28px, 8vw, 36px) }
  .gallery-section { padding: 44px 14px 36px }
  .shows-toolbar-section { padding: 18px 14px }
  .shows-grid-section { padding: 28px 14px 64px }
  .host-cta { padding: 26px 20px }
  .host-cta h2 { font-size: 22px }
  .card-body { min-height: 0; padding: 16px 16px 14px 20px }
  .card-title { font-size: 18px }
  .card-play { width: 52px; height: 52px }
  .card-play svg { width: 20px; height: 20px }
  .card-time-value { font-size: 12px }
}

@media (max-width: 380px) {
  .hero--page { height: 240px; min-height: 240px; max-height: 240px }
  .page-hero-content { top: 96px; padding-right: 8px }
  .page-hero-content h1 { font-size: 26px }
  .main-nav > .brand-inline .brand-name { font-size: 17px; max-width: 130px; overflow: hidden; text-overflow: ellipsis }
  .inner-section { padding: 36px 12px }
  .site-footer { padding: 32px 12px 0 }
  .footer-bottom { font-size: 11px; padding: 16px 8px }
}
