/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --black:        #080808;
  --surface:      #111111;
  --surface-2:    #181818;
  --gold:         #c9a84c;
  --gold-dim:     rgba(201, 168, 76, 0.12);
  --gold-border:  rgba(201, 168, 76, 0.22);
  --text:         #e8e8e8;
  --text-muted:   #7a7a7a;

  /* Spacing (4px base) */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-6:   24px;
  --sp-8:   32px;
  --sp-12:  48px;
  --sp-16:  64px;
  --sp-24:  96px;

  /* Type */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --text-xs:   clamp(0.7rem,   0.65rem + 0.2vw,  0.8rem);
  --text-sm:   clamp(0.8rem,   0.75rem + 0.2vw,  0.875rem);
  --text-base: clamp(1rem,     0.95rem + 0.2vw,  1.0625rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.5vw,     1.3rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1vw,     2rem);
  --text-2xl:  clamp(2rem,     1.5rem + 2vw,     3.25rem);

  /* Misc */
  --nav-h:   72px;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

html { font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
ul   { list-style: none; }
a    { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(var(--sp-4), 5vw, var(--sp-16));
}

.section {
  position: relative;
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-24));
}

section[id] {
  scroll-margin-top: var(--nav-h);
}

/* Neon gold separator at the top of every section */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 168, 76, 0.5) 15%,
    rgba(201, 168, 76, 0.95) 50%,
    rgba(201, 168, 76, 0.5) 85%,
    transparent 100%
  );
  box-shadow:
    0 0 6px  rgba(201, 168, 76, 0.7),
    0 0 18px rgba(201, 168, 76, 0.35),
    0 0 40px rgba(201, 168, 76, 0.12);
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

.label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

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

.section-header { margin-bottom: clamp(var(--sp-8), 5vw, var(--sp-12)); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: 10px 26px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: all 220ms var(--ease);
  border: 1.5px solid transparent;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(232, 232, 232, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  min-height: 36px;
  padding: 6px 18px;
  font-size: var(--text-xs);
}

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  background-repeat: repeat;
  animation: grain 6s steps(8) infinite;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  15%  { transform: translate(-4%, -8%); }
  30%  { transform: translate(6%, -3%); }
  45%  { transform: translate(-3%, 7%); }
  60%  { transform: translate(5%, 3%); }
  75%  { transform: translate(-6%, -4%); }
  90%  { transform: translate(4%, 6%); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: var(--sp-3) 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}


/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 350ms var(--ease), border-color 350ms var(--ease);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(6, 6, 10, 0.25);
  backdrop-filter: blur(80px) saturate(200%) brightness(0.72);
  -webkit-backdrop-filter: blur(80px) saturate(200%) brightness(0.72);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 8px 32px rgba(0, 0, 0, 0.28);
}

.nav-inner {
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(var(--sp-4), 5vw, var(--sp-16));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

@media (max-width: 767px) {
  .nav-inner { justify-content: center; }
}

@media (min-width: 768px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}


.nav-links {
  display: none;
  gap: var(--sp-3);
  align-items: center;
  white-space: nowrap;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 200ms;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 220ms var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-bolt {
  display: flex;
  align-items: center;
  color: var(--gold);
  opacity: 0.7;
  pointer-events: none;
  flex-shrink: 0;
}

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) { .nav-burger { display: none; } }

.burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  flex-shrink: 0;
}

.burger-icon span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all 260ms var(--ease);
  transform-origin: center;
}
.nav-burger.open .burger-icon span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open .burger-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open .burger-icon span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.burger-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 200ms var(--ease);
}
.nav-burger.open .burger-label { opacity: 0; }

/* ============================================================
   MOBILE MENU — liquid glass
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  /* base translúcido oscuro — deja pasar los colores del fondo */
  background: rgba(6, 6, 10, 0.38);
  /* blur fuerte + saturate para que se vean los colores detrás */
  backdrop-filter: blur(72px) saturate(200%) brightness(0.72);
  -webkit-backdrop-filter: blur(72px) saturate(200%) brightness(0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms var(--ease);
}
/* capa especular: destello suave diagonal, como en visionOS */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    transparent 65%
  );
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  position: relative; /* queda encima del ::before especular */
  z-index: 1;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 200ms;
}
.mobile-link:hover,
.mobile-link:active { color: var(--gold); }

