/* =========================================================
   DJ Amir Champ — Stylesheet (Mobile First)
   ========================================================= */

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --paper: #f2f2f0;
  --hero-bg: #f1f0ee;
  --line: #e1e1de;
  --line-strong: #c9c9c5;
  --mute: #66676a;
  --text: #3a3b3e;
  --graphite: #2a2b2e;
  --dark: #1c1d20;
  --ink: #17181a;
  --black: #0d0d0e;

  --sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;

  --gutter: clamp(20px, 5.5vw, 72px);
  --maxw: 1320px;
  --section: clamp(88px, 13vw, 176px);
  --hh: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  interpolate-size: allow-keywords;
}
@media (min-width: 960px) { :root { --hh: 84px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}
@media (min-width: 960px) { body { font-size: 17px; } }
img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.tone-dark :focus-visible, .tone-black :focus-visible, .footer :focus-visible { outline-color: #fff; }
[hidden] { display: none !important; }

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px;
}
.skip:focus { top: 12px; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--section); }
.tone-paper { background: var(--paper); }
.tone-dark { background: var(--dark); color: #c4c4c0; }
.tone-black { background: var(--black); color: #b9b9b5; }

/* ---------- Typography ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.tone-dark .eyebrow { color: #909090; }

.h2, .display, .hero__title, .final__title {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.h2 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.6rem); line-height: 1.04; }
.display { font-size: clamp(2.6rem, 1.3rem + 5.6vw, 7rem); line-height: .96; letter-spacing: -.045em; }
.display--sm { font-size: clamp(2.3rem, 1.4rem + 3.8vw, 5rem); line-height: 1; }
.tone-dark .h2, .tone-dark .display, .tone-black .final__title { color: #fff; }

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em;
}
.h2 em, .display em, .hero__title em, .final__title em, .statement em { font-size: 1.06em; }

.prose { max-width: 640px; }
.prose p + p { margin-top: 1.05em; }
.prose .btn { margin-top: 36px; }
.lead { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.4rem); line-height: 1.5; color: var(--ink); letter-spacing: -.01em; }
.tone-dark .lead { color: #eaeae7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 54px; padding: 0 28px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; line-height: 1.2;
  border: 1px solid transparent; border-radius: 0;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #e6e6e3; }
.btn--ghost { border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: 12px; }
.btn--block { width: 100%; }
@media (max-width: 639px) { .btn--block-sm { width: 100%; } }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 32px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  padding-block: 10px; border-bottom: 1px solid currentColor;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.top-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 48px; pointer-events: none; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding-top: env(safe-area-inset-top);
  background: transparent;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-scrolled, .menu-open .header { background: rgba(255, 255, 255, .97); box-shadow: 0 1px 0 var(--line); }
.header__inner {
  width: min(100% - 2 * var(--gutter), 1480px); margin-inline: auto;
  height: var(--hh);
  display: flex; align-items: center; gap: 24px;
  transition: height .4s var(--ease);
}
.header.is-scrolled .header__inner { height: calc(var(--hh) - 10px); }
@media (min-width: 960px) { .header.is-scrolled .header__inner { height: calc(var(--hh) - 20px); } }

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); margin-right: auto; white-space: nowrap; min-height: 44px; }
.logo__dj { font-size: 10px; font-weight: 600; letter-spacing: .16em; border: 1px solid currentColor; padding: 3px 5px 2px 6px; line-height: 1; }
.logo__name { font-size: 16px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.header__cta { display: none; }

.burger {
  position: relative; width: 48px; height: 48px; margin-right: -12px;
  display: grid; place-items: center; color: var(--ink);
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px; background: currentColor;
  transition: transform .45s var(--ease);
}
.burger span:first-child { transform: translateY(-4px); }
.burger span:last-child { transform: translateY(4px); }
.menu-open .burger span:first-child { transform: rotate(45deg); }
.menu-open .burger span:last-child { transform: rotate(-45deg); }

/* Mobile menu (overlay, keine Lücken) */
@media (max-width: 1119px) {
  .nav {
    position: fixed; inset: 0; z-index: -1;
    display: flex; flex-direction: column;
    padding: calc(var(--hh) + env(safe-area-inset-top) + 16px) var(--gutter) calc(28px + env(safe-area-inset-bottom));
    background: #fff;
    overflow-y: auto; overscroll-behavior: contain;
    visibility: hidden; opacity: 0;
    transition: opacity .35s var(--ease), visibility 0s linear .35s;
  }
  .menu-open .nav { visibility: visible; opacity: 1; transition: opacity .35s var(--ease); }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list a {
    display: flex; align-items: center; min-height: 64px;
    font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 500; letter-spacing: -.03em; color: var(--ink);
    opacity: 0; transform: translateY(12px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .menu-open .nav__list a { opacity: 1; transform: none; }
  .menu-open .nav__list li:nth-child(2) a { transition-delay: .04s; }
  .menu-open .nav__list li:nth-child(3) a { transition-delay: .08s; }
  .menu-open .nav__list li:nth-child(4) a { transition-delay: .12s; }
  .menu-open .nav__list li:nth-child(5) a { transition-delay: .16s; }
  .menu-open .nav__list li:nth-child(6) a { transition-delay: .2s; }
  .nav__mobile-extra { margin-top: auto; padding-top: 32px; display: grid; gap: 18px; }
  .social-icons { display: flex; gap: 6px; margin-left: -10px; }
  .social-icons a { display: grid; place-items: center; width: 48px; height: 48px; color: var(--ink); }
  .social-icons svg { width: 22px; height: 22px; }
}
@media (min-width: 1120px) {
  .burger, .nav__mobile-extra { display: none; }
  .header__cta { display: inline-flex; }
  .nav__list { display: flex; gap: clamp(20px, 2.2vw, 36px); }
  .nav__list a {
    position: relative; display: inline-block; padding-block: 10px;
    font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  }
  .nav__list a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
  }
  .nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
}
html.menu-open, html.menu-open body { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--graphite);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.hero::before, .hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; }
/* leichtes Overlay: oben hell für die Navigation, unten dunkler für den Text */
.hero::before { background: linear-gradient(to bottom, rgba(255,255,255,.55) 0, rgba(255,255,255,0) 130px); }
.hero::after { background: linear-gradient(to bottom, rgba(20,20,22,0) 30%, rgba(20,20,22,.5) 52%, rgba(20,20,22,.86) 100%); }

.hero__content { position: relative; padding-top: calc(var(--hh) + 40px); padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
.hero__eyebrow { color: rgba(255,255,255,.8); margin-bottom: 16px; }
.hero__title {
  color: #fff;
  font-size: clamp(2.45rem, 1.5rem + 4.4vw, 5.8rem);
  line-height: .98; letter-spacing: -.045em;
  max-width: 13ch;
}
.hero__sub { margin-top: 18px; font-size: clamp(1.02rem, .95rem + .4vw, 1.3rem); line-height: 1.45; color: #fff; max-width: 34ch; font-weight: 500; letter-spacing: -.01em; }
.hero__text { margin-top: 14px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 52ch; }
.hero .btn-row { margin-top: 28px; }
.hero .btn--dark { background: #fff; color: var(--ink); }
.hero .btn--dark:hover { background: #e6e6e3; }
.hero .btn--ghost { color: #fff; }
.hero .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }
.hero__loc { margin-top: 26px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.hero__loc span { margin-inline: 6px; }

@media (max-width: 479px) {
  .hero .btn { flex: 1 1 100%; }
  .hero__text { font-size: 14.5px; }
}

@media (min-width: 960px) {
  .hero { align-items: center; background: var(--hero-bg); color: var(--ink); min-height: max(680px, 100svh); }
  .hero__media { left: auto; width: 56%; }
  .hero::before { background: linear-gradient(to bottom, rgba(255,255,255,.5) 0, rgba(255,255,255,0) 160px); }
  .hero::after { left: 44%; right: auto; width: 20%; background: linear-gradient(to right, var(--hero-bg) 0%, rgba(241,240,238,.6) 45%, rgba(241,240,238,0) 100%); }
  .hero__content { padding-top: calc(var(--hh) + 32px); padding-bottom: 64px; }
  .hero__content > * { max-width: min(46vw, 640px); }
  .hero__eyebrow { color: var(--mute); }
  .hero__title { color: var(--ink); max-width: 14ch; font-size: clamp(3rem, 1rem + 3.7vw, 5.6rem); }
  .hero__sub { color: var(--ink); }
  .hero__text { color: var(--text); font-size: 16px; }
  .hero .btn--dark { background: var(--ink); color: #fff; }
  .hero .btn--dark:hover { background: #000; }
  .hero .btn--ghost { color: var(--ink); }
  .hero .btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
  .hero__loc { color: var(--mute); }
}
@media (min-width: 1500px) { .hero__media { width: 54%; } .hero::after { left: 46%; } }


/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transform: none; transition: opacity .4s linear; }
}

/* ---------- Media (sanfte Bildbewegung) ---------- */
.media { position: relative; overflow: hidden; background: #e4e4e1; }
.media picture, .media img { width: 100%; height: 100%; }
.media img { object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .media img { animation: drift linear both; animation-timeline: view(); animation-range: cover; }
    @keyframes drift { from { transform: scale(1.08) translateY(-2.5%); } to { transform: scale(1.08) translateY(2.5%); } }
  }
}

/* ---------- Intro ---------- */
.intro__grid { display: grid; gap: 36px; }
.intro__body p:not(.lead) { color: var(--text); }
.focus {
  margin-top: clamp(56px, 8vw, 104px);
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
.focus li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; font-weight: 500; color: var(--ink); letter-spacing: -.005em;
}
.focus li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; border: 1px solid var(--ink); flex: none; }
@media (min-width: 640px) { .focus { grid-template-columns: repeat(2, 1fr); column-gap: 32px; } }
@media (min-width: 960px) {
  .intro__grid { grid-template-columns: 5fr 7fr; gap: 8vw; align-items: start; }
  .intro__body { padding-top: 44px; }
  .focus { grid-template-columns: repeat(3, 1fr); column-gap: 40px; }
  .focus li { padding: 22px 0; }
}

/* ---------- Hochzeiten ---------- */
.weddings { padding-top: 0; }
.weddings .display { max-width: 12ch; margin-bottom: clamp(40px, 6vw, 88px); }
.weddings__grid { display: grid; gap: 48px; }
.weddings__main { margin-inline: calc(-1 * var(--gutter)); aspect-ratio: 4 / 5; }
@media (min-width: 640px) { .weddings__main { margin-inline: 0; } }
@media (min-width: 960px) {
  .weddings__grid { grid-template-columns: 7fr 5fr; gap: 6vw; }
  .weddings__main { aspect-ratio: 4 / 5; }
  .weddings__text { align-self: center; }
}

/* ---------- Genres ---------- */
.genres__title { max-width: 18ch; }
.genre-grid {
  margin-top: clamp(44px, 6vw, 80px);
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line-strong); border: 1px solid var(--line-strong);
}
.genre {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  min-height: 150px; padding: 18px 20px 22px;
  background: var(--paper);
  transition: background-color .5s var(--ease), color .5s var(--ease);
}
.genre__no { font-size: 12px; letter-spacing: .12em; color: var(--mute); font-variant-numeric: tabular-nums; transition: color .5s var(--ease); }
.genre__name {
  font-size: clamp(1.6rem, 1rem + 1.6vw, 2.5rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.02;
  text-transform: uppercase; color: var(--ink); transition: color .5s var(--ease);
  overflow-wrap: anywhere;
}
.genre p { font-size: 14px; line-height: 1.45; color: var(--text); margin-top: 10px; transition: color .5s var(--ease); }
@media (hover: hover) {
  .genre:hover { background: var(--graphite); }
  .genre:hover .genre__name { color: #fff; }
  .genre:hover p { color: #cfcfcb; }
  .genre:hover .genre__no { color: #9a9a97; }
}
@media (min-width: 560px) { .genre-grid { grid-template-columns: repeat(2, 1fr); } .genre { min-height: 200px; } }
@media (min-width: 900px) {
  .genre-grid { grid-template-columns: repeat(3, 1fr); }
  .genre { min-height: 280px; padding: 28px 30px 32px; }
  .genre p { font-size: 15px; }
}
.statement {
  margin: clamp(64px, 9vw, 128px) auto 0; max-width: 24ch;
  text-align: center; text-wrap: balance;
  font-size: clamp(1.6rem, 1.05rem + 2.3vw, 3.1rem); line-height: 1.12; letter-spacing: -.03em;
  font-weight: 500; color: var(--ink);
}

/* ---------- Ablauf ---------- */
.process__grid { display: grid; gap: 48px; }
.timeline { counter-reset: step; border-top: 1px solid var(--ink); }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 8px;
  padding: 28px 0 32px; border-bottom: 1px solid var(--line);
}
.step__no { font-size: 13px; font-weight: 500; letter-spacing: .1em; color: var(--mute); padding-top: 7px; font-variant-numeric: tabular-nums; }
.step__title { font-size: clamp(1.3rem, 1.1rem + .9vw, 1.9rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.15; color: var(--ink); margin-bottom: 10px; }
.step p { max-width: 560px; }
.step p + p { margin-top: .7em; }
@media (min-width: 960px) {
  .process__grid { grid-template-columns: 5fr 7fr; gap: 8vw; align-items: start; }
  .process__head { position: sticky; top: calc(var(--hh) + 40px); }
  .step { grid-template-columns: 120px 1fr; padding: 40px 0 44px; }
  .step__no { font-size: 14px; padding-top: 10px; }
}

/* ---------- Music Edits ---------- */
.edits__head { max-width: 900px; }
.edits__lead { margin-top: 32px; max-width: 640px; }
.wave { position: relative; margin: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 96px); padding-bottom: 64px; }
.wave__svg { width: 100%; height: clamp(110px, 17vw, 220px); overflow: visible; }
.wave__svg rect { fill: #4b4c51; }
.wave__svg rect.hot { fill: #fff; }
.wave__svg .cut { stroke: rgba(255,255,255,.35); stroke-width: 1; stroke-dasharray: 3 5; vector-effect: non-scaling-stroke; }
.js .wave__svg rect { transform-box: fill-box; transform-origin: center; transform: scaleY(.12); transition: transform .9s var(--ease); transition-delay: calc(var(--i) * 7ms); }
.js .wave.is-in .wave__svg rect { transform: none; }
.wave__head {
  position: absolute; left: 0; top: 0; width: 100%; height: clamp(110px, 17vw, 220px);
  pointer-events: none; transform: translateX(0); opacity: 0;
}
.wave__head::before { content: ""; position: absolute; left: 0; top: -8px; bottom: -8px; width: 1px; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.6); }
@media (prefers-reduced-motion: no-preference) {
  .wave.is-playing .wave__head { opacity: 1; animation: playhead 14s linear infinite; }
}
@keyframes playhead { from { transform: translateX(0); } to { transform: translateX(100%); } }
.wave__labels { position: absolute; left: 0; right: 0; bottom: 0; height: 52px; }
.wave__labels span {
  position: absolute; left: calc(var(--x) * 1%); top: 0; bottom: 0;
  max-width: 25%; padding: 14px 8px 0 10px; border-left: 1px solid rgba(255,255,255,.22);
  font-size: 10.5px; line-height: 1.3; letter-spacing: .1em; text-transform: uppercase; color: #9d9d9a;
}
.wave__labels span.hot { color: #fff; max-width: 29%; }
.wave__labels b { font-weight: inherit; }
@media (max-width: 719px) { .wave__labels .lg { display: none; } .wave__labels span { letter-spacing: .04em; padding-left: 6px; padding-right: 2px; } }
@media (min-width: 720px) { .wave__labels span { font-size: 12px; padding-left: 14px; } }

.edits__grid { display: grid; gap: 56px; }
.edit { border-top: 1px solid rgba(255,255,255,.2); padding-top: 32px; }
.edit__tag {
  display: inline-block; margin-bottom: 22px; padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #d9d9d6;
}
.edit__title { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.7rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; color: #fff; }
.edit__q { margin: 18px 0 20px; font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 1.15rem + .8vw, 1.75rem); line-height: 1.25; color: #fff; }
.edit p:not(.edit__q) { max-width: 520px; }
.edit p + p:not(.edit__q) { margin-top: .9em; }
.edits__cta { margin-top: clamp(48px, 7vw, 88px); }
@media (min-width: 900px) { .edits__grid { grid-template-columns: 1fr 1fr; gap: 6vw; } }

/* ---------- Events ---------- */
.events__grid { display: grid; gap: 48px; }
/* Studio-Porträt: Kopf oben halten */
.events__media img { object-position: 50% 20%; }
.events__media { aspect-ratio: 1; margin-inline: calc(-1 * var(--gutter)); }
@media (min-width: 640px) { .events__media { margin-inline: 0; } }
.events .display { margin-bottom: 32px; }
.resident {
  display: grid; gap: 4px; margin: 40px 0 28px; padding: 26px 0;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.resident__label { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.resident__name { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.2rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; color: var(--ink); }
.resident__city { font-family: var(--serif); font-style: italic; font-size: 1.45rem; color: var(--ink); }
.event-types { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.event-types li {
  padding: 9px 16px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 14px; color: var(--ink); background: rgba(255,255,255,.5);
}
@media (min-width: 960px) {
  .events__grid { grid-template-columns: 5fr 6fr; gap: 7vw; align-items: center; }
  .events__media { aspect-ratio: 4 / 5; }
}

/* ---------- Über mich ---------- */
.about__grid { display: grid; gap: 56px; }
.about .h2 { max-width: 16ch; margin-bottom: 36px; }
.about__quote {
  margin: 44px 0 28px; max-width: 22ch;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.85rem); line-height: 1.14; color: var(--ink); letter-spacing: -.01em;
  text-wrap: balance;
}
.about__sign { margin-top: 28px; font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--ink); }
.about__media { aspect-ratio: 4 / 5; }
@media (min-width: 960px) {
  .about__grid { grid-template-columns: 7fr 5fr; gap: 7vw; align-items: center; }
}

/* ---------- Testimonials ---------- */
.reviews__head .h2 { max-width: 18ch; }
.reviews__sub { margin-top: 18px; max-width: 40ch; font-size: clamp(1.05rem, .98rem + .4vw, 1.3rem); line-height: 1.45; color: var(--text); letter-spacing: -.01em; }
.reviews__track {
  margin-top: clamp(40px, 6vw, 72px);
  width: 100%; padding-inline: var(--gutter);
  display: grid; grid-auto-flow: column; grid-auto-columns: min(86%, 440px); gap: 14px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding-bottom: 16px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track:focus-visible { outline-offset: -2px; }
.review {
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  padding: 30px 26px 26px; background: #fff;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.review__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.stars { display: flex; gap: 4px; color: var(--ink); }
.stars svg { width: 18px; height: 18px; }
.review__mark { font-family: var(--serif); font-style: italic; font-size: 4.2rem; line-height: .7; color: #d6d6d2; margin-top: -2px; }
.review__name {
  margin-top: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 1.2rem + .6vw, 1.7rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.1; color: var(--ink);
}
.review__quote { margin-top: 20px; }
.review__quote p { font-size: 15.5px; line-height: 1.75; color: var(--text); }
.review__note { margin-top: auto; padding-top: 22px; font-size: 11px; line-height: 1.4; letter-spacing: .02em; color: #8c8c89; }
@media (hover: hover) {
  .review:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 24px 48px -32px rgba(23,24,26,.28); }
}
@media (prefers-reduced-motion: reduce) { .review:hover { transform: none; } }
@media (min-width: 1100px) {
  .reviews__track {
    width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; padding-inline: 0; padding-bottom: 0;
    grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); gap: 20px; overflow: visible;
  }
  .review { padding: 44px 38px 34px; }
}

/* ---------- FAQ ---------- */
.faq__grid { display: grid; gap: 40px; }
.faq__list { border-top: 1px solid var(--ink); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 64px; padding: 18px 0; cursor: pointer; list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.qa summary::-webkit-details-marker { display: none; }
.qa h3 { font-size: clamp(1.05rem, .98rem + .45vw, 1.35rem); font-weight: 500; letter-spacing: -.015em; line-height: 1.35; color: var(--ink); }
.qa i { position: relative; flex: none; width: 18px; height: 18px; }
.qa i::before, .qa i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; margin-top: -.75px; background: var(--ink); transition: transform .45s var(--ease); }
.qa i::after { transform: rotate(90deg); }
.qa[open] i::after { transform: rotate(0); }
.qa__a p { max-width: 640px; padding: 0 40px 26px 0; }
.qa::details-content { height: 0; overflow: clip; transition: height .45s var(--ease), content-visibility .45s allow-discrete; }
.qa[open]::details-content { height: auto; }
@media (hover: hover) { .qa summary:hover h3 { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; } }
@media (min-width: 960px) {
  .faq__grid { grid-template-columns: 4fr 8fr; gap: 8vw; align-items: start; }
  .faq__head { position: sticky; top: calc(var(--hh) + 40px); }
  .qa summary { min-height: 80px; }
}

/* ---------- Instagram ---------- */
.insta { border-top: 1px solid var(--line); }
.insta__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 40px; margin-bottom: clamp(36px, 5vw, 64px); }
.insta__handle {
  display: inline-flex; align-items: center; gap: 14px; min-height: 48px;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 2rem); font-weight: 500; letter-spacing: -.02em; color: var(--ink);
}
.insta__handle svg { width: 1.1em; height: 1.1em; }
.insta__handle span { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; transition: background-size .45s var(--ease); padding-bottom: 2px; }
.insta__handle:hover span { background-size: 0 1px; background-position: 100% 100%; }
.socials { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); width: 100%; }
.socials a {
  display: grid; grid-template-columns: 22px 1fr; column-gap: 12px; align-items: center;
  min-height: 72px; padding: 14px 16px; background: #fff; color: var(--ink);
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.socials svg { width: 22px; height: 22px; grid-row: span 2; }
.socials__name { font-size: 15px; font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
.socials__handle { font-size: 12.5px; color: var(--mute); line-height: 1.3; overflow-wrap: anywhere; transition: color .35s var(--ease); }
@media (hover: hover) {
  .socials a:hover { background: var(--ink); color: #fff; }
  .socials a:hover .socials__handle { color: #b9b9b5; }
}
@media (min-width: 900px) {
  .socials { grid-template-columns: repeat(4, 1fr); width: auto; flex: 1 1 640px; max-width: 760px; }
  .socials a { padding: 16px 20px; }
}
.reels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.reel {
  position: relative; display: block; aspect-ratio: 9 / 16; overflow: hidden;
  background: var(--graphite); color: #fff;
}
.reel picture, .reel img { width: 100%; height: 100%; }
.reel img { object-fit: cover; transition: transform 1.2s var(--ease); }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,.55)); }
.reel__play {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: var(--ink);
}
.reel__play svg { width: 16px; height: 16px; margin-left: 2px; }
.reel__label { position: absolute; left: 14px; bottom: 14px; z-index: 1; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.reel--type { display: flex; flex-direction: column; justify-content: space-between; padding: 18px; background: var(--ink); }
.reel--type::after { display: none; }
.reel--type > svg { width: 28px; height: 28px; }
.reel__big { font-size: clamp(1.15rem, .9rem + 1.1vw, 1.9rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.1; hyphens: manual; }
.reel__follow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.reel__follow svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
@media (hover: hover) {
  .reel:hover img { transform: scale(1.05); }
  .reel:hover .reel__follow svg { transform: translateX(4px); }
}
@media (min-width: 900px) { .reels { grid-template-columns: repeat(4, 1fr); gap: 16px; } .reel--type { padding: 26px; } }

/* ---------- Kontakt ---------- */
.contact__grid { display: grid; gap: 48px; }
.contact .display { margin-bottom: 28px; max-width: 13ch; }
.contact__channels { margin-top: 40px; border-top: 1px solid var(--ink); max-width: 460px; }
.contact__channels li { display: grid; gap: 2px; padding: 16px 0; border-bottom: 1px solid var(--line-strong); }
.contact__channels span { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.contact__channels a { display: inline-flex; align-items: center; gap: 12px; min-height: 40px; font-size: 1.12rem; font-weight: 500; color: var(--ink); }
.contact__channels svg { width: 20px; height: 20px; }
.contact__channels a:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }

.form-card { background: #fff; padding: clamp(24px, 4.5vw, 60px); margin-inline: calc(-1 * var(--gutter)); }
@media (min-width: 640px) { .form-card { margin-inline: 0; } }
.form { display: grid; grid-template-columns: 1fr; gap: 20px; }
.field { display: grid; gap: 8px; min-width: 0; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: .01em; }
.field label b { color: var(--mute); font-weight: 500; }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 0 16px;
  font-size: 16px; line-height: 1.4; color: var(--ink);
  background: #fff; border: 1px solid var(--line-strong); border-radius: 0;
  -webkit-appearance: none; appearance: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input[type="date"] { display: block; padding-top: 14px; padding-bottom: 14px; }
.field input::-webkit-date-and-time-value { text-align: left; }
.field textarea { padding: 14px 16px; min-height: 144px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9d9d99; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(23,24,26,.12); }
.field [aria-invalid="true"] { border-color: #a4281f !important; }
.select { position: relative; }
.select::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; margin-top: -6px;
  border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: rotate(45deg); pointer-events: none;
}
.select select { padding-right: 44px; cursor: pointer; }
.select select:invalid { color: var(--mute); }
.check { grid-template-columns: 22px 1fr; align-items: start; gap: 14px; margin-top: 4px; }
.check input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--ink); cursor: pointer; }
.check label { font-size: 14px; font-weight: 400; line-height: 1.55; color: var(--text); }
.check a { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }
.check input[aria-invalid="true"] { outline: 2px solid #a4281f; outline-offset: 2px; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 6px; }
.form__note { font-size: 13px; color: var(--mute); }
.form__status { font-size: 14px; color: #a4281f; }
.form .btn[disabled] { opacity: .6; cursor: progress; }
.form-success { text-align: center; padding: 56px 8px; outline: none; }
.form-success__mark { display: block; position: relative; width: 60px; height: 60px; margin: 0 auto 28px; border: 1px solid var(--ink); border-radius: 50%; }
.form-success__mark::after { content: ""; position: absolute; left: 22px; top: 16px; width: 12px; height: 22px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: rotate(45deg); }
.form-success__title { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem); font-weight: 500; letter-spacing: -.03em; color: var(--ink); margin-bottom: 10px; }
@media (min-width: 640px) {
  .form { grid-template-columns: 1fr 1fr; gap: 22px 20px; }
  .field--full { grid-column: 1 / -1; }
}
@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 5fr 7fr; gap: 6vw; align-items: start; }
  .contact__intro { position: sticky; top: calc(var(--hh) + 40px); }
}

/* ---------- Final CTA ---------- */
.final { padding-block: clamp(110px, 17vw, 240px); text-align: center; overflow: hidden; }
.final__inner { display: flex; flex-direction: column; align-items: center; }
.final__title { font-size: clamp(2.7rem, 1.3rem + 6.4vw, 8rem); line-height: .95; letter-spacing: -.05em; max-width: 12ch; }
.final__text { margin: 28px auto 40px; max-width: 46ch; font-size: clamp(1rem, .95rem + .35vw, 1.2rem); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #a6a6a2; font-size: 15px; padding-top: clamp(64px, 8vw, 104px); }
.footer__grid { display: grid; gap: 44px; padding-bottom: 56px; }
.footer__logo { color: #fff; font-size: 15px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.footer__loc { margin-top: 4px; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer a { transition: color .3s ease; }
.footer a:hover { color: #fff; }
.footer__nav a { display: inline-flex; align-items: center; min-height: 40px; }
.footer__contact { display: grid; gap: 6px; align-content: start; }
.footer__contact a { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; color: #e2e2df; }
.footer__contact svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px calc(96px + env(safe-area-inset-bottom)); font-size: 13px; }
@media (min-width: 960px) {
  .footer__grid { grid-template-columns: 5fr 4fr 3fr; gap: 6vw; }
  .footer__bottom { padding-bottom: 28px; }
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed; z-index: 40;
  left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transform: translateY(calc(100% + 32px)); visibility: hidden;
  transition: transform .5s var(--ease), visibility 0s linear .5s;
}
.sticky-cta svg { width: 18px; height: 18px; }
.sticky-cta.is-visible { transform: none; visibility: visible; transition: transform .5s var(--ease); }
.menu-open .sticky-cta { visibility: hidden; }
@media (min-width: 960px) { .sticky-cta { display: none; } }

/* ---------- Rechtliche Unterseiten ---------- */
.legal { padding-top: calc(var(--hh) + clamp(56px, 8vw, 120px)); padding-bottom: var(--section); }
.legal h1 { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.6rem); font-weight: 500; letter-spacing: -.045em; line-height: 1; color: var(--ink); margin-bottom: 48px; }
.legal h2 { font-size: 1.35rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink); margin: 44px 0 12px; }
.legal p, .legal li { max-width: 720px; }
.legal p + p { margin-top: .9em; }
.legal ul { list-style: disc; padding-left: 1.2em; margin-top: .6em; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.todo { background: #ececea; outline: 1px dashed #9a9a96; padding: 1px 6px; }
.legal .btn { text-decoration: none; margin-top: 36px; }

/* ---------- Preloader (Music Production) ---------- */
.preloader__inner { width: min(300px, 78vw); display: grid; gap: 22px; }
.preloader__eq { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 5px; }
.preloader__eq span {
  flex: 1; height: 100%; border-radius: 2px; background: #fff;
  transform: scaleY(.15); transform-origin: center;
  animation: eq 1s ease-in-out infinite alternate;
}
.preloader__eq span:nth-child(1)  { animation-duration: .9s;  animation-delay: -.2s; }
.preloader__eq span:nth-child(2)  { animation-duration: .7s;  animation-delay: -.5s; }
.preloader__eq span:nth-child(3)  { animation-duration: 1.1s; animation-delay: -.1s; }
.preloader__eq span:nth-child(4)  { animation-duration: .8s;  animation-delay: -.7s; }
.preloader__eq span:nth-child(5)  { animation-duration: .6s;  animation-delay: -.3s; }
.preloader__eq span:nth-child(6)  { animation-duration: 1s;   animation-delay: -.6s; }
.preloader__eq span:nth-child(7)  { animation-duration: .75s; animation-delay: -.4s; }
.preloader__eq span:nth-child(8)  { animation-duration: .95s; animation-delay: -.8s; }
.preloader__eq span:nth-child(9)  { animation-duration: .65s; animation-delay: -.15s; }
.preloader__eq span:nth-child(10) { animation-duration: 1.05s; animation-delay: -.45s; }
.preloader__eq span:nth-child(11) { animation-duration: .85s; animation-delay: -.25s; }
@keyframes eq { 0% { transform: scaleY(.12); } 50% { transform: scaleY(.55); } 100% { transform: scaleY(1); } }
.preloader__track { position: relative; height: 1px; background: rgba(255,255,255,.18); overflow: hidden; }
.preloader__track i { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; animation: track 3.2s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes track { to { transform: scaleX(1); } }
.preloader__title { margin-top: 6px; text-align: center; font-size: 13px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.preloader__title em { font-size: 1.45em; letter-spacing: .01em; text-transform: none; margin-left: 4px; color: rgba(255,255,255,.85); }
.preloader.is-done .preloader__inner { transform: translateY(-10px); transition: transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .preloader__eq span { animation: none; transform: scaleY(.5); }
  .preloader__track i { animation-duration: .4s; }
}
