@import url("/assets/fonts/fonts.css");

/* ============================================================
   STUTTGART DJ AGENCY
   Farben und Schriften stammen aus der Jimdo-Vorlage:
   Gelb #ffcc00, Rot #dc3545, Blau #0056b3, Grau #343a40,
   Poppins fuer Ueberschriften, Roboto fuer Fliesstext.
   ============================================================ */

:root {
  --ink:        #08080a;
  --ink-2:      #0f0f13;
  --ink-3:      #16161c;
  --ink-4:      #1e1e26;
  --slate:      #343a40;

  --gold:       #ffcc00;
  --gold-soft:  #ffe066;
  --gold-deep:  #c99f00;
  --red:        #dc3545;
  --blue:       #0056b3;

  --text:       #f4f4f6;
  --muted:      rgba(244, 244, 246, .60);
  --faint:      rgba(244, 244, 246, .38);
  --line:       rgba(255, 255, 255, .10);
  --line-soft:  rgba(255, 255, 255, .06);

  --head: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --body: "Roboto", "Helvetica Neue", Arial, sans-serif;

  --shell: 1240px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ── Grundlagen ───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

/* Muss vor den Komponenten stehen und muss !important sein: .btn setzt
   display:inline-flex und wuerde das eingebaute [hidden] sonst aushebeln —
   im Wizard staenden "Weiter" und "Abschicken" gleichzeitig da. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.022em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 1.4rem + 5.2vw, 5.5rem); }
h2 { font-size: clamp(1.85rem, 1.15rem + 2.9vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

strong, b { font-weight: 700; color: #fff; }

::selection { background: var(--gold); color: #000; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #000; padding: .75rem 1.25rem;
  font-family: var(--head); font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Feines Filmkorn ueber der ganzen Seite — nimmt Farbflaechen das Digitale. */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Layout ───────────────────────────────────────────────── */

.shell {
  width: min(100% - 2 * var(--gut), var(--shell));
  margin-inline: auto;
}
.shell--narrow { width: min(100% - 2 * var(--gut), 820px); }
.shell--wide   { width: min(100% - 2 * var(--gut), 1500px); }

.band { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.band--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.band--ink2 { background: var(--ink-2); }
.band--ink3 { background: var(--ink-3); }

/* Haarlinie zwischen zwei Baendern gleicher Farbe */
.band--edge { border-top: 1px solid var(--line-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--head); font-weight: 600;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 2rem; height: 2px; background: var(--gold);
}
.eyebrow--center { justify-content: center; }

.lede {
  font-size: clamp(1.06rem, 1rem + .35vw, 1.3rem);
  color: var(--muted); line-height: 1.7;
}

.center { text-align: center; }

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(8, 8, 10, .82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: min(100% - 2 * var(--gut), 1500px);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.nav__logo { display: flex; align-items: center; gap: .8rem; }
.nav__logo img { width: 52px; height: auto; }
.nav__logo span {
  font-family: var(--head); font-weight: 600;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text); line-height: 1.3;
}
@media (max-width: 560px) { .nav__logo span { display: none; } }

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
@media (max-width: 1000px) { .nav__links { display: none; } }

.nav__link {
  position: relative;
  font-family: var(--head); font-weight: 600;
  font-size: .74rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); padding: .4rem 0;
  transition: color .25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold);
  transition: right .35s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { right: 0; }
.nav__link[aria-current="page"] { color: var(--text); }

.nav__cta {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--gold); color: #000;
  font-family: var(--head); font-weight: 700;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .8rem 1.4rem; border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.nav__cta:hover {
  color: #000; background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(255, 204, 0, .65);
}
@media (max-width: 1000px) { .nav__cta { display: none; } }

/* Hamburger */
.burger {
  display: none; width: 46px; height: 46px; padding: 0;
  background: transparent; border: 1px solid var(--line);
  border-radius: 50%; cursor: pointer;
  align-items: center; justify-content: center;
}
@media (max-width: 1000px) { .burger { display: inline-flex; } }
.burger span {
  display: block; width: 18px; height: 2px; background: var(--text);
  position: relative; transition: background .2s;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--text); transition: transform .35s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Vollbild-Menue */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8, 8, 10, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--nav-h) var(--gut) 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; }

