/* P1P3 — Styles v2 | 2026-05-28 */

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  --bg:        #000000;
  --bg-2:      #080808;
  --bg-3:      #0d0d0d;
  --ink:       #ffffff;
  --dim:       rgba(255,255,255,0.52);
  --dimmer:    rgba(255,255,255,0.28);
  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.16);
  --accent:    #2AF3FF;
  --accent-dim: rgba(42,243,255,0.14);
  --accent-glow: rgba(42,243,255,0.35);
  --magenta:   #FF2E88;
  --red:       #FF3333;
  --display:   "Space Grotesk", sans-serif;
  --mono:      "JetBrains Mono", ui-monospace, Menlo, monospace;
  --body:      "Inter", system-ui, sans-serif;
  --pad-x:     clamp(20px, 5vw, 80px);
  --nav-h:     72px;
  --ease:      cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #000; }

/* ── Background layers ──────────────────────────────────────────────── */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.5) 100%);
}
.noise {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.scanline {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
  );
}

/* ── Utility ────────────────────────────────────────────────────────── */
.mono  { font-family: var(--mono); font-weight: 400; letter-spacing: 0.06em; font-size: 11px; text-transform: uppercase; }
.dim   { color: var(--dim); }
.accent { color: var(--accent); }
.red   { color: var(--red); }

/* ── Scroll progress ─────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 1px;
  z-index: 200; pointer-events: none;
  background: linear-gradient(90deg, var(--accent) var(--p, 0%), transparent var(--p, 0%));
  transition: --p 0.1s linear;
}

/* ── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-brand { display: inline-flex; align-items: center; }

.nav-links {
  display: flex; justify-content: center;
  gap: clamp(20px, 3.5vw, 52px);
}
.nav-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  opacity: 0.72; color: var(--ink); position: relative; padding: 6px 2px;
  transition: opacity 0.2s, color 0.2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width 0.25s var(--ease), left 0.25s var(--ease);
}
.nav-link:hover { opacity: 1; color: var(--accent); }
.nav-link:hover::after { width: 100%; left: 0; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  padding: 7px 12px; border: 1px solid var(--line-2); border-radius: 2px;
}
.lang-btn { color: var(--dim); transition: color 0.2s; padding: 2px 4px; }
.lang-btn.is-active { color: var(--accent); }
.lang-btn:hover { color: var(--ink); }
.lang-sep { color: var(--dimmer); }

.nav-menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; border: 1px solid var(--line-2);
  padding: 8px 10px;
}
.nav-menu-btn span {
  display: block; height: 1px; background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-menu-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Logo ───────────────────────────────────────────────────────────── */
.logo-mark { position: relative; display: inline-block; }
.logo-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; user-select: none; pointer-events: none;
  -webkit-user-drag: none;
}
.logo-img:first-child { position: relative; }
.logo-cyan {
  filter: brightness(0) saturate(100%) invert(86%) sepia(53%) saturate(2845%) hue-rotate(143deg) brightness(102%) contrast(101%) drop-shadow(0 0 6px var(--accent));
  mix-blend-mode: screen; opacity: 0.75;
  animation: glitchX 4.3s infinite steps(1);
}
.logo-magenta {
  filter: brightness(0) saturate(100%) invert(36%) sepia(95%) saturate(4585%) hue-rotate(320deg) brightness(102%) contrast(102%);
  mix-blend-mode: screen; opacity: 0.6;
  animation: glitchX2 3.7s infinite steps(1);
}
.logo-white {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}
.logo-mark.is-glow .logo-white {
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.4)) drop-shadow(0 0 28px var(--accent));
}
@keyframes glitchX {
  0%, 92%, 100% { transform: translate(-1.2px, 0); }
  93% { transform: translate(-4px, 1px); }
  95% { transform: translate(2px, -2px); }
  97% { transform: translate(-3px, 0); }
}
@keyframes glitchX2 {
  0%, 90%, 100% { transform: translate(1.2px, 0); }
  91% { transform: translate(4px, -1px); }
  93% { transform: translate(-2px, 2px); }
  95% { transform: translate(3px, 0); }
}

