@font-face {
  font-family: 'Fredoka';
  src: url('/fonts/fredoka-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #16276a;
  --navy-700: #101d52;
  --ink: #26325c;
  --muted: #6b7699;

  --anthracite: #1c1e24;
  --anthracite-light: #24272f;
  --anthracite-soft: #2a2d36;

  --pink: #ec008c;
  --pink-ink: #b80070;
  --yellow: #ffb703;
  --yellow-ink: #b97e00;
  --green: #5fb62c;
  --green-ink: #468a1e;
  --cyan: #12b3ef;
  --cyan-ink: #0089c2;
  --red: #ed1c24;
  --orange: #f7941e;

  --bg: #ffffff;
  --bg-2: #f3f7fd;
  --cream: #fff7ec;
  --line: #e6ebf5;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --shadow-sm: 0 4px 14px rgba(22, 39, 106, 0.08);
  --shadow: 0 14px 34px rgba(22, 39, 106, 0.12);
  --shadow-lg: 0 28px 60px rgba(22, 39, 106, 0.18);
  --shadow-pink: 0 14px 28px rgba(236, 0, 140, 0.26);

  --font-display: 'Fredoka', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.2rem);
  --sec-y: clamp(2.6rem, 1.6rem + 3.4vw, 4.6rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.06rem);
  overflow-x: hidden;
  overflow-x: clip;
}
body:has(.legal-page) {
  display: flex; flex-direction: column; min-height: 100vh;
  background: var(--bg-2);
}