.drawer a {
  display: block;
  font-family: var(--head); font-weight: 700;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  letter-spacing: -.02em; color: var(--text);
  padding: .42rem 0; border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateY(18px);
}
.drawer.is-open a { animation: drawerIn .55s var(--ease-out) forwards; }
.drawer a:nth-child(1) { animation-delay: .06s; }
.drawer a:nth-child(2) { animation-delay: .12s; }
.drawer a:nth-child(3) { animation-delay: .18s; }
.drawer a:nth-child(4) { animation-delay: .24s; }
.drawer a:nth-child(5) { animation-delay: .30s; }
.drawer a:nth-child(6) { animation-delay: .36s; }
.drawer a:hover, .drawer a[aria-current="page"] { color: var(--gold); }

@keyframes drawerIn { to { opacity: 1; transform: none; } }

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--head); font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 1.05rem 2rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: #000; }
.btn--gold:hover {
  background: var(--gold-soft); color: #000;
  box-shadow: 0 16px 40px -14px rgba(255, 204, 0, .7);
}

.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(255, 204, 0, .06); }

.btn--light { background: #fff; color: #111; }
.btn--light:hover { background: #fff; color: #111; box-shadow: 0 16px 40px -14px rgba(0, 0, 0, .6); }

.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative; min-height: min(100svh, 900px);
  display: grid; place-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  overflow: hidden; isolation: isolate;
}
.hero--short { min-height: min(72svh, 660px); }

.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroDrift 26s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(0, -2%, 0); }
}

.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 85% at 50% 8%, rgba(255, 204, 0, .16), transparent 58%),
    linear-gradient(180deg, rgba(8, 8, 10, .72) 0%, rgba(8, 8, 10, .55) 40%, rgba(8, 8, 10, .96) 100%);
}

.hero__inner { position: relative; text-align: center; }

.hero h1 {
  margin-bottom: .3em;
  background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, .68) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .6));
}
.hero__sub {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(1rem, .9rem + .6vw, 1.4rem);
  letter-spacing: .04em; color: var(--gold);
  margin: 0 0 2.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* Equalizer als Markenzeichen */
.eq { display: flex; align-items: flex-end; gap: 5px; height: 34px; justify-content: center; margin-bottom: 2rem; }
.eq i {
  display: block; width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  animation: eqPulse 1.1s ease-in-out infinite;
}
.eq i:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 75%; animation-delay: .12s; }
.eq i:nth-child(3) { height: 100%; animation-delay: .24s; }
.eq i:nth-child(4) { height: 58%; animation-delay: .36s; }
.eq i:nth-child(5) { height: 88%; animation-delay: .48s; }
.eq i:nth-child(6) { height: 45%; animation-delay: .6s; }
.eq i:nth-child(7) { height: 70%; animation-delay: .72s; }
@keyframes eqPulse { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
.eq i { transform-origin: bottom; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; translate: -50% 0;
  display: grid; place-items: center; gap: .6rem;
  font-family: var(--head); font-size: .62rem;
  letter-spacing: .24em; text-transform: uppercase; color: var(--faint);
}
.scroll-cue i {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cueDrop 2.1s var(--ease) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Schlanker Seitenkopf fuer Unterseiten */
.pagehead {
  position: relative; overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-h) + clamp(4rem, 9vw, 7rem)) 0 clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}
.pagehead__bg { position: absolute; inset: 0; z-index: -2; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(100% 70% at 50% 0%, rgba(255, 204, 0, .13), transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 10, .8), rgba(8, 8, 10, .97));
}
.pagehead--plain {
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 7vw, 5.5rem));
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid var(--line-soft);
}

/* ── Karten: ANLÄSSE ──────────────────────────────────────── */

.cards {
  display: grid; gap: clamp(1.1rem, 2vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.card {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink-3); border: 1px solid var(--line-soft);
  border-radius: 20px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, .35);
  box-shadow: 0 28px 60px -30px rgba(0, 0, 0, .95);
}

.card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s;
  filter: saturate(.92);
}
.card:hover .card__media img { transform: scale(1.07); filter: saturate(1.1); }
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 10, .9));
}

