/* ===== VARIABLES ===== */
:root {
  --obsidian: #080808;
  --obsidian-2: #0e0e0e;
  --silver: #c8c8c8;
  --silver-dim: #888;
  --holo-1: #c0143c;
  --holo-2: #6b0f1a;
  --holo-3: #f0dde2;
  --holo-4: #8c2040;
  --bordeaux: #8b1a2a;
  --bordeaux-mid: #b02035;
  --bordeaux-light: #c0304a;
  --glow: rgba(192, 20, 60, 0.45);
  --glow-teal: rgba(92, 0, 24, 0.4);
  --glow-bordeaux: rgba(176, 32, 53, 0.45);
  --mx: 50;
  --my: 50;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--obsidian);
  color: var(--silver);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.04em;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
}

/* Obsidian base */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--obsidian);
  z-index: -3;
}

/* Holographic gradient that follows mouse */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at calc(var(--mx) * 1%) calc(var(--my) * 1%),
      rgba(192, 20, 60, 0.26) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at calc((100 - var(--mx)) * 1%) calc((100 - var(--my)) * 1%),
      rgba(92, 0, 24, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 40% at 80% 5%,
      rgba(139, 26, 42, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 50% at 10% 15%,
      rgba(176, 32, 53, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 45% at 20% 75%,
      rgba(92, 0, 24, 0.22) 0%,
      transparent 60%
    );
  z-index: -2;
  transition: background 0.08s ease-out;
  will-change: background;
}

/* Bordeaux vignette fija en esquinas superiores */
.hero-bordeaux {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 35% at 100% 0%, rgba(139, 26, 42, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 45% 25% at 0% 0%, rgba(139, 26, 42, 0.2) 0%, transparent 65%);
  z-index: -2;
  pointer-events: none;
}

/* Liquid waves SVG container */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  z-index: -1;
  pointer-events: none;
}

.hero-waves svg {
  width: 100%;
  height: 100%;
}

.wave-path-1 {
  animation: waveFloat1 8s ease-in-out infinite;
  transform-origin: center bottom;
}

.wave-path-2 {
  animation: waveFloat2 11s ease-in-out infinite;
  transform-origin: center bottom;
}

.wave-path-3 {
  animation: waveFloat3 14s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes waveFloat1 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  33%       { transform: translateX(-3%) scaleY(1.06); }
  66%       { transform: translateX(3%) scaleY(0.94); }
}

@keyframes waveFloat2 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  40%       { transform: translateX(4%) scaleY(0.92); }
  70%       { transform: translateX(-2%) scaleY(1.08); }
}

@keyframes waveFloat3 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50%       { transform: translateX(-5%) scaleY(1.12); }
}

.wave-path-4 {
  animation: waveFloat4 17s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes waveFloat4 {
  0%, 100% { transform: translateX(0) scaleY(1); }
  45%       { transform: translateX(3%) scaleY(0.88); }
  80%       { transform: translateX(-4%) scaleY(1.1); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  animation: fadeRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Evanescence "e" logo */
.ev-logo {
  width: clamp(70px, 16vw, 120px);
  height: auto;
  filter:
    drop-shadow(0 0 12px rgba(192, 48, 74, 0.6))
    drop-shadow(0 0 35px rgba(92, 0, 24, 0.4));
  animation:
    fadeRise 1.2s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both,
    logoGlow 4s ease-in-out infinite 1.5s;
}

@keyframes logoGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 12px rgba(192, 48, 74, 0.6))
      drop-shadow(0 0 35px rgba(92, 0, 24, 0.4));
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(192, 48, 74, 0.9))
      drop-shadow(0 0 60px rgba(192, 20, 60, 0.55))
      drop-shadow(0 0 90px rgba(92, 0, 24, 0.35));
  }
}

.hero-eyebrow {
  font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
  font-weight: 400;
  animation: fadeRise 1.2s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.92;
  background: linear-gradient(
    135deg,
    var(--bordeaux-light) 0%,
    var(--silver) 20%,
    var(--holo-3) 42%,
    var(--holo-1) 62%,
    var(--holo-2) 82%,
    var(--bordeaux-mid) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeRise 1.2s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both,
             gradientShift 6s ease-in-out infinite 1.4s;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  animation: fadeRise 1.2s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-cta {
  margin-top: 0.8rem;
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border: 1px solid rgba(192, 20, 60, 0.5);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: fadeRise 1.2s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bordeaux-light), var(--bordeaux));
  opacity: 0;
  transition: opacity 0.35s;
}

.hero-cta:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 28px var(--glow-bordeaux), 0 0 60px var(--glow-teal);
}

