/* ============================================================
   SOLDADO | SOLDI ON THE BEAT — Landing Page
   Estética: cyberpunk / drill. Negro profundo, grises metálicos,
   acento rojo (artista) y azul + blanco (producción).
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-2: #0e0f12;
  --card: #121317;
  --card-2: #17181d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --txt: #f4f5f7;
  --muted: #8a9099;
  --dim: #5a5f68;

  --neon: #ff2b3e;
  --neon-2: #2e86ff;
  --blood: #ff2a3c;
  --blue-glow: #2e86ff;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --shadow-neon: 0 0 18px rgba(255, 43, 62, 0.45), 0 0 48px rgba(255, 43, 62, 0.18);
  --shadow-neon-sm: 0 0 12px rgba(255, 43, 62, 0.35);
  --shadow-blue: 0 0 18px rgba(46, 134, 255, 0.5), 0 0 48px rgba(46, 134, 255, 0.22);
  --shadow-blue-sm: 0 0 12px rgba(46, 134, 255, 0.4);

  --radius: 14px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --max-w: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 43, 62, 0.09), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255, 43, 62, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #070708 100%);
  color: var(--txt);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.015) 4px
  );
}

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

ul {
  list-style: none;
}

.container {
  width: min(var(--max-w), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* ---------- Texturas ---------- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Navegación ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(var(--max-w), 100% - var(--gutter) * 2);
  margin-inline: auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.brand-dot {
  color: var(--neon);
  text-shadow: var(--shadow-neon-sm);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--txt);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--neon);
  color: var(--neon);
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: var(--neon);
  color: #000;
  box-shadow: var(--shadow-neon-sm);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--txt);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  z-index: 1;
  background: #070708;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/IMG_3157.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.92) 0%, rgba(7, 7, 8, 0.55) 55%, rgba(7, 7, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.35) 0%, rgba(7, 7, 8, 0.1) 40%, rgba(7, 7, 8, 0.65) 85%, #070708 100%);
}

.hero-glow {
  position: absolute;
  inset: auto;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  z-index: 2;
  background: radial-gradient(circle, rgba(255, 43, 62, 0.22), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--neon);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 13vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-sub {
  display: block;
  font-size: 0.52em;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 0.35em;
}

.hero-lead {
  margin-top: 1.6rem;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--txt);
}

.hero-tagline {
  margin-top: 0.4rem;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  color: var(--muted);
  max-width: 34ch;
}

.hero-tagline::before {
  content: '“';
  color: var(--neon);
}

.hero-tagline::after {
  content: '”';
  color: var(--neon);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-stats span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--neon);
  color: #fff;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 43, 62, 0.7), 0 0 70px rgba(255, 43, 62, 0.3);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--txt);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--shadow-neon-sm);
}

/* ---------- Secciones base ---------- */
section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.accent {
  color: var(--neon);
}

/* ---------- Biografía ---------- */
.bio {
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.bio-text {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 60ch;
}

.bio-muted {
  color: var(--dim);
  font-size: 0.95rem;
}

.bio-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-neon-sm);
}

.bio-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ---------- Álbum ---------- */
.album {
  background: linear-gradient(180deg, transparent, var(--bg-2) 20%, var(--bg-2) 80%, transparent);
}

.album-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.album-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 10% 0%, rgba(255, 43, 62, 0.07), transparent 60%);
  pointer-events: none;
}

.album-cover {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background:
    linear-gradient(140deg, #0c0d10, #1a1c22 50%, #0e0f13);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.album-cover img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 43, 62, 0.4);
  border-radius: 10px;
  box-shadow: inset 0 0 24px rgba(255, 43, 62, 0.14);
  pointer-events: none;
}

.album-date {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.album-date strong {
  color: var(--neon);
}

.album-desc {
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 1.8rem;
}

/* ---------- Badge "Próximamente" ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  background: var(--neon);
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  box-shadow: var(--shadow-neon-sm);
  white-space: nowrap;
}

.badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  animation: badge-pulse 1.2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

/* ---------- Último lanzamiento ---------- */
.release-card {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 320px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(255, 43, 62, 0.12), transparent 60%),
    var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.release-info .badge {
  margin-bottom: 1.2rem;
}

.release-info .section-title {
  margin-bottom: 1rem;
}

.release-text {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 1.8rem;
}

.release-info .btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.release-art {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 43, 62, 0.5);
  box-shadow: 0 0 40px rgba(255, 43, 62, 0.25), inset 0 0 30px rgba(255, 43, 62, 0.12);
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  justify-self: center;
  position: relative;
}

.release-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.release-art::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 43, 62, 0.35);
  border-radius: 10px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/* ---------- Shows ---------- */
