/* =================================================================
   DJ DEUS — Hochzeiten & Clubs
   Eine Seite, zwei Welten.
   -----------------------------------------------------------------
   FOTOS EINTAUSCHEN:
   Überall wo ".placeholder" steht, kannst du später ein echtes Bild
   einsetzen. Beispiel:
       <div class="placeholder placeholder--wedding"
            style="background-image:url('Bilder/dein-foto.jpg')"></div>
   Dann in CSS bei .placeholder { background-size:cover; ... } – das
   ist schon vorbereitet, das "<span>Foto…</span>"-Label kannst du
   im HTML einfach löschen.
   ================================================================= */

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Hochzeit */
  --cream: #f7f3ec;
  --cream-deep: #efe7da;
  --ink: #2b2622;
  --ink-soft: #6c6258;
  --gold: #bd9a5f;
  --gold-deep: #a07f45;

  /* Club */
  --night: #08080e;
  --night-soft: #11111c;
  --neon: #ff2e74;
  --cyan: #1fe0d6;
  --violet: #7b5cff;
  --fog: #b9b6c9;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.anchor { position: relative; top: -80px; display: block; }
[hidden] { display: none !important; }

/* =================================================================
   GATE / SPLIT-LANDING
   ================================================================= */
.gate {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 100;
  overflow: hidden;
  /* EINE durchgehende Bühne: warm (links) und kühl (rechts) verschmelzen
     auf demselben dunklen Untergrund — kein harter Schnitt mehr. */
  background:
    radial-gradient(95% 130% at -8% 50%, rgba(236,184,108,.52) 0%, rgba(236,184,108,0) 70%),
    radial-gradient(64% 84% at 2% 28%, rgba(255,140,92,.26) 0%, rgba(255,140,92,0) 74%),
    radial-gradient(95% 130% at 108% 50%, rgba(150,74,255,.44) 0%, rgba(150,74,255,0) 70%),
    radial-gradient(58% 82% at 102% 78%, rgba(255,46,116,.32) 0%, rgba(255,46,116,0) 72%),
    linear-gradient(100deg, #18110a 0%, #140e12 40%, #120d14 50%, #110b15 60%, #0c0a16 100%);
  transition: opacity .8s var(--ease), visibility .8s;
}
.gate.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Verschmelzungszone in der Mitte: warm trifft kühl, weich verblendet */
.gate::before {
  content: "";
  position: absolute;
  top: -12%; bottom: -12%;
  left: 50%;
  width: 64%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(50% 55% at 50% 50%,
              rgba(255,206,150,.10) 0%,
              rgba(190,120,255,.09) 48%,
              transparent 78%);
  filter: blur(70px);
  mix-blend-mode: screen;
}

.gate__half {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: flex .9s var(--ease);
  color: #fff;
}

/* Beide Hälften sind transparent — das Licht kommt aus dem gemeinsamen
   Untergrund, dadurch wirken die Welten wie eine. Nur die Schrift-
   und Akzentfarbe unterscheidet warm (Hochzeit) von kühl (Club). */
.gate__half--wedding { color: #f4e8d4; }
.gate__half--club    { color: #f3f1ff; }

/* Glow, der beim Hovern die jeweilige Seite stärker aufleuchten lässt */
.gate__overlay { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); }
.gate__half--wedding .gate__overlay {
  background: radial-gradient(58% 60% at 50% 46%, rgba(230,176,98,.26), transparent 72%);
}
.gate__half--club .gate__overlay {
  background:
    radial-gradient(58% 60% at 50% 46%, rgba(255,46,116,.22), transparent 72%),
    radial-gradient(50% 55% at 55% 60%, rgba(31,224,214,.14), transparent 72%);
}
.gate__half:hover .gate__overlay { opacity: 1; }

/* --- Hintergrundfotos, gedämpft & zur Mitte hin ausgeblendet ---
   So fließen beide Bilder in der Verschmelzungszone ineinander.
   Andere Fotos? Einfach die url(...) unten austauschen. */
.gate__half::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.1s var(--ease), filter .6s;
}
.gate__half--wedding::before {
  background-image:
    linear-gradient(90deg, rgba(34,22,10,.22) 0%, rgba(22,15,8,.74) 100%),
    url('Bilder/9f669470-5d19-4433-aeab-e8fb28983945.jpg');
  -webkit-mask-image: linear-gradient(90deg, #000 24%, transparent 96%);
          mask-image: linear-gradient(90deg, #000 24%, transparent 96%);
  filter: brightness(1.16) saturate(1.04);
}
.gate__half--club::before {
  background-image:
    linear-gradient(90deg, rgba(8,8,16,.88) 0%, rgba(8,8,16,.52) 100%),
    url('Bilder/deab0e98-cc75-4f62-ac44-7b47dd820e1c.jpg');
  -webkit-mask-image: linear-gradient(90deg, transparent 4%, #000 76%);
          mask-image: linear-gradient(90deg, transparent 4%, #000 76%);
}
/* sanfter Ken-Burns-Zoom auf der Seite, über die man hovert */
.gate__half:hover::before { transform: scale(1.06); }

/* Hover: gewählte Seite wächst */
@media (hover: hover) {
  .gate:hover .gate__half { flex: 0.85; }
  .gate__half:hover { flex: 1.4 !important; }
}

.gate__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 30rem;
  transform: translateY(0);
  transition: transform .6s var(--ease);
}
.gate__half:hover .gate__content { transform: translateY(-6px); }

.gate__kicker {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1.1rem;
}
.gate__title { line-height: 1; margin-bottom: 1rem; }
.gate__title--serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 9vw, 7rem);
  letter-spacing: .01em;
  background: linear-gradient(120deg, #fbe7c6 12%, #e6b06a 68%, #d29647);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gate__title--display {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  background: linear-gradient(120deg, #fff 20%, var(--cyan) 60%, var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gate__sub {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.55;
  opacity: .85;
  margin-bottom: 1.8rem;
}
.gate__half--wedding .gate__sub { color: rgba(244,232,212,.82); opacity: 1; }

.gate__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .85rem 1.6rem;
  border: 1px solid currentColor;
  border-radius: 100px;
  transition: gap .35s var(--ease), background .35s, color .35s;
}
.gate__cta i { font-style: normal; transition: transform .35s var(--ease); }
.gate__half:hover .gate__cta i { transform: translateX(5px); }
.gate__half--wedding:hover .gate__cta { background: var(--gold); color: #1c1409; border-color: var(--gold); }
.gate__half--club:hover .gate__cta { background: #fff; color: var(--night); }

/* Kopfzeile über beiden Welten */
.gate__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2.1rem) clamp(1.4rem, 5vw, 3.5rem);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}
/* dezente Oben-Vignette für gleichmäßige Lesbarkeit über beide Seiten */
.gate__top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(8,6,4,.42) 0%, rgba(8,6,4,0) 100%);
  pointer-events: none;
}
.gate__top-mark { opacity: .9; }
.gate__top-links { display: flex; gap: clamp(1rem, 3vw, 2.2rem); }
.gate__top-links a { opacity: .88; transition: opacity .3s; white-space: nowrap; }
.gate__top-links a:hover { opacity: 1; }