img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--pink-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 1.45rem + 3vw, 3.5rem); line-height: 1.04; }
h2 { font-size: clamp(1.6rem, 1.28rem + 1.25vw, 2.25rem); }
h3 { font-size: clamp(1.14rem, 1.06rem + 0.35vw, 1.32rem); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:where(a, button, input, textarea, summary, .choice):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Buttons */
.btn {
  --btn-bg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 0.72rem 1.3rem; border-radius: 999px; border: none; cursor: pointer;
  background: var(--btn-bg); color: #fff; text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 0.88rem 1.55rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff5aa9);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { box-shadow: 0 18px 34px rgba(236, 0, 140, 0.34); }
.btn-ghost {
  background: #fff; color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--line), var(--shadow-sm);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--navy), var(--shadow); }
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* Section scaffolding */
.section { position: relative; padding: var(--sec-y) 0; }
.section-head { max-width: 52rem; margin: 0 auto clamp(1.5rem, 2.6vw, 2.2rem); text-align: center; }
.section-head h2 { margin-bottom: 0.35em; }
.section-head > :last-child { margin-bottom: 0; }
.section-sub { color: var(--muted); font-size: 1rem; }

.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.28rem 0.8rem; border-radius: 999px; margin: 0 0 0.7rem;
  background: #eef2fb; color: var(--navy);
}
.kicker-pink { background: #ffe3f3; color: var(--pink-ink); }
.kicker-cyan { background: #d9f2ff; color: var(--cyan-ink); }
.kicker-yellow { background: #fff1cc; color: var(--yellow-ink); }
.kicker-green { background: #e3f6d5; color: var(--green-ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, 0.1); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  padding: 0.45rem 0.95rem; border-radius: 999px; margin: 0 0 1.1rem; font-size: 0.88rem;
}
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(95, 182, 44, 0.3); flex: none; }

/* Reveal on scroll */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand:hover { text-decoration: none; }
.brand-mark img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 3px 5px rgba(22, 39, 106, 0.18)); }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand-fun { color: var(--pink); }
.brand-dot { color: var(--yellow); }
.brand-baden { color: var(--navy); }

.nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 0.2rem; margin: 0; padding: 0; }
.nav-menu a {
  display: inline-block; color: var(--navy); font-family: var(--font-display); font-weight: 500;
  padding: 0.45rem 0.7rem; border-radius: 999px; font-size: 0.98rem; white-space: nowrap;
}
.nav-menu a:hover { background: var(--bg-2); text-decoration: none; }
.nav-cta { background: var(--navy); color: #fff !important; padding-inline: 1.05rem !important; }
.nav-cta:hover { background: var(--pink) !important; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 130px);
  min-height: calc(100dvh - 130px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.4rem, 1.4rem + 3.6vw, 4.2rem) 0 clamp(4rem, 3rem + 5vw, 6.4rem);
  background: linear-gradient(175deg, var(--anthracite) 0%, var(--anthracite-light) 50%, var(--anthracite-soft) 100%);
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.22; }
.blob-1 { width: min(46vw, 520px); aspect-ratio: 1; background: radial-gradient(circle at 32% 32%, #ec008c, transparent 66%); top: -14%; right: -8%; }
.blob-2 { width: min(38vw, 420px); aspect-ratio: 1; background: radial-gradient(circle at 32% 32%, #12b3ef, transparent 66%); bottom: -18%; left: -9%; }
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.6px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 52% 42%, #000 22%, transparent 74%);
  mask-image: radial-gradient(ellipse 78% 62% at 52% 42%, #000 22%, transparent 74%);
}

.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.confetti .c { position: absolute; width: 14px; height: 14px; border-radius: 5px; opacity: 0.55; animation: floaty 9s ease-in-out infinite; }
.confetti .c-b { width: 10px; height: 10px; border-radius: 50%; }
.c-pink { background: var(--pink); top: 18%; left: 6%; transform: rotate(20deg); }
.c-yellow { background: var(--yellow); top: 12%; left: 38%; animation-delay: 1.2s; }
.c-green { background: var(--green); top: 70%; left: 11%; animation-delay: 0.5s; transform: rotate(-15deg); }
.c-cyan { background: var(--cyan); top: 8%; left: 60%; animation-delay: 0.9s; }
.c-red { background: var(--red); top: 84%; left: 46%; animation-delay: 1.6s; border-radius: 50%; }
.c-orange { background: var(--orange); top: 48%; left: 3%; animation-delay: 2s; }
.c-pink.c-b { top: 86%; left: 88%; }
.c-cyan.c-b { top: 16%; left: 92%; animation-delay: 1.1s; }
.c-yellow.c-b { top: 62%; left: 95%; animation-delay: 0.3s; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(4deg); } }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.2rem, 3vw, 2.6rem); align-items: center;
}
.hero-copy { max-width: 34rem; }
.hero h1 { margin-bottom: 0.45rem; }
.hl {
  position: relative; white-space: nowrap; padding-bottom: 0.1em;
  background-repeat: no-repeat; background-position: 50% 100%; background-size: 100% 0.3em;
}
.hl-pink { color: var(--pink); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 22' preserveAspectRatio='none'%3E%3Cpath d='M6 15C50 6 118 3 214 9' fill='none' stroke='%23ec008c' stroke-width='9' stroke-linecap='round' opacity='.42'/%3E%3C/svg%3E"); }
.hl-cyan { color: var(--cyan); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 22' preserveAspectRatio='none'%3E%3Cpath d='M6 10C58 18 130 19 214 11' fill='none' stroke='%2312b3ef' stroke-width='9' stroke-linecap='round' opacity='.44'/%3E%3C/svg%3E"); }
.hero-lead { font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.13rem); color: rgba(255, 255, 255, 0.85); margin-bottom: 1.4rem; max-width: 33rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.3rem; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; }
.trust-row li {
  position: relative; padding: 0.32rem 0.85rem 0.32rem 1.85rem;
  background: rgba(255, 255, 255, 0.12); border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-weight: 700; color: #fff; font-size: 0.85rem;
  backdrop-filter: blur(4px);
}
.trust-row li::before { content: "✔"; position: absolute; left: 0.75rem; color: var(--green); font-weight: 800; }

.hero-stage { position: relative; display: grid; place-items: center; min-height: clamp(270px, 30vw, 420px); }
.hero-stage picture { display: contents; }
.stage-frame {
  position: absolute; z-index: 1; inset: 7% 5% 5%;
  border-radius: 42px;
  background: linear-gradient(148deg, rgba(255, 228, 243, 0.15) 0%, rgba(255, 245, 228, 0.12) 46%, rgba(220, 241, 255, 0.15) 100%);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.25);
  transform: rotate(-4deg);
}
.stage-frame::after {
  content: ""; position: absolute; inset: 11px; border-radius: 32px;
  border: 2px dashed rgba(255, 255, 255, 0.12);
}
.stage-glow {
  position: absolute; z-index: 2; bottom: 4%; left: 50%; width: 62%; height: 26px;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.22), transparent 70%);
}
.hero-breakout {
  position: relative; z-index: 3;
  width: min(112%, 540px);
  aspect-ratio: 9 / 8;
  object-fit: cover;
  object-position: 50% 45%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.stage-chips { position: absolute; inset: 0; z-index: 4; list-style: none; margin: 0; padding: 0; pointer-events: none; }
.stage-chips li { position: absolute; }
.stage-chips li:nth-child(1) { top: 2%; right: -1%; }
.stage-chips li:nth-child(2) { bottom: 22%; left: -6%; }
.stage-chips li:nth-child(3) { bottom: -1%; right: 4%; }
.stage-chip {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border-radius: 999px; padding: 0.3rem 0.9rem 0.3rem 0.3rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--navy);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: bob 9s ease-in-out infinite;
}
.stage-chips li:nth-child(2) .stage-chip { animation-duration: 10s; animation-delay: 0.7s; }
.stage-chips li:nth-child(3) .stage-chip { animation-duration: 8.5s; animation-delay: 1.4s; }
.stage-chip img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex: none; }
.stage-chip:hover { text-decoration: none; box-shadow: var(--shadow); }

