/* ===== Variables ===== */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #171717;
  --bg-card-hover: #1d1d1d;
  --orange: #f97316;
  --orange-dark: #ea6a0a;
  --purple: #a855f7;
  --pink: #ec4899;
  --blue: #3b82f6;
  --green: #22c55e;
  --white: #ffffff;
  --gray: #9ca3af;
  --gray-light: #d1d5db;
  --border: #262626;
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --header-h: 104px;
  --livebar-h: 56px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

svg { fill: currentColor; width: 20px; height: 20px; }

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

.section-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: var(--white);
}
.section-title.center { text-align: center; margin-bottom: 40px; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.link-orange {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.link-orange:hover { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}
.btn-solid:hover { box-shadow: 0 8px 26px rgba(249, 115, 22, 0.5); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--bg); }

section .container.about-grid,
.schedule, .news, .gallery, .contact { padding-top: 70px; padding-bottom: 70px; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible;
}
.brand-logo {
  height: 92px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(249, 115, 22, 0.45)) drop-shadow(0 0 28px rgba(249, 115, 22, 0.2));
  transition: filter 0.25s ease;
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 18px rgba(249, 115, 22, 0.65)) drop-shadow(0 0 36px rgba(249, 115, 22, 0.3));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }

.header-socials { display: flex; gap: 10px; }

.social-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.social-circle svg { width: 16px; height: 16px; }
.social-circle:hover { transform: translateY(-3px) scale(1.05); }
.social-fb:hover { background: #1877f2; color: #fff; }
.social-ig:hover { background: #e1306c; color: #fff; }
.social-yt:hover { background: #ff0000; color: #fff; }
.social-wa:hover { background: #25d366; color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Barra en vivo ===== */
.live-bar {
  position: relative;
  margin-top: var(--header-h);
  background: linear-gradient(90deg, #151515 0%, #1a1512 45%, #151515 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
  height: var(--livebar-h);
  overflow: hidden;
  box-shadow: 0 0 22px rgba(249, 115, 22, 0.18), 0 1px 0 rgba(249, 115, 22, 0.5);
  animation: liveBarGlow 3.2s ease-in-out infinite;
}

@keyframes liveBarGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(249, 115, 22, 0.14), 0 1px 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 30px rgba(249, 115, 22, 0.32), 0 1px 0 rgba(249, 115, 22, 0.7); }
}

.live-bar::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -30%;
  width: 25%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
  animation: liveBarSheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes liveBarSheen {
  0% { left: -30%; }
  55%, 100% { left: 115%; }
}

.live-bar-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-bar-left { display: flex; align-items: center; gap: 14px; min-width: 0; }

.play-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffb06a, var(--orange) 60%, var(--orange-dark) 100%);
  border: none;
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(249,115,22,0.55), 0 2px 10px rgba(249,115,22,0.5);
  animation: playBtnRing 2.4s ease-out infinite;
  transition: transform 0.15s ease;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 16px; height: 16px; }
.play-btn.loading { animation: playBtnRing 2.4s ease-out infinite, playBtnLoading 0.9s linear infinite; }

@keyframes playBtnLoading {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes playBtnRing {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.55), 0 2px 10px rgba(249,115,22,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(249,115,22,0), 0 2px 10px rgba(249,115,22,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0), 0 2px 10px rgba(249,115,22,0.5); }
}

.live-bar-text { min-width: 0; }
.live-bar-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-bar-title span { color: var(--orange); text-shadow: 0 0 12px rgba(249, 115, 22, 0.6); }
.live-bar-subtitle {
  font-size: 0.72rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-bar-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.live-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gray-light);
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(239,68,68,0); }
}

.equalizer { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.equalizer span {
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.9), 0 0 12px rgba(249, 115, 22, 0.4);
  animation: eq 1s ease-in-out infinite;
}
.equalizer span:nth-child(1) { height: 40%; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 70%; animation-delay: 0.15s; }
.equalizer span:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.equalizer span:nth-child(4) { height: 60%; animation-delay: 0.45s; }
.equalizer span:nth-child(5) { height: 85%; animation-delay: 0.6s; }
.equalizer.paused span { animation-play-state: paused; height: 20% !important; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.volume-icon { color: var(--gray-light); width: 18px; height: 18px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: url('../assets/images/hero-banner.jpg') center 30%/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 45%, rgba(10,10,10,0.35) 100%);
  z-index: 1;
}