.hero-cta:hover::before {
  opacity: 1;
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

/* ===== SOCIAL HUB ===== */
.social-hub {
  padding: 5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.social-hub-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin: 0;
}

.social-grid {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 200, 200, 0.12);
  border-radius: 4px;
  color: var(--silver-dim);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.social-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: radial-gradient(circle at center, var(--bordeaux-light), var(--bordeaux));
  opacity: 0;
  transition: opacity 0.35s;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  border-color: transparent;
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 0 20px var(--glow-bordeaux), 0 0 40px var(--glow-teal);
}

.social-link:hover::after,
.social-link:focus-visible::after {
  opacity: 1;
}

.social-link svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.social-link:focus-visible {
  outline: 2px solid var(--bordeaux-light);
  outline-offset: 3px;
}

/* ===== NOVEDADES ===== */
.releases {
  padding: 5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.releases-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.releases-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
}

.releases-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--silver) 0%, var(--holo-3) 50%, var(--holo-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.releases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

.release-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-thumb-link {
  display: block;
  border-radius: 4px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(176, 32, 53, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #000;
}

.video-thumb-link:hover .video-wrapper,
.video-thumb-link:focus-visible .video-wrapper {
  border-color: rgba(176, 32, 53, 0.5);
  box-shadow: 0 0 30px var(--glow-bordeaux), 0 0 60px rgba(92, 0, 24, 0.2);
}

.video-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}

.video-thumb-link:hover .video-wrapper img {
  transform: scale(1.03);
  opacity: 0.75;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.play-btn svg {
  width: 56px;
  height: 56px;
  fill: #fff;
  filter: drop-shadow(0 0 12px var(--glow-bordeaux));
  background: rgba(176, 32, 53, 0.6);
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.25s, background 0.25s, filter 0.25s;
}

.video-thumb-link:hover .play-btn svg,
.video-thumb-link:focus-visible .play-btn svg {
  transform: scale(1.15);
  background: rgba(192, 20, 60, 0.88);
  filter: drop-shadow(0 0 20px var(--glow-bordeaux)) drop-shadow(0 0 40px var(--glow-teal));
}

.video-thumb-link:focus-visible {
  outline: 2px solid var(--bordeaux-light);
  outline-offset: 3px;
}

.release-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-align: center;
}

@media (min-width: 768px) {
  .releases-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(92, 0, 24, 0.4) 15%,
    rgba(192, 20, 60, 0.55) 45%,
    rgba(139, 26, 42, 0.5) 75%,
    transparent
  );
}

/* ===== SANCTUARY ALBUM ===== */
.album {
  padding: 5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 680px;
  margin: 0 auto;
}

.album-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.album-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
}

.album-title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--silver) 0%, var(--holo-3) 40%, var(--holo-4) 80%, var(--holo-2) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}

.album-sub {
  font-size: 0.72rem;
  color: var(--silver-dim);
  letter-spacing: 0.15em;
}

.tracklist {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(176, 32, 53, 0.18);
  border-radius: 4px;
  overflow: hidden;
}

.tracklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
  position: relative;
}

.tracklist li:last-child {
  border-bottom: none;
}

.tracklist li:hover {
  background: rgba(176, 32, 53, 0.08);
}

.track-num {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(200, 200, 200, 0.25);
  font-family: 'Inter', sans-serif;
  min-width: 1.8rem;
}

.track-name {
  font-size: 0.9rem;
  color: var(--silver);
  flex: 1;
  letter-spacing: 0.03em;
}

.track-badge {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
  border: 1px solid rgba(176, 32, 53, 0.45);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

/* ===== TOUR DATES ===== */
.tour {
  padding: 5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.tour-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
}

.tour-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--silver) 0%, var(--holo-3) 50%, var(--holo-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tour-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: 100%;
  border: 1px solid rgba(139, 26, 42, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.tour-region {
  padding: 1.4rem 1.8rem;
  background: var(--obsidian-2);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(139, 26, 42, 0.12);
  transition: background 0.2s;
}

.tour-region:last-child {
  border-bottom: none;
}

.tour-region:hover {
  background: rgba(139, 26, 42, 0.06);
}

.tour-region-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--silver);
  letter-spacing: 0.05em;
}

.tour-region-dates {
  font-size: 0.78rem;
  color: var(--bordeaux-light);
  letter-spacing: 0.15em;
}

.tour-region-support {
  font-size: 0.7rem;
  color: var(--silver-dim);
  letter-spacing: 0.08em;
}

.tour-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(176, 32, 53, 0.5);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.tour-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-mid));
  opacity: 0;
  transition: opacity 0.35s;
}

