/* =====================================================================
   ADAM GANSANIA — DJ · One-Pager
   Design system extracted & refined from the Claude-Design benchmark.
   Palette: Schwarz/Creme + Champagner-Beige #D9C6A5 + Rosé #E68CA6
   Fonts:   Space Grotesk (Display) · Manrope (Body)
   ===================================================================== */

:root {
  --bg:        #0B0B0D;
  --bg-2:      #141416;
  --bg-3:      #050506;
  --cream:     #F5F3EF;
  --amber:     #D9C6A5;
  --amber-dk:  #b3a07a;
  --magenta:   #E68CA6;
  --muted:     #a9a29a;
  --muted-2:   #8f887f;
  --muted-3:   #6B6660;
  --line:      rgba(245,243,239,.09);
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body:    'Manrope', system-ui, sans-serif;
  --maxw: 1180px;
  --nav-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--amber); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--magenta); }
input, select, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #9a938a; }
::selection { background: var(--magenta); color: #fff; }

h1, h2, h3 { font-family: var(--display); letter-spacing: -.02em; text-wrap: balance; margin: 0; }

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

/* ---- utility: triangle svg accent handled inline ---- */
.eyebrow {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer;
  font-family: var(--body); font-weight: 800;
  border-radius: 100px; line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-amber { background: var(--amber); color: var(--bg); }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(217,198,165,.6); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245,243,239,.35); font-weight: 700; }
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-2px); }
.btn-lg { font-size: 17px; padding: 16px 30px; }
.btn-md { font-size: 15px; padding: 12px 22px; }
.btn-sm { font-size: 14px; padding: 11px 20px; font-weight: 700; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px; height: var(--nav-h);
  background: linear-gradient(180deg, rgba(11,11,13,.85), rgba(11,11,13,0));
  backdrop-filter: blur(2px);
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(11,11,13,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(245,243,239,.08);
}
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand .logo-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--amber);
  -webkit-mask: url('../assets/logo/logo.png?v=2') center/contain no-repeat;
          mask: url('../assets/logo/logo.png?v=2') center/contain no-repeat;
  transition: background .25s ease;
}
.brand:hover .logo-mark { background: var(--magenta); }
.brand .wordmark { font-family: var(--display); font-weight: 700; letter-spacing: .14em; font-size: 14px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a.nav-link {
  font-size: 14px; font-weight: 600; color: #cfc9c0; cursor: pointer;
  position: relative;
}
.nav a.nav-link:hover { color: var(--cream); }
.nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--amber); transition: width .25s ease;
}
.nav a.nav-link:hover::after { width: 100%; }

/* hamburger */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; padding: 10px; z-index: 70;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease; margin: 5px 0;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: var(--bg); }
/* Foto bleibt im Grunde schwarz-weiß – nur ein Hauch Ton, der Amber/Rosé-Glow der Seite wirkt ganz leicht drüber */
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; filter: grayscale(1) brightness(1.04) contrast(1.04); }
.hero-grad {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.15) 38%, rgba(11,11,13,.78) 78%, var(--bg) 100%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(66% 55% at 26% 28%, rgba(217,198,165,.08), transparent 72%),
    radial-gradient(60% 50% at 78% 34%, rgba(230,140,166,.10), transparent 70%);
  mix-blend-mode: screen;
}
.hero-inner { position: relative; z-index: 3; padding: 0 40px 92px; max-width: 1000px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border: 1px solid rgba(245,243,239,.25);
  border-radius: 100px; margin-bottom: 26px; backdrop-filter: blur(4px);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 10px var(--magenta); animation: pulse-dot 2s ease-in-out infinite; }