@media (prefers-reduced-motion: reduce) {
  .confetti .c, .hero-breakout, .stage-chip { animation: none; }
}

/* Marquee ribbon */
.marquee-wrap {
  position: relative; z-index: 6;
  overflow: hidden;
}
.marquee {
  background: var(--navy); color: #fff; overflow: hidden;
  padding: 0.72rem 0;
  width: 100%;
  box-shadow: 0 10px 26px rgba(22, 39, 106, 0.22);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-group {
  display: flex; align-items: center; gap: 1.3rem;
  flex: 0 0 auto; min-width: 100vw; justify-content: space-around;
  padding-right: 1.3rem;
  white-space: nowrap; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
}
.marquee-group .dot { color: var(--yellow); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Services */
.angebote { background: var(--bg); padding-top: clamp(2.8rem, 2rem + 2.4vw, 4rem); }
.svc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.1rem, 2.4vw, 1.8rem); max-width: 68rem; margin-inline: auto; }
.svc {
  --accent: var(--pink); --accent-soft: #ffe3f3; --accent-ink: var(--pink-ink);
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-pink { --accent: #ec008c; --accent-soft: #ffe3f3; --accent-ink: #b80070; }
.svc-cyan { --accent: #12b3ef; --accent-soft: #d9f2ff; --accent-ink: #0089c2; }
.svc-yellow { --accent: #ffb703; --accent-soft: #fff1cc; --accent-ink: #b97e00; }
.svc-green { --accent: #5fb62c; --accent-soft: #e3f6d5; --accent-ink: #468a1e; }
.svc-media { position: relative; aspect-ratio: 4 / 3; max-height: min(360px, 42vh); overflow: hidden; background: var(--accent-soft); }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% var(--focus, 50%);
  transition: transform 0.5s ease;
}
.svc:has(img[src*="photobooth.jpg"]) .svc-media {
  aspect-ratio: 1 / 1;
  max-height: 450px;
}
.svc-media img[src*="photobooth.jpg"] {
  object-position: 50% 0% !important;
}
.svc:hover .svc-media img { transform: scale(1.05); }
.svc-tag {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; padding: 0.26rem 0.75rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.svc-body { padding: 1.2rem 1.3rem 1.35rem; position: relative; flex: 1; display: flex; flex-direction: column; }
.svc-emoji {
  position: absolute; top: -1.7rem; right: 1.1rem; width: 3.1rem; height: 3.1rem; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; font-size: 1.5rem;
  border: 3px solid var(--accent-soft);
}
.svc-body h3 { color: var(--navy); margin-bottom: 0.4rem; padding-right: 2.4rem; }
.svc-body > p { color: var(--ink); margin-bottom: 0.8rem; font-size: 0.97rem; }
.svc-list { list-style: none; margin: 0 0 0.9rem; padding: 0; display: grid; gap: 0.28rem; }
.svc-list li { position: relative; padding-left: 1.4rem; font-size: 0.93rem; color: var(--ink); }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.62rem; height: 0.62rem; border-radius: 50%; background: var(--accent); }
.svc-note { display: flex; align-items: center; gap: 0.5rem; background: var(--accent-soft); color: var(--accent-ink); font-weight: 700; font-size: 0.86rem; padding: 0.48rem 0.75rem; border-radius: 12px; margin: 0 0 0.9rem; }
.soon-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 1.8s ease-out infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(236, 0, 140, 0.4); } 100% { box-shadow: 0 0 0 10px rgba(236, 0, 140, 0); } }
@media (prefers-reduced-motion: reduce) { .soon-dot { animation: none; } }
.svc-link { margin-top: auto; align-self: flex-start; font-family: var(--font-display); font-weight: 600; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 0.35rem; }
.svc-link span { transition: transform 0.2s ease; }
.svc-link:hover { text-decoration: none; }
.svc-link:hover span { transform: translateX(4px); }

/* Live popcorn card */
.livepop { background: var(--bg); }
.livepop-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #24409c 100%);
  color: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 2.6vw, 2.4rem);
  display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 3.5vw, 2.8rem); align-items: center;
}
.livepop-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 88% 8%, rgba(255, 183, 3, 0.22), transparent 42%);
}
.livepop-media {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg); box-shadow: 0 22px 44px rgba(6, 14, 46, 0.4);
  transform: rotate(-2.5deg);
  max-width: 330px; width: 100%; margin-inline: auto;
}
.livepop-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); }
.livepop-sticker {
  position: absolute; z-index: 2; bottom: -0.7rem; left: -0.7rem;
  background: var(--yellow); color: #4a3200;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  padding: 0.42rem 0.85rem; border-radius: 999px;
  box-shadow: 0 10px 22px rgba(6, 14, 46, 0.35);
  transform: rotate(-5deg); white-space: nowrap;
}
.livepop-copy { position: relative; z-index: 1; }
.livepop-copy h2 { color: #fff; }
.livepop-copy .kicker-yellow { background: rgba(255, 183, 3, 0.22); color: #ffd66b; }
.livepop-copy p { color: rgba(255, 255, 255, 0.9); }

/* Warum */
.warum { background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.9rem; }
.why { background: #fff; border-radius: var(--radius); padding: 1.2rem 1rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.why:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-ic { display: grid; place-items: center; width: 2.9rem; height: 2.9rem; margin: 0 auto 0.7rem; border-radius: 50%; background: linear-gradient(135deg, #fff0f8, #eaf6ff); font-size: 1.45rem; }
.why h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.why p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2.4rem); position: relative; }
.steps::before { content: ""; position: absolute; top: 1.9rem; left: 14%; right: 14%; height: 3px; background-image: linear-gradient(90deg, var(--line) 60%, transparent 0); background-size: 16px 3px; z-index: 0; }
.step { position: relative; text-align: center; z-index: 1; }
.step-num { display: grid; place-items: center; width: 3.8rem; height: 3.8rem; margin: 0 auto 0.9rem; border-radius: 50%; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: #fff; background: linear-gradient(135deg, var(--pink), #ff69b0); box-shadow: var(--shadow-pink); }
.step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--cyan), #56d0ff); box-shadow: 0 14px 26px rgba(18, 179, 239, 0.28); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--green), #8fd85f); box-shadow: 0 14px 26px rgba(95, 182, 44, 0.28); }
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Gallery */
.gallery { columns: 3; column-gap: 0.9rem; }
.gitem { break-inside: avoid; margin: 0 0 0.9rem; padding: 0; border: none; background: none; cursor: pointer; width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: block; position: relative; }
.gitem img { width: 100%; height: auto; transition: transform 0.5s ease; }
.gitem::after { content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.5rem; background: rgba(22, 39, 106, 0.35); opacity: 0; transition: opacity 0.25s ease; }
.gitem:hover img { transform: scale(1.05); }
.gitem:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(16, 24, 60, 0.9); display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(94vw, 880px); max-height: 80vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-caption { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-display); font-weight: 500; }
.lightbox-close { position: absolute; top: 1rem; right: 1.2rem; width: 2.8rem; height: 2.8rem; border-radius: 50%; border: none; background: #fff; color: var(--navy); font-size: 1.4rem; cursor: pointer; box-shadow: var(--shadow); }

/* Reviews */
.stimmen { background: var(--cream); }
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.review { margin: 0; background: #fff; border-radius: var(--radius-lg); padding: 1.4rem 1.35rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative; }
.review::before { content: "\201C"; position: absolute; top: -0.4rem; right: 1.1rem; font-family: var(--font-display); font-size: 3.4rem; color: #ffe0b0; line-height: 1; }
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.review p { color: var(--ink); font-size: 1.02rem; font-weight: 600; margin: 0; position: relative; }

/* Region */
.region { background: linear-gradient(180deg, var(--bg-2), #fff); overflow: hidden; }
.region-candy { position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle at 12% 30%, rgba(236, 0, 140, 0.12) 0 10px, transparent 11px),
    radial-gradient(circle at 82% 20%, rgba(18, 179, 239, 0.14) 0 12px, transparent 13px),
    radial-gradient(circle at 68% 74%, rgba(95, 182, 44, 0.14) 0 9px, transparent 10px),
    radial-gradient(circle at 30% 82%, rgba(255, 183, 3, 0.16) 0 11px, transparent 12px);
}
.region-inner { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; text-align: center; }
.region-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.2rem; }
.chip { display: inline-flex; align-items: center; gap: 0.35rem; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: 999px; padding: 0.42rem 0.9rem; font-family: var(--font-display); font-weight: 500; font-size: 0.94rem; color: var(--navy); }
.chip-pin { font-size: 0.85rem; }
.chip-more { background: var(--navy); color: #fff; border-color: var(--navy); }

/* FAQ */
.faq-inner { max-width: 48rem; margin: 0 auto; }
.faq-list { display: grid; gap: 0.7rem; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-list summary { list-style: none; cursor: pointer; padding: 0.95rem 1.2rem; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: none; width: 18px; height: 18px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--pink); border-radius: 2px; transition: transform 0.2s ease; }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 3px; }
.faq-plus::after { left: 8px; top: 0; width: 3px; height: 18px; }
.faq-list details[open] .faq-plus::after { transform: scaleY(0); }
.faq-a { padding: 0 1.2rem 1.05rem; }
.faq-a p { margin: 0; color: var(--ink); }

/* Kontakt */
.kontakt { background: linear-gradient(180deg, var(--bg-2) 0%, #e8ecf4 100%); }
.kontakt-inner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.4rem, 3.5vw, 2.8rem); align-items: center; }
.kontakt-copy { max-width: 30rem; }
.kontakt-copy h2 { margin-bottom: 0.4em; }
.kontakt-lead { font-size: 1.03rem; color: var(--ink); margin-bottom: 1.1rem; }
.kontakt-facts { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: 0.55rem; }
.kontakt-facts li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--navy); }
.kontakt-alt { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.kontakt-alt:empty { display: none; }

.kontakt-formwrap { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid var(--line); padding: clamp(1.15rem, 2.2vw, 1.8rem); }
.anfrage-form { display: grid; gap: 0.8rem; }
.fld { display: grid; gap: 0.28rem; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.fld label, .fld-choices legend { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 0.92rem; padding: 0; }
.req { color: var(--pink); }
.anfrage-form input, .anfrage-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.6rem 0.8rem; border-radius: 12px; border: 2px solid var(--line); background: #fff; width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.anfrage-form input:focus, .anfrage-form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.12); }
.anfrage-form textarea { resize: vertical; min-height: 84px; }
.fld-choices { border: none; padding: 0; margin: 0; min-width: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.4rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.38rem 0.75rem; border-radius: 999px; border: 2px solid var(--line); font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; color: var(--navy); background: #fff; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.choice input:checked + span { background: var(--pink); border-color: var(--pink); color: #fff; }
.choice input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-slot:not(:empty) { margin-top: 0.2rem; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin: 0.1rem 0 0; line-height: 1.45; }
.form-status { margin: 0; font-weight: 700; font-family: var(--font-display); }
.form-status:empty { display: none; }
.form-status.is-error { color: var(--red); }
.form-status.is-ok { color: var(--green-ink); }
.anfrage-form.sending button[type="submit"] { opacity: 0.7; pointer-events: none; }
.form-ok-card { background: #eafaf0; border: 1px solid #bfe9cf; border-radius: var(--radius-lg); padding: 1.6rem; text-align: center; }
.form-ok-card .big { font-size: 2.2rem; display: block; margin-bottom: 0.4rem; }
.form-ok-card h3 { color: var(--green-ink); }
.form-ok-card p { margin: 0; color: var(--ink); }

/* Footer */
.site-footer { position: relative; background: var(--navy); color: rgba(255, 255, 255, 0.86); }
.footer-wave { background: #e8ecf4; line-height: 0; }
.footer-wave svg { display: block; width: 100%; height: clamp(34px, 4.5vw, 68px); }
.footer-wave path { fill: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 1.6rem 2rem; padding-top: clamp(1.6rem, 3vw, 2.6rem); padding-bottom: 2rem; }
.footer-brand img { width: 84px; height: 84px; object-fit: contain; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.72); font-size: 0.93rem; max-width: 30ch; }
.footer-ig { display: inline-flex; align-items: center; gap: 0.45rem; color: #fff; font-family: var(--font-display); font-weight: 500; margin-top: 0.2rem; }
.footer-ig:hover { color: #ffd66b; text-decoration: none; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.7rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-col a { color: rgba(255, 255, 255, 0.8); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: grid; gap: 0.1rem; margin-bottom: 0.5rem; }
.footer-contact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.5); font-weight: 700; }
.footer-contact a { color: #fff; }
.placeholder { color: #ffd66b; font-style: italic; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; justify-content: space-between; align-items: center; padding: 1rem 0 1.6rem; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); }
.footer-bottom p { margin: 0; }
.footer-credit a { color: #fff; font-weight: 700; }

/* Floating action button */
.fab { position: fixed; z-index: 90; right: clamp(0.9rem, 3vw, 1.5rem); bottom: clamp(0.9rem, 3vw, 1.5rem); box-shadow: var(--shadow-lg); border-radius: 999px; font-family: var(--font-display); font-weight: 600; transition: transform 0.2s ease; }
.fab:hover { transform: translateY(-3px) scale(1.03); text-decoration: none; }
.fab-whatsapp { width: 56px; height: 56px; display: grid; place-items: center; background: #25d366; color: #fff; }
.fab-anfrage { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.75rem 1.15rem; background: linear-gradient(135deg, var(--pink), #ff5aa9); color: #fff; font-size: 0.95rem; }
.fab-emoji { font-size: 1.1rem; }

/* Legal + 404 */
.legal-page {
  background: var(--bg-2);
  flex: 1;
  padding-top: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
}
.legal-page + .site-footer .footer-wave { background: var(--bg-2); }
.legal { max-width: 48rem; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); padding: clamp(1.4rem, 3.5vw, 2.6rem); }
.legal h1 { margin-bottom: 1rem; }
.legal h2 { font-size: 1.25rem; margin-top: 1.8rem; }
.legal-note { background: #fff7e6; border: 1px solid #ffe2a8; border-radius: 12px; padding: 0.9rem 1.1rem; color: #8a6a12; font-size: 0.92rem; margin-bottom: 1.4rem; }
.ph { background: #ffeef7; color: var(--pink-ink); padding: 0.05rem 0.4rem; border-radius: 6px; font-weight: 700; }
.legal-back { margin-top: 1.8rem; }

.notfound { background: linear-gradient(180deg, #fff, var(--bg-2)); }
.notfound-inner { max-width: 40rem; margin: 0 auto; text-align: center; padding: clamp(2.6rem, 7vw, 5rem) 0; }
.notfound-emoji { font-size: 3.6rem; margin-bottom: 0.5rem; animation: bob 4s ease-in-out infinite; }
.notfound-text { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.4rem; }
@media (prefers-reduced-motion: reduce) { .notfound-emoji { animation: none; } }

/* ---------- Responsive ---------- */

@media (min-width: 1560px) {
  :root { --maxw: 1300px; }
}

@media (max-width: 1180px) {
  .stage-chips li:nth-child(2) { left: -2%; }
  .stage-chip { font-size: 0.8rem; padding-right: 0.8rem; }
  .stage-chip img { width: 32px; height: 32px; }
}

@media (max-width: 1080px) {
  .nav-menu { gap: 0.05rem; }
  .nav-menu a { padding-inline: 0.55rem; font-size: 0.94rem; }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .livepop-card { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
}

@media (max-width: 960px) {
  .hero { padding-bottom: clamp(3rem, 8vw, 4.4rem); min-height: auto; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 1.4rem; }
  .hero-stage { order: -1; min-height: clamp(260px, 52vw, 380px); width: min(100%, 480px); margin-inline: auto; }
  .hero-copy { max-width: none; }
  .hero-lead { max-width: none; }

  .livepop-card { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .livepop-media { max-width: 280px; }
  .livepop-copy { display: flex; flex-direction: column; align-items: center; }
  .livepop-sticker { left: 50%; transform: translateX(-50%) rotate(-4deg); }

  .kontakt-inner { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .kontakt-copy { max-width: none; }
  .reviews { grid-template-columns: minmax(0, 1fr); }
  .gallery { columns: 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--navy); color: #fff; border: none; padding: 0.5rem 0.85rem; border-radius: 999px; font-family: var(--font-display); font-weight: 600; cursor: pointer; font-size: 0.98rem; }
  .nav-toggle-bars { display: inline-grid; gap: 3px; }
  .nav-toggle-bars span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav[data-open="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav[data-open="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 0.6rem var(--pad) 1rem; gap: 0.2rem;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s;
  }
  .nav[data-open="true"] .nav-menu { max-height: 80vh; opacity: 1; visibility: visible; }
  .nav-menu a { padding: 0.7rem 0.6rem; font-size: 1.05rem; border-radius: 12px; }
  .nav-cta { text-align: center; margin-top: 0.3rem; }

  .svc-grid { grid-template-columns: minmax(0, 1fr); max-width: 32rem; margin-inline: auto; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 1.2rem; max-width: 26rem; margin-inline: auto; }
  .steps::before { display: none; }
  .marquee-group { font-size: 0.98rem; gap: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 620px) {
  .hero-stage { min-height: 0; width: min(100%, 400px); }
  .hero-breakout, .stage-chip, .confetti .c { animation: none; }
  .stage-chips li:nth-child(1) { top: 0; right: 0; }
  .stage-chips li:nth-child(2) { bottom: 26%; left: 0; }
  .stage-chips li:nth-child(3) { bottom: 0; right: 8%; }
  .stage-chip { font-size: 0.75rem; gap: 0.4rem; padding: 0.25rem 0.7rem 0.25rem 0.25rem; }
  .stage-chip img { width: 28px; height: 28px; }
  .stage-frame { inset: 9% 3% 6%; border-radius: 32px; }
  .stage-frame::after { inset: 9px; border-radius: 24px; }
  .fld-row { grid-template-columns: minmax(0, 1fr); }
  .hero-actions .btn { width: 100%; }
  .trust-row li { font-size: 0.8rem; }
  .kontakt-alt .btn { flex: 1 1 8rem; }
  .review::before { display: none; }
}

@media (max-width: 460px) {
  .gallery { columns: 1; }
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom { justify-content: flex-start; }
  .stage-chips li:nth-child(2) { display: none; }
  .fab-anfrage { padding: 0.65rem 1rem; font-size: 0.9rem; }
}

/* Short viewports: keep the contact card within reach */
@media (min-width: 961px) and (max-height: 900px) {
  .kontakt { --sec-y: clamp(1.8rem, 2.6vw, 2.4rem); }
  .kontakt-formwrap { padding: clamp(0.95rem, 1.7vw, 1.35rem); }
  .anfrage-form { gap: 0.62rem; }
  .anfrage-form textarea { min-height: 62px; }
  .anfrage-form input, .anfrage-form textarea { padding: 0.5rem 0.75rem; }
  .choice span { padding: 0.32rem 0.7rem; font-size: 0.87rem; }
  .choices { gap: 0.35rem; }
  .kontakt-lead { margin-bottom: 0.9rem; }
  .kontakt-facts { gap: 0.45rem; margin-bottom: 0.9rem; }
}