/* Hinweis unten mittig */
.gate__hint {
  position: absolute;
  bottom: clamp(1.4rem, 4vh, 2.6rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  color: #f2e7d4;
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .7;
  pointer-events: none;
}
.gate__hint-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, transparent, currentColor);
  animation: hintPulse 2.4s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: .3; transform: scaleY(.7); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* Mittiges Logo */
.gate__brand {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  color: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
/* schwebende Signatur über dem Namen */
.gate__brand-script {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1;
  margin-bottom: -.15rem;
  transform: rotate(-4deg);
  animation: brandFloat 4.5s ease-in-out infinite;
}
@keyframes brandFloat {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-7px); }
}
.gate__brand-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.gate__brand-tag {
  font-size: .62rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  opacity: .8;
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 5vw, 3.5rem);
  backdrop-filter: blur(14px);
  transition: background .5s, color .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav__logo {
  font-family: 'Anton', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.2rem); }
.nav__links a {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
  transition: opacity .3s;
  position: relative;
}
.nav__links a:hover { opacity: 1; }
.nav__links a.is-active { opacity: 1; }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
}
.nav__contact {
  border: 1px solid currentColor;
  padding: .5rem 1rem;
  border-radius: 100px;
  opacity: 1 !important;
}
.nav__insta {
  display: inline-flex;
  align-items: center;
  opacity: 1 !important;
}
.nav__insta svg { width: 22px; height: 22px; fill: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav__insta:hover svg { transform: scale(1.12); }

/* Nav-Theme je nach Welt */
.nav.theme-wedding {
  background: rgba(247,243,236,.82);
  color: var(--ink);
  border-color: rgba(43,38,34,.08);
}
.nav.theme-club {
  background: rgba(8,8,14,.72);
  color: #fff;
  border-color: rgba(255,255,255,.07);
}

/* =================================================================
   GEMEINSAME BAUSTEINE
   ================================================================= */
.world { padding-top: 64px; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.eyebrow--neon { color: var(--cyan); }

.section-head { max-width: 60rem; margin: 0 auto 3rem; padding: 0 clamp(1.2rem,5vw,3rem); }
.section-head--center { text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 1.8rem;
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); box-shadow: 0 12px 30px rgba(160,127,69,.35); }
.btn--ghost-dark { border: 1px solid rgba(43,38,34,.3); color: var(--ink); }
.btn--ghost-dark:hover { border-color: var(--ink); }
.btn--neon {
  background: var(--neon); color: #fff;
  box-shadow: 0 0 0 rgba(255,46,116,0);
}
.btn--neon:hover { box-shadow: 0 10px 40px rgba(255,46,116,.5); }
.btn--ghost-light { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; }

/* Platzhalter für Fotos */
.placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.placeholder span {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .55;
  z-index: 2;
}
.placeholder--wedding {
  background:
    repeating-linear-gradient(45deg, rgba(189,154,95,.05) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #efe6d6, #ddcdb2);
  color: var(--ink);
}
.placeholder--club {
  background:
    repeating-linear-gradient(45deg, rgba(31,224,214,.05) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1a1430, #0a0913);
  color: var(--fog);
  border: 1px solid rgba(255,255,255,.06);
}

/* Reveal-Animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =================================================================
   WELT 1 — HOCHZEIT
   ================================================================= */
.world--wedding { background: var(--cream); color: var(--ink); }

.w-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  align-items: center;
}
.w-hero__media { height: 100%; padding: clamp(1.5rem, 4vw, 3rem); }
.w-hero__media .placeholder { height: 100%; min-height: 60vh; border-radius: 20px; }
.w-hero__text { padding: clamp(2rem, 6vw, 5rem); max-width: 36rem; }
.w-hero__text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.w-hero__text h1 em { color: var(--gold-deep); font-style: italic; }
.w-hero__text p { font-size: 1.08rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); }

.w-why { padding: clamp(3rem, 8vw, 7rem) clamp(1.2rem, 5vw, 3rem); background: var(--cream-deep); }
.w-why__grid { max-width: 70rem; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.w-why__num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: .6rem; }
.w-why__item h3 { font-size: 1.25rem; margin-bottom: .7rem; font-weight: 600; }
.w-why__item p { color: var(--ink-soft); font-weight: 300; line-height: 1.65; }

.w-services { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.w-services__list {
  list-style: none;
  max-width: 70rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(43,38,34,.12);
}
.w-services__list li {
  padding: 1.8rem .5rem;
  border-bottom: 1px solid rgba(43,38,34,.12);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.w-services__list li strong { font-size: 1.15rem; font-weight: 600; }
.w-services__list li span { color: var(--ink-soft); font-weight: 300; line-height: 1.6; }

.w-ablauf { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); background: var(--cream-deep); }
.w-steps { list-style: none; max-width: 56rem; margin: 0 auto; display: grid; gap: 2.5rem; }
.w-steps li { position: relative; padding-left: 2.5rem; }
.w-steps__dot { position: absolute; left: 0; top: .4rem; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(189,154,95,.18); }
.w-steps li::before { content: ""; position: absolute; left: 6px; top: 1.5rem; bottom: -2.5rem; width: 1px; background: rgba(189,154,95,.4); }
.w-steps li:last-child::before { display: none; }
.w-steps h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; margin-bottom: .4rem; }
.w-steps p { color: var(--ink-soft); font-weight: 300; line-height: 1.65; }

/* PREISE */
.w-preise { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.w-preise__intro { color: var(--ink-soft); font-weight: 300; line-height: 1.7; margin-top: 1rem; }
.w-preise__grid {
  max-width: 70rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.w-price-card {
  background: var(--cream-deep);
  border: 1px solid rgba(189,154,95,.28);
  border-radius: 14px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
}
.w-price-card__label {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.w-price-card__label em {
  font-style: normal;
  color: var(--gold-deep);
  font-weight: 600;
}
.w-price-card__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 2.9rem);
  color: var(--gold-deep);
  line-height: 1.1;
  margin: .6rem 0 .9rem;
}
.w-price-card__amount small {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-left: .25rem;
}
.w-price-card__desc { color: var(--ink-soft); font-weight: 300; line-height: 1.6; font-size: .98rem; }
.w-price-list { list-style: none; margin: 1.1rem 0 0; display: flex; flex-direction: column; }
.w-price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(189,154,95,.25);
}
.w-price-list li:first-child { border-top: none; padding-top: .4rem; }
.w-price-list li div { display: flex; flex-direction: column; gap: .25rem; }
.w-price-list strong { font-size: 1.05rem; font-weight: 600; }
.w-price-list span { color: var(--ink-soft); font-weight: 300; line-height: 1.5; font-size: .92rem; }
.w-price-list b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--gold-deep);
  white-space: nowrap;
  font-weight: 600;
}
.w-price-list b small {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--ink-soft);
  font-weight: 300;
}
.w-preise__note {
  max-width: 56rem;
  margin: 2.4rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
}
.btn-row--center { justify-content: center; margin-top: 1.6rem; }
.w-preise__disclaimer {
  max-width: 56rem;
  margin: 1.2rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: .85rem;
  line-height: 1.6;
  opacity: .8;
}

