/* ============================================================
   MELODY 100.7 FM — MASTER STYLESHEET
   "Stay Cool With Melody" — Ibadan's Favourite Station
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES --------------------------------- */
:root {
  --black:        #0a0a0a;
  --bg:           #0f0f0f;
  --bg2:          #161616;
  --bg3:          #1e1e1e;
  --border:       #2a2a2a;
  --orange:       #e8610a;
  --orange-light: #f07030;
  --orange-glow:  rgba(232, 97, 10, 0.15);
  --orange-glow2: rgba(232, 97, 10, 0.30);
  --gold:         #d4a230;
  --gold-light:   #e8c14d;
  --pink:         #e91e8c;
  --pink-glow:    rgba(233, 30, 140, 0.15);
  --white:        #ffffff;
  --text:         #f0f0f0;
  --text-muted:   #888888;
  --text-dim:     #555555;
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.3s ease;
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 40px var(--orange-glow2);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ---- RESET & BASE ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--orange-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.text-orange { color: var(--orange); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }

/* ---- EYEBROW LABELS --------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 8px;
}

/* ---- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--orange-glow2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

/* ---- SECTION COMMON --------------------------------------- */
.section {
  padding: 90px 0;
}

.section-dark {
  background-color: var(--bg);
}

.section-alt {
  background-color: var(--bg2);
}

.section-darker {
  background-color: var(--black);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border: none;
  margin: 0;
}

/* ---- NAVBAR ----------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--orange-glow2);
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-freq {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--orange);
}

/* Nav right: live indicator + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  cursor: pointer;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 var(--orange-glow2); }
  50%       { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 0 5px transparent; }
}

.btn-listen {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  text-decoration: none;
  animation: listenPulse 2.5s ease-in-out infinite;
}

.btn-listen:hover {
  background: var(--orange-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--orange-glow2);
  animation: none;
}

@keyframes listenPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--orange-glow2); }
  50%       { box-shadow: 0 0 0 8px transparent; }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232, 97, 10, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 80%, rgba(212, 162, 48, 0.05) 0%, transparent 60%),
    var(--black);
  z-index: 0;
}

/* Audio visualizer bars */
.visualizer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 0 20px;
  overflow: hidden;
  z-index: 1;
  opacity: 0.35;
}

.viz-bar {
  flex: 1;
  background: linear-gradient(to top, var(--orange), var(--gold));
  border-radius: 3px 3px 0 0;
  min-width: 6px;
  max-width: 18px;
  animation: vizPulse var(--dur, 1.2s) ease-in-out infinite alternate;
  transform-origin: bottom;
}

@keyframes vizPulse {
  0%   { transform: scaleY(0.1); }
  100% { transform: scaleY(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-freq {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.08em;
}

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

/* Hero badge (right side) */
.hero-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.station-badge {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  animation: badgeRotate 12s linear infinite;
}

.badge-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.badge-ring-2 {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 97, 10, 0.3);
  animation: badgeRotate 20s linear infinite reverse;
}

.badge-center {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 50px var(--orange-glow), 0 0 100px rgba(232, 97, 10, 0.08);
  z-index: 1;
  position: relative;
}

.badge-center img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.badge-center-text .freq-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.badge-center-text .freq-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.badge-center-text .station-name-badge {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes badgeRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- LIVE NOW BANNER --------------------------------------- */
.live-banner {
  background: linear-gradient(90deg, #0f0f0f 0%, #1a0a00 40%, #0f0f0f 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.live-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
}

.live-banner-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 97, 10, 0.12);
  border: 1px solid rgba(232, 97, 10, 0.3);
  border-radius: var(--radius);
  padding: 8px 16px;
  flex-shrink: 0;
}

.live-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3b30;
  animation: livePulse 1s ease-in-out infinite;
}

.live-badge span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange);
  text-transform: uppercase;
}

.live-show-info {
  flex: 1;
  min-width: 200px;
}

.live-show-info .show-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-head);
  font-weight: 600;
}

.live-show-info .show-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}

.live-freq {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* Custom audio player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.play-btn:hover {
  background: var(--orange-light);
  transform: scale(1.08);
  box-shadow: 0 4px 20px var(--orange-glow2);
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-wrap i {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.volume-slider {
  -webkit-appearance: none;
  width: 90px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
}

/* ---- PILLARS STRIP ---------------------------------------- */
.pillars-strip {
  background: var(--bg2);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.pillar-item:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.pillar-item:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.pillar-item:hover {
  background: linear-gradient(135deg, var(--bg3), rgba(232, 97, 10, 0.06));
  border-color: rgba(232, 97, 10, 0.25);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--orange-glow);
  border: 1px solid rgba(232, 97, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: all var(--transition);
}

.pillar-item:hover .pillar-icon {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow2);
}

.pillar-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---- SHOW CARDS ------------------------------------------- */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.show-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.show-card:hover {
  border-color: rgba(232, 97, 10, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.show-card-img {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg2);
}

.show-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.show-card:hover .show-card-img img {
  transform: scale(1.08);
}

.show-card-img .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(232, 97, 10, 0.12) 0%, var(--bg3) 50%, var(--bg2) 100%);
  font-size: 3rem;
  color: var(--orange);
}

/* Dramatic orange gradient reveal on hover */
.show-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(232, 97, 10, 0.88) 0%,
    rgba(232, 97, 10, 0.35) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.show-card:hover .show-card-img::after {
  opacity: 1;
}

.show-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(232, 97, 10, 0.35);
  z-index: 1;
}

.show-card-body {
  padding: 22px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, var(--bg3), rgba(10,10,10,0.98));
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.show-card:hover .show-card-body {
  border-top-color: var(--orange);
}

.show-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.show-card-presenter {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.show-card-presenter i { color: var(--orange); font-size: 0.75rem; }

.show-schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212, 162, 48, 0.1);
  border: 1px solid rgba(212, 162, 48, 0.25);
  border-radius: 100px;
  padding: 5px 12px;
  margin-top: auto;
  letter-spacing: 0.06em;
}

/* ---- NEWS CARDS ------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: rgba(232, 97, 10, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.news-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.06); }

.news-card-img .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  font-size: 2rem;
  color: var(--text-dim);
}

.news-cat-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(232, 97, 10, 0.3);
}

.news-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.news-card-meta i { color: var(--orange); font-size: 0.7rem; }

.news-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
  transition: gap var(--transition);
}

.news-read-more:hover { gap: 10px; color: var(--orange-light); }

/* Featured news card — cinematic */
.news-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 480px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  transition: all 0.4s ease;
  position: relative;
}

.news-featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--white);
  background: var(--orange);
  padding: 5px 12px;
  border-radius: 100px;
}