.mobile-socials {
  display: flex;
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}
.mobile-socials a {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  transition: color 200ms;
}
.mobile-socials a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.3)  0%,
      rgba(8,8,8,0.15) 35%,
      rgba(8,8,8,0.6)  70%,
      rgba(8,8,8,0.97) 100%),
    radial-gradient(ellipse at center,
      transparent 40%,
      rgba(8,8,8,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: var(--sp-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.hero-logo {
  width: clamp(240px, 54vw, 560px);
  height: auto;
  animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.hero-sub {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 1s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  animation: fadeUp 1s 0.4s var(--ease-out) both;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: block;
  animation: fadeIn 1s 1.2s var(--ease-out) both;
}

.scroll-cue-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 0.3; transform: scaleY(0.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   BIO
   ============================================================ */
.bio {
  background: var(--surface);
  padding-block: 0;
  overflow: hidden;
}

.bio-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

@media (min-width: 900px) {
  .bio-inner { grid-template-columns: 1fr 1fr; min-height: 700px; }
}

/* Text side */
.bio-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(var(--sp-6), 4vw, var(--sp-8)) clamp(var(--sp-4), 5vw, var(--sp-16));
}

.bio-text h2 {
  margin-bottom: var(--sp-6);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.bio-quote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-6);
  line-height: 1.5;
  max-width: 52ch;
}

.bio-text p {
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  max-width: 48ch;
}
.bio-text p:last-of-type { margin-bottom: 0; }
.bio-text em { color: var(--text); font-style: italic; }

.bio-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
}

/* Photo side */
.bio-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

@media (min-width: 900px) {
  .bio-photo { min-height: unset; }
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient fade blending photo into text on desktop */
.bio-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--surface) 0%,
    transparent 30%
  );
  pointer-events: none;
}

@media (max-width: 899px) {
  .bio-photo-fade {
    background: linear-gradient(
      to bottom,
      var(--surface) 0%,
      transparent 20%,
      transparent 80%,
      var(--surface) 100%
    );
  }
}

/* ============================================================
   SHOWS
   ============================================================ */
.shows { background: var(--black); }

.empty-state {
  text-align: center;
  padding: clamp(var(--sp-12), 8vw, var(--sp-24)) var(--sp-8);
  border: 1px solid var(--gold-border);
  background: var(--surface);
}
.empty-state p { margin-bottom: var(--sp-2); }
.empty-state .muted { margin-bottom: var(--sp-6); }
.empty-socials {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
}

/* ============================================================
   BANDSINTOWN WIDGET OVERRIDES
   ============================================================ */
.bit-widget {
  font-family: var(--font-body) !important;
  background: transparent !important;
}

.bit-widget .bit-event {
  border-bottom: 1px solid var(--gold-border) !important;
  background: transparent !important;
  padding: var(--sp-4) 0 !important;
}

.bit-widget .bit-event:first-child {
  border-top: 1px solid var(--gold-border) !important;
}

.bit-widget .bit-date,
.bit-widget .bit-venue,
.bit-widget .bit-location {
  color: var(--text) !important;
  font-family: var(--font-body) !important;
}

.bit-widget .bit-date {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.bit-widget a {
  color: var(--gold) !important;
  border-color: var(--gold-border) !important;
  transition: all 200ms !important;
}

.bit-widget a:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Botones Tickets y Request a Show */
.bit-widget .bit-offers.bit-button {
  background: transparent !important;
  background-color: transparent !important;
  border: 1.5px solid var(--gold) !important;
}

.bit-widget .bit-offers.bit-button .bit-offers-text {
  color: var(--gold) !important;
}

.bit-widget .bit-offers.bit-button:hover {
  background: var(--gold) !important;
}

.bit-widget .bit-offers.bit-button:hover .bit-offers-text {
  color: var(--black) !important;
}

.bit-widget .bit-play-my-city-button {
  background: transparent !important;
  background-color: transparent !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
}

.bit-widget .bit-play-my-city-button:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Hover en fila de concierto — texto negro sobre fondo dorado */
.bit-widget .bit-details:hover .bit-date,
.bit-widget .bit-details:hover .bit-startTime,
.bit-widget .bit-details:hover .bit-venue,
.bit-widget .bit-details:hover .bit-location,
.bit-widget .bit-details:hover span {
  color: var(--black) !important;
}

.bit-widget .bit-no-events-label {
  color: var(--text-muted) !important;
  font-family: var(--font-body) !important;
  text-align: center !important;
  padding: var(--sp-12) 0 !important;
}

.bit-top-track-button {
  display: none !important;
}

/* ============================================================
   MUSIC / DISCOGRAPHY
   ============================================================ */
.music { background: var(--surface); }

.albums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-3), 2vw, var(--sp-6));
}

