/* ============================================
   NOVA — Hypermodern DJ Frontend
   Tech House Aesthetic · Dark / Neon
   ============================================ */

:root {
  --bg:        #0a0a0b;
  --bg-2:      #111114;
  --surface:   #16161a;
  --ink:       #f4f4f5;
  --ink-dim:   #a1a1aa;
  --ink-mute:  #52525b;
  --line:      #1f1f24;
  --line-2:    #2a2a31;
  --accent:    #b3ff3a;        /* signature acid lime */
  --accent-2:  #ff2e88;        /* magenta */
  --accent-3:  #00e5ff;        /* cyan */

  --font-sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-disp: 'Bebas Neue', 'Space Grotesk', sans-serif;

  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --d-fast:   180ms;
  --d-med:    360ms;
  --d-slow:   720ms;

  --radius:   14px;
  --radius-s: 8px;
  --radius-l: 22px;

  --maxw:     1380px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #000; }

/* ========== Custom cursor ========== */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.cursor {
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.cursor.hover {
  width: 64px; height: 64px;
  background: var(--accent);
  border-color: var(--accent);
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } button, a { cursor: pointer; } }

/* ========== Background canvas / noise ========== */
.bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
  opacity: .55;
  filter: saturate(1.1);
}
.noise {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  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='.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
}

/* ========== Loader ========== */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: var(--font-disp);
  font-size: clamp(80px, 18vw, 240px);
  letter-spacing: .04em;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}
.loader-text::before, .loader-text::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  color: var(--accent);
  overflow: hidden;
}
.loader-text::before {
  -webkit-text-stroke: 0;
  clip-path: inset(0 0 60% 0);
  animation: glitchA 2.5s infinite linear alternate;
}
.loader-text::after {
  -webkit-text-stroke: 0;
  color: var(--accent-2);
  clip-path: inset(70% 0 0 0);
  animation: glitchB 2.5s infinite linear alternate;
}
@keyframes glitchA {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3px, 1px); }
  40%  { transform: translate(3px, -1px); }
  60%  { transform: translate(-2px, 0); }
  80%  { transform: translate(2px, 1px); }
  100% { transform: translate(0,0); }
}
@keyframes glitchB {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(3px, -1px); }
  40%  { transform: translate(-3px, 1px); }
  60%  { transform: translate(2px, 0); }
  80%  { transform: translate(-2px, -1px); }
  100% { transform: translate(0,0); }
}
.loader-bar {
  width: min(80vw, 480px); height: 2px;
  background: var(--line-2);
  margin-top: 28px; overflow: hidden;
  border-radius: 2px;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  transition: width .15s linear;
}