.card__num {
  position: absolute; top: 1rem; left: 1.15rem; z-index: 2;
  font-family: var(--head); font-weight: 700; font-size: .72rem;
  letter-spacing: .16em; color: var(--gold);
  background: rgba(8, 8, 10, .6); backdrop-filter: blur(8px);
  padding: .3rem .65rem; border-radius: 999px;
  border: 1px solid rgba(255, 204, 0, .3);
}

.card__body { padding: clamp(1.3rem, 2.4vw, 1.9rem); flex: 1; }
.card__body h3 { margin-bottom: .55rem; color: #fff; }
.card__body p { color: var(--muted); font-size: .96rem; margin: 0; }

.card__rule {
  width: 2.4rem; height: 3px; background: var(--gold);
  border-radius: 2px; margin-bottom: 1.1rem;
  transition: width .5s var(--ease);
}
.card:hover .card__rule { width: 4.5rem; }

/* ── Wechselnde Bild/Text-Reihen (Leistungen) ─────────────── */

.split {
  display: grid; gap: clamp(1.75rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}

.split + .split { margin-top: clamp(4rem, 8vw, 7rem); }

.split__media {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 5 / 4;
}
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.split:hover .split__media img { transform: scale(1.04); }
.split__media::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line), inset 0 -80px 100px -40px rgba(8, 8, 10, .8);
  border-radius: 22px;
}

.split__body h2 { color: #fff; }
.split__body p { color: var(--muted); }

.split__idx {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(3rem, 7vw, 5rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 204, 0, .38);
  margin-bottom: .35rem; display: block;
}

/* ── Galerie ──────────────────────────────────────────────── */

.gallery {
  columns: 4 240px;
  column-gap: clamp(.7rem, 1.4vw, 1.1rem);
}
.gallery figure { margin: 0 0 clamp(.7rem, 1.4vw, 1.1rem); break-inside: avoid; }

.gallery button {
  display: block; width: 100%; padding: 0; border: 0; cursor: zoom-in;
  background: var(--ink-3); border-radius: 14px; overflow: hidden;
  position: relative; isolation: isolate;
}
.gallery img {
  width: 100%; height: auto;
  transition: transform .7s var(--ease), filter .4s;
  filter: saturate(.9) brightness(.92);
}
.gallery button:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.gallery button::after {
  content: ""; position: absolute; inset: 0; border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: box-shadow .35s;
}
.gallery button:hover::after { box-shadow: inset 0 0 0 2px rgba(255, 204, 0, .55); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 4, 6, .95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 86svh; width: auto;
  border-radius: 10px; box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 1);
}
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line); color: #fff;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.2rem; line-height: 1;
  transition: background .25s, border-color .25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 204, 0, .18); border-color: var(--gold); }
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav--prev { left: clamp(.6rem, 3vw, 2rem); top: 50%; translate: 0 -50%; }
.lightbox__nav--next { right: clamp(.6rem, 3vw, 2rem); top: 50%; translate: 0 -50%; }
.lightbox__count {
  position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%; translate: -50% 0;
  font-family: var(--head); font-size: .72rem; letter-spacing: .18em; color: var(--faint);
}

/* ── Pakete ───────────────────────────────────────────────── */

.tiers { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); grid-template-columns: 1fr; }
@media (min-width: 1000px) { .tiers { grid-template-columns: minmax(280px, 380px) 1fr; align-items: start; } }

.tiers__aside h2 { color: #fff; }
.tiers__aside p { color: var(--muted); font-size: .95rem; }
@media (min-width: 1000px) {
  .tiers__aside { position: sticky; top: calc(var(--nav-h) + 2.5rem); }
}

.tiers__list { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
@media (min-width: 640px) { .tiers__list { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); } }

.tier {
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-soft); border-radius: 20px;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s var(--ease);
}
.tier::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease);
}
.tier:hover { transform: translateY(-5px); border-color: rgba(255, 204, 0, .32); box-shadow: 0 30px 60px -34px #000; }
.tier:hover::before { transform: scaleX(1); }

.tier h3 { color: #fff; margin-bottom: 1.1rem; }

.tier ul { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .55rem; }
.tier li {
  position: relative; padding-left: 1.6rem;
  font-size: .93rem; color: var(--muted); line-height: 1.5;
}
.tier li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(255, 204, 0, .16);
}

.tier__price {
  margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line-soft);
}
.tier__label {
  display: block; font-family: var(--head); font-weight: 600;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--faint); margin-bottom: .3rem;
}