.news-featured:hover {
  border-color: rgba(232, 97, 10, 0.4);
  box-shadow: 0 16px 60px rgba(232, 97, 10, 0.15);
  transform: translateY(-3px);
}

.news-featured .news-card-img {
  aspect-ratio: unset;
  height: 100%;
  position: relative;
}

.news-featured .news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(30, 30, 30, 0.9) 100%);
  pointer-events: none;
}

.news-featured .news-card-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured .news-card-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  -webkit-line-clamp: 3;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* ---- EVENT CARDS ------------------------------------------ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: rgba(232, 97, 10, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.event-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.event-card:hover .event-card-img img { transform: scale(1.08); }

/* Bottom gradient on event images */
.event-card-img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.event-card-img .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(232, 97, 10, 0.15), var(--bg3));
  font-size: 3rem;
  color: var(--orange);
}

.event-date-block {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  text-align: center;
  min-width: 64px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(232, 97, 10, 0.3);
  z-index: 2;
}

.event-date-block .day {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.event-date-block .month {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-top: 2px;
}

.event-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.event-meta i { color: var(--orange); }

.event-free-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.event-paid-badge {
  display: inline-block;
  background: rgba(212, 162, 48, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 162, 48, 0.25);
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ---- PRESENTERS STRIP ------------------------------------- */
.presenters-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
}

.presenter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.presenter-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  margin-bottom: 14px;
  transition: all var(--transition);
  background: var(--bg3);
  position: relative;
}

.presenter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presenter-photo .no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  font-size: 2.5rem;
  color: var(--text-dim);
}

.presenter-card:hover .presenter-photo {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow), 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.presenter-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.presenter-role {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 500;
}

/* ---- ADVERTISE CTA SECTION -------------------------------- */
.advertise-cta {
  background: linear-gradient(135deg, var(--black) 0%, #120600 50%, var(--black) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.advertise-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
}

.advertise-cta::after {
  content: '100.7';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(232, 97, 10, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.cta-stats {
  display: flex;
  gap: 48px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-stat .value {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.cta-stat .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- QUOTES / TESTIMONIALS -------------------------------- */
.testimonials {
  background: var(--bg2);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '\266B';
  position: absolute;
  font-size: 30vw;
  color: rgba(232, 97, 10, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.quote-carousel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-item {
  display: none;
}

.quote-item.active {
  display: block;
  animation: fadeInQuote 0.5s ease;
}

@keyframes fadeInQuote {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: italic;
}

.quote-text::before { content: '\201C'; color: var(--orange); }
.quote-text::after  { content: '\201D'; color: var(--orange); }

.quote-author {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quote-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.quote-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ---- SCHEDULE (BROADCAST CONTROL ROOM) --------------------- */
.day-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.day-tab {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.day-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.day-tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 97, 10, 0.4);
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.schedule-slot {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
  position: relative;
}

.schedule-slot:hover {
  background: rgba(232, 97, 10, 0.05);
}

.schedule-slot:hover .slot-time {
  border-right-color: var(--gold);
}

.schedule-slot:last-child { border-bottom: none; }

/* "LIVE" indicator for slots */
.schedule-slot.is-live {
  background: rgba(232, 97, 10, 0.07);
}

.schedule-slot.is-live .slot-time {
  border-right-color: #ff3b30;
}

.slot-time {
  padding: 24px 28px 24px 24px;
  border-right: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.15);
  transition: border-color 0.25s ease;
}

.slot-time .time-start {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.slot-time .time-end {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.slot-content {
  padding: 24px 24px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slot-show-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.slot-show-title a { color: var(--white); transition: color 0.2s; }
.slot-show-title a:hover { color: var(--orange); }

.slot-presenter {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.slot-presenter i { color: var(--orange); }

.slot-category {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(232, 97, 10, 0.2);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 10px;
  width: fit-content;
}

/* ---- RATE CARDS ------------------------------------------- */
.rate-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rate-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
}

.rate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(232, 97, 10, 0.35);
  border-top-color: var(--orange);
}

.rate-card.featured {
  border-color: var(--orange);
  border-top-color: var(--orange);
  background: linear-gradient(160deg, rgba(232, 97, 10, 0.09) 0%, var(--bg3) 50%);
  box-shadow: 0 0 0 1px rgba(232, 97, 10, 0.2), 0 8px 40px rgba(232, 97, 10, 0.12);
}

.rate-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 0 2px var(--orange), 0 16px 60px rgba(232, 97, 10, 0.25);
}

.rate-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232, 97, 10, 0.4);
}

.rate-card-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.rate-price {
  margin-bottom: 20px;
}

.rate-price .currency {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  vertical-align: top;
  line-height: 2.2;
}

.rate-price .amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.rate-price .period {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.rate-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.rate-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.rate-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rate-meta-item i { color: var(--orange); width: 14px; }

/* ---- PRESENTERS PAGE (MAGAZINE EDITORIAL) ----------------- */
.presenters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.presenter-full-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  background: var(--bg3);
}

.presenter-full-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(232, 97, 10, 0.25), 0 8px 24px rgba(0, 0, 0, 0.6);
}

.presenter-full-card .photo-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}

.presenter-full-card .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
}

.presenter-full-card:hover .photo-wrap img { transform: scale(1.06); }

/* Dark gradient over photo — permanent, intensifies at bottom */
.presenter-full-card .photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.85) 28%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.1) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.presenter-full-card .photo-wrap .no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(232, 97, 10, 0.12), var(--bg3));
  font-size: 5rem;
  color: rgba(232, 97, 10, 0.4);
}

/* Card body slides up from bottom on hover */
.presenter-full-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  z-index: 2;
  background: transparent;
  transform: translateY(calc(100% - 94px));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.presenter-full-card:hover .card-body {
  transform: translateY(0);
}

.presenter-full-card .card-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.presenter-full-card .card-role {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.presenter-full-card .card-bio {
  font-size: 0.85rem;
  color: rgba(200, 200, 200, 0.88);
  line-height: 1.6;
  margin-bottom: 18px;
  -webkit-line-clamp: unset;
  overflow: visible;
  display: block;
}

/* Social links INSIDE presenter cards — white on dark photo */
.presenter-full-card .social-links {
  gap: 8px;
  flex-wrap: wrap;
}

.presenter-full-card .social-link {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  width: 32px;
  height: 32px;
}

.presenter-full-card .social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 97, 10, 0.15);
}