/* ========== Nav ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: backdrop-filter .3s, background .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(10,10,11,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 36px;
  border-bottom: 1px solid var(--line);
}
.logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.logo-mark { color: var(--accent); font-size: 20px; animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.logo-text { letter-spacing: .15em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color var(--d-fast) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width var(--d-med) var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--d-fast) var(--ease), background var(--d-fast);
}
.nav-cta:hover { background: var(--ink); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }

/* ========== Buttons ========== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform var(--d-fast) var(--ease), background var(--d-fast), color var(--d-fast);
  overflow: hidden;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }

/* ========== Section base ========== */
.section {
  position: relative;
  padding: 140px 36px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  display: flex; align-items: baseline; gap: 24px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--accent);
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: .02em;
  line-height: 1;
  font-weight: 400;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 160px 36px 180px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-meta {
  display: flex; gap: 48px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 32px;
}
.meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-label { color: var(--ink-mute); font-size: 10px; }
.meta-value { color: var(--ink); }
.meta-value.live { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(120px, 26vw, 380px);
  line-height: .82;
  letter-spacing: -.01em;
  font-weight: 400;
  margin-bottom: 32px;
}
.hero-line { display: inline-flex; gap: .02em; }
.hero-line span {
  display: inline-block;
  position: relative;
  transition: transform var(--d-med) var(--ease);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-line span:nth-child(1) { -webkit-text-stroke: 1px var(--accent); color: transparent; background: none; }
.hero-line span:nth-child(4) { color: var(--accent); background: none; -webkit-text-clip: text; }
.hero:hover .hero-line span:nth-child(1) { transform: translateY(-6px); }
.hero:hover .hero-line span:nth-child(2) { transform: translateY(-2px); }
.hero:hover .hero-line span:nth-child(3) { transform: translateY(2px); }
.hero:hover .hero-line span:nth-child(4) { transform: translateY(6px); }

.hero-sub {
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-sub-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--accent-3);
  margin-bottom: 14px;
}
.hero-sub p {
  font-size: 18px;
  color: var(--ink-dim);
  line-height: 1.55;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

/* ========== Player entfernt — Spotify-Embed ist der einzige Player ========== */

/* ========== Marquee ========== */
.marquee {
  position: absolute; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-family: var(--font-disp);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: .04em;
  color: var(--ink-dim);
  background: linear-gradient(180deg, transparent, rgba(10,10,11,.6) 40%, var(--bg));
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .accent { color: var(--accent); }
.marquee-track.big { font-size: clamp(80px, 16vw, 240px); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { color: var(--ink-dim); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.about-text em { color: var(--accent); font-style: normal; }
.about-lead { font-size: 32px !important; color: var(--ink) !important; line-height: 1.25 !important; }

/* === Press-Foto === */
.about-media { position: relative; }
.press-photo {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  /* Bild ist 1366x1397 (fast quadratisch) — keine harte Aspect-Ratio,
     das Bild selbst bestimmt die Proportionen. Max-Höhe damit es nicht
     die Sektion dominiert. */
  max-width: 100%;
  max-height: 520px;
  /* Subtle hover lift */
  transition: transform var(--d-med) var(--ease), border-color var(--d-fast);
}
.press-photo:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.press-photo img {
  display: block;
  width: 100%; height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;  /* etwas höher, damit das Gesicht gut sichtbar bleibt */
  /* Press-Foto ist B/W — leicht entsättigen, Kontrast verstärken */
  filter: grayscale(1) contrast(1.05) brightness(.95);
  transition: filter var(--d-med) var(--ease), transform var(--d-slow) var(--ease);
}
.press-photo:hover img {
  filter: grayscale(.3) contrast(1.05) brightness(1);
  transform: scale(1.03);
}
/* Subtiles Gradient-Overlay am unteren Rand für Figcaption-Lesbarkeit */
.press-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,.7) 100%);
  pointer-events: none;
}
.press-photo figcaption {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--d-med) var(--ease), transform var(--d-med) var(--ease);
}
.press-photo:hover figcaption,
.press-photo:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}
.press-photo .ph-tag {
  background: rgba(179,255,58,.12);
  border: 1px solid rgba(179,255,58,.4);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 4px;
}
.press-photo .ph-credit {
  color: var(--ink-dim);
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.about-lead .word {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  cursor: none;
  transition: color var(--d-fast);
}
.about-lead .word::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--d-med) var(--ease);
}
.about-lead .word:hover::before { transform: scaleX(1); transform-origin: left; }
.about-lead .word:hover { color: var(--accent); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.stat-num {
  font-family: var(--font-disp);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: .02em;
}
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--ink-dim); text-transform: uppercase; }

/* ========== MIXES / SPOTIFY ========== */
.section-cta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: border-color var(--d-fast), color var(--d-fast), background var(--d-fast);
}
.section-cta:hover { border-color: #1DB954; color: #1DB954; background: rgba(29,185,84,.08); }
@media (max-width: 720px) { .section-cta { margin-left: 0; } .section-head { flex-wrap: wrap; } }

.spotify-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 880px) { .spotify-wrap { grid-template-columns: 1fr; } }

