/* =================================================================
   Mi Preferida / La Ley — shared stylesheet
   CSS variables are injected per-site in inc/header.php
   ================================================================= */

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

:root {
  /* Fallbacks; real values injected by header.php */
  --primary: #16a34a;
  --primary-deep: #15803d;
  --primary-soft: rgba(22,163,74,.12);
  --bg: #fff7ed;
  --accent-a: #f59e0b;
  --accent-b: #ec4899;
  --accent-c: #c026d3;
  --live-dot: #ef4444;
  --logo-fg: #ffffff;
  --ink: #0c0a09;
  --ink-2: #44403c;
  --ink-3: #57534e;
  --ink-mute: #78716c;
  --paper: #ffffff;
  --line: #f4f4f0;
  --line-2: #e7e5e4;
  --shadow-1: 0 8px 24px rgba(0,0,0,.06);
  --shadow-2: 0 16px 40px rgba(0,0,0,.1);
  --shadow-3: 0 20px 50px rgba(0,0,0,.18);
  --radius: 24px 8px 24px 8px;
  --radius-r: 8px 24px 8px 24px;
  --radius-pill: 999px;
  --max: 1200px;
}

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 800; margin: 0; color: var(--ink); }
h1 { font-size: clamp(36px, 6vw, 64px); line-height: 0.98; font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1; }
h3 { font-size: 18px; }

main { display: block; min-height: 60vh; padding-bottom: 100px; }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(16px, 4vw, 36px);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0,0,0,.04);
  backdrop-filter: blur(8px);
}
.site-header .logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 17px; color: var(--primary-deep);
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--primary); color: var(--logo-fg);
  border-radius: 14px 4px 14px 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  letter-spacing: 0.02em;
}
.logo-image {
  height: 44px; width: auto; max-width: 220px;
  display: block;
  border-radius: 8px;
}
.station-logo {
  width: auto; max-width: 130px; max-height: 56px;
  margin-bottom: 16px; display: block;
  background: var(--logo-fg);
  padding: 6px 10px;
  border-radius: 8px 2px 8px 2px;
}
.station-logo-big {
  width: auto; max-width: 180px; max-height: 90px;
  background: var(--bg);
  padding: 10px 14px;
  border-radius: 12px 3px 12px 3px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text small { display: block; font-weight: 600; font-size: 11px; color: var(--ink-mute); margin-top: 1px; }

.nav { display: flex; gap: clamp(14px, 2.4vw, 26px); flex: 1; }
.nav a {
  font-weight: 600; font-size: 14px; color: var(--ink-2);
  position: relative; padding: 6px 0;
  transition: color 0.15s;
}
.nav a:hover { color: var(--primary-deep); }
.nav a.active { color: var(--primary-deep); }
.nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; background: var(--primary); border-radius: 999px;
}

