/* =============================================================
   DJ MERINO — styles.css
   Archetype: Nocturnal Coast (dark warm, club + Málaga coast)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #04050b;
  --bg-2: #080a14;
  --panel: rgba(12, 15, 30, 0.62);
  --panel-solid: #0b0e1c;
  --line: rgba(210, 222, 255, 0.12);
  --line-2: rgba(210, 222, 255, 0.22);
  --text: #eef1fb;
  --muted: #9097b1;
  --dim: #5f6684;
  --accent: #2f5bff;
  --accent-2: #8fb0ff;
  --wine: #0a1f6e;
  --wa: #25d366;

  --display: "Inter Tight", "Helvetica Neue", Arial, system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --brand: #0034d9;

  --gutter: clamp(16px, 4.5vw, 56px);
  --maxw: 1360px;
  --radius: 22px;
  --radius-sm: 14px;
  --bar-h: 64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html {
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  min-height: 100vh;
}
main, .footer { overflow-x: clip; }
img, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
svg { flex-shrink: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; letter-spacing: -0.02em; font-weight: 700; }
em { font-style: normal; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--text); color: var(--bg); border-radius: 10px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-variant-numeric: tabular-nums; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* =============================================================
   4. Living background
   ============================================================= */
.bg-fallback {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 100%, rgba(47, 91, 255, .22), transparent 70%),
    radial-gradient(50% 45% at 0% 0%, rgba(10, 31, 110, .45), transparent 70%),
    var(--bg);
}
.bg-canvas {
  position: fixed; inset: 0; z-index: -2; width: 100%; height: 100%;
  pointer-events: none; opacity: 0; transition: opacity 1.6s var(--ease-soft);
}
.bg-canvas.is-on { opacity: 1; }
.grain {
  position: fixed; inset: -50%; z-index: 100; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  height: var(--h); padding: 0 1.35em; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em; white-space: nowrap;
  transition: transform .5s var(--ease-out), background-color .3s, color .3s, border-color .3s, box-shadow .5s var(--ease-out);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-lg { --h: 56px; font-size: 16px; padding: 0 1.6em; }
.btn-accent {
  background: var(--accent); color: #ffffff;
  box-shadow: 0 0 0 0 rgba(47, 91, 255, .0), 0 10px 40px -12px rgba(47, 91, 255, .7);
}
.btn-accent:hover { background: #4a70ff; box-shadow: 0 0 0 6px rgba(47, 91, 255, .18), 0 16px 50px -12px rgba(47, 91, 255, .9); }
.btn-ghost { border: 1px solid var(--line-2); background: rgba(8, 10, 20, .35); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--text); background: rgba(238, 241, 251, .08); }
.btn-wa { background: var(--wa); color: #03170a; box-shadow: 0 12px 40px -14px rgba(37, 211, 102, .8); }
.btn-wa:hover { background: #3ee07a; box-shadow: 0 0 0 6px rgba(37, 211, 102, .18), 0 16px 50px -12px rgba(37, 211, 102, .9); }
.btn-wa.is-ig { background: linear-gradient(45deg, #f58529, #dd2a7b 55%, #8134af); color: #fff; box-shadow: 0 12px 40px -14px rgba(221, 42, 123, .8); }
.btn-wa.is-ig:hover { box-shadow: 0 0 0 6px rgba(221, 42, 123, .2), 0 16px 50px -12px rgba(221, 42, 123, .9); }
.btn:active { transform: scale(.97); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .8em;
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.side {
  display: inline-grid; place-items: center; min-width: 2.6em; height: 2.6em; padding: 0 .5em;
  border: 1px solid var(--line-2); border-radius: 999px; color: var(--accent-2); letter-spacing: .05em;
}
.sec-head { display: grid; gap: 18px; margin-bottom: clamp(32px, 6vw, 64px); max-width: 980px; }
.sec-title { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 7.4vw, 88px); line-height: .98; letter-spacing: -0.035em; }
.sec-title em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--accent-2); }
.sec-sub { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); max-width: 56ch; }
.section { position: relative; padding-block: clamp(80px, 13vw, 170px); }

/* Reveal — only hides when JS is present */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

/* =============================================================
   6. Nav + menu
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 70;
  display: flex; align-items: center; gap: 16px;
  height: 68px; padding: 0 var(--gutter);
  transition: background-color .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(4, 5, 11, .72); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3); border-color: var(--line); }
.nav-logo img { height: 26px; width: auto; filter: drop-shadow(0 0 10px rgba(47, 91, 255, .55)); }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: .02em; margin-right: auto; }
.logo-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--text); font-size: 13px; position: relative;
}
.logo-mark::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px dashed rgba(143, 176, 255, .45); animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.nav-links { display: none; gap: 4px; }
.nav-links a { padding: 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); transition: color .3s, background-color .3s; }
.nav-links a:hover, .nav-links a.is-current { color: var(--text); background: rgba(238, 241, 251, .07); }
.nav-cta { --h: 40px; font-size: 14px; padding: 0 1.1em; display: none; }
.nav-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(4, 5, 11, .4); }
.nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 1.5px; background: var(--text); transition: transform .5s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 65; padding: 96px var(--gutter) 40px;
  background: rgba(4, 5, 11, .96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: space-between;
}
.menu.is-open { animation: menuIn .6s var(--ease-out); }
@keyframes menuIn { from { opacity: 0; clip-path: inset(0 0 100% 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
.menu-links { display: grid; gap: 2px; counter-reset: m; }
.menu-links a {
  counter-increment: m; display: flex; align-items: baseline; gap: 14px;
  font-family: var(--display); font-weight: 700; font-size: clamp(30px, 9vw, 54px); letter-spacing: -0.03em; line-height: 1.15;
}
.menu-links a::before { content: counter(m, decimal-leading-zero); font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: .1em; }
.menu-foot { display: flex; flex-wrap: wrap; gap: 10px; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 96px 0 calc(var(--bar-h) + 36px); overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) contrast(1.05); }
.hero.no-video .hero-video { display: none; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 5, 11, .62) 0%, rgba(4, 5, 11, .12) 28%, rgba(4, 5, 11, .5) 52%, rgba(4, 5, 11, .97) 86%),
    radial-gradient(80% 60% at 50% 110%, rgba(47, 91, 255, .28), transparent 70%);
}
.hero.no-video .hero-shade { background: linear-gradient(180deg, rgba(4, 5, 11, .3), transparent 40%, rgba(4, 5, 11, .7) 100%); }

/* Coast horizon + moonlight-on-water reflection */
.hero-horizon { position: absolute; left: 0; right: 0; top: 58%; height: 42%; z-index: -1; pointer-events: none; }
.hero-horizon::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 176, 255, .55) 30%, rgba(47, 91, 255, .9) 62%, rgba(143, 176, 255, .4) 80%, transparent);
  box-shadow: 0 0 30px 2px rgba(47, 91, 255, .45);
}
.hero-horizon::after {
  content: ""; position: absolute; top: 2px; left: 44%; width: 36%; height: 100%;
  background: repeating-linear-gradient(180deg, rgba(120, 180, 255, .55) 0 2px, transparent 2px 9px);
  -webkit-mask: radial-gradient(50% 100% at 50% 0%, #000 0%, transparent 75%);
  mask: radial-gradient(50% 100% at 50% 0%, #000 0%, transparent 75%);
  opacity: .5; animation: shimmer 5s ease-in-out infinite alternate;
}
@keyframes shimmer { from { transform: scaleX(.85); opacity: .35; } to { transform: scaleX(1.1); opacity: .6; } }

.hero-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero-copy { position: relative; display: grid; gap: 18px; }
.hero-media-tag { display: none; }
.hero-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.live { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 8px 14px 8px 12px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(4, 5, 11, .45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(47, 91, 255, .7); animation: pulse 1.9s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47, 91, 255, .7); } 70% { box-shadow: 0 0 0 12px rgba(47, 91, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(47, 91, 255, 0); } }
.coords { color: var(--muted); }

.hero-title { display: grid; gap: 12px; margin-block: 8px 2px; }
.hero-dj {
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .42em; color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-dj::after { content: ""; height: 1px; width: clamp(48px, 10vw, 120px); background: linear-gradient(90deg, var(--accent-2), transparent); }
.hero-logo {
  width: 100%; max-width: 980px; height: auto;
  filter: drop-shadow(0 0 12px rgba(47, 91, 255, .9)) drop-shadow(0 0 46px rgba(0, 52, 217, .65));
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .7s var(--ease-out);
  animation: neonOn 1.8s steps(1, end) both;
}
@keyframes neonOn { 0% { opacity: 0; } 12% { opacity: 1; } 18% { opacity: .25; } 26% { opacity: 1; } 31% { opacity: .5; } 36%, 100% { opacity: 1; } }
.hero-stats { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px; }
.hero-stats b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(17px, 2.1vw, 24px); letter-spacing: -0.02em; line-height: 1.15; }
.hero-stats span { display: block; font-size: 12px; line-height: 1.35; color: var(--muted); margin-top: 2px; }

.hero-bottom { display: grid; gap: 22px; }
.hero-loc { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; letter-spacing: .02em; }
.hero-loc svg { width: 18px; height: 18px; color: var(--accent); }
.hero-lede { font-size: clamp(17px, 2.1vw, 22px); line-height: 1.45; max-width: 36ch; color: rgba(238, 241, 251, .88); }
.hero-lede em { font-family: var(--serif); font-style: italic; font-size: 1.14em; color: var(--accent-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-actions .btn { flex: 1 1 auto; }

.scroll-cue { display: none; }

/* =============================================================
   8. Sets / player
   ============================================================= */
.sets { padding-top: clamp(64px, 9vw, 120px); }
.sets::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.player { display: grid; gap: 18px; }
.stage { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); background: #000; }
.stage-frame {
  position: absolute; inset: 0; border-radius: inherit; overflow: hidden; background: #03040a;
  box-shadow: 0 40px 120px -40px rgba(47, 91, 255, .45), 0 0 0 1px var(--line);
}
.stage-yt, .stage-yt iframe, #yt-player { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.stage-poster { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; cursor: pointer; transition: opacity .5s var(--ease-out); }
.stage-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform 1.2s var(--ease-out); }
.stage-poster:hover img { transform: scale(1.07); }
.stage-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(4, 5, 11, .85)); }
.stage.is-started .stage-poster { opacity: 0; pointer-events: none; }

.stage-art { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(90% 90% at 70% 110%, rgba(47, 91, 255, .45), transparent 60%), #03040a; }
.stage-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 5, 11, .95) 0%, rgba(4, 5, 11, .62) 48%, rgba(4, 5, 11, .05) 80%); }
.vinyl {
  position: absolute; right: -8%; top: 50%; width: 62%; aspect-ratio: 1; translate: 0 -50%; border-radius: 50%;
  background:
    radial-gradient(circle, var(--accent) 0 9%, #050a24 9.4% 10%, transparent 10.2%),
    repeating-radial-gradient(circle, #070912 0 2px, #10131f 2px 3px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(255, 255, 255, .06);
  animation: spin 6s linear infinite;
}
.vinyl::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 30deg, transparent 0 12%, rgba(255, 255, 255, .09) 16%, transparent 22% 62%, rgba(255, 255, 255, .06) 66%, transparent 72%); }

