/* ============================================================
   JULIAN PRIETZ — Audio Engineer · Producer · Artist
   Redesign 2026 — light edition
   Palette (aus Trend-Poster):
   #E8E2FE lavender · #0B0536 indigo · #5273FF blue
   #FF4300 orange · #FE9EE0 pink · #71CACD teal
   ============================================================ */

:root {
  --bg: #e8e2fe;          /* lavender base */
  --bg-tint: #f1eeff;     /* lighter section */
  --surface: #ffffff;     /* cards */
  --ink: #0b0536;         /* deep indigo text */
  --muted: rgba(11, 5, 54, 0.58);
  --muted-2: rgba(11, 5, 54, 0.38);
  --line: rgba(11, 5, 54, 0.14);
  --line-strong: rgba(11, 5, 54, 0.3);

  --blue: #5273ff;
  --orange: #ff4300;
  --pink: #fe9ee0;
  --teal: #71cacd;
  --accent: var(--orange);
  --accent-soft: rgba(255, 67, 0, 0.1);
  --blue-soft: rgba(82, 115, 255, 0.1);
  --avail: #2faa6e;

  /* tinted surfaces (statt weiß) */
  --surf-blue: #d7e0ff;
  --surf-pink: #fcd6ec;
  --surf-teal: #cdebec;
  --surf-orange: #ffdccf;
  --surf-violet: #e3dafc;

  --font-display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --gutter: clamp(1.25rem, 4.5vw, 5rem);
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.7, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.1rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  mix-blend-mode: multiply;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); }
  60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,3%); }
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: var(--ink); }
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background-color 0.3s, border-color 0.3s;
}
.cursor-ring.is-hover { width: 60px; height: 60px; border-color: var(--orange); }
.cursor-ring.is-hover.has-label { width: 86px; height: 86px; background: var(--orange); border-color: var(--orange); }
.cursor-ring .c-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.62rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; opacity: 0;
  transition: opacity 0.25s;
}
.cursor-ring.has-label .c-label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9500;
  background: var(--bg);
  display: grid; place-items: center;
}
.preloader .pl-inner { text-align: center; width: min(360px, 70vw); }
.preloader .pl-num {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--muted); letter-spacing: 0.1em;
  display: flex; justify-content: space-between; margin-bottom: 0.9rem;
}
.preloader .pl-bar { height: 2px; width: 100%; background: var(--line); overflow: hidden; }
.preloader .pl-bar span { display: block; height: 100%; width: 100%; background: var(--orange); transform: scaleX(0); transform-origin: 0 50%; }
.preloader .pl-word {
  margin-top: 1.4rem; font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.78rem; color: var(--muted);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 7000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem var(--gutter);
  transition: transform 0.5s var(--ease), background-color 0.4s, padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(232, 226, 254, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-top: 0.9rem; padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.site-header.is-hidden { transform: translateY(-130%); }
.brand {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.02rem; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.6rem; color: var(--ink);
}
.brand .eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; }
.brand .eq i { width: 2.5px; background: var(--orange); height: 40%; animation: eq 1.1s ease-in-out infinite; }
.brand .eq i:nth-child(2) { animation-delay: 0.2s; }
.brand .eq i:nth-child(3) { animation-delay: 0.4s; }
.brand .eq i:nth-child(4) { animation-delay: 0.1s; }
@keyframes eq { 0%,100% { height: 30%; } 50% { height: 100%; } }

.main-nav { display: flex; align-items: center; gap: 2.4rem; }
.main-nav a {
  position: relative;
  font-family: var(--font-mono); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); padding: 0.2rem 0;
}
.main-nav a .num { color: var(--orange); margin-right: 0.4rem; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.4s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.nav-toggle { display: none; width: 40px; height: 40px; position: relative; z-index: 7002; color: var(--ink); }
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: currentColor; transition: 0.4s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 24px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; background: var(--bg);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    clip-path: circle(0% at calc(100% - 44px) 40px);
    transition: clip-path 0.7s var(--ease); pointer-events: none;
  }
  body.nav-open .main-nav { clip-path: circle(150% at calc(100% - 44px) 40px); pointer-events: auto; }
  .main-nav a { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0; }
}