.cta-live {
  background: var(--primary); color: var(--logo-fg);
  padding: 9px 18px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 12px;
  display: flex; align-items: center; gap: 8px;
  border: 0; cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  transition: transform 0.1s;
}
.cta-live:hover { transform: translateY(-1px); }
.cta-live .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--logo-fg);
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  color: var(--ink-2);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 7vw, 80px) clamp(16px, 4vw, 36px);
  background:
    radial-gradient(ellipse at 80% 20%, color-mix(in srgb, var(--accent-a) 25%, transparent), transparent 50%),
    radial-gradient(ellipse at 15% 90%, color-mix(in srgb, var(--accent-b) 18%, transparent), transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-text { max-width: 60%; position: relative; z-index: 2; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-soft); color: var(--primary-deep);
  padding: 7px 16px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 12px; letter-spacing: 0.05em;
}
.hero .pill .dot {
  width: 9px; height: 9px; background: var(--primary); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-soft);
  animation: pulse 1.4s infinite;
}
.hero h1 {
  margin: 20px 0 14px;
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--primary); }
.hero .lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-3);
  max-width: 52ch;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.play-btn {
  background: var(--primary); color: var(--logo-fg);
  padding: 16px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 14px;
  border: 0; cursor: pointer;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 40%, transparent);
  transition: transform 0.1s, box-shadow 0.1s;
}
.play-btn:hover { transform: translateY(-1px); box-shadow: 0 16px 32px color-mix(in srgb, var(--primary) 50%, transparent); }
.play-btn .tri {
  width: 0; height: 0;
  border-left: 12px solid var(--logo-fg);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.ghost-btn {
  padding: 14px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px; color: var(--ink-2);
  border: 1.5px solid var(--line-2); background: var(--paper);
  transition: border-color 0.15s, color 0.15s;
}
.ghost-btn:hover { border-color: var(--primary); color: var(--primary-deep); }

/* Now playing card */
.now-card {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  top: clamp(40px, 8vw, 100px);
  background: var(--paper);
  border-radius: 24px 8px 24px 8px;
  padding: 18px;
  width: 280px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  z-index: 1;
}
.now-label { font-size: 10px; font-weight: 800; color: var(--accent-a); letter-spacing: 0.15em; }
.now-art {
  width: 100%; aspect-ratio: 1;
  margin: 10px 0 12px;
  border-radius: 16px 6px 16px 6px;
  background-size: cover; background-position: center;
  background-color: var(--primary);
}
.now-art.placeholder {
  background: linear-gradient(135deg, var(--primary), var(--accent-a));
  position: relative;
}
.now-art.placeholder::after {
  content: '🎙️'; position: absolute; right: 14px; bottom: 10px; font-size: 38px;
}
.now-card h4 { margin: 0 0 4px; font-size: 17px; }
.now-card .show-with { font-size: 13px; color: var(--ink-3); }
.now-card .show-time { font-size: 12px; color: var(--primary-deep); font-weight: 700; margin-top: 8px; }

/* ---------- Section primitives ---------- */
.section { padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 36px); }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.eyebrow {
  font-size: 11px; font-weight: 800; color: var(--accent-a);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.section-head h2 { margin: 8px 0 0; }
.view-all { color: var(--primary-deep); font-weight: 700; font-size: 13px; }
.view-all:hover { color: var(--primary); }

.page-head {
  padding: clamp(36px, 6vw, 60px) clamp(16px, 4vw, 36px) 16px;
}
.page-head h1 { margin: 8px 0 14px; }
.page-head .lead { color: var(--ink-3); margin: 0; }
.cat-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.cat-filter a {
  padding: 7px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  border: 1.5px solid var(--line-2); background: var(--paper);
}
.cat-filter a.active { background: var(--primary); color: var(--logo-fg); border-color: var(--primary); }

.crumb { padding: 14px clamp(16px, 4vw, 36px); font-size: 12px; color: var(--ink-mute); }
.crumb a { color: var(--primary-deep); }
.crumb a:hover { color: var(--primary); }

/* ---------- News grid ---------- */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 20px;
}
.news-grid.wide {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.news-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.news-card.featured { grid-row: span 2; }
.news-img {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  background-color: var(--line);
}
.news-card.featured .news-img { aspect-ratio: 4/3; }
.news-img.placeholder { background-image: none; }
.news-img.placeholder.accent-0 { background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 30%, black)); }
.news-img.placeholder.accent-1 { background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); }
.news-img.placeholder.accent-2 { background: linear-gradient(135deg, var(--accent-b), var(--accent-c)); }
.news-img.placeholder.accent-3 { background: linear-gradient(135deg, var(--accent-c), var(--primary)); }
.news-body { padding: 18px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.news-cat {
  font-size: 10px; font-weight: 800;
  color: var(--accent-a); letter-spacing: 0.12em; text-transform: uppercase;
}
.news-card h3 {
  font-size: 17px; font-weight: 800; line-height: 1.25;
  margin: 6px 0 8px;
}
.news-card.featured h3 { font-size: 28px; line-height: 1.1; }
.news-card p {
  font-size: 14px; color: var(--ink-3); margin: 0 0 12px; line-height: 1.5;
  flex: 1;
}
.news-meta { font-size: 11px; color: var(--ink-mute); }

/* ---------- Schedule strip ---------- */
.schedule-wrap {
  background: var(--primary-deep);
  color: var(--logo-fg);
  padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 36px);
}
.schedule-wrap .eyebrow { color: color-mix(in srgb, var(--logo-fg) 80%, transparent); }
.schedule-wrap .section-head h2 { color: var(--logo-fg); }
.schedule-wrap .view-all { color: color-mix(in srgb, var(--logo-fg) 80%, transparent); }
.schedule-wrap .view-all:hover { color: var(--logo-fg); }