/* Shows hosted tags inside presenter card */
.presenter-full-card .card-body a[style] {
  backdrop-filter: blur(4px);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

/* ---- PAGE HEROES (CINEMATIC) ------------------------------- */
.page-hero {
  position: relative;
  padding: 200px 0 130px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 90% at 50% 125%, rgba(232, 97, 10, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at 12% 10%, rgba(232, 97, 10, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 30% 20% at 88% 15%, rgba(212, 162, 48, 0.05) 0%, transparent 50%),
    linear-gradient(90deg, transparent 0%, var(--orange) 40%, var(--gold) 50%, var(--orange) 60%, transparent 100%) bottom/100% 3px no-repeat,
    var(--black);
  min-height: 560px;
  display: flex;
  align-items: center;
  border-bottom: none;
}

/* CRT-style scan-line texture */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.008) 3px,
    rgba(255, 255, 255, 0.008) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Giant ghost frequency watermark */
.page-hero::after {
  content: '100.7';
  position: absolute;
  right: -5%;
  bottom: -20%;
  font-family: var(--font-head);
  font-size: clamp(12rem, 32vw, 30rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 97, 10, 0.07);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.03em;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-shadow:
    0 0 120px rgba(232, 97, 10, 0.4),
    0 6px 0 rgba(0, 0, 0, 0.7);
  color: var(--white);
}

.page-hero-content .eyebrow {
  margin-bottom: 22px;
}

.page-hero-content p {
  max-width: 600px;
  margin: 22px auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ---- ABOUT PAGE ------------------------------------------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img { transform: scale(1.03); }

/* Orange offset border behind image */
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

/* Orange glow on hover */
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px rgba(232, 97, 10, 0.0);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.4s ease;
}

.about-img-wrap:hover::after {
  box-shadow: inset 0 0 0 2px var(--orange), 0 0 60px rgba(232, 97, 10, 0.2);
}

.about-text-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
}

.about-text-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: rgba(136, 136, 136, 0.92);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

.mv-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232, 97, 10, 0.12);
}

.mv-card h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 12px;
}

.mv-card p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* ---- ABOUT STATS STRIP ------------------------------------- */
.about-stats-strip {
  background: var(--black);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  padding: 56px 0;
}

.about-stat-item {
  text-align: center;
  padding: 0 24px;
}

.about-stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 50px rgba(232, 97, 10, 0.35);
}

.about-stat-plus {
  font-size: 0.6em;
  vertical-align: top;
  line-height: 1.4;
  color: var(--gold);
}

.about-stat-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-top: 10px;
}

.about-stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ---- CONTACT PAGE ----------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(232, 97, 10, 0.04);
  border-color: rgba(232, 97, 10, 0.15);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--orange-glow);
  border: 1px solid rgba(232, 97, 10, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 97, 10, 0.4);
}

.contact-info-text h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

.contact-info-text a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(232, 97, 10, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-control::placeholder { color: var(--text-dim); }

select.form-control { cursor: pointer; }

textarea.form-control { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- SHOW DETAIL PAGE (CINEMATIC) -------------------------- */
.show-detail-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232, 97, 10, 0.12) 0%, transparent 70%),
    var(--black);
  padding: 140px 0 80px;
  border-bottom: none;
  overflow: hidden;
}

/* Scan-line texture on show detail hero */
.show-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.007) 3px,
    rgba(255, 255, 255, 0.007) 4px
  );
  pointer-events: none;
}

/* Bottom orange line */
.show-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
}

.show-detail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.show-detail-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg3);
  box-shadow:
    0 0 0 3px rgba(232, 97, 10, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(232, 97, 10, 0.1);
  transition: box-shadow 0.4s ease;
}

.show-detail-cover:hover {
  box-shadow:
    0 0 0 4px var(--orange),
    0 24px 70px rgba(0, 0, 0, 0.8),
    0 0 100px rgba(232, 97, 10, 0.2);
}

.show-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.show-detail-cover:hover img { transform: scale(1.04); }

.show-detail-cover .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(232, 97, 10, 0.15), var(--bg3));
  font-size: 4.5rem;
  color: var(--orange);
}

.show-detail-meta .show-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 0 60px rgba(232, 97, 10, 0.2);
}

/* ---- NEWS DETAIL (CINEMATIC) ------------------------------ */
.article-hero {
  position: relative;
  background: var(--black);
  padding: 140px 0 0;
  border-bottom: none;
}

/* Bottom gradient fade into content */
.article-hero-img-wrap {
  position: relative;
  margin-top: 48px;
}

.article-hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.article-hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* If no wrapper: fallback fade */
.article-hero > img.article-hero-img {
  margin-top: 48px;
  height: 500px;
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}

.article-body h2, .article-body h3 {
  margin: 2rem 0 1rem;
}

.article-body p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--text-muted);
}

.article-body li { margin-bottom: 0.5rem; }