/* ---------- Layout ---------- */
.section { padding: clamp(5rem, 11vw, 11rem) var(--gutter); position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; }
.sec-label {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 2.5rem;
}
.sec-label .idx { color: var(--orange); }
.sec-label::before { content: ""; width: 36px; height: 1px; background: var(--line-strong); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 var(--gutter) clamp(2.5rem, 6vw, 5rem); overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, var(--bg) 24%, rgba(232,226,254,0.6) 46%, rgba(232,226,254,0) 64%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero-top {
  position: absolute; top: clamp(7rem, 16vh, 11rem); left: var(--gutter); right: var(--gutter); z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.hero-tagline {
  font-family: var(--font-mono); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); line-height: 1.8;
}
.hero-tagline .nowrap { white-space: nowrap; }
@media (max-width: 480px) { .hero-tagline .nowrap { white-space: normal; } }
.hero-status {
  font-family: var(--font-mono); font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  display: flex; align-items: center; gap: 0.55rem;
}
.hero-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--avail); box-shadow: 0 0 0 0 rgba(47,170,110,0.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(47,170,110,0.5);} 60% { box-shadow: 0 0 0 8px rgba(47,170,110,0);} }

h1.hero-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.7rem, 10vw, 9rem);
  line-height: 1.0; letter-spacing: -0.04em; text-transform: uppercase;
}
/* padding gibt den Umlaut-Pünktchen & Unterlängen Luft, overflow maskiert weiterhin den Reveal */
.hero-title .ln { display: block; overflow: hidden; padding-top: 0.16em; margin-top: -0.16em; }
.hero-title .ln > span { display: block; will-change: transform; padding-bottom: 0.06em; }
.hero-title .thin { font-weight: 300; color: var(--muted); }
.hero-title .out { -webkit-text-stroke: 1.4px var(--ink); color: transparent; }
.hero-title .hl { color: var(--orange); font-style: italic; }

/* Roles-Band: kleine Service-Liste, zwischen zwei durchgehenden Linien zentriert */
.roles-band { border-top: 1px solid var(--line); padding: 1.05rem var(--gutter); }
.roles-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.6rem; }
.roles-inner span { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.roles-inner span::before { content: "◦ "; color: var(--orange); }

.scroll-cue { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.scroll-cue .ln-track { width: 46px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.scroll-cue .ln-track::after { content: ""; position: absolute; inset: 0; background: var(--orange); animation: cue 1.9s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(100%);} }

.sound-toggle {
  position: absolute; right: var(--gutter); bottom: clamp(2.5rem, 6vw, 5rem); z-index: 3;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
}
.sound-toggle .bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; }
.sound-toggle .bars i { width: 2px; background: var(--orange); height: 20%; transition: height 0.1s; }
.sound-toggle.is-on .bars i { animation: eq 0.8s ease-in-out infinite; }
.sound-toggle.is-on .bars i:nth-child(2){animation-delay:.15s} .sound-toggle.is-on .bars i:nth-child(3){animation-delay:.3s} .sound-toggle.is-on .bars i:nth-child(4){animation-delay:.1s}

/* ---------- Ticker (statische Service-Wörter, sanfter Scroll-Parallax) ---------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(1.6rem, 3.4vw, 2.8rem) var(--gutter); overflow: hidden; }
.ticker-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 3.5rem); }
.ticker .tw {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 8vw, 6rem); letter-spacing: -0.03em; text-transform: uppercase; line-height: 1;
  color: var(--ink); will-change: transform; white-space: nowrap;
}
.ticker .tw.out { -webkit-text-stroke: 1.2px var(--ink); color: transparent; }
.ticker .sep { color: var(--orange); font-size: clamp(1.2rem, 3vw, 2rem); }

/* ---------- About ---------- */
.about-lead { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.22; letter-spacing: -0.02em; max-width: 22ch; margin-bottom: 3rem; }
.about-lead .accent { color: var(--orange); }
.about-lead .word { display: inline-block; }
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-body p { color: var(--muted); margin-bottom: 1.3rem; max-width: 48ch; }
.about-body p strong { color: var(--ink); font-weight: 600; }
.about-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; margin-top: 2.5rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.fact .fact-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; color: var(--ink); }
.fact .fact-num .accent { color: inherit; }
.fact .fact-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 0.3rem; }
.about-portrait { align-self: stretch; min-height: 460px; }
.about-portrait img { object-position: 50% 22%; top: -7%; height: 114%; }
.about-studio { margin-top: 1.5rem; aspect-ratio: 16 / 9.5; }
.about-studio img { object-position: 50% 66%; top: -7%; height: 114%; }
@media (max-width: 700px) { .about-studio { aspect-ratio: 4 / 3.4; } }
@media (max-width: 880px) { .about-portrait { min-height: 60vw; } }