.schedule {
  display: grid;
  grid-template-columns: 70px repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
}
.schedule .day {
  text-align: center; font-weight: 700; padding: 8px 0;
  font-size: 12px;
  color: color-mix(in srgb, var(--logo-fg) 80%, transparent);
}
.schedule .time {
  text-align: right; font-size: 11px;
  color: color-mix(in srgb, var(--logo-fg) 60%, transparent);
  padding-right: 10px; align-self: center;
}
.schedule .slot {
  padding: 10px 12px;
  border-radius: 10px 2px 10px 2px;
  font-weight: 700; font-size: 11px;
  min-height: 38px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--logo-fg);
}
.schedule .slot.empty { background: rgba(255,255,255,.04); }
.schedule .slot.filled:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,.2); }
.schedule .slot.filled { transition: transform 0.1s; }

/* ---------- Events ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.event-grid.wide { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
.event-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 20px;
  display: flex; gap: 16px;
  border: 1px solid var(--line);
  transition: transform 0.15s, box-shadow 0.15s;
}
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.event-card.detailed { flex-direction: column; padding: 0; }
.event-card.detailed .event-img {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  border-radius: 20px 20px 0 0;
  background-color: var(--line);
}
.event-card.detailed .event-body {
  display: flex; gap: 16px; padding: 18px 20px 20px;
}
.event-date {
  background: var(--primary-soft);
  color: var(--primary-deep);
  padding: 10px 0; width: 64px; text-align: center;
  border-radius: 12px 3px 12px 3px; flex-shrink: 0;
}
.event-date .day { font-size: 24px; font-weight: 900; line-height: 1; }
.event-date .mon { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; margin-top: 2px; }
.event-card h3, .event-card h4 { margin: 0 0 6px; font-size: 16px; }
.event-card p { font-size: 13px; color: var(--ink-3); margin: 0; line-height: 1.45; }
.event-card .venue { font-size: 12px; color: var(--accent-a); font-weight: 700; margin-top: 8px; }
.event-card .event-desc { margin-top: 10px; font-size: 14px; color: var(--ink-3); }
.event-card .event-desc p { margin: 0 0 8px; }
.ticket-btn {
  display: inline-block; margin-top: 12px;
  background: var(--primary); color: var(--logo-fg);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
}
.ticket-btn:hover { background: var(--primary-deep); }

/* ---------- DJs ---------- */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dj-grid.wide { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.dj-card {
  background: var(--paper); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--line);
  transition: transform 0.15s, box-shadow 0.15s;
}
.dj-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.dj-img {
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  background-color: var(--line);
}
.dj-img.placeholder.accent-0 { background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); position: relative; }
.dj-img.placeholder.accent-1 { background: linear-gradient(135deg, var(--primary), var(--primary-deep)); position: relative; }
.dj-img.placeholder.accent-2 { background: linear-gradient(135deg, var(--accent-c), var(--accent-b)); position: relative; }
.dj-img.placeholder.accent-3 { background: linear-gradient(135deg, var(--accent-b), var(--accent-c)); position: relative; }
.dj-img.placeholder::after {
  content: '🎙️'; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%); font-size: 56px; opacity: 0.85;
}
.dj-body { padding: 16px 18px 18px; }
.dj-card h4 { margin: 0; font-size: 16px; font-weight: 800; }
.dj-slot { font-size: 11px; color: var(--primary-deep); font-weight: 700; margin-top: 4px; }
.dj-body p { margin: 8px 0 0; font-size: 13px; color: var(--ink-3); line-height: 1.45; }