.tier__amount {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: var(--gold); line-height: 1.1; display: block;
}
.tier__vat { font-size: .78rem; color: var(--faint); display: block; margin-top: .3rem; }
.tier__extra { font-size: .82rem; color: var(--muted); margin: .7rem 0 0; }

/* Roter Aufmerksamkeitsblock — im Original der Shade2-Abschnitt */
.band--red {
  background: linear-gradient(145deg, var(--red), #b02a37);
  color: #fff; text-align: center;
}
.band--red h2 { color: #fff; }
.band--red p { color: rgba(255, 255, 255, .93); }
.band--red .eyebrow { color: rgba(255, 255, 255, .9); }
.band--red .eyebrow::before { background: rgba(255, 255, 255, .9); }
.band--red a:not(.btn) { color: #fff; text-decoration: underline; }

/* ── Formulare ────────────────────────────────────────────── */

.form { display: grid; gap: 1.1rem; }

.field { display: grid; gap: .45rem; }
.field--wide { grid-column: 1 / -1; }

.field > label {
  font-family: var(--head); font-weight: 600;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.field .req { color: var(--gold); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem;
  color: var(--text); background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line); border-radius: 12px;
  padding: .95rem 1.1rem;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }

.field input::placeholder, .field textarea::placeholder { color: rgba(244, 244, 246, .3); }

.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, .14);
}

.field__hint { font-size: .8rem; color: var(--faint); }

.grid-2 { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(3, 1fr); } }