/* ---------- Photo component (mit Fallback-Platzhalter) ---------- */
.photo {
  position: relative; overflow: hidden; border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--blue), var(--pink));
}
.photo:nth-of-type(2n) { background: linear-gradient(135deg, var(--teal), var(--blue)); }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo.parallax img { top: -6%; height: 112%; }
.photo .photo-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; background: rgba(11,5,54,0.5); padding: 0.4rem 0.85rem; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.photo.no-img img { display: none; }
.photo.no-img::after {
  content: attr(data-label); position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center; color: rgba(255,255,255,0.92);
  font-family: var(--font-mono); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem;
}

/* ---------- Services ---------- */
.services { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 0.5fr 2fr 2.3fr auto;
  gap: 1.5rem; align-items: center;
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 0; border-bottom: 1px solid var(--line);
  position: relative; cursor: pointer; transition: padding-left 0.5s var(--ease);
}
.svc-row::before { content: ""; position: absolute; inset: 0; background: var(--blue-soft); transform: scaleY(0); transform-origin: 50% 100%; transition: transform 0.5s var(--ease); z-index: -1; }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row:hover { padding-left: 1.5rem; }
.svc-idx { font-family: var(--font-mono); font-size: 0.8rem; color: var(--orange); }
.svc-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3.6vw, 2.8rem); letter-spacing: -0.02em; text-transform: uppercase; line-height: 1; }
.svc-desc { color: var(--muted); font-size: 0.96rem; max-width: 40ch; }
.svc-arrow { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: transform 0.5s var(--ease), background-color 0.4s, color 0.4s, border-color 0.4s; }
.svc-row:hover .svc-arrow { transform: rotate(-45deg); background: var(--orange); color: #fff; border-color: var(--orange); }
@media (max-width: 820px) { .svc-row { grid-template-columns: auto 1fr auto; } .svc-desc { display: none; } }

/* ---------- Work ---------- */
.work-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.work-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.03em; text-transform: uppercase; line-height: 1; }
.work-list { display: grid; gap: 1.3rem; }
.work-card {
  position: relative; display: grid; grid-template-columns: auto auto 1fr auto; gap: clamp(1.2rem, 3vw, 2.2rem); align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid rgba(11,5,54,0.12); border-radius: 16px;
  overflow: hidden; color: var(--ink);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work-card.c-blue { background: #5273ff; }
.work-card.c-pink { background: #fe9ee0; }
.work-card.c-teal { background: #71cacd; }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -24px rgba(11,5,54,0.5); }

/* dunkelblaue Füllung beim Hover — wie die Headline-Font */
.work-glow { position: absolute; inset: 0; z-index: 0; border-radius: inherit; background: var(--ink); opacity: 0; transition: opacity 0.45s var(--ease); pointer-events: none; }
.work-card:hover .work-glow { opacity: 1; }

.work-play {
  position: relative; z-index: 1; width: clamp(54px, 8vw, 72px); height: clamp(54px, 8vw, 72px); flex: none;
  border-radius: 50%; border: 1px solid rgba(11,5,54,0.35); display: grid; place-items: center; color: var(--ink);
  background: rgba(255,255,255,0.32);
  transition: background-color 0.4s, color 0.4s, border-color 0.4s, transform 0.4s var(--ease);
}
.work-play svg { width: 38%; height: 38%; }
.work-play .icon-pause { display: none; }
.work-card.is-playing .work-play .icon-play { display: none; }
.work-card.is-playing .work-play .icon-pause { display: block; }
.work-card:hover .work-play,
.work-card.is-playing .work-play { background: var(--orange); color: #fff; border-color: var(--orange); transform: scale(1.05); }

.work-thumb {
  position: relative; z-index: 1;
  width: clamp(64px, 9vw, 104px); aspect-ratio: 1; flex: none;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(11,5,54,0.18);
  box-shadow: 0 6px 18px -8px rgba(11,5,54,0.35);
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.07); }
.work-info { position: relative; z-index: 1; min-width: 0; }
.work-cat { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); opacity: 0.7; transition: color 0.4s, opacity 0.4s; }
.work-info h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 3.4vw, 2.3rem); letter-spacing: -0.02em; line-height: 1.05; margin: 0.3rem 0 0.4rem; color: var(--ink); transition: color 0.4s; }
.work-info p { color: var(--ink); opacity: 0.78; font-size: 0.95rem; max-width: 52ch; transition: color 0.4s, opacity 0.4s; }
.work-tags { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }
.work-tags .tag { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); opacity: 0.9; border: 1px solid rgba(11,5,54,0.28); background: rgba(255,255,255,0.22); padding: 0.3rem 0.7rem; border-radius: 999px; white-space: nowrap; transition: color 0.4s, border-color 0.4s, background-color 0.4s; }
.work-meter { position: relative; z-index: 1; grid-column: 1 / -1; height: 3px; background: rgba(11,5,54,0.22); border-radius: 2px; overflow: hidden; margin-top: 0.4rem; }
.work-meter span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--teal), var(--orange)); }