.stage-play {
  position: relative; z-index: 3; width: clamp(72px, 12vw, 116px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); color: #ffffff;
  box-shadow: 0 0 0 10px rgba(47, 91, 255, .18), 0 20px 60px rgba(47, 91, 255, .55);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.stage-play svg { width: 36%; height: 36%; margin-left: 6%; }
.stage-poster:hover .stage-play { transform: scale(1.08); box-shadow: 0 0 0 18px rgba(47, 91, 255, .14), 0 24px 80px rgba(47, 91, 255, .7); }
.stage-play::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(143, 176, 255, .5); animation: ring 2.4s var(--ease-out) infinite; }
@keyframes ring { from { transform: scale(.9); opacity: 1; } to { transform: scale(1.5); opacity: 0; } }
.stage-meta { position: absolute; z-index: 3; left: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px); bottom: clamp(14px, 3vw, 28px); display: grid; gap: 4px; }
.stage-meta .mono { color: var(--accent-2); }
.stage-meta strong { font-family: var(--display); font-weight: 700; font-size: clamp(18px, 3.2vw, 40px); letter-spacing: -0.03em; line-height: 1.05; }
.stage-empty { position: absolute; z-index: 3; left: clamp(16px, 3vw, 36px); top: 50%; translate: 0 -50%; max-width: min(60%, 460px); display: grid; gap: 10px; }
.stage-empty strong { font-family: var(--display); font-size: clamp(18px, 3.4vw, 42px); line-height: 1.02; letter-spacing: -0.03em; }
.stage-empty p { color: var(--muted); font-size: clamp(13px, 1.5vw, 16px); }
.stage-empty .btn { justify-self: start; --h: 42px; font-size: 14px; }

