﻿/* RDK HELLHÃ‹IM â€” mockup v3
   Aplicando BrandKit oficial (TomÃ¡s PÃ©rez CaamaÃ±o, mayo 2026):
   - Paleta: negro puro #000, blanco #FFF, rojo #CC0000 (acento) / #E00000 (RDK)
   - TipografÃ­a: RDK Display (scaleY 0.78), Longhaul (scaleY 0.72), Barlow Condensed
   - Solo fondo negro sÃ³lido o foto industrial B&W/sepia
   - Sistema austero, brutal, sin decoraciÃ³n */

/* ============== @font-face ============== */
@font-face {
  font-family: 'Longhaul';
  src: url('../fonts/Longhaul.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'RDK Display';
  src: url('../fonts/rdk-display-black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'RDK Display';
  src: url('../fonts/rdk-display-bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* Barlow Condensed (Google Fonts) â€” se carga vÃ­a link en el HTML */

:root {
  /* Paleta BrandKit oficial */
  --bg: #000000;            /* HELLHEIM BLACK */
  --fg: #FFFFFF;            /* HELLHEIM WHITE */
  --cream: #F5F0E0;         /* HELLHEIM CREAM */
  --hh-red: #CC0000;        /* HELLHEIM RED â€” acento */
  --rdk-red: #E00000;       /* RDK RED â€” exclusivo logo RDK */
  --muted: #AAAAAA;         /* Body text */
  --line: #1a1a1a;          /* Divisores sutiles */
  --line-strong: #2a2a2a;

  /* TipografÃ­a */
  --font-display: 'RDK Display', 'Arial Black', sans-serif;
  --font-rdk: 'Longhaul', serif;
  --font-ui: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --pad-x: 48px;
  --tr: 200ms ease;
}

@media (max-width: 900px) { :root { --pad-x: 24px; } }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; transition: opacity var(--tr); }
a:hover { opacity: 0.65; }

/* ---- Utilities BrandKit ---- */
/* LABEL/EYEBROW oficial â€” siempre en rojo CC0000, tracking enorme */
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hh-red);
}
/* SUBHEAD/INFO oficial â€” Barlow Condensed, tracking medio */
.subhead {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}
.muted { color: var(--muted); font-size: 14px; }
.ext { color: var(--muted); margin-left: 4px; font-size: 0.85em; }

/* Display HellhÃ«im â€” RDK Display con scaleY 0.78 (modificaciÃ³n oficial) */
.hh-display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  transform: scaleY(0.78);
  transform-origin: center;
  display: inline-block;
  line-height: 1.4; /* compensa el scaleY visualmente */
}
.hh-headline {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: center;
  display: inline-block;
  line-height: 1.4;
}

/* ---- Skip link (accesibilidad: salta al main por teclado) ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hh-red);
  color: var(--fg);
  padding: 12px 18px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 9999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

/* ---- Navbar ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 16px var(--pad-x);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

/* Brand: lockup oficial HELLHÃ‹IM + RDK con lÃ­nea divisoria */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 36px;
}
.brand-hh {
  height: 32px;
  width: auto;
}
.brand-divider {
  width: 1px;
  height: 24px;
  background: var(--line-strong);
}
.brand-rdk {
  height: 14px;
  width: auto;
}
.brand:hover { opacity: 1; }
.brand:hover .brand-hh,
.brand:hover .brand-rdk { opacity: 0.7; transition: opacity var(--tr); }

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* WordPress wp_nav_menu envuelve los items en <li> — neutralizar bullets/márgenes */
.nav-links li { list-style: none; margin: 0; padding: 0; }
.nav-links a { display: inline-block; padding: 6px 2px; }
.nav-links a:focus-visible { outline: 2px solid var(--hh-red); outline-offset: 4px; }

.lang {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  letter-spacing: 0.15em;
}
.lang a { color: var(--muted); }
.lang a.active { color: var(--fg); }
.lang span { opacity: 0.3; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 60;
  position: relative;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--fg); transition: transform var(--tr), opacity var(--tr); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--hh-red); outline-offset: 2px; }