/* Hover: heller Text auf dunkelblauem Grund */
.work-card:hover .work-info h3,
.work-card:hover .work-info p { color: var(--bg); }
.work-card:hover .work-cat { color: var(--orange); opacity: 1; }
.work-card:hover .work-tags .tag { color: var(--bg); border-color: rgba(232,226,254,0.32); background: rgba(232,226,254,0.08); }
.work-card:hover .work-meter { background: rgba(232,226,254,0.22); }
@media (max-width: 760px) {
  .work-card { grid-template-columns: auto auto 1fr; }
  .work-tags { display: none; }
  .work-thumb { width: 56px; border-radius: 9px; }
}

/* ---------- Full-bleed photo band ---------- */
.photo-band {
  position: relative; height: clamp(46vh, 58vh, 72vh); overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--blue), var(--pink));
}
.photo-band img { position: absolute; top: -10%; left: 0; width: 100%; height: 120%; object-fit: cover; }
.photo-band.no-img img { display: none; }
.photo-band .photo-tag {
  position: absolute; left: var(--gutter); bottom: clamp(1.4rem, 3vw, 2.4rem); z-index: 2;
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff; background: rgba(11,5,54,0.5); padding: 0.5rem 1rem; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* ---------- Studio band ---------- */
.studio { border-top: 1px solid var(--line); }
.studio-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.3rem; }
@media (max-width: 760px) { .studio-grid { grid-template-columns: 1fr; } }
.studio-main { aspect-ratio: 16 / 10; }
.studio-inset { aspect-ratio: 4 / 5; }
@media (max-width: 760px) { .studio-main, .studio-inset { aspect-ratio: 4 / 3; } }

/* ---------- Tools ---------- */
.tools { border-top: 1px solid var(--line); }
.tools-grid { display: flex; gap: 0.7rem; align-items: flex-start; }
@media (max-width: 900px) { .tools-grid { flex-wrap: wrap; } }
.tool { flex: 1 1 0; min-width: 0; border-radius: 12px; overflow: hidden; }
@media (max-width: 900px) { .tool { flex: 1 1 calc(50% - 0.35rem); } }
@media (max-width: 560px) { .tool { flex: 1 1 100%; } }
.tool:nth-child(1) { background: var(--surf-blue); }
.tool:nth-child(2) { background: var(--surf-pink); }
.tool:nth-child(3) { background: var(--surf-teal); }
.tool:nth-child(4) { background: var(--surf-orange); }
.tool:nth-child(5) { background: var(--surf-violet); }
.t-head { width: 100%; min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; padding: 1rem 1.3rem; text-align: left; cursor: pointer; }
.t-cat { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; letter-spacing: -0.01em; line-height: 1.15; }
.t-plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-mono); font-size: 0.95rem; line-height: 1; transition: transform 0.4s var(--ease), background-color 0.3s, color 0.3s, border-color 0.3s; }
.t-reveal { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.t-reveal-inner { overflow: hidden; min-height: 0; }
.t-list { display: flex; flex-direction: column; gap: 0.34rem; padding: 0.1rem 1.3rem 1.4rem; }
.t-list li { font-family: var(--font-body); font-weight: 500; font-size: 0.92rem; color: rgba(11,5,54,0.72); line-height: 1.3; }
@media (hover: hover) {
  .tool:hover .t-reveal { grid-template-rows: 1fr; }
  .tool:hover .t-plus { transform: rotate(45deg); background: var(--ink); color: var(--bg); border-color: var(--ink); }
}
.tool.is-open .t-reveal { grid-template-rows: 1fr; }
.tool.is-open .t-plus { transform: rotate(45deg); background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-intro h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.03em; text-transform: uppercase; line-height: 1; }
.faq-intro p { color: var(--muted); margin-top: 1.2rem; max-width: 30ch; }
.faq-intro a { color: var(--orange); border-bottom: 1px solid currentColor; }
.faq-intro { position: sticky; top: 7rem; }
@media (max-width: 860px) { .faq-intro { position: static; } }
.accordion { display: grid; gap: 0.8rem; }
.acc-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surf-blue); transition: filter 0.35s; }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; text-align: left;
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; letter-spacing: -0.01em;
}
.acc-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.9rem;
  transition: transform 0.4s var(--ease), background-color 0.3s, color 0.3s, border-color 0.3s;
}
.acc-item.is-open .acc-icon { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: #fff; }
.acc-body { height: 0; overflow: hidden; }
.acc-body-inner { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.96rem; max-width: 60ch; }

/* ---------- Footer legal ---------- */
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--orange); }