.shows {
  background: linear-gradient(180deg, var(--bg-2) 0%, transparent 40%);
}

.shows-intro {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.show-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.show-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 160px at 100% 0%, rgba(255, 43, 62, 0.1), transparent 60%);
  pointer-events: none;
}

.show-card:hover {
  border-color: rgba(255, 43, 62, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon-sm);
}

.show-date {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--dim);
  margin-top: 0.6rem;
}

.show-city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.show-desc {
  color: var(--muted);
  font-size: 0.92rem;
}

.shows-cta {
  margin-top: 2.4rem;
}

/* ---------- Merch ---------- */
.merch-intro {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.merch-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.merch-card:hover {
  border-color: rgba(255, 43, 62, 0.45);
  transform: translateY(-4px);
}

.merch-art {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background:
    linear-gradient(140deg, #0c0d10, #1a1c22 50%, #0e0f13);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  margin-bottom: 0.2rem;
}

.merch-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.merch-art::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 43, 62, 0.35);
  border-radius: 10px;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.merch-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.merch-note {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Banda foto (parallax) ---------- */
.photo-band {
  position: relative;
  z-index: 1;
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
  background: #070708;
}

.photo-band-bg {
  position: absolute;
  inset: -4px;
  background-image: url('../img/IMG_3668.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(7, 7, 8, 0.35) 30%, rgba(7, 7, 8, 0.55) 70%, var(--bg) 100%),
    radial-gradient(800px 400px at 50% 50%, rgba(255, 43, 62, 0.08), transparent 60%);
}

.photo-band .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.photo-band-quote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--txt);
  text-shadow: 0 0 26px rgba(255, 43, 62, 0.5);
  max-width: 20ch;
  margin-inline: auto;
}

/* ---------- EPK ---------- */
.epk-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.epk-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 60ch;
}

.epk-muted {
  color: var(--dim);
  font-size: 0.95rem;
}

.epk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.epk-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: sticky;
  top: 6rem;
}

.epk-card-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-bottom: 1.4rem;
}

.epk-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.epk-facts div:last-child {
  border-bottom: 0;
}

.epk-facts dt {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.2rem;
}

.epk-facts dd {
  text-align: right;
  font-weight: 500;
}

/* ---------- Estudio ---------- */
.estudio-card {
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(46, 134, 255, 0.12), transparent 60%),
    var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--neon-2);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.estudio-card .section-title {
  margin-bottom: 1rem;
  color: #fff;
}

.estudio-text {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  max-width: 52ch;
  margin: 0 auto 2rem;
}

.estudio .section-tag {
  color: var(--neon-2);
}

.estudio .btn-primary {
  background: var(--neon-2);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.estudio .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(46, 134, 255, 0.75), 0 0 70px rgba(46, 134, 255, 0.35);
}

/* ---------- Contacto ---------- */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contacto-text {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.socials a:hover {
  border-color: var(--neon);
  color: var(--txt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-sm);
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.socials a:nth-child(4) {
  grid-column: 1 / -1;
  border-color: rgba(255, 43, 62, 0.35);
  color: var(--neon);
}

.socials a:nth-child(4):hover {
  box-shadow: var(--shadow-neon);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.contacto-form label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.8rem;
}

.contacto-form label:first-child {
  margin-top: 0;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: var(--shadow-neon-sm);
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
  color: var(--dim);
}

.contacto-form .btn {
  margin-top: 1.4rem;
  width: 100%;
}

.form-status {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-align: center;
  min-height: 1.4em;
}

.form-status.ok {
  color: var(--neon);
}

.form-status.err {
  color: var(--blood);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.footer-brand span {
  color: var(--neon);
}

.footer-note {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- Animaciones ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Música de fondo ---------- */
.music-btn {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  background: rgba(18, 19, 23, 0.92);
  border: 1px solid var(--neon);
  border-radius: 999px;
  color: var(--txt);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-neon-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.music-btn:hover {
  border-color: var(--txt);
}

.music-btn.paused {
  border-color: var(--line-strong);
  box-shadow: none;
  color: var(--muted);
}

.music-btn-note {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--neon);
  text-shadow: var(--shadow-neon-sm);
}

.music-btn.playing .music-btn-note {
  animation: note-spin 2.6s linear infinite;
}

.music-btn.paused .music-btn-note {
  color: var(--dim);
  text-shadow: none;
}

@keyframes note-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .photo-band-bg {
    background-attachment: scroll;
  }

  .album-card,
  .release-card,
  .bio-grid,
  .epk-grid,
  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .shows-grid,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .epk-card {
    position: static;
  }

  .album-cover {
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
    gap: 1.4rem;
  }

  .hero-stats {
    gap: 1.6rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