/* Kontrollkaestchen */
.check {
  display: grid; grid-template-columns: auto 1fr; gap: .8rem;
  align-items: start; cursor: pointer;
  font-size: .85rem; color: var(--muted); line-height: 1.6;
}
.check input {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; margin: .18rem 0 0;
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(255, 255, 255, .04); cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.check input::after {
  content: ""; width: 10px; height: 10px; border-radius: 2px;
  background: #000; transform: scale(0); transition: transform .2s var(--ease);
}
.check input:checked { background: var(--gold); border-color: var(--gold); }
.check input:checked::after { transform: scale(1); }

/* Auswahlkacheln im Wizard */
.picks { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.pick {
  display: flex; align-items: center; gap: .8rem; cursor: pointer;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.15rem; background: rgba(255, 255, 255, .03);
  font-size: .93rem; color: var(--text); line-height: 1.4;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.pick:hover { border-color: rgba(255, 204, 0, .45); transform: translateY(-2px); }
.pick input { flex: none; }
.pick:has(input:checked) { border-color: var(--gold); background: rgba(255, 204, 0, .08); }

.form__status { font-size: .9rem; min-height: 1.4em; }
.form__status[data-tone="err"] { color: #ff8a94; }
.form__status[data-tone="ok"]  { color: var(--gold); }

/* Honigtopf — fuer Menschen unsichtbar, Bots fuellen ihn aus. */
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }

/* ── Angebots-Wizard ──────────────────────────────────────── */

.wizard {
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  position: relative; overflow: hidden;
}
.wizard::before {
  content: ""; position: absolute; inset: -40% 40% auto -10%; height: 320px;
  background: radial-gradient(closest-side, rgba(255, 204, 0, .1), transparent);
  pointer-events: none;
}

.wizard__bar {
  height: 3px; background: rgba(255, 255, 255, .08);
  border-radius: 2px; overflow: hidden; margin-bottom: .85rem;
}
.wizard__bar i {
  display: block; height: 100%; width: 11.1%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 2px; transition: width .45s var(--ease);
}
.wizard__meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--head); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 1.9rem;
}
.wizard__meta b { color: var(--gold); font-weight: 700; }

.wizard__step { display: none; }
.wizard__step.is-active { display: block; animation: stepIn .45s var(--ease-out); }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.wizard__q {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(1.15rem, 1rem + .8vw, 1.6rem);
  color: #fff; margin: 0 0 1.4rem; letter-spacing: -.01em; line-height: 1.25;
}

.wizard__foot {
  display: flex; gap: .8rem; justify-content: space-between; align-items: center;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
}
.wizard__foot .btn { padding: .85rem 1.6rem; }

/* ── Rechtstexte ──────────────────────────────────────────── */

.prose { max-width: 74ch; }
.prose h2 {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  margin-top: 2.8rem; color: #fff;
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
}
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 2rem; color: var(--gold); }
.prose h4 { margin-top: 1.6rem; color: #fff; }
.prose p, .prose li { color: var(--muted); font-size: .96rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.contactcard {
  background: var(--ink-3); border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0; padding: 1.6rem 1.8rem;
  margin-bottom: 2.5rem;
}
.contactcard p { margin: 0; color: var(--text); line-height: 1.9; }
.contactcard .k {
  display: inline-block; min-width: 8.5rem; color: var(--faint);
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  font-family: var(--head); font-weight: 600;
}

.credits { font-size: .82rem; color: var(--faint); line-height: 2; }
.credits a { color: var(--muted); text-decoration: underline; }

.notice {
  background: rgba(255, 204, 0, .07);
  border: 1px solid rgba(255, 204, 0, .25);
  border-radius: 14px; padding: 1.2rem 1.4rem;
  font-size: .9rem; color: var(--muted);
}
.notice strong { color: var(--gold); }

/* ── Fussbereich ──────────────────────────────────────────── */

.foot {
  background: var(--ink-2); border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.foot__top {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 820px) { .foot__top { grid-template-columns: 1.4fr 1fr 1fr; } }

.foot__brand { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.foot__brand img { width: 56px; }
.foot__brand strong {
  font-family: var(--head); font-weight: 700; font-size: 1rem;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
}
.foot p { color: var(--muted); font-size: .92rem; }

.foot h4 {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot ul a { color: var(--muted); font-size: .92rem; }
.foot ul a:hover { color: var(--gold); }

.foot__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 1.6rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.8rem;
  font-size: .82rem; color: var(--faint);
}
.foot__legal { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-items: center; }
.foot__legal a { color: var(--muted); }
.foot__legal a:hover { color: var(--gold); }

.foot__withdraw {
  border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.1rem; color: var(--muted) !important;
  font-family: var(--head); font-weight: 600; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
.foot__withdraw:hover { border-color: var(--gold); color: var(--gold) !important; }

/* ── Laufband ─────────────────────────────────────────────── */

.marquee {
  overflow: hidden; border-block: 1px solid var(--line-soft);
  padding-block: 1.15rem; background: var(--ink-2);
}
.marquee__track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee span {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(.85rem, .8rem + .3vw, 1.05rem);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--faint); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 3.5rem;
}
.marquee span::after { content: "◆"; color: var(--gold); font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ── Kennzahlen ───────────────────────────────────────────── */

.stats {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.stat {
  border: 1px solid var(--line-soft); border-radius: 18px;
  padding: clamp(1.3rem, 2.4vw, 1.9rem); background: var(--ink-3);
  transition: border-color .35s, transform .4s var(--ease);
}
.stat:hover { border-color: rgba(255, 204, 0, .3); transform: translateY(-4px); }
.stat b {
  display: block; font-family: var(--head); font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem); line-height: 1;
  color: var(--gold); margin-bottom: .5rem;
}
.stat span {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-family: var(--head); font-weight: 600;
}

/* ── Genre-Chips ──────────────────────────────────────────── */

.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.15rem; font-size: .85rem; color: var(--muted);
  background: rgba(255, 255, 255, .03);
  transition: border-color .3s, color .3s, transform .3s var(--ease), background .3s;
}
.chip:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(255, 204, 0, .08); transform: translateY(-2px);
}

/* ── Einblenden beim Scrollen ─────────────────────────────── */

[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

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

@media print {
  .nav, .drawer, .foot, .scroll-cue, .marquee, .wizard { display: none !important; }
  body { background: #fff; color: #000; }
}