.tour-cta:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 28px var(--glow-bordeaux), 0 0 60px rgba(139, 26, 42, 0.2);
}

.tour-cta:hover::before {
  opacity: 1;
}

.tour-cta span,
.tour-cta svg {
  position: relative;
  z-index: 1;
}

.tour-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .tour-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .tour-region {
    border-bottom: none;
    border-right: 1px solid rgba(139, 26, 42, 0.12);
  }

  .tour-region:last-child {
    border-right: none;
  }
}

/* ===== HISTORIA ===== */
.history {
  padding: 5rem 1.5rem 4rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  text-align: center;
}

.history-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

.history-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
}

.history-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--silver) 0%, var(--bordeaux-light) 60%, var(--holo-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.history-authority {
  max-width: 760px;
  margin: 2rem auto 3rem;
  padding: 1.6rem 2rem;
  border-left: 3px solid var(--bordeaux-light);
  background: rgba(139, 26, 42, 0.06);
  border-radius: 0 8px 8px 0;
}
.history-authority p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--silver-dim);
  line-height: 1.8;
  margin: 0;
}
.history-authority a {
  color: var(--bordeaux-light);
  text-decoration: none;
}
.history-authority a:hover {
  opacity: 0.8;
}

.history-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--silver-dim);
}

/* Timeline */
.history-timeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 3.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--bordeaux-mid) 15%, var(--bordeaux-mid) 85%, transparent);
}

.history-era {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.history-era::before {
  content: '';
  position: absolute;
  left: calc(3.5rem - 4px);
  top: 2.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bordeaux-mid);
  border: 1px solid var(--bordeaux-light);
}

.history-era--present::before {
  background: var(--bordeaux-light);
  box-shadow: 0 0 10px var(--glow);
  width: 11px;
  height: 11px;
  left: calc(3.5rem - 5px);
}

.history-year {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
  text-align: right;
  line-height: 1.4;
  padding-top: 0.15rem;
}

.history-era-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.history-era--present .history-era-body {
  border-left: 2px solid rgba(192, 48, 74, 0.3);
  padding-left: 1.2rem;
}

.history-era-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--silver);
  margin: 0;
  line-height: 1.4;
}

.history-era-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--silver-dim);
  margin: 0;
}

.history-era-text strong { color: var(--silver); }
.history-era-text em     { color: var(--bordeaux-light); font-style: normal; }

/* Milestones */
.history-milestones {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.history-milestones-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  font-style: italic;
  color: var(--silver-dim);
  margin: 0;
}

.history-milestones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.history-milestone {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(176, 32, 53, 0.18);
  border-radius: 2px;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
}

.history-milestone:hover {
  border-color: rgba(192, 48, 74, 0.4);
  background: rgba(176, 32, 53, 0.05);
}

.milestone-num {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--bordeaux-light);
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.history-milestone p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--silver-dim);
  margin: 0;
}

.history-milestone p strong { color: var(--silver); }

@media (min-width: 768px) {
  .history-milestones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .history-timeline::before { left: 2.5rem; }
  .history-era {
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
  }
  .history-era::before         { left: calc(2.5rem - 4px); }
  .history-era--present::before { left: calc(2.5rem - 5px); }
}

/* ===== LEGACY SECTION ===== */
.legacy {
  padding: 5rem 1.5rem 6rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.legacy-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.ev-logo-legacy {
  width: clamp(80px, 18vw, 130px);
  height: auto;
  filter:
    drop-shadow(0 0 14px rgba(139, 26, 42, 0.7))
    drop-shadow(0 0 40px rgba(139, 26, 42, 0.35));
  animation: logoPulse 5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(139,26,42,0.7)) drop-shadow(0 0 40px rgba(139,26,42,0.35)); }
  50%       { filter: drop-shadow(0 0 26px rgba(192,48,74,0.9)) drop-shadow(0 0 70px rgba(139,26,42,0.5)); }
}

.legacy-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}

.legacy-year {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
  margin: 0;
}

.legacy-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.8vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--silver-dim);
  font-style: italic;
  max-width: 620px;
}