/* ── Glitch text ────────────────────────────────────────────────────── */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%;
  mix-blend-mode: screen; pointer-events: none;
}
.glitch::before {
  color: var(--accent);
  animation: gShiftA 5.2s infinite steps(1);
}
.glitch::after {
  color: var(--magenta);
  animation: gShiftB 6.1s infinite steps(1);
}
@keyframes gShiftA {
  0%, 91%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-2px, 0); opacity: 0.7; clip-path: inset(30% 0 20% 0); }
  94% { transform: translate(1px, 1px); opacity: 0.5; clip-path: inset(60% 0 5% 0); }
  96% { transform: translate(0); opacity: 0; }
}
@keyframes gShiftB {
  0%, 89%, 100% { transform: translate(0); opacity: 0; }
  90% { transform: translate(2px, -1px); opacity: 0.7; clip-path: inset(10% 0 55% 0); }
  92% { transform: translate(-1px, 0); opacity: 0.5; clip-path: inset(70% 0 10% 0); }
  94% { transform: translate(0); opacity: 0; }
}

/* ── Glitch logo image ─────────────────────────────────────────────── */
.hero-logo-glitch {
  display: block;
  width: clamp(180px, 25vw, 280px);
  margin: 0 auto 0.5em;
}
.hero-logo-img {
  display: block;
  width: 100%;
  height: auto;
  animation: logoGlitch 5s infinite;
}
@keyframes logoGlitch {
  0%   { filter: none; transform: translate(0); }
  82%  { filter: none; transform: translate(0); }
  83%  { filter: drop-shadow(-6px 0 var(--accent)) brightness(1.2); transform: translate(-4px, 1px); }
  84%  { filter: drop-shadow(6px 0 var(--magenta)) brightness(1.15); transform: translate(5px, -1px); }
  85%  { filter: drop-shadow(-3px 0 var(--accent)) drop-shadow(3px 0 var(--magenta)); transform: translate(-2px, 0); }
  86%  { filter: brightness(1.4); transform: translate(2px, 1px); }
  87%  { filter: none; transform: translate(0); }
  91%  { filter: none; transform: translate(0); }
  92%  { filter: drop-shadow(4px 0 var(--accent)) brightness(1.1); transform: translate(3px, 0); }
  93%  { filter: drop-shadow(-4px 0 var(--magenta)); transform: translate(-2px, -1px); }
  94%  { filter: none; transform: translate(0); }
  100% { filter: none; transform: translate(0); }
}

/* ── Section base ───────────────────────────────────────────────────── */
.section {
  position: relative; z-index: 5;
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  max-width: 1480px; margin: 0 auto;
}
.section-header { margin-bottom: clamp(40px, 6vh, 80px); }
.section-label { color: var(--accent); letter-spacing: 0.2em; margin-bottom: 10px; }
.section-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(52px, 8vw, 120px); line-height: 0.92; letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.section-sub { color: var(--dim); font-size: 16px; max-width: 56ch; line-height: 1.6; }

/* ── Reveal animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive CSS */
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.is-visible { opacity: 1; transform: none; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 16px 28px;
  position: relative; overflow: hidden;
  transition: color 0.25s, background 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  transform: translateX(-101%); z-index: -1;
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  border: 1px solid var(--accent); color: var(--accent);
  background: rgba(42,243,255,0.04);
}
.btn-primary::before { background: var(--accent); }
.btn-primary:hover { color: #000; }

.btn-ghost {
  border: 1px solid var(--line-2); color: var(--dim);
  background: transparent;
}
.btn-ghost::before { background: rgba(255,255,255,0.06); }
.btn-ghost:hover { color: var(--ink); border-color: var(--line-2); }

.btn-accent {
  border: 1px solid var(--accent); color: #000;
  background: var(--accent);
}
.btn-accent::before { background: rgba(255,255,255,0.2); }
.btn-accent:hover { color: #000; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  max-width: none;
  display: flex; flex-direction: column;
  padding-top: 0; padding-bottom: 0;
  overflow: hidden;
}
.hero-inner {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--nav-h);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px;
}
.hero-status {
  display: inline-flex; align-items: center; gap: 8px;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(100px, 18vw, 240px);
  line-height: 0.88; letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--mono); font-weight: 300;
  font-size: clamp(13px, 1.4vw, 22px); letter-spacing: 0.55em;
  color: rgba(255,255,255,0.82); margin-bottom: 12px;
  text-align: center;
}
.hero-caption {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--dim); margin-bottom: 52px;
  text-align: center;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.hero-corners { position: relative; }