/* Docked (mini player) — frame is positioned by JS over .dock-slot */
.stage-frame.is-docked { position: fixed; inset: auto; z-index: 61; border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, .7), 0 0 0 1px var(--line-2); animation: dockIn .5s var(--ease-out); }
@keyframes dockIn { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.stage.is-docked::after {
  content: "Sonando en el reproductor flotante"; position: absolute; inset: 0; display: grid; place-items: center; border-radius: inherit;
  border: 1px dashed var(--line-2); color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

.tracklist { list-style: none; display: grid; gap: 8px; counter-reset: t; }
.track {
  display: grid; grid-template-columns: auto 64px minmax(0, 1fr) auto; align-items: center; gap: 12px; width: 100%;
  padding: 10px 14px 10px 10px; border-radius: var(--radius-sm); text-align: left;
  background: var(--panel); border: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color .3s, background-color .3s, transform .5s var(--ease-out);
}
.track:hover { border-color: var(--line-2); background: rgba(22, 28, 52, .7); }
.track.is-active { border-color: rgba(47, 91, 255, .6); background: linear-gradient(90deg, rgba(47, 91, 255, .16), rgba(12, 15, 30, .6)); }
.track-n { font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--dim); width: 24px; text-align: center; }
.track.is-active .track-n { color: var(--accent); }
.track-thumb { width: 64px; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; position: relative; background: radial-gradient(circle at 80% 120%, rgba(47, 91, 255, .6), transparent 60%), #0f1326; }
.track-thumb img { width: 100%; height: 100%; object-fit: cover; }
.track-thumb .mini-vinyl { position: absolute; right: -14px; top: 50%; translate: 0 -50%; width: 44px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--accent) 0 12%, transparent 13%), repeating-radial-gradient(circle, #070912 0 1px, #10131f 1px 2px); }
.track-body { display: grid; gap: 2px; min-width: 0; }
.track-title { font-weight: 700; font-size: 15px; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-meta { font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-side { display: grid; justify-items: end; gap: 4px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--line-2); color: var(--muted); white-space: nowrap; }
.badge-hot { border-color: rgba(47, 91, 255, .5); color: var(--accent); }
.eq { display: none; gap: 2px; align-items: flex-end; height: 14px; }
.eq i { width: 3px; background: var(--accent); border-radius: 2px; animation: eq .9s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: -.3s; } .eq i:nth-child(3) { animation-delay: -.6s; } .eq i:nth-child(4) { animation-delay: -.15s; }
@keyframes eq { 0%, 100% { height: 25%; } 50% { height: 100%; } }
.track.is-active.is-playing .eq, .dock.is-playing .eq { display: inline-flex; }
.track.is-pending { cursor: default; opacity: .72; }

.player.is-single { grid-template-columns: 1fr; }
.player.is-single .tracklist { max-width: 720px; }
.atmos { display: grid; gap: 4px; margin-top: 6px; padding: 20px 22px; border-radius: 18px; border: 1px solid rgba(143, 176, 255, .3); background: linear-gradient(135deg, rgba(47, 91, 255, .2), rgba(12, 15, 30, .72)); transition: border-color .3s, transform .6s var(--ease-out); }
.atmos:hover { border-color: var(--accent); transform: translateY(-3px); }
.atmos-kicker { color: var(--accent-2); }
.atmos strong { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -0.03em; line-height: 1.1; }
.atmos-text { color: var(--muted); font-size: 15px; }
.atmos-handle { font-weight: 700; font-size: 14px; margin-top: 6px; }
.player-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 22px; color: var(--muted); font-size: 14px; }
.player-foot a { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 700; border-bottom: 1px solid var(--line-2); padding-bottom: 2px; }
.player-foot a:hover { border-color: var(--accent); }
.player-foot svg { width: 18px; height: 18px; }

/* Dock bar */
.dock {
  position: fixed; z-index: 60; left: 12px; right: 12px; bottom: calc(var(--bar-h) + 20px + env(safe-area-inset-bottom, 0px));
  display: grid; grid-template-columns: 168px 1fr; gap: 12px; align-items: center;
  padding: 8px; border-radius: 18px;
  background: rgba(10, 12, 24, .9); border: 1px solid var(--line-2);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: dockIn .5s var(--ease-out);
}
.dock-slot { width: 168px; aspect-ratio: 16 / 9; border-radius: 12px; background: #000; }
.dock-main { min-width: 0; display: grid; gap: 6px; }
.dock-info { display: grid; gap: 1px; min-width: 0; text-align: left; }
.dock-info .mono { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-2); font-size: 10px; }
.dock-info strong { font-size: 14px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dock-ctrl { display: flex; gap: 4px; }
.icon-btn { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); transition: background-color .3s, border-color .3s; }
.icon-btn:hover { background: rgba(238, 241, 251, .08); border-color: var(--line-2); }
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn.is-main { background: var(--accent); color: #ffffff; border-color: var(--accent); }

/* Floating booking bar */
.fab {
  position: fixed; z-index: 58; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 8px; height: var(--bar-h); padding: 8px;
  border-radius: 999px; background: rgba(8, 10, 20, .82); border: 1px solid var(--line-2);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
  transition: transform .7s var(--ease-out), opacity .5s;
}
.js .fab { transform: translateY(140%); opacity: 0; }
.js .fab.is-shown { transform: none; opacity: 1; }
.fab-book { flex: 1; --h: 100%; }
.fab-book small { font-weight: 600; opacity: .7; font-size: 12px; }
.fab-wa { --h: 100%; aspect-ratio: 1; padding: 0; }
.fab-wa svg { width: 22px; height: 22px; }

/* =============================================================
   9. Marquee strip
   ============================================================= */
.strip { position: relative; overflow: hidden; padding-block: 18px; border-block: 1px solid var(--line); background: rgba(4, 5, 11, .5); transform: rotate(-1.6deg) scale(1.04); }
.strip-alt { background: var(--accent); color: #ffffff; transform: rotate(1.2deg) scale(1.04); border: 0; }
.strip-track { display: flex; width: max-content; animation: marquee var(--dur, 38s) linear infinite; }
.strip-track > span { display: inline-flex; align-items: center; gap: .7em; padding-right: .7em; font-family: var(--display); font-weight: 800; font-size: clamp(22px, 4.2vw, 52px); letter-spacing: -0.02em; text-transform: uppercase; white-space: nowrap; }
.strip-track .o { color: transparent; -webkit-text-stroke: 1px rgba(238, 241, 251, .7); }
.strip-alt .strip-track .o { -webkit-text-stroke-color: #ffffff; }
.strip-track .star { color: var(--accent); font-size: .7em; }
.strip-alt .strip-track .star { color: #ffffff; }
@keyframes marquee { to { transform: translateX(-50%); } }
.strip-rev .strip-track { animation-direction: reverse; }

/* =============================================================
   10. Sonido
   ============================================================= */
.manifesto { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 5.4vw, 70px); line-height: 1.08; letter-spacing: -0.035em; max-width: 20ch; margin-bottom: clamp(60px, 10vw, 130px); }
.manifesto em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--accent-2); }
.js .manifesto .w { opacity: .16; transition: opacity .5s var(--ease-soft), color .5s; }
.js .manifesto .w.lit { opacity: 1; }

.versus { display: grid; gap: 12px; margin-bottom: clamp(64px, 10vw, 130px); }
.vs-col { position: relative; padding: clamp(22px, 3.4vw, 40px); border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); overflow: hidden; }
.vs-col h3 { font-family: var(--display); font-size: clamp(20px, 2.6vw, 30px); letter-spacing: -0.03em; margin: 14px 0 20px; }
.vs-col ul { list-style: none; display: grid; gap: 14px; }
.vs-col li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 16px; line-height: 1.45; }
.vs-col li svg { width: 20px; height: 20px; margin-top: 2px; }
.vs-old { color: var(--muted); }
.vs-old h3 { text-decoration: line-through; text-decoration-color: rgba(47, 91, 255, .7); text-decoration-thickness: 2px; color: var(--muted); }
.vs-old li svg { color: var(--dim); }
.vs-new { border-color: rgba(47, 91, 255, .45); background: linear-gradient(160deg, rgba(47, 91, 255, .18), rgba(12, 15, 30, .7) 55%); }
.vs-new li svg { color: var(--accent); }
.vs-new::after { content: "MERINO"; position: absolute; right: -0.08em; bottom: -0.28em; font-family: var(--display); font-weight: 900; font-size: clamp(70px, 11vw, 150px); color: transparent; -webkit-text-stroke: 1px rgba(143, 176, 255, .16); pointer-events: none; letter-spacing: -0.05em; }
.vs-tag { display: inline-flex; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; border: 1px solid currentColor; }
.vs-new .vs-tag { color: var(--accent); }

.sub-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.sub-head h3 { font-family: var(--display); font-size: clamp(24px, 3.6vw, 44px); letter-spacing: -0.035em; }
.sub-head p { color: var(--muted); max-width: 40ch; }

.crates-wrap { display: grid; gap: clamp(28px, 4vw, 60px); align-items: center; margin-bottom: clamp(64px, 10vw, 130px); }
.crate-visual { position: relative; width: 100%; max-width: 620px; margin-inline: auto; aspect-ratio: 1 / 1.06; }
.crate-visual img { position: absolute; width: 64%; height: auto; border-radius: 18px; box-shadow: 0 0 0 1px rgba(143, 176, 255, .25), 0 30px 80px -20px rgba(47, 91, 255, .55); transition: transform 1s var(--ease-out); }
.crate-visual .cv-a { left: 0; top: 0; transform: rotate(-5deg); }
.crate-visual .cv-b { right: 0; bottom: 0; transform: rotate(4deg); }
.crate-caption { margin-top: 14px; text-align: center; color: var(--muted); font-size: 13px; }
.crates { display: grid; gap: 14px; }
.sleeve {
  --tone: var(--accent);
  position: relative; border-radius: 18px; padding: clamp(22px, 3vw, 32px); min-height: 210px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
  background:
    radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--tone) 38%, transparent), transparent 60%),
    linear-gradient(180deg, #0f1326, #0a0c17);
  border: 1px solid var(--line); overflow: hidden; isolation: isolate;
  transition: transform .8s var(--ease-out), border-color .4s;
}
.sleeve::before {
  content: ""; position: absolute; z-index: -1; width: 78%; aspect-ratio: 1; right: -30%; top: -22%; border-radius: 50%;
  background: radial-gradient(circle, var(--tone) 0 10%, #050a24 10.5% 11.5%, transparent 12%), repeating-radial-gradient(circle, #070912 0 2px, #10131f 2px 3px);
  opacity: .9; transition: transform 1.1s var(--ease-out);
}
.sleeve:hover { border-color: var(--line-2); transform: translateY(-6px); }
.sleeve:hover::before { transform: translateX(-16%) rotate(120deg); }
.sleeve-code { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--tone); letter-spacing: .04em; }
.sleeve h4 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.035em; line-height: 1; margin-bottom: 12px; }
.sleeve p { color: rgba(238, 241, 251, .78); font-size: 15.5px; line-height: 1.5; }
.sleeve:nth-child(2) { --tone: var(--accent-2); }
.sleeve:nth-child(3) { --tone: #7c5cff; }

.why { display: grid; gap: 0; border-top: 1px solid var(--line); }
.why-item { display: grid; grid-template-columns: 56px 1fr; gap: 14px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.why-n { font-family: var(--display); font-weight: 700; color: var(--accent); font-size: 14px; padding-top: 6px; }
.why-item h4 { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.8vw, 34px); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 8px; }
.why-item p { color: var(--muted); max-width: 58ch; }

/* =============================================================
   11. Formatos
   ============================================================= */
.formats { display: grid; gap: 14px; }
.format {
  position: relative; border-radius: calc(var(--radius) + 6px); padding: clamp(24px, 4vw, 48px); overflow: hidden; isolation: isolate;
  border: 1px solid var(--line); min-height: 560px; display: flex; flex-direction: column; gap: 22px;
}
.format-night { background: radial-gradient(100% 70% at 100% 0%, rgba(10, 31, 110, .8), transparent 65%), radial-gradient(70% 60% at 0% 100%, rgba(124, 92, 255, .18), transparent 70%), #060818; }
.format-day { background: radial-gradient(90% 70% at 80% 100%, rgba(143, 176, 255, .5), transparent 60%), radial-gradient(80% 60% at 0% 0%, rgba(47, 91, 255, .3), transparent 70%), #08122a; }
.format-day::before {
  content: ""; position: absolute; z-index: -1; right: 8%; bottom: 20%; width: clamp(140px, 22vw, 260px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #e8f3ff, #7fc4ff 60%, #2f5bff);
  box-shadow: 0 0 120px 30px rgba(120, 190, 255, .35);
  -webkit-mask: linear-gradient(180deg, #000 0 56%, transparent 56% 60%, #000 60% 64%, transparent 64% 69%, #000 69% 72%, transparent 72% 79%, #000 79% 81%, transparent 81%);
  mask: linear-gradient(180deg, #000 0 56%, transparent 56% 60%, #000 60% 64%, transparent 64% 69%, #000 69% 72%, transparent 72% 79%, #000 79% 81%, transparent 81%);
  opacity: .55;
}
.format-night::before {
  content: ""; position: absolute; z-index: -1; inset: -20% -10% auto auto; width: 70%; height: 140%;
  background: conic-gradient(from 200deg at 100% 0%, transparent 0 8deg, rgba(124, 92, 255, .22) 10deg, transparent 13deg 22deg, rgba(47, 91, 255, .18) 24deg, transparent 27deg 40deg, rgba(124, 92, 255, .14) 42deg, transparent 45deg);
  transform-origin: 100% 0%; animation: beams 9s ease-in-out infinite alternate;
}
@keyframes beams { from { transform: rotate(-6deg); } to { transform: rotate(8deg); } }
.format-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.time-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: rgba(4, 5, 11, .5); border: 1px solid var(--line-2); }
.time-pill svg { width: 15px; height: 15px; }
.format-night .time-pill svg { color: #a48cff; }
.format-day .time-pill svg { color: var(--accent-2); }
.format h3 { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 7vw, 92px); letter-spacing: -0.05em; line-height: .9; }
.format h3 em { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; font-size: .55em; color: var(--accent-2); margin-top: .18em; }
.format-where { color: rgba(238, 241, 251, .75); font-weight: 700; letter-spacing: .02em; }
.format p.lead { font-size: clamp(16px, 1.6vw, 18.5px); max-width: 46ch; color: rgba(238, 241, 251, .88); }
.format ul { list-style: none; display: grid; gap: 10px; }
.format li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; font-size: 15px; }
.format li b { font-family: var(--display); font-size: 11px; font-weight: 700; color: var(--accent); padding-top: 4px; }
.format-day li b { color: var(--accent-2); }
.curve { margin-top: auto; }
.curve svg { width: 100%; height: auto; overflow: visible; }
.curve .c-line { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 2.4s var(--ease-soft) .2s; }
.curve .c-area { opacity: 0; transition: opacity 1.4s ease 1s; }
.curve.in .c-line, .no-js .curve .c-line { stroke-dashoffset: 0; }
.curve.in .c-area { opacity: 1; }
.curve-axis { display: flex; justify-content: space-between; margin-top: 8px; color: var(--muted); font-size: 10px; }
.curve-label { color: var(--dim); font-size: 10px; margin-bottom: 6px; }

.private {
  margin-top: 14px; border-radius: calc(var(--radius) + 6px); padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line-2); background: linear-gradient(120deg, rgba(12, 15, 30, .85), rgba(14, 24, 60, .75));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: grid; gap: 22px; align-items: center;
}
.private h3 { font-family: var(--display); font-size: clamp(26px, 4vw, 48px); letter-spacing: -0.04em; margin: 10px 0 10px; }
.private p { color: rgba(238, 241, 251, .8); max-width: 60ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 13px; font-weight: 600; color: rgba(238, 241, 251, .85); }

/* =============================================================
   12. Salas
   ============================================================= */
.venues-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.venue-count { font-family: var(--display); font-weight: 900; font-size: clamp(80px, 16vw, 220px); line-height: .8; letter-spacing: -0.06em; color: transparent; -webkit-text-stroke: 1.5px rgba(47, 91, 255, .75); }
.venue-strip { margin-block: 0 clamp(36px, 6vw, 70px); }
.venue-strip .strip-track > span { font-size: clamp(46px, 11vw, 150px); letter-spacing: -0.05em; }
.venues { display: grid; gap: 14px; }
.venue {
  --mx: 50%; --my: 50%; --tone: var(--accent);
  position: relative; overflow: hidden; isolation: isolate; border-radius: calc(var(--radius) + 4px);
  min-height: clamp(260px, 62vw, 460px); padding: clamp(22px, 3.4vw, 40px);
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line); background: #080a14;
  transition: border-color .4s, transform .9s var(--ease-out);
  transform-style: preserve-3d;
}
.venue::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--bgv); transition: transform 1.4s var(--ease-out); }
.venue::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(420px circle at var(--mx) var(--my), rgba(150, 180, 255, .2), transparent 60%); opacity: 0; transition: opacity .5s; }
.venue:hover { border-color: color-mix(in srgb, var(--tone) 60%, transparent); }
.venue:hover::before { transform: scale(1.06); }
.venue:hover::after { opacity: 1; }
.venue-night { --tone: #7c5cff; --bgv: radial-gradient(90% 80% at 100% 0%, rgba(10, 31, 110, .95), transparent 60%), radial-gradient(60% 60% at 0% 110%, rgba(124, 92, 255, .35), transparent 70%), repeating-linear-gradient(115deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 22px), #060818; }
.venue-day { --tone: var(--accent-2); --bgv: radial-gradient(90% 70% at 100% 100%, rgba(143, 176, 255, .55), transparent 60%), radial-gradient(70% 70% at 0% 0%, rgba(47, 91, 255, .35), transparent 70%), repeating-linear-gradient(180deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 16px), #08122a; }
.venue-photo { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.venue-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.venue-idx { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--tone); }
.venue-name { font-family: var(--display); font-weight: 900; font-size: clamp(52px, 13vw, 128px); line-height: .84; letter-spacing: -0.06em; text-transform: uppercase; }
.venue-name small { display: block; font-size: .3em; font-weight: 500; letter-spacing: -0.01em; text-transform: none; color: rgba(238, 241, 251, .75); margin-top: .5em; }
.venue-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.venue-arrow { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); transition: transform .6s var(--ease-out), background-color .4s, color .4s; }
.venue-arrow svg { width: 20px; height: 20px; }
.venue:hover .venue-arrow { transform: rotate(-45deg); background: var(--tone); color: #ffffff; border-color: transparent; }

/* =============================================================
   13. Galería
   ============================================================= */
.mosaic { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 44vw; grid-auto-flow: dense; gap: 10px; }
.tile { position: relative; overflow: hidden; border-radius: 16px; background: #0a0c17; }
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }
.tile-inner { position: absolute; inset: -40px 0; will-change: transform; }
.tile-inner img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: saturate(.95) contrast(1.04); transition: transform 1.2s var(--ease-out); }
.tile:hover .tile-inner img { transform: scale(1.04); }
.ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 14px;
  border: 1.5px dashed rgba(143, 176, 255, .32); border-radius: 16px;
  background: repeating-linear-gradient(135deg, rgba(210, 222, 255, .025) 0 10px, transparent 10px 20px), radial-gradient(80% 80% at 100% 100%, rgba(47, 91, 255, .12), transparent 70%);
}
.tile-inner .ph { inset: 40px 0; }
.ph-top { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.ph-n { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 5vw, 56px); letter-spacing: -0.05em; color: rgba(238, 241, 251, .16); line-height: 1; }
.ph-icon { width: 28px; height: 28px; color: rgba(143, 176, 255, .6); }
.ph-bottom { display: grid; gap: 2px; }
.ph-bottom strong { font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.ph-bottom span { font-size: 11px; color: var(--muted); }
.ph::before, .ph::after { content: ""; position: absolute; width: 14px; height: 14px; border-color: var(--accent); border-style: solid; }
.ph::before { top: -1.5px; left: -1.5px; border-width: 2px 0 0 2px; border-top-left-radius: 16px; }
.ph::after { bottom: -1.5px; right: -1.5px; border-width: 0 2px 2px 0; border-bottom-right-radius: 16px; }
.gallery-note { margin-top: 18px; color: var(--dim); font-size: 13px; }

/* =============================================================
   14. Fechas
   ============================================================= */
.dates { list-style: none; border-top: 1px solid var(--line); }
.date-row {
  display: grid; grid-template-columns: 74px 1fr auto; gap: 16px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--line); position: relative;
  transition: padding .5s var(--ease-out);
}
.date-row::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(47, 91, 255, .16), transparent 70%); opacity: 0; transition: opacity .4s; }
.date-row:hover::before { opacity: 1; }
.date-cal { display: grid; justify-items: center; line-height: 1; padding: 10px 0; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(4, 5, 11, .5); }
.date-cal b { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -0.04em; }
.date-cal span { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.date-info { min-width: 0; display: grid; gap: 3px; }
.date-info strong { font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2.6vw, 30px); letter-spacing: -0.03em; line-height: 1.1; }
.date-info span { color: var(--muted); font-size: 14px; }
.date-link { --h: 42px; font-size: 14px; }
.demo-flag { display: inline-flex; margin-left: 10px; vertical-align: middle; }