/* ---- FILTER BAR (TUNER STYLE) ----------------------------- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.filter-btn:hover {
  border-color: rgba(232, 97, 10, 0.5);
  color: var(--white);
  background: rgba(232, 97, 10, 0.08);
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 97, 10, 0.4);
}

/* ---- MESSAGES / ALERTS ------------------------------------ */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.alert-error {
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* ---- FOOTER ----------------------------------------------- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .freq {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.footer-brand .tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  display: block;
  width: 5px;
  height: 1px;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.footer-links a:hover { color: var(--orange); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 2px;
  font-size: 0.85rem;
  width: 14px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-bottom a {
  color: var(--orange);
  font-size: 0.8rem;
}

/* ---- WHATSAPP BUTTON --------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: waBounce 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  color: var(--white);
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ---- EMPTY STATES ----------------------------------------- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: block;
}

.empty-state h3 {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ---- UTILITY CLASSES -------------------------------------- */
.text-center { text-align: center; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.pt-8  { padding-top: 2rem; }
.pb-8  { padding-bottom: 2rem; }

.d-flex         { display: flex; }
.align-center   { align-items: center; }
.justify-center { justify-content: center; }
.gap-4          { gap: 1rem; }

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

/* ---- BREADCRUMB ------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--white); }

/* ---- AOS OVERRIDES ---------------------------------------- */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
/* On mobile, disable AOS hide/show so no section ever renders blank.
   Animation is a progressive enhancement only. */
@media (max-width: 900px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 1100px) {
  .shows-grid { grid-template-columns: repeat(3, 1fr); }
  .rate-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-hero { min-height: 480px; padding: 180px 0 110px; }
  .page-hero-content h1 { font-size: clamp(3.5rem, 8.5vw, 7rem); }
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-actions { justify-content: center; }
  .hero-content { max-width: 100%; }
  .hero-badge-wrap { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-item:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .pillar-item:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-featured { grid-column: span 2; grid-template-columns: 1fr; min-height: 380px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-stats { gap: 28px; }
  .show-detail-inner { grid-template-columns: 1fr; }
  .show-detail-cover { max-width: 280px; margin: 0 auto; }
  .mission-vision { grid-template-columns: 1fr; }
  .presenters-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { min-height: 420px; padding: 160px 0 100px; }
  .page-hero-content h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
  .page-hero::after { font-size: clamp(9rem, 22vw, 20rem); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar { padding: 0 16px; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--black); border-bottom: 1px solid var(--border); padding: 16px; flex-direction: column; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .live-indicator { display: none; }
  .shows-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured { grid-column: span 1; grid-template-columns: 1fr; min-height: 320px; }
  .events-grid { grid-template-columns: 1fr; }
  .rate-cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .live-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .audio-player { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .presenter-full-card .card-body { transform: translateY(calc(100% - 90px)); }
  .day-tabs { padding: 4px; }
  .schedule-slot { grid-template-columns: 120px 1fr; }
  .slot-time { padding: 18px 18px 18px 16px; }
  .slot-content { padding: 18px 16px 18px 18px; }
  .slot-time .time-start { font-size: 1.05rem; }
  .page-hero { min-height: 360px; padding: 150px 0 90px; }
  .page-hero-content h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
  .page-hero::after { right: -8%; font-size: clamp(8rem, 18vw, 16rem); }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .about-stat-divider { display: none; }
  .about-stat-item { padding: 28px 16px; border-bottom: 1px solid var(--border); }
  .about-stat-left { border-right: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .shows-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .rate-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .schedule-slot { grid-template-columns: 95px 1fr; }
  .slot-time { padding: 14px 14px 14px 12px; }
  .slot-content { padding: 14px 12px 14px 14px; }
  .slot-time .time-start { font-size: 0.95rem; }
  .day-tabs { width: 100%; }
  .presenters-scroll { grid-template-columns: repeat(2, 1fr); }
  .presenters-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-btn { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .page-hero { min-height: 320px; padding: 140px 0 80px; }
  .page-hero-content h1 { font-size: clamp(2.4rem, 7vw, 3.6rem); letter-spacing: -0.03em; }
  .page-hero::after { display: none; }
  .contact-info-item { padding: 14px; }
  .news-featured { min-height: 260px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-num { font-size: clamp(2.2rem, 5vw, 3rem); }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.9rem; }
  .shows-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 13px 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
}


/* ============================================================
   HOME PAGE v2 — EXTREME REDESIGN  (all classes prefixed hp-)
   "A broadcast station that feels like a concert, not a website"
   ============================================================ */

/* ── Shared section utilities ─────────────────────────────── */
.hp-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.hp-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 10px;
}

.hp-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 16px;
}
.hp-sec-head h2 { margin-bottom: 0; }
.hp-sec-center { flex-direction: column; align-items: center; text-align: center; }

.hp-see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--orange);
  transition: gap 0.25s, color 0.25s;
  white-space: nowrap;
}
.hp-see-all:hover { gap: 12px; color: var(--orange-light); }

.hp-empty-center {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.hp-empty-center i { font-size: 2.8rem; display: block; margin-bottom: 16px; color: var(--text-dim); }
.hp-empty-center p { margin: 0; }


/* ================================================================
   HERO — CINEMATIC FULL-BLEED
================================================================ */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
  background: var(--black);
}

/* Ken Burns image layer */
.hp-hero-bg {
  position: absolute;
  inset: 0;
}
.hp-hero-img {
  position: absolute;
  inset: -6%;           /* oversized for Ken Burns movement */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.45;
  animation: hpKenBurns 22s ease-in-out infinite;
}
@keyframes hpKenBurns {
  0%   { transform: scale(1.00) translate(0%,   0%);   }
  25%  { transform: scale(1.08) translate(-1.5%, -1%); }
  50%  { transform: scale(1.13) translate(1.5%,  0.8%);}
  75%  { transform: scale(1.07) translate(-0.8%, 1.5%);}
  100% { transform: scale(1.00) translate(0%,   0%);   }
}

/* Ambient video layer — screen blend: black bg vanishes, orange rings glow over studio photo */
.hp-hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  mix-blend-mode: screen;   /* dark pixels → transparent; orange rings → additive glow */
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hp-hero-vid { display: none; }
}

/* Dramatic gradient veil — dark left for text, image breathes right */
.hp-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10,10,10,0.96) 0%,
      rgba(10,10,10,0.84) 32%,
      rgba(10,10,10,0.52) 58%,
      rgba(10,10,10,0.30) 100%
    ),
    linear-gradient(to bottom,
      rgba(10,10,10,0.25) 0%,
      transparent 25%,
      transparent 60%,
      rgba(10,10,10,0.95) 100%
    );
}

/* Film grain texture */
.hp-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Ghost frequency watermark */
.hp-ghost-freq {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-54%);
  font-family: var(--font-head);
  font-size: clamp(9rem, 23vw, 22rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 97, 10, 0.07);
  letter-spacing: -0.06em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* Floating music notes */
.hp-notes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.hp-note {
  position: absolute;
  left: var(--x);
  bottom: -40px;
  font-size: calc(var(--s) * 1.6rem);
  color: var(--orange);
  opacity: 0;
  animation: hpFloatNote 9s ease-in infinite;
  animation-delay: var(--d);
}
@keyframes hpFloatNote {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0;    }
  10%  { opacity: 0.22; }
  90%  { opacity: 0.06; }
  100% { transform: translateY(-115vh) rotate(360deg); opacity: 0; }
}

/* Content grid */
.hp-hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
  width: 100%;
}

/* ── Hero copy (left) ── */
.hp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.hp-live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(233,30,140,0.7);
  animation: hpPinkPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes hpPinkPulse {
  0%   { box-shadow: 0 0 0 0 rgba(233,30,140,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(233,30,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(233,30,140,0); }
}

/* Stacked headline — the money shot */
.hp-h1 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 0.92;
  margin-bottom: 24px;
}
.hp-h1-sm {
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--white);
  letter-spacing: 0.03em;
}
.hp-h1-big {
  font-size: clamp(4.8rem, 11vw, 10.5rem);
  color: var(--orange);
  letter-spacing: -0.05em;
  line-height: 0.84;
  text-shadow:
    0 0 80px rgba(232, 97, 10, 0.55),
    0 4px 0   rgba(0, 0, 0, 0.4);
}

.hp-tagline {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 40px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-tagline i { color: var(--orange); font-style: normal; }

/* CTA buttons */
.hp-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hp-cta-play {
  display: inline-flex; align-items: center; gap: 0;
  font-family: var(--font-head); font-size: 0.88rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  border: none; cursor: pointer;
  border-radius: 4px; overflow: hidden;
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 32px rgba(232,97,10,0.42);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hp-cta-play:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 44px rgba(232,97,10,0.6);
}
.hp-cta-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 54px;
  background: rgba(0,0,0,0.22);
}
.hp-cta-label { padding: 0 24px; }