.badge span { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); }
.hero h1 { font-weight: 700; font-size: clamp(44px, 7.5vw, 104px); line-height: .98; margin: 0 0 24px; }
.hero h1 .accent { color: var(--amber); }
.hero-sub { font-size: clamp(17px,1.5vw,21px); line-height: 1.5; color: #d8d2c9; max-width: 560px; margin: 0 0 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-cta .btn-amber { animation: glowpulse 3.2s ease-in-out infinite; font-size: 17px; padding: 16px 30px; }
.scroll-ind {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: floaty 2.4s ease-in-out infinite;
}
.scroll-ind .lbl { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #cfc9c0; }
.scroll-ind .arw { color: var(--amber); font-size: 15px; }

/* =====================================================================
   SECTION SHELLS
   ===================================================================== */
.section { position: relative; }
.section-dark  { background: var(--bg); }
.section-dark2 { background: var(--bg-2); }
.section-light { background: var(--cream); color: var(--bg); }
.section-pad { padding: 120px 40px; }
.watermark {
  position: absolute; width: 620px; opacity: .045; pointer-events: none;
  -webkit-mask: url('../assets/logo/logo.png?v=2') center/contain no-repeat;
          mask: url('../assets/logo/logo.png?v=2') center/contain no-repeat;
  background: var(--cream);
}

.sec-head { text-align: center; margin-bottom: 54px; }
.sec-head h2 { font-weight: 700; font-size: clamp(32px,4.5vw,58px); line-height: 1.02; margin-top: 12px; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 42%, var(--bg-2) 100%); padding: 130px 40px 120px; }
.about-grid { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo .tri {
  position: absolute; top: -22px; left: -22px; width: 118px; height: 118px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%); background: var(--magenta); opacity: .9; z-index: 0;
}
.about-photo .frame {
  position: relative; z-index: 1; border-radius: 10px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.about-eye { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.about h2 { font-weight: 700; font-size: clamp(30px,3.8vw,50px); line-height: 1.03; margin: 0 0 26px; }
.about p { font-size: 17px; line-height: 1.75; color: #c4beb4; margin: 0 0 20px; }
.about .pull {
  font-family: var(--display); font-weight: 600; font-size: 19px; line-height: 1.4; color: var(--cream);
  margin: 6px 0 30px; padding-left: 20px; border-left: 3px solid var(--amber);
}
.stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stats .num { font-family: var(--display); font-weight: 700; font-size: 34px; color: var(--amber); }
.stats .cap { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

/* genre pills */
.genres { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
.pill {
  font-family: var(--display); font-weight: 600; font-size: 18px;
  padding: 13px 24px; border-radius: 100px;
  border: 1px solid rgba(217,198,165,.4); color: var(--cream);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.pill:hover { transform: translateY(-3px); }
.pill.amber { background: var(--amber); color: var(--bg); border-color: var(--amber); }
.pill.magenta { background: var(--magenta); color: #fff; border-color: var(--magenta); }

/* =====================================================================
   SERVICES
   ===================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.svc {
  position: relative; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 32px 26px 30px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.svc:hover { transform: translateY(-6px); border-color: var(--amber); box-shadow: 0 24px 40px -24px rgba(0,0,0,.7); }
.svc.magenta:hover { border-color: var(--magenta); }
.svc .num { font-family: var(--display); font-size: 12px; letter-spacing: .18em; color: var(--muted-3); margin-bottom: 8px; }
.svc h3 { font-weight: 600; font-size: 23px; margin: 0 0 10px; }
.svc p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }
.svc svg { margin-bottom: 22px; }

/* =====================================================================
   LEISTUNGEN — UNTERSEITEN (Hochzeit / Private Feier / Club / Event)
   ===================================================================== */
.hero.sub { min-height: 78vh; min-height: 78svh; }
.hero.sub .hero-inner { padding-bottom: 74px; }
.hero.club h1 .accent { color: var(--magenta); }

/* Fotobox — Split-Hero: Text links, Plakat rechts, schwarzer Hintergrund + Muster */
.hero-split { min-height: auto; display: block; background: var(--bg); padding: 132px 0 86px; }
.hero-split .hs-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 44% at 84% 26%, rgba(217,198,165,.16), transparent 70%),
    radial-gradient(42% 40% at 9% 82%, rgba(230,140,166,.13), transparent 72%);
}
.hero-split .hs-bg::before {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background-image: radial-gradient(rgba(245,243,239,.06) 1.1px, transparent 1.1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 82%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 22%, #000 82%, transparent);
}
.hero-split .hs-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center;
}
.hero-split .hs-text { max-width: 600px; }
.hero-split h1 { font-size: clamp(38px, 4.9vw, 68px); }
.hero-split .hero-sub { margin-bottom: 34px; }
.hero-split .hs-media { display: flex; justify-content: center; }
.hero-split .hs-media img {
  display: block; width: auto; max-width: 100%; max-height: 78vh;
  border-radius: 18px; border: 1px solid var(--line);
  box-shadow: 0 44px 84px -34px rgba(0,0,0,.9);
}
.sub-lead { max-width: 730px; margin: 16px auto 0; font-size: 17px; line-height: 1.66; color: var(--muted); text-align: center; }

.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.feat { position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.feat:hover { transform: translateY(-5px); border-color: var(--amber); box-shadow: 0 24px 40px -24px rgba(0,0,0,.7); }
.feat svg { margin-bottom: 15px; }
.feat .num { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--amber); margin-bottom: 10px; line-height: 1; }
.feat h3 { font-weight: 600; font-size: 18px; margin: 0 0 8px; }
.feat p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

.sub-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 8px; }
.shot { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; background: var(--bg-2); }
.sub-gallery.is-portrait .shot { aspect-ratio: 3/4; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.shot:hover img { transform: scale(1.06); }
.shot-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 11px;
  font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: .015em;
  color: var(--cream);
  background: linear-gradient(to top, rgba(11,11,13,.85) 0%, rgba(11,11,13,.55) 45%, rgba(11,11,13,0) 100%);
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
}
.shot-cap::before {
  content: ""; width: 8px; height: 8px; flex: none;
  background: var(--amber); clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.ph-note { margin-top: 20px; font-size: 13.5px; line-height: 1.5; color: var(--muted-3); text-align: center; }
.ph-note strong { color: var(--muted); font-weight: 600; }

/* =====================================================================
   VIDEO (portrait reel)
   ===================================================================== */
.video-sec { background: var(--bg); padding: 0 40px 120px; }
.video-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 30px; gap: 20px; flex-wrap: wrap; }
.video-head .eyebrow { color: var(--magenta); }
.video-head h2 { font-weight: 700; font-size: clamp(30px,4vw,50px); line-height: 1.02; margin-top: 12px; }
.video-head p { font-size: 15px; color: var(--muted); max-width: 340px; margin: 0; }
.reel-stage { display: flex; justify-content: center; }
.reel {
  position: relative; width: min(420px, 84vw); aspect-ratio: 9/16;
  border-radius: 20px; overflow: hidden; cursor: pointer;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(245,243,239,.08);
  background: #000;
}
.reel video, .reel .reel-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel .reel-grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,13,.6), rgba(11,11,13,.05)); pointer-events: none; transition: opacity .3s ease; }
.reel .playbtn {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(217,198,165,.96); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(217,198,165,.45); transition: transform .25s ease, opacity .25s ease; pointer-events: none;
}
.reel:hover .playbtn { transform: scale(1.08); }
.reel .playbtn::before { content: ""; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent var(--bg); margin-left: 5px; }
.reel .reel-label {
  position: absolute; left: 20px; bottom: 18px; font-family: var(--display); font-weight: 600;
  letter-spacing: .06em; font-size: 15px; pointer-events: none; z-index: 3;
}
.reel.playing .playbtn { opacity: 0; }
.reel.playing .reel-grad { opacity: 0; }
.reel.playing .reel-label { opacity: 0; }

/* =====================================================================
   MUSIC (light) — SoundCloud + track player
   ===================================================================== */
.music { background: var(--cream); color: var(--bg); padding: 120px 40px; }
.music .sec-head .eyebrow { color: var(--amber-dk); }
.track {
  background: var(--bg); color: var(--cream); border-radius: 18px; padding: 30px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.track .cover { position: relative; width: 132px; height: 132px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.track .cover img { width: 100%; height: 100%; object-fit: cover; }
.track .now { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta); }
.track .title { font-family: var(--display); font-weight: 700; font-size: 24px; margin: 4px 0 2px; }
.track .meta { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.wavebars { display: flex; align-items: flex-end; gap: 3px; height: 52px; margin-bottom: 14px; }
.wavebar { flex: 1; background: var(--amber); border-radius: 2px; transform-origin: bottom; animation: wave .95s ease-in-out infinite; animation-play-state: paused; }
.wavebar.mag { background: var(--magenta); }
.wave-on .wavebar { animation-play-state: running; }
.track .transport { display: flex; align-items: center; gap: 16px; }
.play-btn {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--amber); color: var(--bg); font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.play-btn:hover { transform: scale(1.06); }
.track .bar { flex: 1; height: 5px; background: rgba(245,243,239,.14); border-radius: 100px; overflow: hidden; }
.track .bar > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg,var(--amber),var(--magenta)); border-radius: 100px; }
.track .time { font-variant-numeric: tabular-nums; font-size: 13px; color: #cfc9c0; min-width: 82px; text-align: right; }

.music-grid { margin-top: 22px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.mix-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.sc-card { border: 1px solid rgba(11,11,13,.12); border-radius: 14px; padding: 22px; background: #fff; }
.sc-card .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sc-card .head strong { font-family: var(--display); font-weight: 700; font-size: 16px; }
.sc-card .head .tag { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-3); }
.sc-card iframe { display: block; width: 100%; border: 0; border-radius: 10px; }
.sc-card iframe.mixcloud { min-height: 400px; }
.sc-card .sc-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px; }
/* Mixcloud-Facade: immer sichtbare Player-Karte, lädt echten Player bei Klick */
.mc-facade {
  position: relative; display: block; width: 100%; height: 400px;
  border: 0; padding: 0; margin: 0; border-radius: 10px; overflow: hidden;
  cursor: pointer; background: #0b0b0d;
}
.mc-facade.mc-sm { height: 236px; }
.mc-facade .mc-cover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.6); display: block;
}
.mc-facade::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,.12) 0%, rgba(11,11,13,.72) 100%);
}
.mc-play {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--amber); display: grid; place-items: center;
  box-shadow: 0 12px 34px rgba(0,0,0,.5);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.mc-play::before {
  content: ''; margin-left: 6px;
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #0b0b0d;
}
.mc-facade:hover .mc-play,
.mc-facade:focus-visible .mc-play { transform: translate(-50%, -50%) scale(1.08); }
.mc-meta {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  display: flex; flex-direction: column; gap: 3px; color: #fff;
}
.mc-title { font-family: var(--display); font-weight: 700; font-size: 19px; line-height: 1.1; }
.mc-sub { font-size: 12px; letter-spacing: .11em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.mc-facade:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.wish {
  border-radius: 14px; padding: 30px; background: linear-gradient(135deg, var(--bg), #211a10); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.wish-wide { margin-top: 22px; }
.wish h3 { font-weight: 700; font-size: 22px; margin: 16px 0 10px; }
.wish p { font-size: 15px; line-height: 1.55; color: #cfc9c0; margin: 0 0 20px; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { background: var(--bg); padding: 120px 0 60px; }
.marquee {
  overflow: hidden; margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 44s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .cell { height: 220px; border-radius: 12px; overflow: hidden; flex-shrink: 0; cursor: pointer; }
.marquee .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.marquee .cell:hover img { transform: scale(1.06); }
/* Fotobox-Laufband: Hochkant-Kacheln (kein Beschnitt der Portraitfotos) + Lauf von links nach rechts */
.marquee.mq-portrait .cell { width: 216px; height: 288px; }
.marquee.mq-rev .marquee-track { animation-direction: reverse; }

.masonry { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; column-count: 3; column-gap: 16px; }
.masonry .cell {
  break-inside: avoid; margin-bottom: 16px; border-radius: 12px; overflow: hidden; cursor: pointer; position: relative;
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.masonry .cell.in { opacity: 1; transform: none; }
.masonry .cell img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.masonry .cell::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,13,.35), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.masonry .cell:hover img { transform: scale(1.06); }
.masonry .cell:hover::after { opacity: 1; }
.gallery-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted-3); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; background: rgba(5,5,6,.94);
  backdrop-filter: blur(6px); opacity: 0; transition: opacity .25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lb-btn {
  position: absolute; background: rgba(245,243,239,.08); border: 1px solid rgba(245,243,239,.18);
  color: var(--cream); width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  font-size: 22px; display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lb-btn:hover { background: rgba(245,243,239,.18); }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close { top: 24px; right: 24px; }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: 13px; color: #cfc9c0; letter-spacing: .1em; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi { background: var(--cream); color: var(--bg); padding: 110px 40px; }
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.testi-head .eyebrow { color: var(--amber-dk); }
/* --- Google reviews summary bar --- */
.greviews-summary { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.g-logo { display: inline-flex; align-items: center; }
.greviews-score { font-family: var(--display); font-weight: 700; font-size: 32px; line-height: 1; color: var(--bg); }
.greviews-summary .stars { color: var(--amber); font-size: 22px; letter-spacing: 2px; line-height: 1; }
.greviews-count { font-size: 15px; color: var(--muted-3); }
.testi-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.quote { position: relative; margin: 0; min-width: 0; display: flex; flex-direction: column; background: #fff; border-radius: 14px; padding: 26px 24px; border: 1px solid rgba(11,11,13,.08); }
.quote .g-mark { position: absolute; top: 22px; right: 20px; display: inline-flex; opacity: .95; }
.quote .stars { color: var(--amber); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.quote p { flex: 1 1 auto; font-size: 15.5px; line-height: 1.6; color: #2c2925; margin: 0 0 22px; font-style: italic; }
.quote .who-row { display: flex; align-items: center; gap: 11px; }
.quote .avatar { flex: none; width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 16px; color: #fff; }
.quote .who-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.quote .who { font-weight: 700; font-size: 15px; }
.quote .role { font-size: 13px; color: var(--muted-3); }
.greviews-cta { margin-top: 38px; text-align: center; }

/* =====================================================================
   REFERENZEN (Logo-Wall)
   ===================================================================== */
.refs .sec-head .eyebrow { color: var(--amber-dk); }
.refs-sub { max-width: 620px; margin: 16px auto 0; font-size: 16px; line-height: 1.6; color: var(--muted); }
.ref-grid {
  list-style: none; margin: 56px auto 0; padding: 0;
  max-width: 940px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.ref-tile {
  background: #fff; border-radius: 16px;
  aspect-ratio: 16 / 10; min-width: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
  transition: transform .38s cubic-bezier(.2,.7,.2,1), box-shadow .38s ease;
}
.ref-tile:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(0,0,0,.45); }
.ref-tile img { width: auto; height: auto; max-width: 76%; max-height: 56px; object-fit: contain; display: block; }
/* optical size balancing per logo */
.ref-tile.is-ey img       { max-height: 66px; max-width: 42%; }
.ref-tile.is-vonovia img  { max-height: 40px; max-width: 74%; }
.ref-tile.is-samsung img  { max-height: 30px; max-width: 72%; }
.ref-tile.is-stihl img    { max-height: 142px; max-width: 82%; }
.ref-tile.is-johnreed img { max-height: 84px; max-width: 84px; }
.ref-tile.is-fisu img     { max-height: 88px; max-width: 62%; }

@media (max-width: 820px) {
  /* 2 Spalten + alle weißen Kästen exakt gleich groß.
     Alle Logos bleiben unter der Kastenhöhe, damit kein Logo (z. B. STIHL)
     die Kachel höher zieht als die anderen. Samsung/Vonovia breiter, damit
     die Wortmarken nicht winzig wirken. */
  .ref-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 520px; }
  .ref-tile { aspect-ratio: 16 / 10; padding: 18px 20px; }
  .ref-tile img            { max-height: 48px; max-width: 80%; }
  .ref-tile.is-ey img       { max-height: 48px; max-width: 46%; }
  .ref-tile.is-vonovia img  { max-height: 28px; max-width: 82%; }
  .ref-tile.is-samsung img  { max-height: 28px; max-width: 84%; }
  .ref-tile.is-stihl img    { max-height: 44px; max-width: 86%; }
  .ref-tile.is-johnreed img { max-height: 48px; max-width: 48px; }
  .ref-tile.is-fisu img     { max-height: 48px; max-width: 62%; }
}

/* =====================================================================
   BOOKING
   ===================================================================== */
.booking { position: relative; background: var(--bg); padding: 120px 40px; overflow: hidden; }
.booking .radial { position: absolute; inset: 0; background: radial-gradient(50% 60% at 20% 0%, rgba(217,198,165,.12), transparent 60%); pointer-events: none; animation: glowbreath 6.5s ease-in-out infinite; }
.booking-grid { position: relative; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.booking h2 { font-weight: 700; font-size: clamp(34px,4.2vw,54px); line-height: 1.02; margin: 12px 0 20px; }
.booking .lead { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0 0 30px; }
.checks { display: flex; flex-direction: column; gap: 16px; }
.checks .row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #cfc9c0; }
.checks .row .ok { color: var(--amber); }

.form-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px; padding: 34px; }
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid rgba(245,243,239,.14); color: var(--cream);
  border-radius: 9px; padding: 12px 14px; font-size: 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(217,198,165,.15); }
.field input[type=date] { color-scheme: dark; }
.field textarea { resize: vertical; font-family: inherit; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 6px 0 20px; cursor: pointer; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--amber); flex-shrink: 0; }
.consent span { font-size: 13px; line-height: 1.5; color: var(--muted); }
.tech-group { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-opt { display: inline-flex; align-items: center; gap: 9px; padding: 10px 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--bg-3); cursor: pointer; font-size: 14.5px; color: var(--cream); user-select: none; transition: border-color .2s ease, background .2s ease; }
.tech-opt:hover { border-color: rgba(217,198,165,.5); }
.tech-opt input { width: 17px; height: 17px; accent-color: var(--amber); cursor: pointer; flex-shrink: 0; }
.tech-opt:has(input:checked) { border-color: var(--amber); background: rgba(217,198,165,.10); }
.form-error { background: rgba(230,140,166,.12); border: 1px solid rgba(230,140,166,.4); color: #efb0c6; font-size: 14px; padding: 11px 14px; border-radius: 9px; margin-bottom: 16px; }
.form-submit { width: 100%; font-size: 17px; padding: 16px; animation: glowpulse 3.4s ease-in-out infinite; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .tick { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; background: rgba(217,198,165,.15); display: flex; align-items: center; justify-content: center; color: var(--amber); font-size: 34px; }
.form-success h3 { font-weight: 700; font-size: 26px; margin: 0 0 10px; }
.form-success p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 8px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--bg-3); color: var(--cream); padding: 70px 40px 40px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(245,243,239,.1); }
.footer-brand .logo-mark { width: 60px; height: 60px; background: var(--amber); -webkit-mask: url('../assets/logo/logo.png?v=2') center/contain no-repeat; mask: url('../assets/logo/logo.png?v=2') center/contain no-repeat; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--muted-2); max-width: 240px; margin: 0; }
.footer-col .h { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 16px; }
.footer-col .links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: #cfc9c0; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding-top: 22px; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { font-size: 13px; color: var(--muted-3); }

/* =====================================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ===================================================================== */
.legal { padding: calc(var(--nav-h) + 60px) 40px 100px; max-width: 820px; margin: 0 auto; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; margin-bottom: 30px; }
.legal h1 { font-weight: 700; font-size: clamp(30px,4.5vw,48px); line-height: 1.05; margin: 0 0 14px; }
.legal .lead { color: var(--muted); font-size: 15px; margin: 0 0 40px; }
.legal h2 { font-weight: 600; font-size: 22px; margin: 40px 0 12px; color: var(--cream); }
.legal h3 { font-weight: 600; font-size: 17px; margin: 26px 0 8px; color: var(--cream); font-family: var(--display); }
.legal p, .legal li { font-size: 15px; line-height: 1.75; color: #c4beb4; }
.legal ul { padding-left: 20px; margin: 8px 0 16px; }
.legal li { margin-bottom: 6px; }
.legal .card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 24px 28px; margin: 8px 0 20px; }
.legal .card p { margin: 4px 0; color: var(--cream); }
.legal strong { color: var(--cream); }
.legal .muted-note { font-size: 13px; color: var(--muted-3); border-top: 1px solid var(--line); margin-top: 44px; padding-top: 20px; }
.legal-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; padding: 14px 40px;
  background: rgba(11,11,13,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(245,243,239,.08);
}
@media (max-width: 760px) { .legal { padding: calc(var(--nav-h) + 40px) 22px 80px; } .legal-header { padding: 12px 22px; } }

/* =====================================================================
   STICKY MOBILE CTA
   ===================================================================== */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 55; display: none;
  transform: translateY(140%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; font-size: 16px; padding: 15px; box-shadow: 0 12px 30px -6px rgba(0,0,0,.6); }

/* =====================================================================
   GRAIN OVERLAY
   ===================================================================== */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =====================================================================
   REVEAL
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* =====================================================================
   KEYFRAMES
   ===================================================================== */
@keyframes wave { 0%,100% { transform: scaleY(.28); } 50% { transform: scaleY(1); } }
@keyframes floaty { 0%,100% { transform: translateX(-50%) translateY(0); opacity: .55; } 50% { transform: translateX(-50%) translateY(9px); opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes glowpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(217,198,165,.45); } 50% { box-shadow: 0 0 34px 4px rgba(217,198,165,.55); } }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes glowbreath { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal], .masonry .cell { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 440px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .music-grid { grid-template-columns: 1fr; }
  .mix-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 2; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-split .hs-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-split .hs-text { max-width: 640px; }
  .hero-split .hs-media img { max-height: 66vh; }
}

@media (max-width: 760px) {
  .section-pad { padding: 84px 22px; }
  .about { padding: 96px 22px 88px; }
  .video-sec { padding: 0 22px 88px; }
  .music, .testi, .booking { padding: 84px 22px; }
  .wrap, .masonry { padding: 0 22px; }
  .hero-inner { padding: 0 22px 88px; }
  .site-header { padding: 12px 22px; }

  /* mobile nav drawer */
  .nav-toggle { display: block; }
  /* .site-header hat backdrop-filter → wird zum containing block für position:fixed.
     Darum explizite Viewport-Höhe setzen, sonst wäre die Nav nur so hoch wie der Header. */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: auto; z-index: 65;
    width: 100vw; height: 100vh; height: 100dvh; overflow-y: auto;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    padding: 96px 34px 34px;
    background: rgba(11,11,13,.97); backdrop-filter: blur(14px);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .nav-open .nav { transform: translateX(0); }
  .nav a.nav-link { font-family: var(--display); font-size: 26px; color: var(--cream); }
  .nav .btn { font-size: 18px; padding: 14px 26px; }

  .hero { align-items: flex-end; }
  .hero h1 { font-size: clamp(38px, 11vw, 60px); }
  .stats { gap: 26px; }
  .svc-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .sub-gallery { grid-template-columns: 1fr 1fr; }
  /* Galerie wie am Laptop, nur kleiner: 2 Spalten + kompakter Marquee */
  .masonry { column-count: 2; column-gap: 12px; padding: 0 14px; }
  .masonry .cell { margin-bottom: 12px; }
  .marquee .cell { width: 188px !important; height: 122px; }
  .marquee.mq-portrait .cell { width: 156px !important; height: 208px; }
  .marquee-track { gap: 12px; }
  .hero-split { padding: 104px 0 66px; }
  .hero-split .hs-media img { max-height: 58vh; }
  /* Testimonials wie die Galerie: 2 nebeneinander (2x2), kompakter */
  .testi-grid { grid-template-columns: 1fr; gap: 14px; max-width: 460px; margin: 0 auto; }
  .testi-head { margin-bottom: 28px; }
  .quote { padding: 16px 15px; border-radius: 12px; }
  .quote .stars { font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
  .quote p { font-size: 13px; line-height: 1.5; margin: 0 0 14px; }
  .quote .who { font-size: 13px; }
  .quote .role { font-size: 11px; }
  .booking .radial { background: radial-gradient(80% 46% at 50% 3%, rgba(217,198,165,.20), transparent 68%); }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .video-head { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: block; }
  .scroll-ind { display: none; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 44px; height: 44px; font-size: 18px; }
}

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