/* ═══════════════════════════════════════════════════════════
   MUTWELLE — Haupt-Stylesheet (mobile first)
   Werte kommen aus tokens.css
   ═══════════════════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; }
a { color: var(--cobalt); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.1rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta); }
.btn.small { font-size: 0.95rem; padding: 0.75rem 1.5rem; }
.btn.outline { background: transparent; border: 2.5px solid var(--cobalt); color: var(--cobalt); }
.btn.outline:hover { box-shadow: none; }
.btn.dark { background: var(--ink); }

/* ── Badges ── */
.badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 0.35rem 0.95rem;
  background: var(--sun);
  color: var(--ink);
}
.badge.muted { background: rgba(6, 18, 74, 0.08); }
.badge.ghost { background: rgba(255, 255, 255, 0.14); color: var(--white); }

/* ── Wortmarke / Lockup ── */
.lockup { display: inline-flex; flex-direction: column; gap: 0.1rem; text-decoration: none; }
.lockup img { height: clamp(2rem, 4vw, 2.6rem); width: auto; mix-blend-mode: screen; margin: -0.35rem 0; }
.lockup .byline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-left: 1.8rem;
}
.lockup.on-light img { mix-blend-mode: multiply; filter: invert(1); }
.lockup.on-light .byline { color: rgba(6, 18, 74, 0.6); }