.w-gallery { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.w-gallery__grid { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.w-gallery__grid .placeholder { aspect-ratio: 3/4; min-height: 0; }

/* =================================================================
   WELT 2 — CLUB
   ================================================================= */
.world--club { background: var(--night); color: #fff; }

.c-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.c-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 75% 25%, rgba(255,46,116,.28), transparent 60%),
    radial-gradient(45% 45% at 20% 75%, rgba(31,224,214,.20), transparent 60%),
    radial-gradient(60% 60% at 50% 50%, rgba(123,92,255,.16), transparent 70%),
    var(--night);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.12) translate(-2%, 2%); }
}
.c-hero__text { position: relative; z-index: 2; padding: clamp(2rem, 6vw, 6rem); max-width: 42rem; }
.c-hero__text h1 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: .98;
  letter-spacing: .01em;
  margin-bottom: 1.4rem;
}
.c-hero__text h1 .glow {
  background: linear-gradient(110deg, var(--cyan), var(--neon));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.c-hero__text p { font-size: 1.1rem; font-weight: 300; line-height: 1.7; color: var(--fog); max-width: 34rem; }
.c-hero__media { height: 100%; padding: clamp(1.5rem, 4vw, 3rem); }
.c-hero__media .placeholder {
  height: 100%; min-height: 60vh; border-radius: 20px;
  box-shadow:
    0 0 60px rgba(31,224,214,.2),
    0 20px 60px rgba(0,0,0,.5),
    inset 0 0 80px rgba(31,224,214,.08);
  position: relative;
}
.c-hero__media .placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(8,8,14,.25) 100%);
  pointer-events: none;
}