/* Bloque CTA del menú móvil — oculto en desktop, activado en mobile via @media */
.nav-mobile-cta { display: none; }

/* ============== HERO â€” featured con flyer + carousel ==============
   VersiÃ³n sobria: flyer moderado izq, info compacta der.
   Si hay >1 evento, rota como carousel (auto 8s + flechas + dots). */
.hero-featured {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--pad-x) 32px;
  position: relative;
}
.hero-slides { position: relative; }
.hero-featured-card {
  display: none;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.015);
  animation: heroFade 420ms ease;
}
.hero-featured-card.is-active { display: grid; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-featured-card.is-hellheim {
  border-color: var(--hh-red);
  border-left-width: 3px;
}

/* Controls â€” flechas + dots + counter */
.hero-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
}
.hero-controls.is-hidden { display: none; }
.hero-arrow {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transition: all var(--tr);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.hero-arrow:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.hero-arrow:focus-visible { outline: 2px solid var(--hh-red); outline-offset: 2px; }
.hero-dots {
  display: flex;
  gap: 10px;
  margin: 0 12px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--line-strong);
  border: none;
  padding: 0;
  border-radius: 50%;
  transition: background var(--tr), transform var(--tr);
  cursor: pointer;
}
.hero-dot:hover { background: var(--muted); }
.hero-dot.is-active { background: var(--fg); transform: scale(1.2); }
.hero-dot:focus-visible { outline: 2px solid var(--hh-red); outline-offset: 3px; }
.hero-counter { min-width: 56px; text-align: right; }
.hero-counter .current { color: var(--fg); }
.hero-featured-poster {
  aspect-ratio: 4 / 5;
  background: var(--line);
  overflow: hidden;
  transition: opacity var(--tr);
}
.hero-featured-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-featured-poster:hover { opacity: 0.85; }
.hero-featured-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}
.hero-featured-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-featured-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left top;
}
.hero-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.hero-featured-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-featured-meta .v {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--fg);
  text-transform: uppercase;
}
.hero-featured-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Variante para HellhÃ«im destacado en hero â€” borde rojo izq */
.hero-featured-card.is-hellheim {
  border-color: var(--hh-red);
  border-left-width: 3px;
}

/* Hero editorial (versiÃ³n anterior, conservada para fallback) */
.hero-editorial {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad-x) 48px;
}

.hero-tag {
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(56px, 11vw, 160px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 1100px;
}

.hero-headline em {
  font-style: normal;
  color: var(--hh-red);
}

.hero-meta-row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 32px;
}
.hero-meta-row .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-row .v {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--fg);
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--fg);
  transition: all var(--tr);
  white-space: nowrap;
  color: var(--fg);
}
.btn-primary {
  background: var(--hh-red);
  border-color: var(--hh-red);
  color: var(--fg);
}
.btn-primary:hover {
  background: transparent;
  border-color: var(--hh-red);
  color: var(--hh-red);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
}
.btn-ghost:hover {
  background: var(--fg);
  color: var(--bg);
  opacity: 1;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
}

/* ============== SECTION ============== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad-x);
}
.section-divider { border-top: 1px solid var(--line); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============== EVENT LIST (cartelera editorial) ============== */
.event-list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 90px 70px 1fr 220px auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: background var(--tr);
}
.event-row:last-child { border-bottom: 1px solid var(--line); }
.event-row:hover { background: rgba(255,255,255,0.02); }

.event-date {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--fg);
}
.event-day {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.event-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--fg);
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left center;
  line-height: 1.3;
}
.event-name a:hover { color: var(--hh-red); opacity: 1; }
.event-venue {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Row HellhÃ«im destacado â€” borde rojo izquierdo */
.event-row.is-hellheim {
  border-left: 3px solid var(--hh-red);
  padding-left: 16px;
  margin-left: -19px;
}
.event-row.is-hellheim .event-name a { color: var(--hh-red); }

/* Tag "EN ANUNCIO" como pill compacta â€” no se corre con el venue */
.event-row .tag-announce {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hh-red);
  border: 1px solid var(--hh-red);
  padding: 4px 10px;
  margin-right: 12px;
  white-space: nowrap;
}