.hp-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 0.88rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); text-decoration: none;
  padding: 0 28px; height: 54px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.22);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.hp-cta-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* Mini stats under CTAs */
.hp-mini-stats {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hp-ms { display: flex; flex-direction: column; gap: 2px; }
.hp-ms-num {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 900;
  color: var(--orange); letter-spacing: -0.03em;
}
.hp-ms-lbl {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.hp-ms-div {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* ── Hero visual stack (right) ── */
.hp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Enough room for the card + floating elements */
  min-height: 420px;
  /* Anchor to BOTTOM of hero grid row — card sits BELOW the FAVOURITE text level */
  align-self: end;
  padding-bottom: 52px;
  transition: transform 0.14s ease-out;
}

/* Orbit ring — anchored around logo badge at bottom-right */
.hp-orbit {
  position: absolute;
  bottom: 30px; right: -22px;
  width: 134px; height: 134px; border-radius: 50%;
  border: 2px dashed rgba(232,97,10,0.40);
  animation: hpOrbitSpin 14s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes hpOrbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Cinematic landscape frame (replaces portrait card) ── */
.hp-vc-main {
  position: relative;
  /* Landscape 16:9 — elegant cinematic window into the studio */
  width: 440px;
  height: 275px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(232,97,10,0.44);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.70),
    0 0 0 1px rgba(232,97,10,0.08) inset,
    0 0 55px rgba(232,97,10,0.18);
  z-index: 2;
}

/* Scan-line film texture overlay — matches show poster aesthetic */
.hp-vc-main::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent, transparent 2px,
    rgba(0,0,0,0.016) 2px, rgba(0,0,0,0.016) 3px
  );
  pointer-events: none;
  z-index: 1;
}

.hp-vc-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Layered veil — bottom fade + subtle left shadow for overlay legibility */
.hp-vc-main-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.70) 0%, transparent 52%),
    linear-gradient(to right, rgba(0,0,0,0.22) 0%, transparent 35%);
  z-index: 2;
}

/* ON AIR pill */
.hp-onair-pill {
  position: absolute; top: 14px; left: 14px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px; padding: 6px 14px;
  font-family: var(--font-head); font-size: 0.68rem;
  font-weight: 800; letter-spacing: 0.12em;
  color: var(--white); text-transform: uppercase;
  z-index: 3;
}
.hp-oa-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3b30;
  animation: hpPinkPulse 1.5s infinite;
  flex-shrink: 0;
}

/* Frequency tag — bottom-left */
.hp-vc-freq-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.88;
  z-index: 3;
}

/* Animated EQ bars — bottom-right corner */
.hp-vc-wave {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  z-index: 3;
}
.hp-vc-wave-bar {
  width: 3px;
  height: var(--h, 10px);
  background: linear-gradient(to top, var(--orange), var(--gold));
  border-radius: 2px 2px 0 0;
  animation: hpEqDance var(--spd, 0.65s) ease-in-out infinite alternate;
  opacity: 0.88;
}

/* Floating mini-cards */
.hp-vc-float {
  position: absolute;
  z-index: 3;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
}

/* Studio card — top-right accent, stays within the visual column */
.hp-vc-a {
  top: -16px; right: -14px;
  width: 120px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
}
.hp-vc-a img { width: 100%; height: 82px; object-fit: cover; display: block; }
.hp-vc-a-label {
  display: block; padding: 5px 10px;
  font-family: var(--font-head); font-size: 0.65rem;
  font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold);
  background: var(--bg3);
}

/* Logo badge — bottom-right */
.hp-vc-b {
  bottom: -14px; right: -14px;
  width: 108px; height: 108px; border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow:
    0 0 0 8px rgba(232,97,10,0.10),
    0 0 50px rgba(232,97,10,0.55);
  animation: hpLogoPulse 3s ease-in-out infinite;
  z-index: 4;
}
.hp-vc-b img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
@keyframes hpLogoPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(232,97,10,0.10), 0 0 50px rgba(232,97,10,0.55); }
  50%       { box-shadow: 0 0 0 8px rgba(212,162,48,0.15), 0 0 70px rgba(212,162,48,0.65); }
}

/* ── Full-width CSS equalizer ── */
.hp-eq {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 96px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  z-index: 5;
  overflow: hidden;
}
.hp-eq-bar {
  flex: 1;
  background: linear-gradient(to top, var(--orange), var(--gold));
  border-radius: 2px 2px 0 0;
  animation: hpEqDance var(--spd, 0.8s) ease-in-out infinite alternate;
  opacity: 0.72;
}
.hp-eq-bar:nth-child(odd)   { --spd: 0.55s; height: 22px; }
.hp-eq-bar:nth-child(even)  { --spd: 0.90s; height: 38px; }
.hp-eq-bar:nth-child(3n)    { --spd: 0.45s; height: 55px; }
.hp-eq-bar:nth-child(5n)    { --spd: 1.10s; height: 30px; }
.hp-eq-bar:nth-child(7n)    { --spd: 0.68s; height: 64px; }
.hp-eq-bar:nth-child(11n)   { --spd: 0.80s; height: 48px; }
.hp-eq-bar:nth-child(13n)   { --spd: 0.40s; height: 72px; }
@keyframes hpEqDance {
  from { transform: scaleY(0.15); opacity: 0.28; }
  to   { transform: scaleY(1);    opacity: 0.85; }
}


/* ================================================================
   BROADCAST BAR
================================================================ */
.hp-bb {
  background: var(--black);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(232,97,10,0.18);
}
.hp-bb-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 40px;
  display: flex; align-items: center; gap: 36px;
}
.hp-bb-left { flex: 1; min-width: 0; }