/* =============================================================
   15. Historia
   ============================================================= */
.story { display: grid; gap: clamp(28px, 5vw, 70px); align-items: center; }
.story-visual { position: relative; }
.story-year { display: none; position: absolute; z-index: -1; right: -0.04em; bottom: -0.34em; font-family: var(--display); font-weight: 900; font-size: clamp(110px, 30vw, 330px); line-height: 1; letter-spacing: -0.07em; color: transparent; -webkit-text-stroke: 1.5px rgba(47, 91, 255, .38); pointer-events: none; }
.portrait { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; width: 82%; max-width: 460px; margin-left: auto; background: #0a0c17; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait { box-shadow: 0 0 0 1px rgba(143, 176, 255, .2), 0 40px 120px -30px rgba(47, 91, 255, .5); }
.story-text { display: grid; gap: 20px; }
.story-text .big { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4.6vw, 58px); letter-spacing: -0.04em; line-height: 1.02; }
.story-text .big em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-2); letter-spacing: -0.01em; }
.story-text p { font-size: clamp(16px, 1.55vw, 18.5px); color: rgba(238, 241, 251, .82); max-width: 54ch; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: 10px; }
.fact { padding: 18px 12px 0 0; display: grid; gap: 4px; }
.fact b { font-family: var(--display); font-weight: 800; font-size: clamp(22px, 3.4vw, 40px); letter-spacing: -0.04em; line-height: 1; }
.fact span { font-size: 12px; color: var(--muted); font-weight: 600; }