.spotify-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-l);
  padding: 12px;
  overflow: hidden;
  transition: border-color var(--d-fast);
  min-height: 360px;
}
.spotify-frame:hover { border-color: #1DB954; }
.spotify-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(29,185,84,.12), transparent 50%);
  pointer-events: none;
  opacity: .6;
  transition: opacity var(--d-med);
}
.spotify-frame:hover::before { opacity: 1; }
.spotify-frame iframe {
  position: relative;
  display: block;
  width: 100% !important;
  background: transparent;
  min-height: 352px;
}
.spotify-frame .spotify-fallback {
  position: absolute; inset: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--surface);
  z-index: 1;
  border-radius: 12px;
  transition: opacity .3s var(--ease);
}
.spotify-frame.loaded .spotify-fallback { opacity: 0; pointer-events: none; }
.spotify-frame .spotify-fallback .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1DB954;
  animation: pulse 1.4s infinite;
  box-shadow: 0 0 14px #1DB954;
}

.spotify-aside {
  display: flex; flex-direction: column; justify-content: center;
  padding: 12px 8px 12px 16px;
  border-left: 1px solid var(--line-2);
}
@media (max-width: 880px) {
  .spotify-aside { border-left: 0; border-top: 1px solid var(--line-2); padding: 24px 8px 0; }
}
.spotify-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  color: #1DB954;
  margin-bottom: 18px;
}
.spotify-note {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.spotify-note a {
  color: var(--ink);
  position: relative;
  border-bottom: 1px solid #1DB954;
  padding-bottom: 1px;
  transition: color var(--d-fast);
}
.spotify-note a:hover { color: #1DB954; }
/* (Alte .mix-card* Regeln entfernt — Spotify-Embed ersetzt die Karten) */

/* ========== GALLERY (entfernt) ========== */

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-lead {
  font-family: var(--font-disp);
  font-size: 28px;
  letter-spacing: .02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 36px;
}
.contact-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
}
.cr-label { color: var(--ink-mute); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.cr-value { color: var(--ink); position: relative; }
.cr-value::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--d-med) var(--ease);
}
.cr-value:hover::after { transform: scaleX(1); transform-origin: left; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 22px 0 12px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color var(--d-fast);
  resize: vertical;
  font-family: var(--font-sans);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--accent); }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' stroke='%23a1a1aa' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  padding-right: 28px;
  cursor: none;
}
.field label {
  position: absolute; left: 0; top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: transform var(--d-med) var(--ease), color var(--d-fast), font-size var(--d-med);
  pointer-events: none;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  transform: translateY(-20px);
  font-size: 10px;
  color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }

.form-msg {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  min-height: 18px;
  letter-spacing: .08em;
}

/* ========== Footer ========== */
.footer {
  position: relative;
  padding: 60px 36px 36px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  overflow: hidden;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: var(--maxw);
  margin: 0 auto 40px;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-logo .logo-mark.big { font-size: 48px; }
.footer-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.socials { display: flex; gap: 22px; flex-wrap: wrap; }
.socials a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color var(--d-fast);
  position: relative;
}
.socials a:hover { color: var(--accent); }
.footer-marquee {
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  width: 100vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  color: var(--ink-dim);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--maxw);
  margin: 36px auto 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--d-slow) var(--ease), transform var(--d-slow) var(--ease);
}
/* Only hide on scroll-up reveal when JS adds .reveal-pending */
.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== Mobile ========== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-burger.open + .mobile-menu { display: flex; }
  .section { padding: 100px 24px; }
  .hero { padding: 140px 24px 100px; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-1 { grid-column: span 2; grid-row: span 1; }
  .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; }
  .g-6 { grid-column: span 2; }
  .gig-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gig-row .gig-tag, .gig-row .gig-cta { grid-column: span 2; }
  /* (gig-row not used anymore, kept commented reference) */
  /* .player Mobile-Regel entfernt */
  .hero-title { font-size: clamp(90px, 28vw, 200px); }
  .section-title { font-size: clamp(36px, 12vw, 64px); }
  .marquee { font-size: 40px; bottom: 20px; }
}

@media (max-width: 600px) {
  .hero-meta { gap: 24px; }
  .about-lead { font-size: 22px !important; }
  .stat-num { font-size: 44px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 { grid-column: span 1; }
  .g-item { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