.hp-bb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,59,48,0.12);
  border: 1px solid rgba(255,59,48,0.30);
  border-radius: 30px; padding: 4px 14px;
  font-family: var(--font-head); font-size: 0.68rem;
  font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #ff7070; margin-bottom: 6px;
}
.hp-bb-rdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3b30;
  animation: hpPinkPulse 1.5s infinite;
}
.hp-bb-show {
  font-family: var(--font-head); font-size: 0.95rem;
  font-weight: 700; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.hp-bb-mid {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hp-waveform {
  display: flex; align-items: center; gap: 2.5px; height: 36px;
}
.hp-wbar {
  display: block; width: 3px; border-radius: 2px;
  background: var(--border); height: 6px;
  transition: background 0.3s;
}
.hp-waveform.playing .hp-wbar {
  background: linear-gradient(to top, var(--orange), var(--gold));
  animation: hpWavePulse var(--ws, 0.5s) ease-in-out infinite alternate;
}
.hp-wbar:nth-child(odd)  { --ws: 0.42s; }
.hp-wbar:nth-child(even) { --ws: 0.72s; }
.hp-wbar:nth-child(3n)   { --ws: 0.55s; }
.hp-wbar:nth-child(5n)   { --ws: 0.33s; }
.hp-wbar:nth-child(7n)   { --ws: 0.82s; }
@keyframes hpWavePulse {
  from { transform: scaleY(0.3); }
  to   { transform: scaleY(3.8); }
}

.hp-bb-playbtn {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange); color: var(--white); border: none;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(232,97,10,0.42);
  transition: all 0.25s;
}
.hp-bb-playbtn:hover {
  background: var(--orange-light);
  transform: scale(1.10);
  box-shadow: 0 0 55px rgba(232,97,10,0.65);
}

.hp-bb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.hp-bb-freq {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--orange); letter-spacing: -0.02em; line-height: 1;
}
.hp-bb-freq em { font-style: normal; font-size: 0.9rem; color: var(--gold); }
.hp-vol-row {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.78rem; cursor: pointer;
}
.hp-vol { width: 90px; accent-color: var(--orange); cursor: pointer; }


/* ================================================================
   EDITORIAL PILLARS — full-width cinematic strips
================================================================ */
.hp-pillars { display: flex; flex-direction: column; }

.hp-pillar {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image — real opacity */
.hp-p-img {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  opacity: 0.35;
  animation: hpKenBurns 24s ease-in-out infinite;
}

/* Gradient veils */
.hp-pv-l {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.85) 32%,
    rgba(10,10,10,0.50) 62%,
    rgba(10,10,10,0.18) 100%
  );
  z-index: 1;
}
.hp-pv-r {
  position: absolute; inset: 0;
  background: linear-gradient(
    to left,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.85) 32%,
    rgba(10,10,10,0.50) 62%,
    rgba(10,10,10,0.18) 100%
  );
  z-index: 1;
}

/* Giant ghost category watermark */
.hp-p-ghost {
  position: absolute;
  font-family: var(--font-head);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045);
  letter-spacing: -0.06em;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  bottom: -12%;
}
.hp-pillar:not(.hp-pillar-flip) .hp-p-ghost { right: -1%; }
.hp-pillar-flip                  .hp-p-ghost { left: -1%; }

/* Thin orange accent bar on left/right edge */
.hp-p-bar {
  position: absolute;
  top: 15%; bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  z-index: 2;
  border-radius: 4px;
}
.hp-pillar:not(.hp-pillar-flip) .hp-p-bar { left: 0; }
.hp-pillar-flip                  .hp-p-bar { right: 0; }

/* Content block */
.hp-p-inner {
  position: relative; z-index: 3;
  padding: 64px 56px;
  max-width: 560px;
}
.hp-p-inner-r {
  margin-left: auto;
}

.hp-p-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(232,97,10,0.14);
  border: 1px solid rgba(232,97,10,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--orange);
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(232,97,10,0.18);
}
.hp-p-cat {
  display: block;
  font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.hp-p-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900; line-height: 1.15;
  color: var(--white); margin-bottom: 18px;
}
.hp-p-desc {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 28px;
}
.hp-p-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.80rem;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  border-bottom: 1px solid rgba(232,97,10,0.4);
  padding-bottom: 3px;
  transition: gap 0.25s, border-color 0.25s;
}
.hp-p-link:hover { gap: 14px; color: var(--orange-light); border-color: var(--orange); }

/* Alternating bg shade */
.hp-pillar:nth-child(even) { background: var(--bg2); }
.hp-pillar:nth-child(odd)  { background: var(--bg); }
/* Ensure content is always visible regardless of image load state */
.hp-p-inner { visibility: visible !important; }


/* ================================================================
   SHOWS — POSTER WALL
================================================================ */
.hp-shows {
  padding: 100px 0 0;
  background: var(--bg);
}
.hp-shows-outer {
  position: relative;
  padding-bottom: 100px;
}
.hp-scroll-btn {
  position: absolute; top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10,10,10,0.92);
  color: var(--text);
  font-size: 0.95rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.hp-scroll-btn:hover {
  border-color: var(--orange); color: var(--orange);
  box-shadow: 0 0 20px rgba(232,97,10,0.3);
}
.hp-scroll-l { left: 20px; }
.hp-scroll-r { right: 20px; }

.hp-shows-track {
  display: flex; gap: 20px;
  overflow-x: auto;
  padding: 20px 70px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hp-shows-track::-webkit-scrollbar { display: none; }

/* Poster card */
.hp-show-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 14px; overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.hp-show-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 70px rgba(232,97,10,0.28);
  border-color: rgba(232,97,10,0.45);
}
.hp-show-link { display: block; text-decoration: none; color: inherit; }
.hp-show-img {
  position: relative; height: 320px; overflow: hidden;
}
.hp-show-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s;
}
.hp-show-card:hover .hp-show-img img { transform: scale(1.07); }
.hp-show-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg2), rgba(232,97,10,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--orange); opacity: 0.35;
}
.hp-show-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
}
.hp-show-cat {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 0.60rem;
  font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.hp-show-body { padding: 18px; }
.hp-show-title {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  margin-bottom: 10px; line-height: 1.25;
}
.hp-show-host {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.80rem; color: var(--text-muted); margin-bottom: 8px;
}
.hp-show-host i { color: var(--orange); }
.hp-show-time {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-size: 0.70rem; font-weight: 600;
  color: var(--gold); background: rgba(212,162,48,0.10);
  border: 1px solid rgba(212,162,48,0.22);
  padding: 3px 9px; border-radius: 20px;
}
.hp-empty-track {
  text-align: center; padding: 60px 40px;
  color: var(--text-muted);
}
.hp-empty-track i { font-size: 2.5rem; display: block; margin-bottom: 12px; color: var(--text-dim); }


/* ================================================================
   STATS — THE POWER BLOCK
================================================================ */
.hp-stats {
  background: var(--black);
  border-top: 2px solid var(--orange);
}

/* Orange scrolling ticker */
.hp-ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 11px 0;
}
.hp-ticker-track {
  display: flex; align-items: center; gap: 36px;
  animation: hpTickerScroll 28s linear infinite;
  width: max-content;
}
@keyframes hpTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hp-ticker-track span {
  font-family: var(--font-head); font-size: 0.70rem;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); white-space: nowrap;
}
.hp-tdot-sep { color: rgba(255,255,255,0.45) !important; }