/* ---------- Modal privacy note ---------- */
.vm-note { margin-top: 0.9rem; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; color: rgba(232,226,254,0.55); }
.vm-note a { color: rgba(232,226,254,0.8); border-bottom: 1px solid currentColor; }

/* ---------- Legal pages ---------- */
.legal-page { max-width: 780px; margin: 0 auto; padding: clamp(9rem, 16vw, 12rem) var(--gutter) clamp(4rem, 8vw, 6rem); }
.legal-page h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -0.03em; text-transform: uppercase; line-height: 1; margin-bottom: 2.5rem; }
.legal-page h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; letter-spacing: -0.01em; margin: 2.4rem 0 0.8rem; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.98rem; margin-bottom: 0.8rem; }
.legal-page ul { padding-left: 1.2rem; list-style: disc; }
.legal-page a { color: var(--orange); border-bottom: 1px solid currentColor; }
.legal-page .placeholder { background: var(--yellow, #ffcf21); background: rgba(255, 67, 0, 0.12); padding: 0 0.3em; border-radius: 4px; font-weight: 600; color: var(--ink); }
.legal-home { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); transition: color 0.3s; white-space: nowrap; }
.legal-home:hover { color: var(--orange); }

/* ---------- Contact ---------- */
.contact { text-align: center; border-top: 1px solid var(--line); }
.contact .availow { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 2rem; display: inline-flex; align-items: center; gap: 0.6rem; }
.contact .availow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--avail); }
.contact-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 11vw, 9rem); line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase; }
.contact-title a { transition: color 0.4s; }
.contact-title a:hover { color: var(--orange); }
.contact-mail {
  display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 2.5rem;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.7rem); letter-spacing: -0.01em;
  padding-bottom: 0.3rem; border-bottom: 1px solid var(--line-strong); transition: color 0.4s, border-color 0.4s;
}
.contact-mail:hover { color: var(--orange); border-color: var(--orange); }
.contact-mail svg { width: 20px; height: 20px; transition: transform 0.4s var(--ease); }
.contact-mail:hover svg { transform: translate(4px, -4px); }
.contact-secondary { margin-top: 1.4rem; color: var(--muted); font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em; }
.contact-secondary a:hover { color: var(--ink); }