/* ===== Hero neon FX (burbujas + rayos) =====
   Nota: usa box-shadow como halo (no depende de mix-blend-mode ni de que
   el fondo sea oscuro en ese punto) para que el brillo se note siempre,
   incluso sobre zonas ya claras de la foto del hero. */
.hero-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.fx-bubble {
  position: absolute;
  border-radius: 50%;
  animation: fxFloat 9s ease-in-out infinite, fxPulse 3.5s ease-in-out infinite;
}
.fx-bubble-1 {
  width: 22px; height: 22px;
  right: 10%; top: 16%;
  background: #f97316;
  box-shadow: 0 0 30px 12px rgba(249,115,22,0.9), 0 0 70px 30px rgba(249,115,22,0.45);
  animation-delay: 0s, 0.3s;
}
.fx-bubble-2 {
  width: 16px; height: 16px;
  right: 26%; top: 52%;
  background: #ec4899;
  box-shadow: 0 0 26px 10px rgba(236,72,153,0.9), 0 0 60px 26px rgba(236,72,153,0.4);
  animation-delay: 1.2s, 0.8s;
  animation-duration: 11s, 5s;
}
.fx-bubble-3 {
  width: 14px; height: 14px;
  right: 4%; top: 58%;
  background: #22d3ee;
  box-shadow: 0 0 24px 9px rgba(34,211,238,0.9), 0 0 55px 24px rgba(34,211,238,0.4);
  animation-delay: 2.4s, 1.1s;
  animation-duration: 7.5s, 4.5s;
}
.fx-bubble-4 {
  width: 30px; height: 30px;
  right: -2%; top: 6%;
  background: #f97316;
  box-shadow: 0 0 40px 16px rgba(249,115,22,0.8), 0 0 90px 36px rgba(249,115,22,0.4);
  animation-delay: 0.6s, 0s;
  animation-duration: 13s, 6s;
}
.fx-bubble-5 {
  width: 12px; height: 12px;
  right: 38%; top: 20%;
  background: #ec4899;
  box-shadow: 0 0 22px 8px rgba(236,72,153,0.9), 0 0 50px 22px rgba(236,72,153,0.4);
  animation-delay: 1.8s, 1.6s;
  animation-duration: 8.5s, 3.8s;
}
.fx-bubble-6 {
  width: 18px; height: 18px;
  right: 18%; top: 74%;
  background: #a855f7;
  box-shadow: 0 0 26px 10px rgba(168,85,247,0.9), 0 0 60px 26px rgba(168,85,247,0.4);
  animation-delay: 0.9s, 2s;
  animation-duration: 10s, 4.2s;
}

.fx-streak {
  position: absolute;
  height: 3px;
  width: 45%;
  border-radius: 999px;
}
.fx-streak-1 {
  right: 2%;
  top: 30%;
  background: linear-gradient(90deg, rgba(249,115,22,0) 0%, rgba(249,115,22,1) 50%, rgba(249,115,22,0) 100%);
  box-shadow: 0 0 16px 3px rgba(249,115,22,0.8);
  transform: rotate(-14deg);
  animation: fxStreakMove 6s ease-in-out infinite;
}
.fx-streak-2 {
  width: 38%;
  right: 12%;
  top: 66%;
  background: linear-gradient(90deg, rgba(34,211,238,0) 0%, rgba(34,211,238,1) 50%, rgba(34,211,238,0) 100%);
  box-shadow: 0 0 16px 3px rgba(34,211,238,0.8);
  transform: rotate(10deg);
  animation: fxStreakMove2 7.5s ease-in-out infinite;
}