/* Stat number grid */
.hp-stats-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.hp-stat { text-align: center; flex: 1; }
.hp-stat-num {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 900; color: var(--orange);
  letter-spacing: -0.05em; line-height: 1;
  text-shadow: 0 0 60px rgba(232,97,10,0.42);
  margin-bottom: 14px;
}
.hp-stat-lbl {
  font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.hp-stat-div {
  width: 1px; height: 90px; flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}


/* ================================================================
   NEWSROOM — EDITORIAL MAGAZINE
================================================================ */
.hp-news {
  padding: 100px 0;
  background: var(--bg2);
}
.hp-news-mag {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Featured cinematic story */
.hp-news-hero-img {
  position: relative;
  height: 580px;
  border-radius: 14px; overflow: hidden;
  cursor: pointer;
}
.hp-news-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.hp-news-hero:hover .hp-news-hero-img img { transform: scale(1.04); }
.hp-news-fallback {
  width: 100%; height: 100%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--text-dim);
}
.hp-news-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.65) 38%,
    transparent 70%
  );
}
.hp-news-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 0.63rem;
  font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.hp-news-hero-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 36px;
}
.hp-news-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.hp-news-meta i { color: var(--orange); }
.hp-meta-dot { opacity: 0.4; }
.hp-news-hero-title {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 900; line-height: 1.2;
  color: var(--white); margin-bottom: 12px;
}
.hp-news-hero-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hp-news-hero-title a:hover { color: var(--orange); }
.hp-news-excerpt {
  font-size: 0.90rem; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin-bottom: 20px;
}
.hp-news-readlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  border-bottom: 1px solid rgba(232,97,10,0.35);
  transition: gap 0.25s, border-color 0.25s;
}
.hp-news-readlink:hover { gap: 12px; color: var(--orange-light); border-color: var(--orange); }

/* Side stack */
.hp-news-stack { display: flex; flex-direction: column; gap: 14px; }
.hp-news-card {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 0; border-radius: 10px; overflow: hidden;
  background: var(--bg3); border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
}
.hp-news-card:hover { transform: translateX(5px); border-color: rgba(232,97,10,0.32); }
.hp-news-card-img { height: 100px; overflow: hidden; }
.hp-news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.hp-news-card:hover .hp-news-card-img img { transform: scale(1.06); }
.hp-news-card-fallback {
  width: 100%; height: 100%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 1.4rem;
}
.hp-news-card-body { padding: 14px 16px; }
.hp-news-cat {
  display: inline-block; font-family: var(--font-head);
  font-size: 0.60rem; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.hp-news-card-body h4 { font-size: 0.88rem; font-weight: 700; line-height: 1.3; color: var(--white); margin-bottom: 6px; }
.hp-news-card-body h4 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hp-news-card-body h4 a:hover { color: var(--orange); }
.hp-news-date { font-size: 0.72rem; color: var(--text-muted); }


/* ================================================================
   EVENTS — CONCERT BOARD
================================================================ */
.hp-events {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.hp-events-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.13;
}
.hp-events-veil {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.93) 100%);
  border-top: 2px solid rgba(232,97,10,0.28);
}
.hp-events-inner { position: relative; z-index: 2; }
.hp-events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* Event card — concert poster feel */
.hp-ev-card {
  background: rgba(20,20,20,0.92);
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hp-ev-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(232,97,10,0.22);
  border-color: rgba(232,97,10,0.40);
}
.hp-ev-img { position: relative; height: 210px; overflow: hidden; }
.hp-ev-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.hp-ev-card:hover .hp-ev-img img { transform: scale(1.07); }
.hp-ev-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg3), rgba(232,97,10,0.10));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--orange); opacity: 0.35;
}

/* Date badge */
.hp-ev-date-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); border-radius: 9px; padding: 8px 14px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(232,97,10,0.55);
}
.hp-ev-day {
  display: block; font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 900; color: #fff; line-height: 1;
}
.hp-ev-mon {
  display: block; font-family: var(--font-head);
  font-size: 0.63rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.82);
}
.hp-ev-tag {
  position: absolute; bottom: 10px; right: 10px;
  font-family: var(--font-head); font-size: 0.60rem;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.hp-ev-free { background: rgba(39,174,96,0.18); color: #2ecc71; border: 1px solid rgba(39,174,96,0.38); }
.hp-ev-paid { background: rgba(232,97,10,0.14); color: var(--orange); border: 1px solid rgba(232,97,10,0.35); }

.hp-ev-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.hp-ev-title { font-size: 1.02rem; font-weight: 800; color: var(--white); line-height: 1.25; }
.hp-ev-meta { display: flex; align-items: center; gap: 7px; font-size: 0.80rem; color: var(--text-muted); }
.hp-ev-meta i { color: var(--orange); width: 14px; flex-shrink: 0; }
.hp-ev-ticket {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 6px;
  font-family: var(--font-head); font-size: 0.74rem;
  font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 9px 18px; background: var(--orange); color: var(--white);
  border-radius: 4px; text-decoration: none; align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.hp-ev-ticket:hover { background: var(--orange-light); color: #fff; transform: translateY(-2px); }


/* ================================================================
   PRESENTERS — THE VOICES MARQUEE
================================================================ */
.hp-presenters {
  padding: 100px 0;
  background: var(--bg2);
  overflow: hidden;
}
.hp-pres-outer {
  overflow: hidden; position: relative;
  margin-top: 8px;
}
.hp-pres-outer::before,
.hp-pres-outer::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.hp-pres-outer::before { left: 0;  background: linear-gradient(to right, var(--bg2), transparent); }
.hp-pres-outer::after  { right: 0; background: linear-gradient(to left,  var(--bg2), transparent); }

.hp-pres-track {
  display: flex; gap: 16px;
  animation: hpPresMarquee 34s linear infinite;
  width: max-content;
}
.hp-pres-track:hover { animation-play-state: paused; }
@keyframes hpPresMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hp-pres-chip {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg3);
  border: 1px solid var(--border); border-radius: 60px;
  padding: 10px 24px 10px 10px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: all 0.28s;
}
.hp-pres-chip:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,97,10,0.22);
  transform: translateY(-5px);
}
.hp-pres-photo {
  width: 60px; height: 60px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--orange); flex-shrink: 0;
}
.hp-pres-photo img { width: 100%; height: 100%; object-fit: cover; }
.hp-pres-fallback {
  width: 100%; height: 100%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1.2rem;
}
.hp-pres-name { font-family: var(--font-head); font-size: 0.94rem; font-weight: 700; color: var(--white); }
.hp-pres-role { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }


/* ================================================================
   ADVERTISE — IMPOSSIBLE TO MISS
================================================================ */
.hp-adv {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.hp-adv-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.20;
  animation: hpKenBurns 26s ease-in-out infinite;
}
.hp-adv-veil {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(232,97,10,0.06) 100%);
  border-top: 4px solid var(--orange);
}
.hp-adv-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hp-adv-h {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1; margin-bottom: 20px;
}
.hp-adv-accent { color: var(--orange); }
.hp-adv-left p { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; }