.hero-meta {
  position: absolute; pointer-events: none;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--dim);
}
.hero-tl { top: var(--nav-h); left: var(--pad-x); padding-top: 20px; }
.hero-tr { top: var(--nav-h); right: var(--pad-x); padding-top: 20px; text-align: right; }
.hero-bl { bottom: 20px; left: var(--pad-x); }
.hero-br { bottom: 20px; right: var(--pad-x); }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-line {
  display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Music ──────────────────────────────────────────────────────────── */
.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
}
.player {
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  padding: 24px;
}
.player-head, .player-foot {
  display: flex; justify-content: space-between; align-items: center;
}
.player-head { margin-bottom: 18px; }
.player-foot { margin-top: 18px; }
.player-iframe { display: block; width: 100%; border: 0; }

.waveform {
  display: flex; align-items: flex-end; gap: 3px;
  height: 80px; width: 100%;
}
.waveform-bar {
  flex: 1; height: 100%;
  clip-path: inset(100% 0 0 0); /* JS sets this to inset(X% 0 0 0) */
  transition: none;
  /* Segmented look: thin blocks — classic graphic EQ */
  -webkit-mask-image: repeating-linear-gradient(
    to top,
    black 0px, black 3px,
    transparent 3px, transparent 5px
  );
  mask-image: repeating-linear-gradient(
    to top,
    black 0px, black 3px,
    transparent 3px, transparent 5px
  );
}
.waveform.is-playing {
  filter: drop-shadow(0 0 8px rgba(42,243,255,0.35));
}

.releases { display: flex; flex-direction: column; gap: 0; }
.releases-head { margin-bottom: 16px; }
.releases-head--sessions { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.release-list { flex: 1; }
.release-item {
  display: grid; grid-template-columns: 40px 1fr 36px;
  align-items: center; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.release-item:last-child { border-bottom: 1px solid var(--line); }
.release-item:hover { background: linear-gradient(90deg, rgba(42,243,255,0.03), transparent); }
.release-item.is-active { background: linear-gradient(90deg, rgba(42,243,255,0.07), transparent); border-left-color: var(--accent); }
.release-item.is-active .release-title { color: var(--accent); }
.release-item.is-active .release-play { color: var(--accent); border-color: var(--accent); }
.release-n { color: var(--dimmer); }
.release-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.release-title { font-family: var(--display); font-size: 18px; font-weight: 500; }
.release-sub { font-size: 10px; color: var(--dim); font-family: var(--mono); letter-spacing: 0.05em; }
.release-desc { font-size: 10px; color: var(--dimmer); font-family: var(--mono); letter-spacing: 0.04em; font-style: italic; }
.release-play {
  width: 36px; height: 36px; border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--dim);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.release-play:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); }

/* ── About ─────────────────────────────────────────────────────────── */
/* ── About two-col layout ───────────────────────────────────────── */
.about { position: relative; overflow: clip; }
.about-two-col, .about-three-col {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.about-portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.about-portrait-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 6s ease;
}
.about-portrait:hover .about-portrait-img { transform: scale(1.04); }
.about-portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.65));
  pointer-events: none;
}
.about-portrait-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.about-text-col { display: flex; flex-direction: column; gap: 0; }
.about-text-col .section-header { margin-bottom: clamp(20px, 3vw, 36px); }
.about-body { display: flex; flex-direction: column; gap: 20px; }
.about-bio { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.75; color: rgba(255,255,255,0.82); }

/* ── Photo gallery strip ──────────────────────────────────────── */
.photo-strip {
  padding: 0;
  overflow: hidden;
}
/* ── Photo strip asimétrico ────────────────────────────────────── */
.photo-strip { overflow: hidden; }

.ps-row {
  display: grid;
  min-height: 55vh;
}
.ps-row--left  { grid-template-columns: 65fr 35fr; }
.ps-row--right { grid-template-columns: 35fr 65fr; }

.ps-img-wrap {
  position: relative;
  overflow: hidden;
}
.ps-img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.05) saturate(0.82);
  transition: filter 0.6s ease;
}
.ps-row--left  .ps-img { object-position: center 20%; }
.ps-row--right .ps-img { object-position: center 35%; }
.ps-img--portrait { object-position: center 38%; transform: scale(0.97); transform-origin: center 38%; }
.ps-img-wrap:hover .ps-img { filter: contrast(1.1) saturate(1); }

/* Overlay lateral que une imagen con texto */
.ps-row--left  .ps-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}
.ps-row--right .ps-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