/* ---------- Single DJ profile ---------- */
.dj-profile {
  padding: 30px clamp(16px, 4vw, 36px) 50px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.portrait {
  aspect-ratio: 1; border-radius: 36px 8px 36px 8px;
  background-size: cover; background-position: center;
  background-color: var(--line);
  position: relative; overflow: hidden;
}
.portrait.placeholder::after {
  content: '🎙️'; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%); font-size: 120px; opacity: 0.85;
}
.portrait.placeholder.accent-0 { background: linear-gradient(135deg, var(--primary), var(--primary-deep)); }
.portrait.placeholder.accent-1 { background: linear-gradient(135deg, var(--accent-a), var(--accent-b)); }
.portrait.placeholder.accent-2 { background: linear-gradient(135deg, var(--accent-c), var(--accent-b)); }
.portrait.placeholder.accent-3 { background: linear-gradient(135deg, var(--accent-b), var(--accent-a)); }
.dj-profile .bio h1 { margin: 0 0 10px; }
.dj-profile .show-name { font-size: 20px; color: var(--primary-deep); font-weight: 800; margin-bottom: 16px; }
.dj-profile .slot-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.slot-pill {
  background: var(--primary-soft); color: var(--primary-deep);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
}
.bio-body { font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 65ch; }
.bio-body p { margin: 0 0 14px; }
.dj-profile .socials { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.dj-profile .socials a {
  background: var(--paper); border: 1px solid var(--line-2);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 13px; color: var(--ink-2); font-weight: 700;
}
.dj-profile .socials a:hover { border-color: var(--primary); color: var(--primary-deep); }

/* ---------- Single post ---------- */
.post {
  max-width: 760px; margin: 0 auto;
  padding: 30px clamp(16px, 4vw, 36px) 60px;
}
.post-head { text-align: center; margin-bottom: 24px; }
.post-head h1 { margin: 8px 0 12px; }
.post-head .post-meta { font-size: 13px; color: var(--ink-mute); }
.post-hero {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.post-body {
  font-size: 18px; line-height: 1.7; color: var(--ink-2);
}
.post-body p { margin: 0 0 18px; }
.post-body h2 { font-size: 26px; margin: 40px 0 14px; }
.post-body h3 { font-size: 20px; margin: 30px 0 10px; }
.post-body a { color: var(--primary-deep); text-decoration: underline; text-decoration-color: var(--primary-soft); text-underline-offset: 3px; }
.post-body a:hover { text-decoration-color: var(--primary); }
.post-body img { border-radius: 12px; margin: 24px 0; }
.post-body ul, .post-body ol { padding-left: 24px; margin: 0 0 18px; }
.post-body li { margin-bottom: 8px; }
.rel-title { margin: 0 0 18px; font-size: 22px; }

/* ---------- Gallery ---------- */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.album-card {
  background: var(--paper); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--line);
  transition: transform 0.15s, box-shadow 0.15s;
}
.album-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.album-cover {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  background-color: var(--line);
}
.album-body { padding: 16px 18px 18px; }
.album-card h3 { margin: 0; font-size: 16px; }
.album-meta { font-size: 12px; color: var(--ink-mute); margin-top: 4px; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}
.photo {
  aspect-ratio: 1;
  background-size: cover; background-position: center;
  background-color: var(--line);
  border-radius: 4px;
  cursor: zoom-in;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-info h3 { margin: 0 0 12px; font-size: 18px; }
.contact-info p { margin: 6px 0; }
.contact-info a { color: var(--primary-deep); font-weight: 600; }
.contact-info a:hover { color: var(--primary); }
.contact-info .socials { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-info .socials a {
  background: var(--paper); border: 1px solid var(--line-2);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
}
.map-embed img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-1); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 6px; margin-top: 30px; justify-content: center; }
.pagination a {
  width: 38px; height: 38px;
  border-radius: 10px 3px 10px 3px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--ink-2);
  border: 1px solid var(--line-2); background: var(--paper);
}
.pagination a.active { background: var(--primary); color: var(--logo-fg); border-color: var(--primary); }

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center; padding: 40px 16px;
  color: var(--ink-mute); font-size: 15px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--logo-fg) 75%, transparent);
  padding: 50px clamp(16px, 4vw, 36px) 24px;
  margin-top: 60px;
}
.foot-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
}
.foot-cols h5 {
  color: var(--logo-fg); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 14px;
}
.foot-cols a, .foot-cols p {
  color: color-mix(in srgb, var(--logo-fg) 70%, transparent);
  font-size: 13px; line-height: 1.5;
  display: block; margin: 0 0 6px;
}
.foot-cols a:hover { color: var(--logo-fg); }
.foot-cols .brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; color: var(--logo-fg);
  font-size: 17px; margin-bottom: 14px;
}
.foot-cols .brand .mark {
  background: var(--primary); padding: 6px 10px;
  border-radius: 10px 3px 10px 3px;
}
.foot-copy {
  border-top: 1px solid color-mix(in srgb, var(--logo-fg) 8%, transparent);
  margin-top: 30px; padding-top: 18px;
  font-size: 11px;
  color: color-mix(in srgb, var(--logo-fg) 40%, transparent);
  text-align: center;
}