/* CTA button — icon-split style */
.hp-adv-btn {
  display: inline-flex; align-items: stretch; gap: 0;
  font-family: var(--font-head); font-size: 0.90rem;
  font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hp-adv-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 48px rgba(232,97,10,0.48); }
.hp-adv-btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; padding: 0 0 0 0; font-size: 1.1rem;
  background: rgba(0,0,0,0.30); color: var(--white);
}
.hp-adv-btn-label {
  display: flex; align-items: center;
  padding: 0 30px; height: 58px;
  background: var(--orange); color: var(--white);
  transition: background 0.25s;
}
.hp-adv-btn:hover .hp-adv-btn-label { background: var(--orange-light); }

.hp-adv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hp-adv-stat {
  background: rgba(15,15,15,0.82);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 20px; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.hp-adv-stat:hover { border-color: rgba(232,97,10,0.38); transform: translateY(-5px); }
.hp-adv-num {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 900;
  color: var(--orange); margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(232,97,10,0.4);
}
.hp-adv-lbl { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; }


/* ================================================================
   TESTIMONIALS — DRAMATIC QUOTE WALL
================================================================ */
.hp-test {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.hp-test-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.09;
}
.hp-test-veil {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(232,97,10,0.05) 100%);
  border-top: 1px solid rgba(232,97,10,0.20);
}
.hp-test-inner { position: relative; z-index: 2; }

.hp-test-stage {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.hp-test-slide { display: none; animation: hpTestFade 0.5s ease; }
.hp-test-slide.active { display: block; }
@keyframes hpTestFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hp-test-qmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.45;
  color: var(--orange);
  opacity: 0.52;
  margin-bottom: 20px;
}
.hp-test-quote {
  font-size: clamp(1.10rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.80;
  margin-bottom: 30px;
}
.hp-test-rule {
  width: 64px; height: 3px;
  background: linear-gradient(to right, var(--orange), var(--gold));
  margin: 0 auto 26px; border-radius: 2px;
}
.hp-test-author {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.hp-test-role { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 44px; }

.hp-test-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.hp-test-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: 0.88rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.hp-test-arrow:hover { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 16px rgba(232,97,10,0.25); }
.hp-test-dots { display: flex; gap: 10px; }
.hp-tdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: all 0.3s;
}
.hp-tdot.active { background: var(--orange); transform: scale(1.55); }


/* ================================================================
   HOME PAGE RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .hp-hero-inner     { grid-template-columns: 60% 40%; gap: 32px; padding: 70px 36px 55px; }
  /* Scale the landscape card so it never overflows its 40% column */
  .hp-vc-main        { width: 100%; max-width: 380px; height: auto; aspect-ratio: 16/10; }
  .hp-news-mag       { grid-template-columns: 1.4fr 1fr; }
  .hp-adv-inner      { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hp-hero-inner     { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 60px 28px 48px; }
  .hp-hero-visual    { display: none; }
  .hp-ghost-freq     { opacity: 0.04; font-size: clamp(7rem, 22vw, 14rem); }
  .hp-cta-row        { justify-content: center; }
  .hp-mini-stats     { justify-content: center; }
  .hp-live-badge     { justify-content: center; }
  .hp-tagline        { justify-content: center; }
  .hp-news-mag       { grid-template-columns: 1fr; }
  .hp-news-hero-img  { height: 420px; }
  .hp-events-grid    { grid-template-columns: repeat(2, 1fr); }
  .hp-adv-inner      { grid-template-columns: 1fr; }
  .hp-adv-grid       { grid-template-columns: repeat(4,1fr); }
  .hp-p-inner        { padding: 48px 36px; max-width: 480px; }
  .hp-p-inner-r      { margin-left: 0; }
  .hp-pillar         { min-height: 420px; }
  .hp-pillar-flip    { flex-direction: row; }
  .hp-bb-right       { display: none; }
  .hp-stats-grid     { padding: 60px 28px; gap: 12px; }
}

@media (max-width: 768px) {
  .hp-hero-inner     { padding: 48px 20px 40px; }
  .hp-h1-big         { font-size: clamp(3.8rem, 13vw, 6.5rem); }
  .hp-sec-head       { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 36px; }
  .hp-events-grid    { grid-template-columns: 1fr; }
  .hp-adv-grid       { grid-template-columns: 1fr 1fr; }
  .hp-pillar         { min-height: 360px; }
  .hp-p-title        { font-size: 1.5rem; }
  .hp-p-ghost        { font-size: clamp(6rem,16vw,11rem); }
  .hp-bb-inner       { flex-direction: column; gap: 16px; align-items: flex-start; padding: 18px 24px; }
  .hp-stat-num       { font-size: clamp(2.6rem, 7vw, 4.5rem); }
  .hp-stat-div       { height: 50px; }
  .hp-news-hero-img  { height: 360px; }
  .hp-shows-track    { padding: 20px 28px; }
  .hp-test-quote     { font-size: 1.05rem; }
  .hp-test-qmark     { font-size: clamp(4rem, 10vw, 7rem); }
  .hp-adv-h          { font-size: clamp(1.9rem, 5vw, 2.8rem); }
  .hp-adv-inner      { gap: 36px; }
  .hp-eq             { height: 64px; }
}

@media (max-width: 480px) {
  .hp-h1-big         { font-size: clamp(3rem, 14vw, 5rem); }
  .hp-h1-sm          { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hp-cta-label      { font-size: 0.80rem; padding: 0 18px; }
  .hp-cta-icon       { width: 44px; height: 48px; }
  .hp-stats-grid     { flex-direction: column; padding: 48px 24px; }
  .hp-stat-div       { width: 60px; height: 1px; }
  .hp-news-hero-img  { height: 300px; }
  .hp-news-hero-body { padding: 20px; }
  .hp-show-card      { flex: 0 0 220px; }
  .hp-show-img       { height: 260px; }
  .hp-adv-grid       { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hp-adv-num        { font-size: 1.8rem; }
  .hp-pillar         { min-height: 320px; }
  .hp-p-inner        { padding: 36px 22px; }
  .hp-eq             { height: 48px; }
  .hp-ghost-freq     { display: none; }

  /* Reduce section top/bottom padding on small screens to cut dark dead-space */
  .hp-shows          { padding-top: 56px; }
  .hp-news           { padding: 56px 0; }
  .hp-events         { padding: 56px 0; }
  .hp-presenters     { padding: 56px 0; }
  .hp-adv            { padding: 64px 0; }
  .hp-test           { padding: 64px 0; }
}