.c-genres { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.c-tags { max-width: 60rem; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.c-tags span {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  padding: .6rem 1.5rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  transition: border-color .35s, color .35s, box-shadow .35s, transform .35s var(--ease);
}
.c-tags span:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(31,224,214,.25);
  transform: translateY(-3px);
}

.c-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 64rem; margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem) clamp(3rem,8vw,6rem);
  gap: 1.5rem; text-align: center;
}
.c-stat strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  background: linear-gradient(120deg, #fff, var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.c-stat span { color: var(--fog); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }

.c-booking { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); background: var(--night-soft); }
.c-booking__grid { max-width: 70rem; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.c-booking__grid > div {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.03), transparent);
  transition: border-color .4s, transform .4s var(--ease);
}
.c-booking__grid > div:hover { border-color: rgba(255,46,116,.4); transform: translateY(-5px); }
.c-booking__grid h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.c-booking__grid p { color: var(--fog); font-weight: 300; line-height: 1.65; }

.c-gallery { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.c-gallery__grid { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.c-gallery__grid .placeholder { aspect-ratio: 3/4; min-height: 0; }

/* =================================================================
   KONTAKT + FOOTER
   ================================================================= */
.contact { background: #0d0c12; color: #fff; padding: clamp(4rem, 10vw, 9rem) clamp(1.2rem, 5vw, 3rem) 0; }
.contact__inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.contact__inner h2 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 1.2rem; }
.contact__inner p { color: var(--fog); font-weight: 300; font-size: 1.05rem; line-height: 1.7; }
.contact__methods { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.contact__btn {
  padding: 1rem 2rem; border-radius: 100px;
  background: linear-gradient(110deg, var(--neon), var(--violet));
  font-weight: 500; letter-spacing: .03em;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.contact__btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(123,92,255,.4); }
.contact__btn--alt { background: transparent; border: 1px solid rgba(255,255,255,.25); }
.contact__btn--alt:hover { border-color: #fff; box-shadow: none; }

.contact__insta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.6rem;
  padding: .85rem 1.5rem;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 10px 30px rgba(220,39,67,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact__insta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(220,39,67,.5); }
.contact__insta svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }
.contact__insta small { font-weight: 300; opacity: .85; }

.footer {
  max-width: 72rem; margin: clamp(4rem,8vw,7rem) auto 0;
  padding: 2rem clamp(1.2rem,5vw,3rem);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: var(--fog); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
}

/* --- Kontakt im Hochzeit-Look (hell), passend zur warmen Welt --- */
.contact--wedding { background: var(--cream-deep); color: var(--ink); }
.contact--wedding .eyebrow { color: var(--gold-deep); }
.contact--wedding .contact__inner p { color: var(--ink-soft); }
.contact--wedding .contact__btn { background: var(--gold); color: #fff; }
.contact--wedding .contact__btn:hover { box-shadow: 0 12px 36px rgba(160,127,69,.35); }
.contact--wedding .contact__btn--alt {
  background: transparent; color: var(--ink); border: 1px solid rgba(43,38,34,.3);
}
.contact--wedding .contact__btn--alt:hover { border-color: var(--ink); box-shadow: none; }
.contact--wedding .footer { border-top-color: rgba(43,38,34,.12); color: var(--ink-soft); }

/* Unauffälliger Admin-Login ganz unten im Footer */
.footer__admin {
  color: inherit; text-decoration: none; opacity: .35;
  transition: opacity .2s ease;
}
.footer__admin:hover { opacity: 1; }

/* =================================================================
   NEUE INHALTE — Story, Stimmen, FAQ, "Was du bekommst"
   ================================================================= */

/* --- Hochzeit: Story --- */
.w-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  max-width: 78rem; margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem);
}
.w-story__media .placeholder { aspect-ratio: 4/5; min-height: 0; border-radius: 18px; }
.w-story__text h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.12; margin-bottom: 1.3rem;
}
.w-story__text p { color: var(--ink-soft); font-weight: 300; line-height: 1.8; margin-bottom: 1.1rem; }
.w-story__facts {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 2.6rem);
  margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(43,38,34,.12);
}
.w-story__facts strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--gold-deep); }
.w-story__facts span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