/* ============== HELLHÃ‹IM TEASER ============== */
.hellheim-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hellheim-teaser-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}
.hellheim-mark {
  width: 80px;
  height: auto;
}
.teaser-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 120px);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left top;
}
.teaser-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
}

/* ============== RECENT (grid de posters pasados) ============== */
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recent-card { display: flex; flex-direction: column; gap: 12px; }
.recent-poster {
  aspect-ratio: 4 / 5;
  background: var(--line);
  overflow: hidden;
  transition: opacity var(--tr);
}
.recent-poster img { width: 100%; height: 100%; object-fit: cover; }
.recent-card:hover .recent-poster { opacity: 0.75; }
.recent-info { display: flex; flex-direction: column; gap: 4px; }
.recent-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left center;
  line-height: 1.3;
}
.recent-date {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============== NEWSLETTER ============== */
.newsletter { border-top: 1px solid var(--line); }
.newsletter-intro { max-width: 560px; margin-bottom: 24px; }
.newsletter-form {
  display: flex;
  max-width: 560px;
  border: 1px solid var(--fg);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--fg);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--fg);
  color: var(--bg);
  border: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background var(--tr);
}
.newsletter-form button:hover { background: var(--hh-red); color: var(--fg); }

/* ============== FOOTER ============== */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px var(--pad-x) 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }

/* Brand footer = isotipo + divider + RDK en lÃ­nea (mismo lockup que header) */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  height: 32px;
}
.footer-brand img.fb-hh { height: 28px; width: auto; }
.footer-brand img.fb-rdk { height: 11px; width: auto; opacity: 0.85; }
.footer-brand-divider {
  width: 1px;
  height: 20px;
  background: var(--line-strong);
}

.footer-col h4 {
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--hh-red);
  text-transform: uppercase;
}
.footer-col a { font-size: 14px; color: var(--fg); }
.footer-col a:hover { color: var(--hh-red); opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-family: var(--font-ui);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-bottom a { color: var(--muted); }

/* ============== EVENT DETAIL â€” layout RA-like ============== */
.event-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.event-back {
  padding: 24px 0 16px;
}
.event-back a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.event-detail-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  padding: 32px 0 64px;
  align-items: start;
}
.event-detail-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.event-detail-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left top;
}
.event-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  color: var(--fg);
}
.pill-strong { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.event-detail-poster {
  aspect-ratio: 4 / 5;
  background: var(--line);
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.event-detail-poster img { width: 100%; height: 100%; object-fit: cover; }

/* Sticky CTA siempre visible en desktop */
.event-cta-strip {
  position: sticky;
  top: 70px;
  z-index: 30;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 16px var(--pad-x);
  margin: 0 calc(var(--pad-x) * -1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.event-cta-info {
  display: flex;
  gap: 32px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.event-cta-info .price {
  color: var(--hh-red);
  font-size: 14px;
}

/* Lineup table tipo BrandKit */
.lineup-table {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.lineup-row {
  display: grid;
  grid-template-columns: 1fr auto 120px 100px;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.lineup-row:last-child { border-bottom: 1px solid var(--line); }
.lineup-row .artist-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left center;
  line-height: 1.3;
}
.lineup-row .set-tag {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hh-red);
  border: 1px solid var(--hh-red);
  padding: 4px 8px;
}
.lineup-row .set-type {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.lineup-row .set-role {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* Lineup por stages (Radikals con 2 stages) */
.stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 24px;
}
.stage-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--hh-red);
}
.stage-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left center;
  line-height: 1.3;
}
.stage-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}
.lineup { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.lineup li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left center;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.lineup .meta {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transform: scaleY(1.28); /* compensa el scaleY del padre para que se vea normal */
  transform-origin: left center;
}
.lineup .b2b {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  transform: scaleY(1.28);
}

/* Info table â€” fecha, hora, venue, edad, dress */
.info-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  margin-top: 24px;
}
.info-table > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.info-table dt {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--hh-red);
  text-transform: uppercase;
}
.info-table dd {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--fg);
  text-transform: uppercase;
}