/* =============================================================
   16. Contacto
   ============================================================= */
.contact { position: relative; }
.contact-title { font-family: var(--display); font-weight: 800; font-size: clamp(44px, 11vw, 150px); line-height: .88; letter-spacing: -0.06em; margin-bottom: clamp(26px, 4vw, 44px); }
.contact-title em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; color: var(--accent); }
.contact-grid { display: grid; gap: 16px; }
.wa-card {
  position: relative; overflow: hidden; border-radius: calc(var(--radius) + 4px); padding: clamp(22px, 3.4vw, 36px);
  background: radial-gradient(90% 90% at 100% 0%, rgba(37, 211, 102, .22), transparent 60%), var(--panel-solid);
  border: 1px solid rgba(37, 211, 102, .35); display: grid; gap: 16px;
}
.wa-card.is-ig { border-color: rgba(221, 42, 123, .35); background: radial-gradient(90% 90% at 100% 0%, rgba(221, 42, 123, .2), transparent 60%), var(--panel-solid); }
.wa-card h3 { font-family: var(--display); font-size: clamp(22px, 3vw, 32px); letter-spacing: -0.03em; }
.wa-card p { color: var(--muted); }
.wa-card .btn { --h: 60px; font-size: 17px; width: 100%; }
.wa-card .btn svg { width: 24px; height: 24px; }
.channels { list-style: none; display: grid; gap: 8px; }
.channels a { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: rgba(4, 5, 11, .45); transition: border-color .3s, background-color .3s; }
.channels a:hover { border-color: var(--line-2); background: rgba(238, 241, 251, .05); }
.channels svg { width: 22px; height: 22px; color: var(--accent-2); }
.channels span { display: grid; line-height: 1.25; }
.channels small { color: var(--muted); font-size: 12px; }
.channels .arr { margin-left: auto; width: 16px; height: 16px; color: var(--muted); }