/* --- Hochzeit: Stimmen --- */
.w-stimmen { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); background: var(--cream-deep); }
.w-quotes { max-width: 74rem; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.w-quotes figure { margin: 0; padding: 2rem; background: var(--cream); border: 1px solid rgba(43,38,34,.08); border-radius: 16px; }
.w-quotes blockquote { margin: 0 0 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; line-height: 1.5; }
.w-quotes figcaption { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }

/* --- Hörprobe / Audio-Player --- */
.w-audio { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.w-audio__sub { max-width: 40rem; margin: 1rem auto 0; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

.audioplayer {
  max-width: 42rem; margin: 2.5rem auto 0;
  display: flex; align-items: center; gap: 1.3rem;
  padding: 1.3rem 1.6rem;
  background: var(--cream-deep);
  border: 1px solid rgba(189,154,95,.35);
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(43,38,34,.07);
}
.audioplayer__btn {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.audioplayer__btn:hover { background: var(--gold-deep); transform: scale(1.05); box-shadow: 0 8px 22px rgba(160,127,69,.4); }
.audioplayer__btn svg { width: 22px; height: 22px; fill: currentColor; }
.audioplayer__btn svg.ic-play { margin-left: 2px; }
.audioplayer .ic-pause { display: none; }
.audioplayer.is-playing .ic-play { display: none; }
.audioplayer.is-playing .ic-pause { display: block; }
.audioplayer.is-playing .audioplayer__btn { animation: audioPulse 2s ease-in-out infinite; }
@keyframes audioPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(189,154,95,.45); }
  50%      { box-shadow: 0 0 0 12px rgba(189,154,95,0); }
}

.audioplayer__main { flex: 1; min-width: 0; }
.audioplayer__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .8rem; }
.audioplayer__label { font-size: .92rem; font-weight: 500; color: var(--ink); }
.audioplayer__time { font-size: .8rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; white-space: nowrap; }
.audioplayer__bar {
  position: relative; height: 6px; border-radius: 100px;
  background: rgba(43,38,34,.13); cursor: pointer;
}
.audioplayer__fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  border-radius: 100px;
}
.audioplayer__fill::after {
  content: ""; position: absolute; right: -6px; top: 50%;
  width: 13px; height: 13px; border-radius: 50%;
  background: #fff; border: 2px solid var(--gold-deep);
  transform: translateY(-50%);
  box-shadow: 0 1px 5px rgba(43,38,34,.25);
}