/* ── Album card base ── */
.album-card {
  background: var(--black);
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(201, 168, 76, 0.2),
              0 0 24px rgba(201, 168, 76, 0.08);
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.album-cover:hover img { transform: scale(1.02); }

.album-info {
  padding: var(--sp-4);
  border-top: 1px solid var(--gold-border);
}
.album-info h3  { font-size: var(--text-lg); margin-bottom: var(--sp-1); }
.album-meta {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.album-formats { display: flex; flex-wrap: wrap; gap: var(--sp-1); }
.format-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

/* ── Featured album — ocupa la fila completa, layout horizontal ── */
.album-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--black);
}

@media (min-width: 600px) {
  .album-featured {
    grid-template-columns: 1fr 1fr;
  }
  .album-featured .album-cover {
    aspect-ratio: auto;
    min-height: 340px;
  }
}

.album-featured .album-cover img {
  object-position: center;
}

.album-featured .album-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(var(--sp-6), 4vw, var(--sp-12));
  border-top: none;
  border-left: 1px solid var(--gold-border);
  gap: var(--sp-4);
}

.album-featured .album-info h3 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
  margin-bottom: 0;
}

.album-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-bottom: var(--sp-1);
}

.album-cta {
  align-self: flex-start;
  margin-top: var(--sp-2);
  gap: var(--sp-2);
}

/* Mobile: featured stacks normalmente */
@media (max-width: 599px) {
  .albums-grid { grid-template-columns: 1fr; }
  .album-featured .album-info { border-left: none; border-top: 1px solid var(--gold-border); }
}

/* ============================================================
   VIDEOS
   ============================================================ */
.videos {
  background: var(--black);
  position: relative;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-16));
}

@media (min-width: 768px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
}

/* Ghost number */
.video-item {
  position: relative;
}

.video-num {
  position: absolute;
  top: -0.45em;
  left: -0.05em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  color: rgba(201, 168, 76, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Outer frame */
.video-wrap {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  border-bottom: 3px solid var(--gold);
  background: var(--surface-2);
}

/* Facade — thumbnail + play button */
.video-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease), filter 400ms var(--ease);
  filter: brightness(0.82) saturate(0.9);
}

.video-facade:hover .video-thumb {
  transform: scale(1.05);
  filter: brightness(0.45) saturate(0.5);
}

/* Play button */
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.video-play-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.55);
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 280ms var(--ease),
              border-color 280ms var(--ease),
              background 280ms var(--ease),
              box-shadow 280ms var(--ease);
}

.video-play-ring svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-left: 4px;
  transition: color 280ms var(--ease);
}

.video-facade:hover .video-play-ring {
  transform: scale(1.12);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.45),
              0 0 70px rgba(201, 168, 76, 0.15);
}

/* Video title */
.video-title {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

/* Live iframe (after facade is replaced) */
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   MERCH
   ============================================================ */
.merch { background: var(--black); }

.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-3), 2vw, var(--sp-6));
}

@media (min-width: 900px) {
  .merch-grid { grid-template-columns: repeat(4, 1fr); }
}

.merch-item {
  display: block;
  background: var(--surface-2);
  overflow: hidden;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.merch-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.8),
              0 0 0 1px rgba(201,168,76,0.35),
              0 0 32px rgba(201,168,76,0.1);
}

.merch-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}

.merch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease), filter 400ms var(--ease);
  filter: brightness(0.8) saturate(0.75);
}

.merch-item:hover .merch-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.merch-info {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.merch-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.merch-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.merch-price {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.merch-footer {
  margin-top: clamp(var(--sp-8), 4vw, var(--sp-12));
  display: flex;
  justify-content: center;
}

/* ============================================================
   PRESS / EPK
   ============================================================ */
.press {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-block: 0;
}

/* Full-bleed background photo */
.press-bg {
  position: absolute;
  inset: 0;
}

.press-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.38) saturate(0.65);
}

/* Vignette: darker edges, photo visible in center */
.press-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      var(--black) 0%,
      rgba(8,8,8,0.35) 20%,
      rgba(8,8,8,0.35) 80%,
      var(--black) 100%),
    linear-gradient(to right,
      rgba(8,8,8,0.6) 0%,
      transparent 25%,
      transparent 75%,
      rgba(8,8,8,0.6) 100%);
}

/* Content sits above the photo */
.press-container {
  position: relative;
  z-index: 1;
  padding-block: clamp(var(--sp-24), 16vw, 180px);
}

.press-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-8);
}

.press-desc {
  color: var(--text-muted);
  max-width: 44ch;
  margin: var(--sp-3) auto 0;
}