/* Columna de texto */
.ps-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 80px) clamp(24px, 5vw, 64px);
  gap: 20px;
}
.ps-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  opacity: 0.7;
}
.ps-title {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.ps-desc {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--dim);
  line-height: 1.8;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  /* About */
  .about-two-col, .about-three-col { grid-template-columns: 1fr; gap: 0; }
  .about-bg-logo { display: none; }
  .about-portrait {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 340px;
    border-radius: 0;
  }
  .about-text-col { padding: 32px 20px; }
  .about-tags { flex-direction: column; gap: 8px; }
  .about-tag { font-size: 10px; }

  /* Photo strip — columna única, texto arriba / imagen abajo en ambas filas */
  .ps-row--left,
  .ps-row--right {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  /* Fila izq: imagen es 1er hijo → la mandamos abajo */
  .ps-row--left .ps-img-wrap { order: 2; }
  .ps-row--left .ps-text    { order: 1; }
  /* Fila der: texto es 1er hijo → ya está primero, ok */
  .ps-img-wrap {
    height: 80vw;
    min-height: 280px;
  }
  .ps-row--left  .ps-img-wrap::after,
  .ps-row--right .ps-img-wrap::after { display: none; }
  .ps-text { padding: 32px 20px; }

  /* Artist statement */
  .artist-statement { padding: 60px 20px; }

  /* Dossier blocks */
  .dossier-blocks { grid-template-columns: 1fr; }

  /* Rider — columna única */
  .rider-grid { grid-template-columns: 1fr !important; }
  .rider-block-wide { grid-column: 1 !important; }
  .rider-col { gap: 0; }
  .rider-block, .rider-block-wide { border-bottom: 1px solid var(--line); }
  .rider-list li { flex-wrap: wrap; gap: 2px 8px; }
  .rider-note-inline { width: 100%; margin-top: 2px; font-size: 11px; }
}

@media (max-width: 1100px) {
  .rider-grid { grid-template-columns: 1fr; }
  .rider-block-wide { grid-column: 1; }
}

/* ── HÖR Berlin Feature ─────────────────────────────────────────── */
.hor-feature {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 120px);
  border-top: 1px solid var(--line);
}
.hor-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.hor-badge {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hor-title {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hor-sub {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dim);
}
.hor-player {
  width: 100%;
}
.hor-player .player-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* ── Artist Statement ───────────────────────────────────────────── */
.artist-statement {
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 120px);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.statement-inner {
  position: relative;
  z-index: 2;
}
.statement-p {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2em;
  opacity: 1;
  transform: none;
}
.statement-p:last-child { margin-bottom: 0; }

/* Influences block */
.influences-block {
  margin-bottom: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.influences-title {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 20px;
}
.influences-intro {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.influences-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  margin-bottom: 28px;
}
.influences-item {
  font-family: var(--display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 8px;
}
.influences-bullet { color: var(--accent); font-size: 16px; }
.influences-outro {
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.statement-p::first-letter {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--accent);
  float: left;
  line-height: 1;
  margin-right: 0.08em;
  margin-top: 0.05em;
}

/* Logo background decoration */
.about-bg-logo {
  position: absolute;
  right: clamp(16px, 5vw, 80px);
  top: clamp(80px, 12vh, 160px);
  width: clamp(220px, 26vw, 340px);
  height: clamp(220px, 26vw, 340px);
  object-fit: contain;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) invert(1);
}
/* BPM tags */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.about-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--dim);
}
.about-tag em {
  font-style: normal;
  color: var(--accent);
  margin-left: 6px;
}
.about-grid {
  display: block;
}
.about-body { display: flex; flex-direction: column; gap: 24px; max-width: 72ch; }
.about-body { display: flex; flex-direction: column; gap: 24px; }
.about-bio { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.7; color: rgba(255,255,255,0.84); max-width: 58ch; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding-top: 28px; border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-v {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 5vw, 64px); line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-k { font-size: 10px; color: var(--dim); }

.about-actions { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 8px; }

/* ── Dossier ───────────────────────────────────────────────────────── */
.dossier { }
.dossier-frame {
  border: 1px solid var(--line-2);
  background:
    linear-gradient(180deg, rgba(42,243,255,0.02), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.016) 0 8px, transparent 8px 16px);
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.dossier-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(42,243,255,0.06), transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(255,46,136,0.04), transparent 50%);
  pointer-events: none;
}
.dossier-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.dossier-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 6vw, 88px); line-height: 0.92; letter-spacing: -0.03em;
  margin-bottom: 20px; position: relative;
}
.dossier-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--magenta), transparent 70%);
  margin-bottom: 28px;
}
.dossier-intro {
  font-family: var(--display); font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.6; color: rgba(255,255,255,0.84); max-width: 68ch;
  margin-bottom: 40px;
}
.dossier-blocks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px; margin-bottom: 40px; align-items: start;
}
.dossier-block {
  background:
    linear-gradient(180deg, rgba(42,243,255,0.02), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.016) 0 8px, transparent 8px 16px);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.dossier-block-tag { color: var(--accent); letter-spacing: 0.18em; }