/* Description editorial */
.event-description {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.event-description p + p { margin-top: 16px; }

/* ============== ARTISTS PAGE (residentes) â€” placeholder simple ============== */

/* ============== PAGE HEAD ============== */
.page-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px var(--pad-x) 24px;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  transform: scaleY(0.78);
  transform-origin: left top;
  margin-bottom: 12px;
}

/* ============== FILTROS ============== */
.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
  transition: all var(--tr);
}
.filter-btn:hover { color: var(--fg); border-color: var(--fg); }
.filter-btn.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 16px; z-index: 60; }
  .lang { display: none; }
  .nav-toggle { display: flex; justify-self: end; z-index: 62; }

  /* Header siempre visible por encima del overlay */
  body.menu-open { overflow: hidden; }
  body.menu-open .nav { background: #000; border-bottom-color: var(--line-strong); }

  /* Overlay del menú — empieza debajo del header, no encima */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    padding: 24px 0 80px;
    background: #000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 55;
  }
  .nav-links.open { display: flex; }
  .nav-links ul,
  .nav-links > ul { width: 100%; display: flex; flex-direction: column; gap: 0; }
  .nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:first-child { border-top: 1px solid var(--line); }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    width: 100%;
    color: var(--fg);
    transition: background var(--tr), color var(--tr), padding-left var(--tr);
  }
  .nav-links a::after {
    content: "→";
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 18px;
    color: var(--muted);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--tr), transform var(--tr), color var(--tr);
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--line);
    padding-left: 36px;
    color: var(--fg);
    outline: none;
  }
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--hh-red);
  }
  .nav-links .ext { display: none; }
  .nav-links a[href*="instagram"]::after,
  .nav-links a[href*="youtube"]::after,
  .nav-links a[target="_blank"]::after { content: "↗"; opacity: 1; color: var(--muted); }

  /* Bloque "MIRA EN VIVO" / CTAs — fijo al fondo cuando el menú está abierto */
  .nav-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px 28px;
    background: linear-gradient(to top, #000 70%, rgba(0,0,0,0.85));
    border-top: 1px solid var(--line-strong);
    flex-direction: column;
    gap: 10px;
    z-index: 56;
  }
  body.menu-open .nav-mobile-cta { display: flex; }
  .nav-mobile-cta a {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 18px;
    border: 1px solid var(--fg);
    text-align: center;
    color: var(--fg);
    background: transparent;
    transition: all var(--tr);
  }
  .nav-mobile-cta a:hover { background: var(--fg); color: var(--bg); }
  .nav-mobile-cta a.primary { background: var(--hh-red); border-color: var(--hh-red); }
  .nav-mobile-cta a.primary:hover { background: #ff1a1a; border-color: #ff1a1a; color: var(--fg); }
  .nav-mobile-cta .lang-mobile {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--muted);
  }
  .nav-mobile-cta .lang-mobile a {
    padding: 4px 10px;
    font-size: 11px;
    border: none;
    color: var(--muted);
  }
  .nav-mobile-cta .lang-mobile a.active { color: var(--fg); }

  .hero-editorial { padding: 48px var(--pad-x) 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; }

  .hero-featured { padding: 32px var(--pad-x) 16px; }
  .hero-featured-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  .hero-featured-poster { max-width: 280px; }
  .hero-featured-cta { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }

  .event-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  .event-actions { margin-top: 12px; }
  .event-row.is-hellheim { margin-left: 0; padding-left: 16px; }

  .recent-grid { grid-template-columns: 1fr; gap: 32px; }

  .hellheim-teaser { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 56px var(--pad-x); }

  .event-detail-hero { grid-template-columns: 1fr; gap: 32px; }
  .event-cta-strip { position: static; margin: 0; padding: 16px 0; }
  .info-table { grid-template-columns: 1fr; }
  .stages { grid-template-columns: 1fr; gap: 40px; }
  .lineup-row { grid-template-columns: 1fr; gap: 6px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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

