/* ==========================================================================
   DJ MADCUT — Shared Styles
   Palette:  --bg #F7F6F2  --ink #15151A  --accent #4B3BFF  --accent-2 #FF3D6E
             --surface #ECEAE3  --line #DEDBD1
   Type:     Display  "Space Grotesk"   Body "Inter"   Mono "IBM Plex Mono"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Space+Grotesk:wght@500;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root{
  --bg: #F7F6F2;
  --ink: #15151A;
  --ink-soft: #55545C;
  --accent: #4B3BFF;
  --accent-2: #FF3D6E;
  --surface: #ECEAE3;
  --line: #DEDBD1;
  --radius: 2px;
  --max: 960px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: opacity .25s ease;
}
body.page-exit{ opacity: 0; }
@media (prefers-reduced-motion: reduce){
  body{ transition: none; }
}

h1,h2,h3{
  font-family: 'Anton', 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.005em;
  transform: skewX(-4deg);
  transform-origin: left;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--pink{ color: var(--accent-2); }

a{ color: inherit; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Preloader ---------- */
.preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .45s ease, visibility .45s ease;
  animation: preloader-autohide 0s ease 4s forwards;
}
@keyframes preloader-autohide{
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.preloader img{ width: 140px; height:auto; }
.preloader .eq{ height: 34px; gap: 6px; margin-top: 18px; }
.preloader .eq span{ width: 6px; }
.preloader-inner{ display:flex; flex-direction:column; align-items:center; }
.preloader--hide{ opacity: 0; visibility: hidden; pointer-events: none; }
@media (prefers-reduced-motion: reduce){
  .preloader{ transition: none; }
}

/* ---------- Announcement Banner ---------- */
.announce{
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}
.announce:empty{ display:none; padding:0; }
.announce a{ color:#fff; text-decoration: underline; font-weight:600; }
.announce strong{ font-weight:700; }
.announce--muted{ background: var(--ink); }

/* ---------- Nav ---------- */
.nav{
  position: sticky; top: 0; z-index: 20;
  background: rgba(247,246,242,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 64px;
}
.nav-mark{
  font-family:'Space Grotesk', sans-serif;
  font-weight:700; font-size:1.1rem; letter-spacing: -0.01em;
  text-decoration:none; color: var(--ink);
  display:flex; align-items:center; gap:10px;
}
.nav-logo{ height: 18px; width:auto; display:block; }
.nav-links{
  display:flex; gap: 28px; list-style:none; margin:0; padding:0;
}
.nav-links a{
  text-decoration:none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{
  color: var(--ink);
  border-color: var(--accent);
}

/* Mobile menu toggle */
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  padding: 8px; margin: -8px;
  width: 36px; height: 36px;
  flex-direction: column; justify-content:center; align-items:center; gap:5px;
}
.nav-toggle span{
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Equalizer signature ---------- */
.eq{
  display:inline-flex; align-items:flex-end; gap: 3px; height: 16px;
}
.eq span{
  width: 3px; background: var(--accent); display:block;
  animation: eqbeat 1.1s ease-in-out infinite;
}
.eq span:nth-child(1){ height: 40%; animation-delay: 0s; }
.eq span:nth-child(2){ height: 100%; animation-delay: .15s; }
.eq span:nth-child(3){ height: 65%; animation-delay: .3s; }
.eq span:nth-child(4){ height: 85%; animation-delay: .45s; }
@keyframes eqbeat{
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce){
  .eq span{ animation: none; height: 70%; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 120px 0 72px;
  border-bottom: 1px solid var(--line);
  background: #0E0E12 url('images/hero.jpg') center 22% / cover no-repeat;
  color: #F7F6F2;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,18,0.55) 0%, rgba(14,14,18,0.72) 55%, #F7F6F2 100%),
    linear-gradient(100deg, rgba(75,59,255,0.35), rgba(255,61,110,0.12));
  mix-blend-mode: multiply;
}
.hero .wrap{ position:relative; z-index:2; }
.hero-layer{
  position:absolute; inset:0;
  background-size:cover; background-position:center 22%;
  opacity:0;
  transition: opacity 1.4s ease;
  z-index:0;
}
.hero-layer.active{ opacity:1; }
@media (prefers-reduced-motion: reduce){
  .hero-layer{ transition:none; }
}
.hero h1{
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  margin: 14px 0 20px;
  color: #fff;
}
.hero .eyebrow{ color: #C9C2FF; }
.hero--gigs{
  background-image: url('images/gigs-banner.jpg');
  background-position: center 60%;
  padding: 96px 0 56px;
}
.hero--gigs h1{ font-size: clamp(2.6rem, 8vw, 5rem); }
.hero .tagline{
  max-width: 46ch;
  color: #DEDCEA;
  font-size: 1.05rem;
}
.tags{
  display:flex; gap:10px; flex-wrap:wrap; margin-top: 28px;
}
.tag{
  font-family:'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  color: #fff;
  background: var(--accent);
}
.tag:nth-child(3n+2){ background: var(--accent-2); }
.tag:nth-child(3n){ background: var(--ink); }

/* ---------- Featured At ---------- */
.featured-at{
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.featured-at .wrap{
  display:flex; align-items:center; gap: 24px; flex-wrap:wrap;
}
.featured-at .eyebrow{ white-space:nowrap; }
.featured-at ul{
  display:flex; flex-wrap:wrap; gap: 8px 22px; list-style:none; margin:0; padding:0;
}
.featured-at li{
  font-family:'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space:nowrap;
}

/* ---------- Sections ---------- */
section{ padding: 64px 0; border-bottom: 1px solid var(--line); }
section:last-of-type{ border-bottom: none; }
.section-head{ margin-bottom: 32px; }
.section-head h2{ font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 8px; }

.bio-grid{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}
.bio-portrait{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  border: 1px solid var(--line);
}
.bio-portrait--color{ filter: none; object-position: top center; }
.bio p{ max-width: 68ch; font-size: 1.02rem; color: var(--ink); margin: 0 0 1.1em; }
.bio p:last-child{ margin-bottom: 0; }
.bio-grid a.gig-cta{ display:inline-block; margin-top: 6px; }

.gigs-photo{
  position: relative;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.gigs-photo img{
  width: 100%; height: 240px; object-fit: cover; object-position: center 60%;
  filter: grayscale(1) contrast(1.05);
  display:block;
}
.gigs-photo::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(75,59,255,0.28), rgba(255,61,110,0.1));
  mix-blend-mode: multiply;
}

/* Gigs */
.gig-list{ list-style:none; margin:0; padding:0; }
.gig{
  display:grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items:center;
  padding: 18px 14px;
  margin: 0 -14px;
  border-top: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: background .15s ease, border-left-color .15s ease;
}
.gig:hover{ background: var(--surface); border-left-color: var(--accent); }
.gig:last-child{ border-bottom: 1px solid var(--line); }
.gig-date{
  font-family:'IBM Plex Mono', monospace; font-size:0.78rem; font-weight:600;
  color: #fff; background: var(--accent);
  padding: 4px 9px; display:inline-block; width:fit-content;
}
.gig-place strong{ display:block; font-size:1.02rem; }
.gig-place span{ color: var(--ink-soft); font-size: 0.9rem; }
.gig-cta{
  font-size: 0.78rem; text-transform:uppercase; letter-spacing:.06em;
  font-weight:600; text-decoration:none; white-space:nowrap;
  border-bottom: 2px solid var(--accent-2);
}
.gig-note{ color: var(--ink-soft); font-size: 0.92rem; padding: 18px 0; }
#gigs > .wrap > a.gig-cta{ display:inline-block; margin-top: 4px; }

/* Mixes */
.mix-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.mix-card{
  border: 1px solid var(--line);
  text-decoration:none;
  color: var(--ink);
  display:flex; flex-direction:column;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.mix-card:hover{ border-color: var(--accent); transform: translateY(-2px); }
.mix-thumb{
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  display:block;
}
.mix-card .mix-body{ padding: 16px 18px; }
.mix-card h3{
  font-size: 1.02rem; text-transform:none; letter-spacing:0; line-height:1.3; margin:0 0 6px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; transform: none;
}
.mix-card span{ color: var(--ink-soft); font-size: 0.82rem; font-family:'IBM Plex Mono', monospace; }

/* Contact */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.contact-block .eyebrow{ display:block; margin-bottom: 8px; }
.contact-block a.big-link{
  font-family:'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight:700;
  text-decoration:none;
  border-bottom: 2px solid var(--accent);
}
.contact-sub{
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.contact-sub a{ color: var(--ink-soft); text-decoration: underline; }
.social-row{ display:flex; gap:16px; margin-top:16px; }
.social-row a{
  width: 40px; height:40px; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .15s ease, background .15s ease;
}
.social-row a:hover{ border-color: var(--accent); background: var(--surface); }
.social-row img{ width:18px; height:18px; }

/* Footer */
footer{ padding: 32px 0 48px; }
.foot-row{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap: 12px;
  font-size: 0.8rem; color: var(--ink-soft);
}
.foot-row a{ text-decoration:none; color: var(--ink-soft); }
.foot-row a:hover{ color: var(--ink); }

.share-row{ display:flex; align-items:center; gap: 10px; }
.share-row button, .share-row a{
  display:flex; align-items:center; justify-content:center;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  background: none; cursor: pointer;
  color: var(--ink-soft);
  transition: border-color .15s ease, color .15s ease;
  padding: 0;
}
.share-row button:hover, .share-row a:hover{ border-color: var(--accent); color: var(--ink); }
.share-row svg, .share-row img{ width: 16px; height: 16px; }
.share-row .share-msg{
  font-size: 0.76rem; color: var(--accent);
  opacity: 0; transition: opacity .2s ease;
}
.share-row .share-msg.visible{ opacity: 1; }

/* ---------- Links (Linktree) page ---------- */
.links-page{
  min-height: 100vh;
  display:flex; flex-direction:column; align-items:center;
  padding: 72px 24px 40px;
}
.links-portrait{
  width: 140px; height: 140px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 2px solid var(--ink);
  filter: grayscale(1) contrast(1.05);
  margin-bottom: 20px;
}
.links-logo{
  width: 220px; max-width: 70vw; height: auto;
  margin-bottom: 8px;
}
.links-header{ text-align:center; margin-bottom: 40px; display:flex; flex-direction:column; align-items:center; }
.links-header h1{ font-size: clamp(2.2rem, 8vw, 3rem); }
.links-header .eyebrow{ display:block; margin-bottom: 14px; }
.link-stack{
  width: 100%; max-width: 440px;
  display:flex; flex-direction:column; gap: 14px;
}
.link-btn{
  display:flex; align-items:center; gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--ink);
  text-decoration:none; color: var(--ink);
  font-weight:600; font-size: 0.98rem;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.link-btn svg, .link-btn img{ width: 20px; height:20px; flex-shrink:0; }
.link-btn:hover{ background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.link-btn.primary{ background: var(--accent); border-color: var(--accent); color: #fff; }
.link-btn.primary:hover{ background: var(--ink); border-color: var(--ink); }

/* ---------- Presse ---------- */
.press-lead{ max-width: 68ch; font-size: 1.02rem; color: var(--ink); margin: 0 0 8px; }
.press-quote{
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 20px 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.download-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.download-card{
  border: 1px solid var(--line);
  padding: 18px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  text-decoration:none; color: var(--ink);
  transition: border-color .15s ease, transform .15s ease;
}
.download-card:hover{ border-color: var(--accent); transform: translateY(-2px); }
.download-card span{ font-weight:600; font-size:0.92rem; }
.download-card small{ display:block; color: var(--ink-soft); font-size:0.76rem; font-family:'IBM Plex Mono', monospace; margin-top:2px; }
.download-icon{ font-size: 1.1rem; color: var(--accent); flex-shrink:0; }

.photo-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.photo-grid a{ display:block; border: 1px solid var(--line); overflow:hidden; }
.photo-grid img{ width:100%; aspect-ratio: 1/1; object-fit:cover; display:block; transition: transform .2s ease; }
.photo-grid a:hover img{ transform: scale(1.04); }

.live-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.live-grid img{ width:100%; aspect-ratio: 4/5; object-fit:cover; display:block; border: 1px solid var(--line); }

.video-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.video-grid video{ width:100%; aspect-ratio: 9/16; object-fit:cover; display:block; border: 1px solid var(--line); background: var(--ink); }

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item:first-child{ border-top: 1px solid var(--line); }
.faq-item summary{
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color .15s ease;
}
.faq-item summary:hover{ color: var(--accent); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: "+";
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{
  margin: 12px 0 0;
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Kontaktformular ---------- */
.form-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 720px;
}
.form-field{ display:flex; flex-direction:column; gap:6px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{
  font-family:'IBM Plex Mono', monospace;
  font-size: 0.74rem; letter-spacing:.06em; text-transform:uppercase;
  color: var(--ink-soft);
}
.form-field input, .form-field select, .form-field textarea{
  font-family:'Inter', sans-serif;
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none; border-color: var(--accent);
}
.form-field textarea{ resize: vertical; min-height: 120px; font-family:'Inter', sans-serif; }
.form-honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-submit{
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 6px;
  font-family:'Space Grotesk', sans-serif;
  font-weight:700; font-size: 1rem;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.form-submit:hover{ background: var(--ink); transform: translateY(-1px); }
.form-submit:disabled{ opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note{ font-size: 0.82rem; color: var(--ink-soft); margin-top: -6px; }
.form-status{
  padding: 16px 18px;
  margin-bottom: 24px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  font-size: 0.95rem;
  max-width: 720px;
}
.form-status.error{ border-left-color: var(--accent-2); }

@media (max-width: 720px){
  .form-grid{ grid-template-columns: 1fr; }
}

.mix-loading{
  grid-column: 1 / -1;
  display:flex; align-items:center; justify-content:center;
  padding: 48px 0;
}
.mix-loading .eq{ height: 40px; gap: 8px; }
.mix-loading .eq span{ width: 7px; }

/* ---------- Wellenform-Trenner ---------- */
.waveform-section{
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.waveform-divider{
  display: block;
  width: 100%;
  height: 32px;
  color: var(--ink);
  animation: wf-color 6s ease-in-out infinite;
}
.waveform-divider rect{
  animation: wf-pulse 2.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes wf-pulse{
  0%, 100%{ transform: scaleY(0.55); }
  50%{ transform: scaleY(1.15); }
}
@keyframes wf-color{
  0%, 100%{ color: var(--ink); }
  50%{ color: var(--accent); }
}
@media (prefers-reduced-motion: reduce){
  .waveform-divider, .waveform-divider rect{ animation: none; }
}

/* ---------- Klick-Ripple ---------- */
.ripple-wrap{ position: relative; overflow: hidden; }
.ripple{
  position: absolute;
  border-radius: 50%;
  background: rgba(75,59,255,0.3);
  transform: scale(0);
  animation: ripple-anim .6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-anim{
  to{ transform: scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .ripple{ display: none; }
}

/* ---------- Logo-Bounce ---------- */
@keyframes logo-bounce{
  0%{ transform: scale(1) rotate(0); }
  30%{ transform: scale(0.85) rotate(-4deg); }
  55%{ transform: scale(1.15) rotate(3deg); }
  75%{ transform: scale(0.95) rotate(-1deg); }
  100%{ transform: scale(1) rotate(0); }
}
.logo-bounce{ animation: logo-bounce .32s ease; }
@media (prefers-reduced-motion: reduce){
  .logo-bounce{ animation: none; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ---------- Gig-Slider (Startseite) ---------- */
.gig-slider-wrap{
  display:flex; align-items:center; gap: 10px;
  margin: 4px 0 20px;
}
.gig-slider{
  display:flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  flex: 1;
  scrollbar-width: thin;
}
.gig-slider::-webkit-scrollbar{ height: 5px; }
.gig-slider::-webkit-scrollbar-thumb{ background: var(--line); }
.gig-slide{
  scroll-snap-align: start;
  flex: 0 0 220px;
  border: 1px solid var(--line);
  padding: 16px;
  display:flex; flex-direction:column; gap: 6px;
  transition: border-color .15s ease, transform .15s ease;
}
.gig-slide:hover{ border-color: var(--accent); transform: translateY(-2px); }
.gig-slide .gig-date{
  font-family:'IBM Plex Mono', monospace; font-size:0.74rem; font-weight:600;
  color:#fff; background: var(--accent);
  padding: 3px 8px; display:inline-block; width:fit-content;
}
.gig-slide strong{ font-family:'Space Grotesk', sans-serif; font-size: 1rem; }
.gig-slide .gig-slide-loc{ color: var(--ink-soft); font-size: 0.85rem; }
.gig-slide .gig-cta{ margin-top: 2px; }
.slider-nav{
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
  transition: border-color .15s ease, color .15s ease;
}
.slider-nav:hover{ border-color: var(--accent); color: var(--accent); }
@media (max-width: 720px){
  .slider-nav{ display: none; }
}

/* ---------- Backstage (geheime Seite) ---------- */
.vip-room{
  min-height: 100vh;
  background: #0E0E12;
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}
.vip-wrap{
  max-width: 480px;
  text-align: center;
  display:flex; flex-direction:column; align-items:center;
}
.vip-eq{ height: 30px; gap: 6px; margin-bottom: 20px; }
.vip-eq span{ width: 6px; }
.vip-room h1{
  color: #fff;
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  margin: 10px 0 18px;
}
.vip-text{
  color: #B9B7C4;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 32px;
}
.vip-back{
  color: #8A8894;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: .04em;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.vip-back:hover{ color: var(--accent); border-color: var(--accent); }

.wf-player{
  width: 100%; max-width: 420px;
  display:flex; flex-direction: column; align-items:center;
  gap: 12px;
  margin: 0 auto 28px;
}
.wf-row{
  width: 100%;
  display:flex; align-items:center; gap: 16px;
}
.wf-play{
  flex-shrink:0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(75,59,255,0.5);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.wf-play:hover{ transform: scale(1.06); box-shadow: 0 0 0 6px rgba(75,59,255,0.2); }
.wf-play:active{ transform: scale(0.96); }
.wf-play svg{ width: 20px; height: 20px; }
.wf-play .wf-icon-pause{ display:none; }
.wf-play.is-playing .wf-icon-play{ display:none; }
.wf-play.is-playing .wf-icon-pause{ display:block; }
.wf-play.is-playing{ background: var(--accent-2); }
.wf-bars{
  position: relative;
  flex: 1;
  min-width: 0;
  height: 44px;
  cursor: pointer;
  overflow: hidden;
}
.wf-bars-bg, .wf-bars-fg{
  position: absolute; inset: 0;
  display:flex; align-items:center; gap: 2px;
}
.wf-bars-bg span{
  flex:1; min-width:1px; background: #33323C; border-radius: 1px;
}
.wf-bars-fg-wrap{
  position: absolute; inset: 0;
  width: 0%;
  overflow: hidden;
}
.wf-bars-fg{ width: 100%; }
.wf-bars-fg span{
  flex:1; min-width:1px; background: var(--accent); border-radius: 1px;
}
.wf-time{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: .03em;
  color: #8A8894;
  text-align: center;
}
@media (max-width: 480px){
  .wf-player{ max-width: 100%; }
  .wf-bars-bg, .wf-bars-fg{ gap: 1px; }
}

/* ---------- Impressum ---------- */
.legal{
  padding: 96px 0 64px;
  max-width: 68ch; margin: 0 auto;
}
.legal h1{ font-size: clamp(2rem, 6vw, 2.8rem); margin-bottom: 32px; }
.legal h2{
  font-size: 1rem; text-transform:uppercase; letter-spacing:.04em;
  margin-top: 40px; margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  transform: none;
}
.legal p, .legal address{ margin: 0 0 6px; font-style:normal; color: var(--ink); }
.placeholder{ color: var(--accent-2); }

/* ---------- Responsive ---------- */
@media (max-width: 720px){
  .nav-toggle{ display:flex; }
  .nav-links{
    display:none;
    position: absolute;
    top: 64px; left:0; right:0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .nav.nav-open .nav-links{ display:flex; }
  .nav-links li{ width:100%; }
  .nav-links a{
    display:block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid transparent;
  }
  .nav-links a:hover, .nav-links a[aria-current="page"]{
    border-bottom-color: var(--line);
    border-left-color: var(--accent);
    background: var(--surface);
  }
  .gig{ grid-template-columns: 1fr; gap: 6px; }
  .gig-cta{ margin-top: 4px; }
  .mix-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .bio-grid{ grid-template-columns: 1fr; }
  .bio-portrait{ max-width: 220px; }
  .download-grid{ grid-template-columns: 1fr; }
  .photo-grid{ grid-template-columns: repeat(2, 1fr); }
  .live-grid{ grid-template-columns: repeat(2, 1fr); }
  .video-grid{ grid-template-columns: repeat(2, 1fr); }
}