/* ---------- Video modal (Referenz-Player) ---------- */
.video-modal {
  position: fixed; inset: 0; z-index: 9600;
  display: grid; place-items: center; padding: var(--gutter);
  background: rgba(11, 5, 54, 0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.video-modal.is-open { opacity: 1; pointer-events: auto; }
.vm-stage { width: min(1100px, 92vw); transform: translateY(16px) scale(0.985); transition: transform 0.5s var(--ease); }
.video-modal.is-open .vm-stage { transform: translateY(0) scale(1); }
.vm-cap { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(232,226,254,0.7); margin-bottom: 0.9rem; }
.vm-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; border: 1px solid rgba(232,226,254,0.18); background: #000; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); }
.vm-inner, .vm-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vm-close {
  position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--bg);
  border: 1px solid rgba(232,226,254,0.3); background: rgba(232,226,254,0.06);
  transition: background-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.vm-close:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(90deg); }
body.modal-open { overflow: hidden; }

/* ---------- Audio modal (EP Freedom) ---------- */
.audio-modal {
  position: fixed; inset: 0; z-index: 9600;
  display: grid; place-items: center; padding: var(--gutter);
  background: rgba(11, 5, 54, 0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.audio-modal.is-open { opacity: 1; pointer-events: auto; }
.am-card {
  width: min(880px, 94vw);
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--bg); border-radius: 20px; padding: clamp(1.4rem, 3vw, 2rem);
  transform: translateY(16px) scale(0.985); transition: transform 0.5s var(--ease);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
}
.audio-modal.is-open .am-card { transform: none; }
@media (max-width: 680px) {
  .am-card {
    grid-template-columns: 1fr;
    max-height: 88svh;
    overflow-y: auto;
    gap: 1rem;
    padding-bottom: 0;            /* Player übernimmt den unteren Abstand */
  }
  /* Cover deutlich kleiner, damit Tracks + Player aufs Display passen */
  .am-cover { width: min(44vw, 170px); margin: 0 auto; }
  .am-title { font-size: 2rem; }
  .am-sub { margin-bottom: 1rem; }
  .am-tracks { margin-bottom: 0.6rem; }
  /* Player klebt unten und ist immer sichtbar */
  .am-player {
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: var(--bg);
    margin-top: 0.2rem;
    padding-bottom: 1.2rem;
    box-shadow: 0 -14px 18px -10px var(--bg);
  }
  .am-close { top: 0.6rem; right: 0.6rem; width: 42px; height: 42px; }
}
.am-cover { aspect-ratio: 1; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); align-self: start; }
.am-cover img { width: 100%; height: 100%; object-fit: cover; }
.am-body { min-width: 0; display: flex; flex-direction: column; }
.am-eyebrow { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); }
.am-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; line-height: 1; margin: 0.35rem 0; }
.am-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.4rem; }
.am-tracks { display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 1.2rem; }
.am-track { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 0.9rem; padding: 0.7rem 0.85rem; border-radius: 10px; cursor: pointer; color: var(--ink); transition: background-color 0.3s, color 0.3s; }
.am-track:hover { background: rgba(11,5,54,0.06); }
.am-track.is-active { background: var(--ink); color: var(--bg); }
.am-tname { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.am-tdur { font-family: var(--font-mono); font-size: 0.76rem; opacity: 0.6; }
/* Track-Icon: Play-Dreieck im Ruhezustand, Equalizer beim Abspielen */
.am-ticon { position: relative; width: 14px; height: 14px; display: grid; place-items: center; flex: none; }
.am-ticon .ti-play { width: 12px; height: 12px; opacity: 0.45; transition: opacity 0.25s; }
.am-track:hover .ti-play { opacity: 0.85; }
.am-track.is-active .ti-play { opacity: 1; }
.am-ticon .ti-bars { display: none; align-items: flex-end; gap: 2px; height: 13px; }
.am-ticon .ti-bars i { width: 2.5px; height: 35%; background: currentColor; border-radius: 1px; }
.audio-modal.is-playing .am-track.is-active .ti-play { display: none; }
.audio-modal.is-playing .am-track.is-active .ti-bars { display: inline-flex; }
.audio-modal.is-playing .am-track.is-active .ti-bars i { animation: eq 0.8s ease-in-out infinite; }
.audio-modal.is-playing .am-track.is-active .ti-bars i:nth-child(2) { animation-delay: 0.2s; }
.audio-modal.is-playing .am-track.is-active .ti-bars i:nth-child(3) { animation-delay: 0.4s; }
.am-player { margin-top: auto; display: flex; align-items: center; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.am-pp { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; transition: transform 0.3s var(--ease); }
.am-pp:hover { transform: scale(1.06); }
.am-pp svg { width: 42%; height: 42%; }
.am-i-pause { display: none; }
.audio-modal.is-playing .am-i-play { display: none; }
.audio-modal.is-playing .am-i-pause { display: block; }
.am-seek { flex: 1; height: 5px; background: rgba(11,5,54,0.15); border-radius: 3px; cursor: pointer; position: relative; }
.am-seek-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue), var(--orange)); border-radius: 3px; }
.am-time { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); white-space: nowrap; }
.am-close { position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: var(--bg); border: 1px solid rgba(232,226,254,0.3); background: rgba(232,226,254,0.06); transition: background-color 0.3s, color 0.3s, transform 0.3s var(--ease); }
.am-close:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(90deg); }

/* ---------- Footer ---------- */
.site-footer { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 2.5rem; border-top: 1px solid var(--line); }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
/* Footer-Links: alle Plattformen nebeneinander, in Orange */
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a {
  position: relative;
  font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); white-space: nowrap;
  transition: color 0.3s;
}
.footer-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease);
}
.footer-links a:hover { color: var(--ink); }
.footer-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.footer-copy { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted-2); letter-spacing: 0.04em; }
.footer-top { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s; }
.footer-top:hover { color: var(--orange); }

/* ---------- Reveal helpers ---------- */
.fade-up { opacity: 0; transform: translateY(36px); }
.reduced-motion .fade-up { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