/* ---------- Sticky player ---------- */
.sticky-player {
  position: fixed; bottom: 14px;
  left: clamp(16px, 4vw, 36px);
  right: clamp(16px, 4vw, 36px);
  background: var(--ink);
  color: var(--logo-fg);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-3);
  z-index: 100;
  backdrop-filter: blur(12px);
}
.play-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--logo-fg);
  border: 0; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.1s;
}
.play-toggle:hover { transform: scale(1.05); }
.play-icon { font-size: 14px; line-height: 1; margin-left: 1px; }
body.is-playing .play-icon { content: '⏸'; }
body.is-playing .play-icon::before { content: '⏸'; }
body.is-playing .play-icon { font-size: 16px; margin-left: 0; }
.sticky-player .info { flex: 1; min-width: 0; }
.sticky-player .info .station {
  font-size: 13px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-player .info .show {
  font-size: 11px;
  color: color-mix(in srgb, var(--logo-fg) 55%, transparent);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-player .vu {
  display: flex; gap: 3px; align-items: end; height: 24px; flex-shrink: 0;
}
.sticky-player .vu span {
  width: 3px; background: var(--primary); border-radius: 2px;
  animation: vu 1s infinite;
}
.sticky-player .vu span:nth-child(1) { height: 60%; animation-delay: 0s; }
.sticky-player .vu span:nth-child(2) { height: 100%; animation-delay: .15s; }
.sticky-player .vu span:nth-child(3) { height: 40%; animation-delay: .3s; }
.sticky-player .vu span:nth-child(4) { height: 80%; animation-delay: .45s; }
body:not(.is-playing) .vu span { animation-play-state: paused; }
@keyframes vu { 50% { transform: scaleY(0.35); } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 30px;
  cursor: zoom-out;
}
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 8px; box-shadow: var(--shadow-3); }
.lightbox .close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.1); color: white;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  font-size: 22px; cursor: pointer;
}

/* ---------- Not found ---------- */
.not-found {
  text-align: center; padding: 80px 20px;
}
.not-found h1 { font-size: 96px; color: var(--primary); margin: 0; }
.not-found p { font-size: 16px; color: var(--ink-3); }
.not-found a { color: var(--primary-deep); font-weight: 700; }

/* =================================================================
   Corporate variant (Aerostar) — additional components
   ================================================================= */

.corporate-hero {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 6%, transparent), transparent 60%),
    radial-gradient(ellipse at 90% 30%, color-mix(in srgb, var(--accent-a) 12%, transparent), transparent 60%),
    var(--bg);
}
.corporate-hero h1 { max-width: 18ch; }
.corporate-hero .pill { background: var(--primary-soft); color: var(--primary-deep); }