.legacy-quote strong {
  background: linear-gradient(135deg, var(--bordeaux-light), var(--silver), var(--holo-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.legacy-detail {
  font-size: 0.85rem;
  color: var(--silver-dim);
  line-height: 1.8;
  max-width: 520px;
}

.legacy-detail em {
  color: var(--bordeaux-light);
  font-style: normal;
}

@media (min-width: 768px) {
  .legacy-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 4rem;
  }

  .legacy-text {
    align-items: flex-start;
  }

  .ev-logo-legacy {
    flex-shrink: 0;
  }
}

/* ===== NOTICIAS ===== */
.news {
  padding: 5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.news-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.news-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
}

.news-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--silver) 0%, var(--bordeaux-light) 60%, var(--holo-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.news-teaser {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--silver-dim);
  max-width: 560px;
}

.news-teaser strong {
  color: var(--silver);
}

.news-teaser em {
  color: var(--bordeaux-light);
  font-style: normal;
}

.news-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(176, 32, 53, 0.3);
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.news-contact:hover {
  border-color: rgba(176, 32, 53, 0.6);
  box-shadow: 0 0 20px var(--glow-bordeaux);
}

.news-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--bordeaux-light);
  flex-shrink: 0;
}

.news-email {
  font-size: 0.82rem;
  color: var(--silver-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.news-email:hover {
  color: var(--silver);
}

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-authority {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
  opacity: 0.75;
  margin: 0.25rem 0 0.75rem;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--silver-dim);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(200, 200, 200, 0.3);
  letter-spacing: 0.05em;
}

.footer-url {
  font-size: 0.72rem;
  color: var(--bordeaux-light);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-url:hover {
  opacity: 1;
}

.footer-love {
  font-size: 0.75rem;
  color: rgba(200, 200, 200, 0.4);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .social-grid {
    gap: 2.2rem;
  }

  .hero-content {
    gap: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-cta {
    padding: 0.85rem 2.8rem;
  }

  .legacy {
    padding: 6rem 2rem 8rem;
  }
}

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

/* ===== STREAMING ===== */
.streaming {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.5rem;
}
.streaming-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-dim);
}
.streaming-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.streaming-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--silver-dim);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.streaming-link:hover {
  border-color: rgba(192,48,74,0.5);
  color: var(--silver);
  background: rgba(192,48,74,0.07);
  transform: translateY(-2px);
}
.streaming-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

/* ===== TOUR DATE LIST ===== */
.tour-datelist {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.tour-leg-title {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux-light);
  margin-bottom: 0.75rem;
}
.tour-dates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tour-dates-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--silver-dim);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
}
.tour-dates-list li:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .tour-datelist {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tracklist li.reveal        { transform: translateX(-16px); }
.tracklist li.reveal.is-visible { transform: translateX(0); }
.history-era.reveal         { transform: translateX(-24px); }
.history-era.reveal.is-visible  { transform: translateX(0); }
.history-milestone.reveal   { transform: translateY(20px); }
.release-card.reveal        { transform: scale(0.97) translateY(20px); }
.release-card.reveal.is-visible { transform: scale(1) translateY(0); }

/* ===== SHOWS ARGENTINA ===== */
.shows-ar {
  max-width: 680px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}
.shows-ar-title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.25rem;
}
.shows-ar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.show-item {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.18s ease;
}
.show-item:hover { background: rgba(192,48,74,0.04); }
.show-item--latest .show-venue { color: var(--bordeaux-light); }
.show-date {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.55;
  white-space: nowrap;
}
.show-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.show-venue {
  font-size: 0.92rem;
  font-weight: 600;
}
.show-city {
  font-size: 0.78rem;
  opacity: 0.6;
}
.show-context {
  font-size: 0.72rem;
  opacity: 0.45;
  font-style: italic;
}
.show-setlist {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.45;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.25rem 0.55rem;
  white-space: nowrap;
  transition: opacity 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.show-setlist:hover {
  opacity: 1;
  color: var(--bordeaux-light);
  border-color: rgba(192,48,74,0.5);
}
.shows-ar-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.55;
  transition: opacity 0.18s ease;
}
.shows-ar-more svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.18s ease;
}
.shows-ar-more:hover { opacity: 1; }
.shows-ar-more:hover svg { transform: translateX(3px); }
@media (max-width: 480px) {
  .show-item { grid-template-columns: 1fr auto; }
  .show-date { grid-column: 1 / -1; margin-bottom: -0.25rem; }
}

/* ===== MERCH / PRE-ORDER ===== */
.merch {
  padding: 4rem 1.5rem 4.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.merch-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}
.merch-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.merch-title em { font-style: italic; }
.merch-intro {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.merch-formats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.merch-format {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.merch-format:hover { opacity: 1; transform: translateY(-3px); }
.merch-format-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--bordeaux-light);
}
.merch-format-icon svg { width: 100%; height: 100%; }
.merch-format-name {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.merch-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(192,48,74,0.6);
  border-radius: 2px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.merch-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}
.merch-cta:hover {
  background: rgba(192,48,74,0.12);
  border-color: var(--bordeaux-light);
  transform: translateY(-2px);
}
.merch-cta:hover svg { transform: translateX(3px); }