/* --- Playlist (Spotify) --- */
.w-playlist { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); background: var(--cream-deep); }
.w-playlist__sub { max-width: 42rem; margin: 1rem auto 0; color: var(--ink-soft); font-weight: 300; line-height: 1.7; }

.w-highlights {
  list-style: none; max-width: 62rem; margin: 2.6rem auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.w-highlights li {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.15rem;
  background: var(--cream);
  border: 1px solid rgba(189,154,95,.25);
  border-radius: 12px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.w-highlights li:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 10px 26px rgba(43,38,34,.07); }
.w-highlights__note {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: grid; place-items: center; font-size: 1rem;
}
.w-highlights__txt { min-width: 0; }
.w-highlights__txt strong { display: block; font-size: .98rem; color: var(--ink); line-height: 1.2; }
.w-highlights__txt span { font-size: .82rem; color: var(--ink-soft); }

.w-playlist__embed {
  max-width: 62rem; margin: 2.6rem auto 0;
  padding: .9rem;
  background: #14110d;
  border: 1px solid rgba(189,154,95,.35);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(43,38,34,.12);
}
.w-playlist__embed iframe { display: block; border-radius: 12px; }

/* --- FAQ (native Accordion) --- */
.w-faq { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.faq { max-width: 56rem; margin: 0 auto; }
.faq details { border-bottom: 1px solid rgba(43,38,34,.14); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.3rem 2.5rem 1.3rem 0; font-size: 1.12rem; font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%;
  transform: translateY(-50%); font-size: 1.6rem; color: var(--gold-deep);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { margin: 0; padding: 0 2.5rem 1.5rem 0; color: var(--ink-soft); font-weight: 300; line-height: 1.75; }

/* --- Club: Story --- */
.c-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  max-width: 78rem; margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem);
}
.c-story__media .placeholder { aspect-ratio: 4/5; min-height: 0; }
.c-story__text h2 {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem); line-height: 1.05; margin-bottom: 1.3rem;
}
.c-story__text p { color: var(--fog); font-weight: 300; line-height: 1.8; margin-bottom: 1.1rem; }

/* --- Club: Was du bekommst --- */
.c-deliver { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.c-deliver__grid { max-width: 74rem; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.c-deliver__grid > div {
  padding: 2rem; border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.03), transparent);
  transition: border-color .4s, transform .4s var(--ease);
}
.c-deliver__grid > div:hover { border-color: rgba(31,224,214,.4); transform: translateY(-4px); }
.c-deliver__grid h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.c-deliver__grid p { color: var(--fog); font-weight: 300; line-height: 1.65; }