.press-downloads {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

.press-dl {
  min-width: 200px;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--black); }

.booking-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-8);
}

.booking-header p {
  color: var(--text-muted);
  max-width: 44ch;
  margin: var(--sp-3) auto 0;
}

.booking-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-8) clamp(var(--sp-8), 8vw, var(--sp-16));
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--gold);
  width: 100%;
  max-width: 480px;
}

.booking-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.booking-role {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.booking-cta {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-16));
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.6;
  transition: opacity 250ms;
}
.footer-logo-link:hover .footer-logo { opacity: 0.9; }

.social-nav { display: flex; gap: var(--sp-4); }
.social-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  transition: color 200ms;
}
.social-nav a:hover { color: var(--gold); }
.social-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.social-nav svg { width: 20px; height: 20px; }

.footer-copy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   SCROLL REVEAL — activar al final cuando todo el contenido esté listo
   ============================================================ */
.reveal         { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes glitchEntry {
  /* Aparición */
  0%    { opacity: 0; transform: translateY(14px); filter: none; clip-path: inset(0); }
  6%    { opacity: 1; transform: translateY(0); }

  /* ZAP #1 — eléctrico, RGB split rojo + cian */
  7%    { transform: translateX(-14px) skewX(-9deg);
          clip-path: inset(4% 0 68% 0);
          filter: drop-shadow(-18px 0 0 rgb(255,0,55)) drop-shadow(18px 0 0 rgb(0,225,255)) brightness(2.5); }
  8%    { transform: translateX( 16px) skewX( 7deg);
          clip-path: inset(62% 0 4% 0);
          filter: drop-shadow( 16px 0 0 rgb(255,0,55)) drop-shadow(-16px 0 0 rgb(0,225,255)) brightness(0.4); }
  9%    { transform: translateX( -9px);
          clip-path: inset(22% 0 42% 0);
          filter: drop-shadow(-10px 0 0 rgb(255,0,55)) drop-shadow(10px 0 0 rgb(0,225,255)); }
  10%   { transform: translateX(  5px);
          clip-path: inset(48% 0 12% 0);
          filter: drop-shadow(  6px 0 0 rgb(255,0,55)) drop-shadow(-6px 0 0 rgb(0,225,255)); }
  11%   { transform: none; clip-path: inset(0); filter: none; }

  /* ZAP #2 — segundo destello rápido */
  14%   { transform: translateX(-7px) skewX(-3deg);
          clip-path: inset(72% 0 0 0);
          filter: drop-shadow(-12px 0 0 rgb(255,0,55)) drop-shadow(12px 0 0 rgb(0,225,255)) brightness(2); }
  15%   { transform: none; clip-path: inset(0); filter: none; }

  /* Estable */
  58%   { transform: none; clip-path: inset(0); filter: none; }

  /* ZAP #3 — chispa final */
  59%   { transform: translateX(6px);
          clip-path: inset(33% 0 28% 0);
          filter: drop-shadow(-9px 0 0 rgb(255,0,55)) drop-shadow(9px 0 0 rgb(0,225,255)) brightness(1.8); }
  60%   { transform: none; clip-path: inset(0); filter: none; }

  100%  { opacity: 1; transform: none; clip-path: inset(0); filter: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

/* Gold neon glow on top edge — same as section separators */
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 168, 76, 0.5) 15%,
    rgba(201, 168, 76, 0.95) 50%,
    rgba(201, 168, 76, 0.5) 85%,
    transparent 100%
  );
  box-shadow:
    0 0 6px  rgba(201, 168, 76, 0.7),
    0 0 18px rgba(201, 168, 76, 0.35),
    0 0 40px rgba(201, 168, 76, 0.12);
  pointer-events: none;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) clamp(var(--sp-4), 5vw, var(--sp-16));
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
}

/* Logo de la banda como icono */
.cookie-banner__icon {
  flex-shrink: 0;
  width: 90px;
  height: 45px;
  background-color: var(--gold);
  -webkit-mask-image: url('assets/Hitten logo contraste negro.png');
  mask-image: url('assets/Hitten logo contraste negro.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center left;
  mask-position: center left;
}

.cookie-banner__icon img {
  display: none;
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.cookie-banner__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2) var(--sp-6);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.cookie-btn--decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(122, 122, 122, 0.35);
}

.cookie-btn--decline:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-weight: 700;
}

.cookie-btn--accept:hover {
  background: #e0bb5a;
  border-color: #e0bb5a;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.45);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-wrap: wrap;
    gap: var(--sp-4);
  }
  .cookie-banner__icon {
    display: none;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    justify-content: center;
  }
}