.dossier-block-body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.82); }

.dossier-contact { margin-bottom: 36px; }
.dossier-channels-head { color: var(--accent); letter-spacing: 0.18em; margin-bottom: 16px; }
.dossier-contact-list { display: flex; flex-direction: column; gap: 2px; }
.dossier-contact-item {
  display: grid; grid-template-columns: 100px 1fr;
  align-items: center; gap: 20px;
  padding: 14px 0; border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.dossier-contact-item:last-child { border-bottom: 1px solid var(--line); }
.dossier-contact-item:hover { background: var(--accent-dim); padding-left: 12px; }
.dossier-contact-k { color: var(--dim); }
.dossier-contact-v { font-size: 15px; transition: color 0.2s; }
.dossier-contact-item:hover .dossier-contact-v { color: var(--accent); }

.dossier-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.dossier-footnote { color: var(--dim); }

/* ── Rider ──────────────────────────────────────────────────────────── */
.rider { }
.rider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.rider-col { display: flex; flex-direction: column; gap: 24px; }
.rider-block, .rider-block-wide {
  background:
    linear-gradient(180deg, rgba(42,243,255,0.02), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.016) 0 8px, transparent 8px 16px);
  padding: 32px;
  border: 1px solid var(--line);
}
.rider-block-wide {
  grid-column: 1 / -1;
}
.rider-block-tag { color: var(--accent); letter-spacing: 0.2em; margin-bottom: 20px; }
.rider-notes-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
}

.rider-list {
  display: flex; flex-direction: column; gap: 10px;
}
.rider-list li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.82);
  padding-left: 14px; position: relative;
}
.rider-list li::before {
  content: "–"; position: absolute; left: 0;
  color: var(--dim);
}
.rider-list li.is-red { color: var(--red); }
.rider-list li.is-red::before { color: var(--red); }
.rider-list-notes li { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }
.rider-note-inline { color: var(--dim); font-family: var(--mono); font-size: 10px; }

.rider-contact {
  display: flex; align-items: center; gap: 10px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
}
.rider-contact a { color: var(--accent); transition: opacity 0.2s; }
.rider-contact a:hover { opacity: 0.7; }

/* ── Booking ────────────────────────────────────────────────────────── */
.booking-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label { color: var(--dim); letter-spacing: 0.12em; }
.form-field input, .form-field textarea {
  background: var(--bg-2); border: 1px solid var(--line-2);
  color: var(--ink); font-family: var(--body); font-size: 14px;
  padding: 14px 16px; outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; border-radius: 0;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--accent); background: rgba(42,243,255,0.03);
}
.form-field textarea { resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--dimmer); }

.form-send {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em;
  padding: 18px 32px;
  border: 1px solid var(--accent); color: var(--accent);
  background: rgba(42,243,255,0.04);
  position: relative; overflow: hidden;
  transition: color 0.25s, background 0.25s;
  cursor: pointer;
}
.form-send::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent); transform: translateX(-101%);
  transition: transform 0.4s var(--ease); z-index: -1;
}
.form-send:hover { color: #000; }
.form-send:hover::before { transform: translateX(0); }
.form-send.is-sent { border-color: #0f0; color: #0f0; }
.form-send.is-sent::before { background: rgba(0,255,0,0.1); transform: none; }

.booking-aside { display: flex; flex-direction: column; gap: 0; }
.aside-head { margin-bottom: 20px; }
.direct-link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 0; border-top: 1px solid var(--line);
  transition: padding-left 0.25s var(--ease);
}
.direct-link:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.direct-link:hover { padding-left: 12px; }
.direct-email {
  font-family: var(--display); font-size: 20px; font-weight: 500;
  transition: color 0.2s;
}
.direct-link:hover .direct-email { color: var(--accent); }

.aside-socials {
  display: flex; flex-direction: column; gap: 12px; padding-top: 8px;
}
.social-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--dim); transition: color 0.2s;
}
.social-link:hover { color: var(--ink); }