.form-card { border-radius: calc(var(--radius) + 4px); padding: clamp(18px, 3.4vw, 40px); background: var(--panel); border: 1px solid var(--line-2); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; border-radius: 999px; background: rgba(4, 5, 11, .6); border: 1px solid var(--line); margin-bottom: 20px; }
.tab { height: 44px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--muted); transition: background-color .35s, color .35s; }
.tab[aria-selected="true"] { background: var(--text); color: var(--bg); }
.tab-desc { color: rgba(238, 241, 251, .82); margin-bottom: 20px; min-height: 3em; }
.fields { display: grid; grid-template-columns: 1fr; gap: 12px; border: 0; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; font-size: 16px;
  background: rgba(4, 5, 11, .6); border: 1px solid var(--line-2); outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%239097b1' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field select option { background: var(--panel-solid); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(47, 91, 255, .18); }
.field input::-webkit-calendar-picker-indicator { filter: invert(.8); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #7c5cff; }
.form-actions { display: grid; gap: 10px; margin-top: 18px; }
.form-actions .btn { width: 100%; }
.form-note { margin-top: 12px; font-size: 13px; color: var(--dim); }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { position: relative; padding: clamp(60px, 10vw, 120px) 0 calc(var(--bar-h) + 40px); overflow: hidden; border-top: 1px solid var(--line); }
.footer-giant { font-family: var(--display); font-weight: 900; font-size: calc((100vw - 2 * var(--gutter)) / 5.1); line-height: .8; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1px rgba(238, 241, 251, .18); white-space: nowrap; margin-left: -0.04em; user-select: none; }
.footer-logo { width: 100%; height: auto; opacity: .08; user-select: none; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-top: 32px; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-links a:hover { color: var(--text); }

/* =============================================================
   18. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions .btn { flex: 0 0 auto; }
  .mosaic { grid-auto-rows: 36vw; }
  .fields { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
  .form-actions { grid-template-columns: 1fr 1fr; }
  .form-actions.single { grid-template-columns: 1fr; }
}

@media (min-width: 720px) {
  .hero-bottom { grid-template-columns: 1fr auto; align-items: end; }
  .hero-bottom .hero-loc { grid-column: 1 / -1; }
  .versus { grid-template-columns: 1fr 1fr; }
  .crates { grid-template-columns: repeat(3, 1fr); }
  .sleeve { min-height: 340px; }
  .venues { grid-template-columns: 1fr 1fr; }
  .venue { min-height: 400px; }
  .venue-name { font-size: clamp(50px, 7.4vw, 118px); }
  .mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 19vw; gap: 12px; }
  .date-row { grid-template-columns: 90px 1fr auto; gap: 26px; }
  .why-item { grid-template-columns: 90px 1fr 1fr; gap: 24px; }
  .why-item p { padding-top: 6px; }
  .facts { max-width: 560px; }
}

@media (min-width: 960px) {
  :root { --bar-h: 0px; }
  .nav { height: 76px; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero { padding-bottom: 56px; }
  .scroll-cue {
    display: flex; position: absolute; right: var(--gutter); bottom: 56px; writing-mode: vertical-rl;
    align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  }
  .scroll-cue::after { content: ""; width: 1px; height: 70px; background: linear-gradient(var(--accent), transparent); animation: cue 2.2s var(--ease-out) infinite; transform-origin: top; }
  @keyframes cue { 0% { transform: scaleY(0); } 60% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
  .hero-bottom { padding-right: 60px; }

  .player { grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr); gap: 20px; align-items: start; }
  .tracklist { align-content: start; }
  .track { grid-template-columns: auto 104px 1fr auto; }
  .track-thumb { width: 104px; }

  .formats { grid-template-columns: 1fr 1fr; }
  .format { min-height: 720px; }
  .private { grid-template-columns: 1.4fr auto; }

  .venues { grid-template-columns: repeat(12, 1fr); }
  .venue:nth-child(1) { grid-column: span 7; }
  .venue:nth-child(2) { grid-column: span 5; }
  .venue:nth-child(3) { grid-column: span 5; }
  .venue:nth-child(4) { grid-column: span 7; }
  .venue { min-height: 440px; }

  .story { grid-template-columns: .9fr 1.1fr; }
  .story-year { display: block; }
  .portrait { width: 100%; margin-left: 0; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .contact-side { display: grid; gap: 16px; position: sticky; top: 100px; }

  /* Desktop floating booking pill + dock bottom-left */
  .fab { left: auto; right: 24px; bottom: 24px; height: 60px; width: auto; }
  .fab-book { flex: 0 0 auto; padding: 0 1.5em; }
  .dock { left: 24px; right: auto; bottom: 24px; width: 520px; grid-template-columns: 220px 1fr; padding: 10px; }
  .dock-slot { width: 220px; }
}

@media (min-width: 1280px) {
  .mosaic { grid-auto-rows: min(17vw, 260px); }
}

@media (hover: none) {
  .sleeve:hover, .venue:hover { transform: none; }
}

@media (min-width: 540px) {
  .hero-stats { max-width: 620px; }
}
@media (min-width: 960px) {
  .hero { justify-content: center; padding: 112px 0 64px; }
  .hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(40px, 5vw, 96px); align-items: center; }
  .hero-media {
    position: relative; inset: auto; z-index: 0; height: min(76vh, 760px); aspect-ratio: 9 / 16;
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 0 0 1px rgba(143, 176, 255, .3), 0 40px 140px -30px rgba(47, 91, 255, .65);
  }
  .hero-shade { background: linear-gradient(180deg, transparent 55%, rgba(4, 5, 11, .88)); }
  .hero-media-tag { display: inline-flex; position: absolute; left: 18px; bottom: 18px; align-items: center; gap: 8px; color: var(--text); }
  .hero-bottom { grid-template-columns: 1fr; padding-right: 0; }
  .hero-bottom .hero-actions { margin-top: 4px; }
  .crates-wrap { grid-template-columns: 1fr 1fr; }
  .crates { grid-template-columns: 1fr; }
  .sleeve { min-height: 0; }
  .sleeve::before { width: 46%; right: -14%; top: -36%; }
}

/* =============================================================
   19. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .hero-logo { animation: none; }
  .strip-track { animation-duration: 90s; }
  .vinyl { animation-duration: 20s; }
  .format-night::before { animation: none; }
}