/* ── Nav ── */
nav.site {
  background: var(--cobalt);
  position: sticky;
  top: 0;
  z-index: 50;
}
nav.site.light { background: var(--white); border-bottom: 1.5px solid rgba(6, 18, 74, 0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.nav-links { display: none; gap: 2.2rem; align-items: center; }
.nav-links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-weight: 500; font-size: 0.98rem; }
.nav-links a:hover { color: var(--aqua); }
nav.site.light .nav-links a { color: rgba(6, 18, 74, 0.7); }
nav.site.light .nav-links a:hover { color: var(--coral); }
.nav-cta { display: inline-flex; align-items: center; gap: 0.6rem; }
.nav-cta .date {
  display: none;
  font-weight: 500;
  font-size: 0.78rem;
  background: rgba(6, 18, 74, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  color: var(--white);
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta .date { display: inline-block; }
}

/* ── Hero (Startseite) ── */
.hero {
  background: var(--cobalt);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.25fr 0.75fr; align-items: center; }
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(69, 220, 245, 0.6);
  color: var(--aqua);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.6rem;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero h1 { font-size: var(--fs-hero); animation: rise 0.9s 0.06s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero h1 .splash { color: var(--aqua); }
.hero .sub {
  margin-top: 1.4rem;
  font-size: var(--fs-lead);
  max-width: 28em;
  color: rgba(255, 255, 255, 0.88);
  animation: rise 0.9s 0.14s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: rise 0.9s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-cta .hint { font-size: 0.95rem; color: var(--sun); font-weight: 700; }
.trust-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.5rem 1.4rem;
  flex-wrap: wrap;
  animation: rise 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-row svg { flex-shrink: 0; }

.capsule {
  width: min(78vw, 330px);
  margin: 0 auto;
  border-radius: var(--r-capsule);
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 40px 80px rgba(3, 10, 60, 0.45);
  position: relative;
  transform: rotate(2deg);
  animation: rise-tilt 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.capsule video, .capsule img { width: 100%; aspect-ratio: 480 / 848; object-fit: cover; }
@media (min-width: 900px) { .capsule { margin: 0 0 0 auto; } }
.capsule-wrap { position: relative; }
.capsule-badge {
  position: absolute;
  right: -0.4rem;
  top: 1.4rem;
  background: var(--sun);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--r-pill);
  transform: rotate(6deg);
  box-shadow: 0 12px 28px rgba(3, 10, 60, 0.35);
  z-index: 2;
}

.spiral {
  position: absolute;
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
}
.spiral.hero-spiral { left: -8%; bottom: -4%; width: min(46vw, 620px); }
.ring {
  position: absolute;
  border: 2px solid rgba(69, 220, 245, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rise-tilt {
  from { opacity: 0; transform: translateY(28px) rotate(2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(2deg); }
}

/* ── Marquee ── */
.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 0.8rem 0;
  white-space: nowrap;
}
.marquee-track { display: inline-block; animation: slide 26s linear infinite; }
.marquee span { font-weight: 600; font-size: 0.95rem; margin-right: 2.6rem; }
.marquee .dot { color: var(--aqua); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sektionen ── */
section { padding-top: clamp(3.5rem, 8vw, 6.5rem); padding-bottom: clamp(3.5rem, 8vw, 6.5rem); }
h2 { font-size: var(--fs-h2); max-width: 16em; }
.lead { margin-top: 1rem; max-width: 34em; color: rgba(6, 18, 74, 0.72); font-size: var(--fs-lead); }
.section-head-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: flex-end;
  justify-content: space-between;
}
.section-head-row .aside { color: rgba(6, 18, 74, 0.55); font-size: 0.95rem; font-weight: 500; display: inline-flex; gap: 0.5rem; align-items: center; }

/* ── Kursblock-Tickets ── */
.blocks { display: grid; gap: 1.8rem; margin-top: 2.6rem; }
@media (min-width: 860px) { .blocks { grid-template-columns: 1fr 1fr; } }
.ticket {
  background: var(--white);
  border-radius: calc(var(--r-card) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.ticket-head {
  background: var(--cobalt);
  color: var(--white);
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ticket.full .ticket-head, .ticket.zweier .ticket-head { background: var(--ink); }
.ticket-head .typ {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticket-head h3 { font-size: 1.45rem; margin-top: 0.2rem; }
.ticket-body { padding: 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; flex-grow: 1; }
.ticket-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.ticket-facts li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.ticket-facts svg { flex-shrink: 0; }
.ticket-divider {
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(6, 18, 74, 0.15) 0 10px, transparent 10px 20px);
}
.ticket-price-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.price { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; }
.price small { font-size: 0.9rem; font-weight: 500; color: rgba(6, 18, 74, 0.55); letter-spacing: 0; }
.ticket-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(6, 18, 74, 0.55);
  font-size: 0.85rem;
}
.ticket-note svg { flex-shrink: 0; }

/* ── Schnupper-Banner ── */
.schnupper {
  margin-top: 2rem;
  background: var(--aqua);
  border-radius: calc(var(--r-card) + 2px);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.schnupper-info { display: flex; align-items: center; gap: 1.3rem; }
.schnupper-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cobalt);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.schnupper h3 { font-size: 1.35rem; }
.schnupper p { font-size: 0.98rem; color: rgba(6, 18, 74, 0.75); margin-top: 0.3rem; max-width: 34em; }

/* ── Journey-Strip ── */
.journey {
  margin-top: 2rem;
  background: var(--white);
  border-radius: calc(var(--r-card) + 2px);
  padding: 1.9rem 2.1rem;
  display: grid;
  gap: 1.4rem;
  box-shadow: 0 16px 44px rgba(11, 59, 232, 0.08);
}
@media (min-width: 900px) { .journey { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.journey-step { display: flex; flex-direction: column; gap: 0.35rem; position: relative; }
.journey-step .head { display: flex; align-items: center; gap: 0.7rem; }
.journey-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.journey-step.done .journey-num { background: var(--coral); }
.journey-step .head strong { font-size: 1.02rem; }
.journey-step p { font-size: 0.85rem; color: rgba(6, 18, 74, 0.6); padding-left: 2.55rem; }

/* ── Ablauf / nummerierte Punkte ── */
.flow { background: var(--white); }
.flow-grid { display: grid; gap: 2.2rem; margin-top: 2.6rem; counter-reset: step; }
@media (min-width: 820px) { .flow-grid { grid-template-columns: repeat(3, 1fr); } }
.flow-step { counter-increment: step; }
.flow-step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 50% 50% 50% 8px;
  margin-bottom: 1rem;
}
.flow-step:nth-child(2)::before { background: var(--coral); }
.flow-step:nth-child(3)::before { background: var(--sun); color: var(--ink); }
.flow-step h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.flow-step p { color: rgba(6, 18, 74, 0.72); font-size: 0.97rem; }

/* ── Momentum / Meli ── */
.momentum {
  background: var(--coral);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.momentum-grid { display: grid; gap: 2.5rem; align-items: center; position: relative; }
@media (min-width: 880px) { .momentum-grid { grid-template-columns: 0.8fr 1.2fr; } }
.portrait-ph {
  aspect-ratio: 3 / 4;
  max-width: 360px;
  border-radius: var(--r-capsule);
  background: linear-gradient(165deg, #ff8a76, var(--coral-2));
  border: 6px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  padding: 1.5rem;
  transform: rotate(-2deg);
  box-shadow: 0 32px 70px rgba(120, 20, 10, 0.35);
}
.momentum .eyebrow-light {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}
.momentum h2 { color: var(--white); margin-top: 1rem; }
.momentum .quote {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18em;
  margin-top: 1.2rem;
}
.momentum .body { margin-top: 1.4rem; color: rgba(255, 255, 255, 0.92); max-width: 32em; }
.methode-badge {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  padding: 0.75rem 1.4rem;
}
.methode-badge img { height: 2.1rem; mix-blend-mode: screen; }
.methode-badge span { font-size: 0.95rem; font-weight: 600; }
.momentum .sig { margin-top: 1.4rem; font-weight: 700; color: var(--sun); }
.broll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; position: relative; }
.broll figure {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(120, 20, 10, 0.3);
}
.broll img { width: 100%; height: 100%; object-fit: cover; }
.broll figure:nth-child(1) { transform: rotate(-1.5deg); }
.broll figure:nth-child(2) { transform: translateY(14px); }
.broll figure:nth-child(3) { transform: rotate(1.5deg); }

/* ── Standorte ── */
.orte { background: var(--cobalt); color: var(--white); position: relative; overflow: hidden; }
.orte h2 { color: var(--white); }
.orte .lead { color: rgba(255, 255, 255, 0.8); }
.chips { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.chips a {
  text-decoration: none;
  color: var(--white);
  border: 2px solid rgba(69, 220, 245, 0.55);
  border-radius: var(--r-pill);
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.chips a:hover { background: var(--aqua); border-color: var(--aqua); color: var(--ink); }
.chips.on-light a { color: var(--cobalt); border-color: var(--cobalt); }
.chips.on-light a:hover { background: var(--cobalt); color: var(--white); }

/* ── FAQ ── */
.faq { max-width: 760px; }
.faq details { border-bottom: 2px solid rgba(6, 18, 74, 0.12); padding: 1.15rem 0; }
.faq summary {
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 500; color: var(--coral); flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 0.7rem; color: rgba(6, 18, 74, 0.75); max-width: 44em; }
.faq-grid { display: grid; gap: 2rem; margin-top: 0; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 0.55fr 1fr; gap: 4rem; align-items: start; } }

/* ── Segment-Seiten ── */
.segment-hero {
  background: var(--cobalt);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.segment-hero.ink { background: var(--ink); }
.segment-hero.calm { background: var(--cloud); color: var(--ink); }
.segment-hero-inner { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2.5rem, 6vw, 5rem); position: relative; }
.segment-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); max-width: 15em; }
.segment-hero .sub { margin-top: 1.3rem; font-size: var(--fs-lead); max-width: 36em; color: rgba(255, 255, 255, 0.88); }
.segment-hero.calm .sub { color: rgba(6, 18, 74, 0.75); }
.segment-hero .spiral { right: -10%; top: -15%; width: min(40vw, 480px); opacity: 0.35; }
.breadcrumbs { display: flex; gap: 0.6rem; align-items: center; font-size: 0.85rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-weight: 500; }
.breadcrumbs a:hover { color: var(--aqua); }
.breadcrumbs .sep { color: rgba(255, 255, 255, 0.4); }
.breadcrumbs .current { color: var(--aqua); font-weight: 600; }
.segment-hero.calm .breadcrumbs a { color: rgba(6, 18, 74, 0.5); }
.segment-hero.calm .breadcrumbs .sep { color: rgba(6, 18, 74, 0.3); }
.segment-hero.calm .breadcrumbs .current { color: var(--cobalt); }

.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.2fr 0.8fr; } .split.img-first { grid-template-columns: 0.8fr 1.2fr; } }
.split-img { border-radius: var(--r-card); overflow: hidden; box-shadow: 0 24px 56px rgba(11, 59, 232, 0.18); }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
.split-img.tilt-r { transform: rotate(1.5deg); }
.split-img.tilt-l { transform: rotate(-1.5deg); }

.pill-list { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.pill-list span {
  background: rgba(69, 220, 245, 0.25);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
}

.info-cards { display: grid; gap: 1.5rem; margin-top: 2.4rem; }
@media (min-width: 820px) { .info-cards { grid-template-columns: 1fr 1fr; } }
.info-cards.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 820px) { .info-cards.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.info-card { background: var(--white); border-radius: var(--r-card); padding: 1.8rem; }
.info-card .head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.info-card h3 { font-size: 1.25rem; }
.info-card p { font-size: 0.97rem; color: rgba(6, 18, 74, 0.75); }
.info-card .stat { font-size: 1.9rem; font-weight: 800; color: var(--coral); letter-spacing: -0.02em; margin-bottom: 0.5rem; }

.numbered { display: grid; gap: 1.8rem; margin-top: 2.4rem; }
.numbered > div { display: flex; gap: 1.3rem; align-items: flex-start; }
.numbered .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(69, 220, 245, 0.3);
  color: var(--cobalt);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.numbered h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.numbered p { color: rgba(6, 18, 74, 0.72); font-size: 0.98rem; max-width: 44em; }

.methode-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(69, 220, 245, 0.18);
  border-radius: var(--r-pill);
  padding: 0.8rem 1.5rem;
  margin-top: 2rem;
}
.methode-inline img { height: 1.9rem; mix-blend-mode: multiply; filter: invert(1); }
.methode-inline span { font-size: 0.95rem; font-weight: 600; color: rgba(6, 18, 74, 0.85); }

.related { padding-top: 0; }
.related .label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(6, 18, 74, 0.5);
  margin-bottom: 1.1rem;
}

.stats-row { display: flex; gap: 2.5rem 3.5rem; flex-wrap: wrap; margin-top: 1.8rem; }
.stats-row .stat-num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; color: var(--cobalt); }
.stats-row .stat-label { font-size: 0.88rem; color: rgba(6, 18, 74, 0.6); margin-top: 0.15rem; }

.waitnote {
  margin-top: 2rem;
  background: rgba(69, 220, 245, 0.16);
  border-radius: var(--r-card);
  padding: 1.3rem 1.6rem;
  font-size: 0.98rem;
  max-width: 48em;
}
.waitnote strong { color: var(--cobalt); }

/* ── Finale CTA ── */
.final-cta { padding-left: var(--pad); padding-right: var(--pad); }
.final-cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  border-radius: clamp(1.8rem, 4vw, 2.5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--white); margin: 0 auto; }
.final-cta p { margin: 1.2rem auto 0; color: rgba(255, 255, 255, 0.75); font-size: var(--fs-lead); }
.final-cta .btn { margin-top: 1.8rem; position: relative; }
.final-cta .spiral { right: -8%; bottom: -18%; width: min(40vw, 460px); }

/* ── Buchung ── */
.steps-bar { display: flex; align-items: center; justify-content: center; gap: 0.9rem; padding: 2.4rem var(--pad) 0; flex-wrap: wrap; }
.steps-bar .step { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; font-weight: 600; color: rgba(6, 18, 74, 0.5); }
.steps-bar .step.active { color: var(--cobalt); font-weight: 700; }
.steps-bar .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(6, 18, 74, 0.1);
  color: rgba(6, 18, 74, 0.5);
  font-weight: 800;
  font-size: 0.88rem;
  display: grid;
  place-items: center;
}
.steps-bar .step.active .dot { background: var(--cobalt); color: var(--white); }
.steps-bar .bar { width: 46px; height: 2px; background: rgba(6, 18, 74, 0.15); }

.booking { display: grid; gap: 2rem; align-items: start; margin-top: 2.4rem; }
@media (min-width: 980px) { .booking { grid-template-columns: 1.3fr 0.9fr; } }
.form-card {
  background: var(--white);
  border-radius: calc(var(--r-card) + 2px);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1.4rem;
}
.form-card h1 { font-size: clamp(1.6rem, 3vw, 2rem); }
.field { display: grid; gap: 0.45rem; }
.field label { font-weight: 600; font-size: 0.92rem; }
.field label small { font-weight: 400; color: rgba(6, 18, 74, 0.5); }
.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  border: 2px solid rgba(6, 18, 74, 0.15);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: var(--white);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
}
.field-row { display: grid; gap: 1.4rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: rgba(6, 18, 74, 0.55); font-size: 0.85rem; }

.summary-card {
  background: var(--cobalt);
  color: var(--white);
  border-radius: calc(var(--r-card) + 2px);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.1rem;
}
.summary-card .typ { color: rgba(255, 255, 255, 0.7); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.summary-card h2 { color: var(--white); font-size: 1.5rem; }
.summary-card .line { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.summary-card .divider { height: 2px; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0 10px, transparent 10px 20px); }
.summary-card .total { display: flex; justify-content: space-between; align-items: baseline; }
.summary-card .total .price { color: var(--white); }
.summary-card .spiral { right: -20%; bottom: -20%; width: 280px; opacity: 0.35; }
.perks {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 1.4rem 1.6rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 16px 40px rgba(11, 59, 232, 0.08);
  margin-top: 1.4rem;
}
.perks div { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: rgba(6, 18, 74, 0.75); }
.perks svg { flex-shrink: 0; }

/* ── Footer ── */
footer.site {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.8rem 0;
  font-size: 0.92rem;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
footer.site a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
footer.site a:hover { color: var(--aqua); }

/* ── Ablauf einer Einheit: zusehen, mitmachen, selbermachen, feiern ── */
.vierklang {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
  counter-reset: takt;
}
@media (min-width: 780px) { .vierklang { grid-template-columns: repeat(4, 1fr); } }
.vierklang li {
  counter-increment: takt;
  background: var(--white);
  border-radius: var(--r-card);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vierklang li::before {
  content: counter(takt);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  background: var(--cobalt);
  width: 26px;
  height: 26px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Der letzte Takt gehört dem Kind — deshalb korallrot statt kobalt. */
.vierklang li:last-child::before { background: var(--coral); }
.vierklang strong { font-size: 1.05rem; letter-spacing: -0.015em; }
.vierklang span { font-size: 0.94rem; color: rgba(6, 18, 74, 0.72); line-height: 1.5; }

/* ── Qualifikationen ── */
.qual-gitter { display: grid; gap: 1.6rem; margin-top: 2.6rem; }
@media (min-width: 780px) { .qual-gitter { grid-template-columns: repeat(3, 1fr); } }
.qual-block h3 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 700;
}
.qual-block ul { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.9rem; }
.qual-block li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(11, 59, 232, 0.18);
}
.qual-block li span { font-size: 0.86rem; font-weight: 400; color: rgba(6, 18, 74, 0.55); }
.qual-fuss {
  margin-top: 2.4rem;
  font-size: 0.95rem;
  color: rgba(6, 18, 74, 0.72);
  max-width: 46em;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero h1, .hero .sub, .hero-cta, .trust-row, .capsule { animation: none; }
  .marquee-track { animation: none; }
  .btn { transition: none; }
  html { scroll-behavior: auto; }
}