/* ── Live ────────────────────────────────────────────────────────────── */
.shows { display: flex; flex-direction: column; }
.show {
  display: grid;
  grid-template-columns: 32px 120px 1fr 1.4fr 120px;
  gap: 24px; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--line);
  transition: padding 0.25s var(--ease), background 0.25s;
}
.show:last-child { border-bottom: 1px solid var(--line); }
.show:hover {
  padding-left: 16px; padding-right: 16px;
  background: linear-gradient(90deg, rgba(42,243,255,0.04), transparent 60%);
}
.show.is-sold .show-day, .show.is-sold .show-city, .show.is-sold .show-venue-name { color: var(--dim); }
.show-idx { color: var(--dimmer); }
.show-date { display: flex; align-items: baseline; gap: 8px; }
.show-day {
  font-family: var(--display); font-weight: 700;
  font-size: 38px; line-height: 1; letter-spacing: -0.02em;
}
.show-mon { color: var(--dim); }
.show-place { display: flex; flex-direction: column; gap: 4px; }
.show-city { font-family: var(--display); font-size: 22px; letter-spacing: -0.01em; }
.show-country { font-size: 10px; color: var(--dim); }
.show-venue { display: flex; flex-direction: column; gap: 4px; }
.show-venue-name { font-family: var(--display); font-size: 17px; }
.show-note { font-size: 10px; color: var(--dim); }
.show-action { justify-self: end; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  padding: 9px 14px;
  border: 1px solid var(--accent); color: var(--accent);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.pill.is-tickets:hover { background: var(--accent); color: #000; }
.pill.is-muted { border-color: var(--line-2); color: var(--dim); cursor: default; }

/* ── TBA / empty live state ─────────────────────────────────────────── */
.live-empty {
  border: 1px solid var(--line-2);
  background:
    linear-gradient(180deg, rgba(42,243,255,0.02), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.016) 0 8px, transparent 8px 16px);
  padding: clamp(40px, 8vw, 100px) clamp(24px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.live-empty::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(42,243,255,0.07), transparent 50%);
  pointer-events: none;
}
.live-empty-inner { position: relative; display: grid; gap: 20px; max-width: 56ch; }
.live-empty-mark { display: flex; align-items: center; gap: 14px; }
.live-empty-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent);
  animation: tbaPulse 1.8s ease-in-out infinite;
}
.live-empty-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  max-width: 200px;
}
@keyframes tbaPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}
.live-empty-head { color: var(--accent); letter-spacing: 0.24em; }
.live-empty-body {
  font-family: var(--display); font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.86);
}
.live-empty-cta {
  align-self: start; margin-top: 12px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  padding: 16px 26px;
  border: 1px solid var(--accent); color: var(--accent);
  background: rgba(42,243,255,0.04);
  transition: background 0.25s, color 0.25s;
}
.live-empty-cta:hover { background: var(--accent); color: #000; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 5;
  border-top: 1px solid var(--line);
  padding: 32px var(--pad-x);
}
.footer-inner {
  max-width: 1480px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.footer-built { flex: 1; }

/* ── Mobile nav overlay ─────────────────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav-link {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 8vw, 56px); letter-spacing: -0.02em;
  color: var(--dim); padding: 8px 0;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--ink); }
.mobile-nav-lang {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em;
}
.mobile-lang-btn { color: var(--dim); transition: color 0.2s; padding: 4px 8px; }
.mobile-lang-btn.is-active { color: var(--accent); }
.mobile-lang-btn:hover { color: var(--ink); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .music-grid { grid-template-columns: 1fr; }
  .about-bg-logo { opacity: 0.025; width: 60vw; }
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .show { grid-template-columns: 32px 100px 1fr 100px; }
  .show-venue { display: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .hero-name { font-size: clamp(80px, 22vw, 140px); }
  .dossier-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dossier-blocks { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --pad-x: 20px; }
  .show { grid-template-columns: 80px 1fr 90px; gap: 16px; }
  .show-idx { display: none; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .rider-grid { gap: 0; }
  .rider-col { gap: 0; }
  .rider-block, .rider-block-wide { border-bottom: 1px solid var(--line); }
  /* Rider: notas en línea propia */
  .rider-note-inline {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--dim);
  }
  /* Statement más compacto */
  .statement-p { font-size: 14px; line-height: 1.75; }
  .statement-p::first-letter { font-size: 1.4em; }
}

/* ── Hover / touch guards ────────────────────────────────────────────── */
@media (hover: none) {
  .nav-link::after { display: none; }
  .show:hover { padding-left: 0; padding-right: 0; background: none; }
}

/* ── Safe: reveal[data-split] must never be invisible ─────────────────── */
.reveal[data-split] { opacity: 1; transform: none; }