/* --- Club: Stimmen --- */
.c-stimmen { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); background: var(--night-soft); }
.c-quotes { max-width: 64rem; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.c-quotes figure {
  margin: 0; padding: 2rem; border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.03), transparent);
}
.c-quotes blockquote { margin: 0 0 1rem; font-size: 1.25rem; line-height: 1.5; }
.c-quotes figcaption { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }

/* --- Club: Mix / Hör rein --- */
.c-mix { padding: clamp(2.5rem, 6vw, 6rem) clamp(1.2rem, 5vw, 3rem); background: var(--night-soft); }
.c-mix__sub { max-width: 42rem; margin: 1rem auto 0; color: var(--fog); font-weight: 300; line-height: 1.7; }
.c-mix__embed {
  margin: 2rem auto 0;
  padding: 0 1rem;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.c-mix__embed > * {
  width: 100%;
  max-width: 80rem;
}
.c-mix__embed iframe { display: block; border-radius: 12px; }

/* ElfSight Dark Theme */
.elfsight-app-9cd98bb4-3566-467c-ba64-802574d61d68 {
  --elfsight-app-bg-color: var(--night) !important;
  --elfsight-app-text-color: #fff !important;
  --elfsight-app-border-color: rgba(31,224,214,.2) !important;
  filter: brightness(0.95) contrast(1.05);
}

/* --- Club: Ablauf / Booking-Prozess --- */
.c-process { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); }
.c-steps { list-style: none; max-width: 56rem; margin: 0 auto; display: grid; gap: 2.5rem; }
.c-steps li { position: relative; padding-left: 2.5rem; }
.c-steps__dot {
  position: absolute; left: 0; top: .4rem; width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 5px rgba(31,224,214,.16);
}
.c-steps li::before { content: ""; position: absolute; left: 6px; top: 1.5rem; bottom: -2.5rem; width: 1px; background: rgba(31,224,214,.3); }
.c-steps li:last-child::before { display: none; }
.c-steps h3 { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .02em; font-size: 1.35rem; margin-bottom: .4rem; }
.c-steps p { color: var(--fog); font-weight: 300; line-height: 1.65; }