.stats-card {
  background: var(--ink);
  color: var(--logo-fg);
  border: 0;
}
.stats-card .now-label { color: var(--accent-a); }
.stats-card .stat-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stats-card .stat-row:last-child { border-bottom: 0; }
.stats-card .stat-num {
  font-size: 28px; font-weight: 900;
  color: color-mix(in srgb, var(--accent-a) 90%, white);
  line-height: 1;
}
.stats-card .stat-lbl {
  font-size: 12px;
  color: color-mix(in srgb, var(--logo-fg) 70%, transparent);
  margin-top: 4px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.services-grid.wide { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px 26px;
  border: 1px solid var(--line);
  transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.service-card.detailed { padding: 28px 32px; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px 4px 14px 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  color: var(--logo-fg);
  margin-bottom: 16px;
}
.service-icon.accent-0 { background: var(--primary); }
.service-icon.accent-1 { background: var(--accent-a); }
.service-icon.accent-2 { background: var(--accent-b); }
.service-icon.accent-3 { background: var(--accent-c); }
.service-card h3 { font-size: 18px; margin: 0 0 8px; }
.service-card p { font-size: 14px; color: var(--ink-3); margin: 0; line-height: 1.55; }
.service-bullets {
  margin: 14px 0 0; padding: 0; list-style: none;
}
.service-bullets li {
  font-size: 13px; color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
}
.service-bullets li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Stations strip on homepage */
.stations-band {
  background:
    linear-gradient(180deg, var(--primary-deep), color-mix(in srgb, var(--primary-deep) 80%, black));
}
.stations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.station-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px 8px 24px 8px;
  padding: 26px 28px;
  color: var(--logo-fg);
  transition: transform 0.15s, background 0.15s;
}
.station-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
}
.station-mark {
  width: 64px; height: 64px;
  border-radius: 18px 4px 18px 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.station-mark.big {
  width: 80px; height: 80px;
  font-size: 28px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.station-name { font-size: 22px; font-weight: 900; margin: 0 0 4px; letter-spacing: -0.02em; }
.station-tag { font-size: 13px; color: color-mix(in srgb, var(--logo-fg) 60%, transparent); margin-bottom: 14px; }
.station-cta { font-size: 13px; font-weight: 700; color: var(--accent-a); }

/* Stations detail page */
.stations-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.station-detail {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px 32px;
  border-top: 4px solid var(--station-color);
}
.station-detail-head {
  display: flex; gap: 20px; align-items: center;
  margin-bottom: 20px;
}
.station-detail-head h2 { margin: 0; font-size: 26px; }
.station-detail p {
  font-size: 16px; color: var(--ink-2); line-height: 1.6;
  margin: 0 0 16px;
}
.station-highlights {
  margin: 0 0 24px; padding: 0; list-style: none;
}
.station-highlights li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.station-highlights li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--station-color);
  font-weight: 800;
}

/* About section */
.about-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  max-width: var(--max);
  margin: 0 auto;
}
.about-grid h2 { margin: 8px 0 0; max-width: 12ch; }
.about-body {
  font-size: 17px; line-height: 1.7; color: var(--ink-2);
  max-width: 60ch;
}
.about-body p { margin: 0 0 14px; }
.about-body strong { color: var(--ink); }

/* Contact CTA band */
.contact-cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--logo-fg);
  padding: clamp(50px, 8vw, 80px) clamp(16px, 4vw, 36px);
  margin-top: 40px;
}
.contact-cta-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center;
}
.contact-cta-band h2 { color: var(--logo-fg); margin: 0 0 14px; }
.contact-cta-band p {
  font-size: 17px;
  color: color-mix(in srgb, var(--logo-fg) 85%, transparent);
  max-width: 50ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.contact-cta-band .play-btn {
  background: var(--logo-fg);
  color: var(--primary-deep);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.contact-cta-band .play-btn:hover { background: white; }

@media (max-width: 720px) {
  .stations-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .stats-card { width: 100%; }
}

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-row: span 1; }
  .dj-grid { grid-template-columns: 1fr 1fr; }
  .dj-profile { grid-template-columns: 1fr; gap: 24px; }
  .portrait { max-width: 260px; }
  .now-card { position: static; width: 100%; margin-top: 30px; max-width: 320px; }
  .hero-text { max-width: 100%; }
  .contact { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 16px; gap: 10px; }
  .logo-text { display: none; }
  .nav { display: none; }
  body.nav-open .nav {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; margin-left: auto; }
  .cta-live { padding: 7px 12px; font-size: 11px; }
  .news-grid { grid-template-columns: 1fr; }
  .dj-grid { grid-template-columns: 1fr 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .album-grid { grid-template-columns: 1fr 1fr; }
  .schedule { font-size: 9px; grid-template-columns: 40px repeat(7, 1fr); gap: 3px; }
  .schedule .slot { padding: 4px 2px; min-height: 26px; font-size: 9px; }
  .sticky-player { left: 8px; right: 8px; padding: 8px 12px; }
  .foot-cols { grid-template-columns: 1fr; gap: 24px; }
  h1 { font-size: 32px; }
  .hero { padding: 30px 16px 40px; }
}

@media (max-width: 380px) {
  .dj-grid { grid-template-columns: 1fr; }
}