@keyframes fxFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-14px, -22px); }
}
@keyframes fxPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.75; }
}
@keyframes fxStreakMove {
  0%, 100% { opacity: 0.15; transform: rotate(-14deg) translateX(0); }
  50% { opacity: 0.65; transform: rotate(-14deg) translateX(20px); }
}
@keyframes fxStreakMove2 {
  0%, 100% { opacity: 0.15; transform: rotate(10deg) translateX(0); }
  50% { opacity: 0.6; transform: rotate(10deg) translateX(-18px); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.hero-text h1 .white { color: var(--white); }
.hero-text h1 .orange { color: var(--orange); }

.hero-subtitle {
  margin-top: 20px;
  max-width: 460px;
  color: var(--gray-light);
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-brand { display: flex; justify-content: center; }
.hero-brand-logo {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 0 40px rgba(249, 115, 22, 0.25));
}

/* ===== Nosotros ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.on-air-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid var(--pink);
  color: var(--pink);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 999px;
  text-shadow: 0 0 10px var(--pink);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.35);
}

.about-content .section-title { color: var(--orange); margin-bottom: 18px; }
.about-content p { color: var(--gray-light); margin-bottom: 26px; max-width: 480px; }

/* ===== Programación ===== */
.schedule { background: var(--bg-alt); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.schedule-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(249, 115, 22, 0.4);
}

.schedule-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.schedule-icon svg { width: 22px; height: 22px; }
.icon-orange { background: rgba(249,115,22,0.15); color: var(--orange); }
.icon-purple { background: rgba(168,85,247,0.15); color: var(--purple); }
.icon-pink { background: rgba(236,72,153,0.15); color: var(--pink); }
.icon-blue { background: rgba(59,130,246,0.15); color: var(--blue); }
.icon-green { background: rgba(34,197,94,0.15); color: var(--green); }

.schedule-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  min-height: 48px;
}
.schedule-dj { color: var(--gray-light); font-size: 0.85rem; margin-bottom: 6px; }
.schedule-time { color: var(--gray); font-size: 0.8rem; }

.center-btn { display: flex; justify-content: center; margin-top: 40px; }

/* ===== Noticias ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.news-card:hover img { transform: scale(1.03); }
.news-card h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.news-date { color: var(--gray); font-size: 0.8rem; }

/* ===== Galería ===== */
.gallery { background: var(--bg-alt); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.12); }

.gallery-item-logo {
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-logo { width: 70%; height: 70%; object-fit: contain; transition: transform 0.35s ease; }
.gallery-item-logo:hover .gallery-logo { transform: scale(1.12); }

/* ===== Contacto ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.9fr;
  gap: 50px;
}

.contact-info ul { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; color: var(--gray-light); font-size: 0.9rem; }
.contact-info svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }

.contact-form input,
.contact-form textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--orange); }
.contact-form input.invalid,
.contact-form textarea.invalid { border-color: #ef4444; }

.field-error { color: #ef4444; font-size: 0.75rem; min-height: 1em; }

.contact-form .btn { align-self: flex-start; }

.form-success {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-social h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 30px;
}
.contact-social h3:first-child { margin-top: 24px; }

.social-row { display: flex; gap: 12px; }
.social-row .social-circle { width: 42px; height: 42px; background: var(--bg-card); color: var(--white); border: 1px solid var(--border); }
.social-row .social-circle svg { width: 20px; height: 20px; }

.store-badges { display: flex; flex-direction: column; gap: 10px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.2s ease;
}
.store-badge:hover { border-color: var(--orange); }
.store-badge svg { width: 22px; height: 22px; color: var(--white); flex-shrink: 0; }
.store-badge span { font-size: 0.68rem; color: var(--gray); line-height: 1.3; }
.store-badge strong { color: var(--white); font-size: 0.82rem; }

/* ===== Footer ===== */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 30px 0; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { height: 54px; width: auto; }
.footer-brand p { color: var(--gray); font-size: 0.8rem; }

.footer-links { display: flex; gap: 12px; align-items: center; color: var(--gray); font-size: 0.82rem; }
.footer-links a:hover { color: var(--orange); }
.footer-links span { color: var(--border); }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(249,115,22,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* =======================================================
   RESPONSIVE
   ======================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { gap: 36px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-buttons { justify-content: center; }
  .hero-brand { margin-top: 30px; }
  .hero-brand-logo { max-width: 240px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 82px; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-link.active { border-bottom: 1px solid var(--border); }

  .header-socials { display: none; }
  .hamburger { display: flex; }

  .brand-logo { height: 66px; }

  .live-bar-subtitle { display: none; }
  .live-bar-right { gap: 10px; }
  .equalizer { display: none; }

  .hero { min-height: auto; }
  .hero-inner { padding-top: 40px; padding-bottom: 40px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { justify-content: center; width: 100%; }
  .hero-brand-logo { max-width: 190px; }

  .about-grid { grid-template-columns: 1fr; }

  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }

  .back-to-top { width: 44px; height: 44px; bottom: 18px; right: 18px; }
}

@media (max-width: 420px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