/* --- Club: FAQ (dunkle Variante des Accordions) --- */
.c-faq { padding: clamp(3.5rem, 9vw, 8rem) clamp(1.2rem, 5vw, 3rem); background: var(--night-soft); }
.faq--dark details { border-bottom-color: rgba(255,255,255,.12); }
.faq--dark summary { color: #fff; }
.faq--dark summary::after { color: var(--cyan); }
.faq--dark p { color: var(--fog); }

/* =================================================================
   ECHTE FOTOS in den Bild-Containern
   ================================================================= */
.placeholder .ph-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 1;
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
/* Hochzeit-Galerie: sanfter Zoom beim Hover */
.w-gallery__grid .placeholder { cursor: pointer; }
.w-gallery__grid .placeholder:hover .ph-img { transform: scale(1.06); }

/* Video an die warme Hochzeit-Farbwelt angleichen (Sepia/Gold-Grade) */
.w-gallery__grid video.ph-img {
  filter: sepia(.3) saturate(1.18) brightness(1.05) contrast(1.03) hue-rotate(-8deg);
}
/* warmer Gold-Schleier oben drauf, damit es sich nahtlos einfügt */
.w-gallery__grid .placeholder:has(video.ph-img)::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg, rgba(189,154,95,.18), rgba(120,80,30,.12));
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Club: Schwarzweiß-Look, Farbe & Zoom beim Hover */
.c-gallery__grid .placeholder { cursor: pointer; }
.c-gallery__grid .placeholder .ph-img { filter: grayscale(1) contrast(1.06); }
.c-gallery__grid .placeholder:hover .ph-img { filter: grayscale(0); transform: scale(1.06); }
.c-story__media .ph-img { filter: grayscale(1) contrast(1.04); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 820px) {
  /* Mobile: Welten stapeln sich, der Verschmelzungs-Effekt läuft
     jetzt vertikal (oben warm / unten kühl) statt links/rechts. */
  .gate {
    flex-direction: column;
    background:
      radial-gradient(130% 78% at 50% -8%, rgba(236,184,108,.5) 0%, rgba(236,184,108,0) 64%),
      radial-gradient(95% 55% at 26% 1%, rgba(255,140,92,.26) 0%, rgba(255,140,92,0) 66%),
      radial-gradient(130% 78% at 50% 108%, rgba(150,74,255,.46) 0%, rgba(150,74,255,0) 64%),
      radial-gradient(95% 55% at 78% 100%, rgba(255,46,116,.32) 0%, rgba(255,46,116,0) 66%),
      linear-gradient(174deg, #18110a 0%, #140e12 40%, #120d14 50%, #110b15 60%, #0c0a16 100%);
  }
  .gate__half { min-height: 50vh; }
  .gate:hover .gate__half, .gate__half:hover { flex: 1 !important; }

  /* Foto-Verblendung vertikal: Hochzeit blendet nach unten aus … */
  .gate__half--wedding::before {
    background-image:
      linear-gradient(180deg, rgba(34,22,10,.22) 0%, rgba(22,15,8,.74) 100%),
      url('Bilder/9f669470-5d19-4433-aeab-e8fb28983945.jpg');
    -webkit-mask-image: linear-gradient(180deg, #000 22%, transparent 97%);
            mask-image: linear-gradient(180deg, #000 22%, transparent 97%);
  }
  /* … Club blendet nach oben aus */
  .gate__half--club::before {
    background-image:
      linear-gradient(180deg, rgba(8,8,16,.52) 0%, rgba(8,8,16,.88) 100%),
      url('Bilder/deab0e98-cc75-4f62-ac44-7b47dd820e1c.jpg');
    -webkit-mask-image: linear-gradient(180deg, transparent 3%, #000 78%);
            mask-image: linear-gradient(180deg, transparent 3%, #000 78%);
  }
  /* Verschmelzungszone als horizontales Band in der Mitte */
  .gate::before {
    top: 50%; bottom: auto; left: 0;
    width: 100%; height: 64%;
    transform: translateY(-50%);
  }

  /* Logo tiefer in die sichtbare Mitte (100vh reicht hinter die
     Browser-Leiste, daher wirkt 50% zu hoch) — klar unter dem Button */
  .gate__brand { top: 57%; gap: .25rem; }
  .gate__top { justify-content: center; text-align: center; }
  .gate__top-mark { display: none; }
  .gate__hint { display: none; }

  .w-hero { grid-template-columns: 1fr; }
  .w-hero__media { order: -1; }
  .w-hero__media .placeholder { min-height: 42vh; }
  .c-hero { grid-template-columns: 1fr; }
  .c-hero__media { order: -1; }
  .c-hero__media .placeholder { min-height: 42vh; }
  .w-why__grid { grid-template-columns: 1fr; }
  .w-services__list { grid-template-columns: 1fr; }
  .w-preise__grid { grid-template-columns: 1fr; }
  .w-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .c-stats { grid-template-columns: 1fr; gap: 2.5rem; }
  .c-booking__grid { grid-template-columns: 1fr; }
  .c-gallery__grid { grid-template-columns: 1fr; }

  /* neue Inhalte gestapelt */
  .w-highlights { grid-template-columns: 1fr; }
  .w-story, .c-story { grid-template-columns: 1fr; }
  .w-story__media, .c-story__media { order: -1; }
  .w-quotes { grid-template-columns: 1fr; }
  .c-deliver__grid { grid-template-columns: 1fr; }
  .c-quotes { grid-template-columns: 1fr; }
}

/* Touch-Geräte (kein Hover): dauerhafte Bewegung, damit die Landing lebt */
@media (hover: none) {
  /* Inhalte etwas aus der Mitte rücken, damit das Logo frei steht */
  .gate__half--wedding .gate__content { transform: translateY(-7%); }
  .gate__half--club .gate__content    { transform: translateY(7%); }

  /* die beiden Lichter atmen langsam, versetzt */
  .gate__half--wedding .gate__overlay { opacity: 1; animation: breatheWarm 7s ease-in-out infinite; }
  .gate__half--club .gate__overlay    { opacity: 1; animation: breatheCool 7s ease-in-out infinite; }
  .gate__half:active .gate__overlay   { animation: none; opacity: 1; }
}
@keyframes breatheWarm {
  0%, 100% { opacity: .25; }
  50%      { opacity: .7; }
}
@keyframes breatheCool {
  0%, 100% { opacity: .7; }
  50%      { opacity: .25; }
}

/* Bewegung reduzieren, wenn vom System gewünscht */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
