/* ============================================================
   BEAST BOWLING – Kühlungsborn
   Dark Neon Theme · Vanilla CSS
   ============================================================ */

:root {
  --bg: #0a0a0f;
  --bg-alt: #101018;
  --panel: #16161f;
  --panel-2: #1c1c28;
  --text: #f2f0ea;
  --muted: #a2a0b0;
  --orange: #ff7a18;
  --orange-2: #ffb347;
  --pink: #ff2e63;
  --cyan: #21e6c1;
  --grad: linear-gradient(100deg, var(--orange) 0%, var(--pink) 100%);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .55);
  --font-display: 'Bungee', cursive;
  --font-body: 'Rubik', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn, .option, .stepper__btn, .nav__link, .nav__cta, .nav__burger, .sticky-cta {
  touch-action: manipulation;
}

[hidden] { display: none !important; }

img { max-width: 100%; }
a { color: var(--orange); }
button { font-family: inherit; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .8em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s;
  will-change: transform;
}
.btn:active { transform: scale(.96); }
.btn--big { padding: 1em 2.1em; font-size: 1.05rem; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 60, 60, .35);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 90, 40, .55);
}
.btn--primary:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, .25);
}
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

.btn--wa {
  background: #25d366;
  color: #06210f;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .35);
}
.btn--wa:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 42px rgba(37, 211, 102, .55); }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ CUSTOM ICONS ============ */
.icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.2em;
  display: inline-block;
  flex-shrink: 0;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  top: var(--topbar-h, 0px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 48px);
  transition: background .35s ease, padding .35s ease, box-shadow .35s, top .35s ease;
}
/* Wichtig: kein backdrop-filter auf .nav! Der würde die Leiste zum
   Containing Block für das fixierte Burger-Menü machen und es abschneiden. */
.nav.is-scrolled {
  background: rgba(10, 10, 15, .93);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .45);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .5px;
}
.nav__logo em, .footer__brand em { font-style: normal; color: var(--orange); }

.nav__logo-ball {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: url('../assets/logo.svg') center / contain no-repeat;
  box-shadow: 0 0 16px rgba(255, 122, 24, .75);
  animation: logoGlow 2.8s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 122, 24, .55); }
  50% { box-shadow: 0 0 22px rgba(255, 122, 24, .95); }
}

.nav__links { display: flex; align-items: center; gap: clamp(10px, 2vw, 26px); }

.nav__link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 4px 2px;
  transition: color .25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: .6em 1.3em;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(255, 70, 50, .4);
  transition: transform .2s, box-shadow .25s;
  animation: ctaPulse 2.6s ease-in-out infinite;
}
.nav__cta:hover { transform: translateY(-2px) scale(1.04); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(255, 70, 50, .4); }
  50% { box-shadow: 0 6px 34px rgba(255, 70, 50, .75); }
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  min-width: 46px;
  min-height: 44px;
  z-index: 110;
}
.nav__burger span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 150px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 122, 24, .16), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 110%, rgba(255, 46, 99, .12), transparent 60%),
    var(--bg);
}

/* Animierte Bowlingbahn im Hintergrund */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg-lane {
  position: absolute;
  left: 50%; bottom: -4%;
  width: 150vw; height: 86%;
  transform: translateX(-50%) perspective(850px) rotateX(58deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
}
.hero__bg-boards {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 176, 96, .08) 0 2px, transparent 2px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 140px),
    linear-gradient(180deg, transparent 0%, rgba(255, 122, 24, .05) 60%, rgba(255, 122, 24, .13) 100%);
  animation: laneMove 5s linear infinite;
}
@keyframes laneMove {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 0 140px, 0 0; }
}
.hero__bg-arrows {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .45;
}
.hero__bg-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 190, 120, .17) 48%, transparent 62%);
  background-size: 100% 260%;
  animation: laneSheen 7s ease-in-out infinite;
}
@keyframes laneSheen {
  0% { background-position: 0 -130%; }
  65%, 100% { background-position: 0 130%; }
}
.hero__bg-lane::before, .hero__bg-lane::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 17%;
  z-index: 1;
}
.hero__bg-lane::before { left: 0; background: linear-gradient(90deg, rgba(5, 5, 9, .9) 25%, transparent); }
.hero__bg-lane::after { right: 0; background: linear-gradient(270deg, rgba(5, 5, 9, .9) 25%, transparent); }

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .3;
  pointer-events: none;
  animation: glowFloat 9s ease-in-out infinite alternate;
}
.hero__glow--1 { width: 480px; height: 480px; background: var(--orange); top: -140px; left: -140px; }
.hero__glow--2 { width: 420px; height: 420px; background: var(--pink); bottom: -120px; right: -120px; animation-delay: -4.5s; }
@keyframes glowFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 40px) scale(1.15); }
}

/* Das lauernde Beast: taucht flackernd im Dunkel hinter dem Titel auf */
.hero__beast {
  position: absolute;
  left: 50%; top: 55%;
  width: min(88vw, 540px);
  transform: translate(-50%, -50%);
  z-index: -1;
  display: block;
  opacity: 0;
  pointer-events: none;
  animation: beastLurk 16s ease-in-out 4s infinite;
  filter: drop-shadow(0 0 34px rgba(255, 46, 99, .3));
}
.hero__beast svg { width: 100%; height: auto; display: block; }
.beast__skull {
  fill: none;
  stroke: rgba(255, 235, 240, .16);
  stroke-width: 2.5;
  stroke-linecap: round;
}
.beast__teeth {
  fill: none;
  stroke: rgba(255, 235, 240, .13);
  stroke-width: 5;
  stroke-linecap: round;
}
.beast__glow { fill: rgba(255, 46, 99, .16); }
.beast__ring {
  fill: none;
  stroke: rgba(255, 216, 226, .85);
  stroke-width: 7;
}
.beast__pupil {
  fill: #fff;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.beast__nose { fill: rgba(255, 235, 240, .3); }
.beast__eye { animation: beastEyePulse 2.2s ease-in-out infinite; }

@keyframes beastLurk {
  0%, 52% { opacity: 0; }
  54% { opacity: .55; }
  55.5% { opacity: .12; }
  57% { opacity: .6; }
  58.5% { opacity: .3; }
  60% { opacity: .62; }
  74% { opacity: .55; }
  80%, 100% { opacity: 0; }
}
@keyframes beastEyePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .82; }
}
/* Am Handy wandern die Pupillen von allein */
@media (pointer: coarse) {
  .beast__pupil { animation: pupilWander 16s ease-in-out 4s infinite; }
}
@keyframes pupilWander {
  0%, 52% { transform: none; }
  56% { transform: translate(-7px, 2px); }
  63% { transform: translate(-7px, 2px); }
  67% { transform: translate(7px, -2px); }
  73% { transform: translate(7px, -2px); }
  77% { transform: translate(0, 3px); }
  80%, 100% { transform: none; }
}

.hero__content { position: relative; z-index: 2; width: 100%; max-width: 900px; }

.hero__status-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulseDot 1.6s ease-in-out infinite;
}
.fact--status.is-closed .hero__status-dot { background: #f87171; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .6); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  position: relative;
}
.hero__title-line {
  display: block;
  animation: heroLine .9s cubic-bezier(.2, .9, .3, 1.2) both;
}
.hero__title-line:nth-child(1) { animation-delay: .15s; }
.hero__title-line:nth-child(2) { animation-delay: .35s; }
.hero__title-line:nth-child(3) { animation-delay: .55s; }
@keyframes heroLine {
  from { opacity: 0; transform: translateY(45px) scale(.92); }
  to { opacity: 1; transform: none; }
}

.hero__title-line--beast {
  font-size: 1.35em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 90, 40, .55));
}

.neon-flicker { animation: heroLine .9s cubic-bezier(.2,.9,.3,1.2) .35s both, neonFlicker 5s linear 2s infinite; }
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  41% { opacity: 1; }
  42% { opacity: .6; }
  43% { opacity: 1; }
  45% { opacity: .7; }
  46% { opacity: 1; }
  71% { opacity: 1; }
  72% { opacity: .5; }
  73% { opacity: 1; }
}

.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin: 22px auto 34px;
  max-width: 560px;
  animation: fadeDown .8s ease .75s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .8s ease .9s both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: none; }
}

.hero__facts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
  animation: fadeDown .8s ease 1.05s both;
}
.fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
}
.fact .icon { width: 22px; height: 22px; color: var(--orange); }
.fact span { display: grid; line-height: 1.35; }
.fact strong { font-size: .95rem; }
.fact small { color: var(--muted); font-size: .78rem; }

/* ============ EVENT-LEISTE GANZ OBEN ============ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: calc(7px + env(safe-area-inset-top, 0px)) 16px 7px;
  background: linear-gradient(100deg, #c01340 0%, var(--pink) 45%, var(--orange) 100%);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  text-align: center;
  transition: transform .35s ease;
}
.topbar .icon { width: 1.05em; height: 1.05em; flex-shrink: 0; }
.topbar__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulseDotWhite 1.6s ease-in-out infinite;
}
@keyframes pulseDotWhite {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .55); }
  50% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
}
body.is-scrolled-page .topbar { transform: translateY(-105%); }
body.is-scrolled-page .nav { top: 0; }
/* Offenes Menü liegt über der Event-Leiste */
.nav.menu-open { z-index: 102; }

.hero__scroll {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  z-index: 3;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 9px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--orange);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ BOWLING LANE SCENE ============ */
.lane {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 130px;
  z-index: 1;
  pointer-events: none;
}
.lane__floor {
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 2px, transparent 2px 90px),
    linear-gradient(180deg, #17121c 0%, #241a20 100%);
  border-top: 1px solid rgba(255, 122, 24, .28);
  box-shadow: 0 -14px 44px rgba(255, 100, 30, .12);
}

/* Pins */
.lane__pins {
  position: absolute;
  right: clamp(30px, 10vw, 160px);
  bottom: 38px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.pin {
  width: 20px; height: 60px;
  background: url('../assets/pin.svg?v=3') center bottom / contain no-repeat;
  transform-origin: bottom center;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, .3));
}
.pin--1 { animation: pinFall1 7s ease-in-out infinite; }
.pin--2 { animation: pinFall2 7s ease-in-out infinite; height: 64px; }
.pin--3 { animation: pinFall3 7s ease-in-out infinite; }
.pin--4 { animation: pinFall4 7s ease-in-out infinite; height: 63px; }
.pin--5 { animation: pinFall5 7s ease-in-out infinite; }
.pin--6 { animation: pinFall6 7s ease-in-out infinite; height: 62px; }

/* Ball rolls across, strike at ~46 % of the 7s loop */
.lane__ball {
  position: absolute;
  bottom: 40px;
  left: -90px;
  animation: ballRoll 7s cubic-bezier(.45, .05, .6, 1) infinite;
}
.ball {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: url('../assets/logo.svg') center / cover no-repeat, #10101a;
  box-shadow: 0 0 28px rgba(255, 122, 24, .7);
  animation: ballSpin 1.1s linear infinite;
}

@keyframes ballSpin { to { transform: rotate(360deg); } }
@keyframes ballRoll {
  0%   { left: -90px; opacity: 1; }
  40%  { opacity: 1; }
  46%  { left: calc(100% - clamp(30px, 10vw, 160px) - 120px); opacity: 1; }
  54%  { left: calc(100% + 40px); opacity: 1; }
  55%  { opacity: 0; }
  100% { left: calc(100% + 40px); opacity: 0; }
}

/* Pins scatter right after impact (~46 %) and reset at 92 % */
@keyframes pinFall1 {
  0%, 45% { transform: none; opacity: 1; }
  47% { transform: translate(-30px, -46px) rotate(-130deg); }
  60% { transform: translate(-44px, 6px) rotate(-220deg); opacity: 1; }
  61%, 90% { opacity: 0; }
  92%, 100% { transform: none; opacity: 1; }
}
@keyframes pinFall2 {
  0%, 45.5% { transform: none; opacity: 1; }
  48% { transform: translate(-14px, -68px) rotate(160deg); }
  62% { transform: translate(-20px, 8px) rotate(300deg); opacity: 1; }
  63%, 90% { opacity: 0; }
  92%, 100% { transform: none; opacity: 1; }
}
@keyframes pinFall3 {
  0%, 46% { transform: none; opacity: 1; }
  49% { transform: translate(8px, -56px) rotate(-200deg); }
  63% { transform: translate(16px, 10px) rotate(-340deg); opacity: 1; }
  64%, 90% { opacity: 0; }
  92%, 100% { transform: none; opacity: 1; }
}
@keyframes pinFall4 {
  0%, 46.5% { transform: none; opacity: 1; }
  49.5% { transform: translate(26px, -72px) rotate(220deg); }
  64% { transform: translate(42px, 4px) rotate(380deg); opacity: 1; }
  65%, 90% { opacity: 0; }
  92%, 100% { transform: none; opacity: 1; }
}
@keyframes pinFall5 {
  0%, 47% { transform: none; opacity: 1; }
  50% { transform: translate(44px, -50px) rotate(-170deg); }
  65% { transform: translate(66px, 8px) rotate(-290deg); opacity: 1; }
  66%, 90% { opacity: 0; }
  92%, 100% { transform: none; opacity: 1; }
}
@keyframes pinFall6 {
  0%, 47.5% { transform: none; opacity: 1; }
  51% { transform: translate(60px, -64px) rotate(200deg); }
  66% { transform: translate(88px, 2px) rotate(350deg); opacity: 1; }
  67%, 90% { opacity: 0; }
  92%, 100% { transform: none; opacity: 1; }
}

.lane__flash {
  position: absolute;
  right: clamp(0px, 6vw, 120px);
  bottom: 20px;
  width: 220px; height: 130px;
  background: radial-gradient(circle, rgba(255, 190, 80, .8), transparent 65%);
  opacity: 0;
  animation: flash 7s ease-out infinite;
  pointer-events: none;
}
@keyframes flash {
  0%, 45% { opacity: 0; transform: scale(.4); }
  48% { opacity: .9; transform: scale(1.25); }
  56%, 100% { opacity: 0; transform: scale(.4); }
}

.lane__strike {
  position: absolute;
  right: clamp(20px, 9vw, 150px);
  bottom: 100px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--orange-2);
  text-shadow: 0 0 18px rgba(255, 150, 40, .9);
  opacity: 0;
  animation: strikePop 7s ease-out infinite;
}
@keyframes strikePop {
  0%, 46% { opacity: 0; transform: scale(.3) rotate(-8deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(3deg); }
  55% { transform: scale(1) rotate(0); opacity: 1; }
  68%, 100% { opacity: 0; transform: scale(.9) translateY(-24px); }
}

/* ============ TICKER ============ */
.ticker {
  overflow: hidden;
  background: var(--grad);
  padding: 12px 0;
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 70, 40, .3);
  position: relative;
  z-index: 5;
}
.ticker__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker__track span {
  white-space: nowrap;
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@keyframes tickerScroll { to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ============ SECTIONS ============ */
.section {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 60px);
  max-width: 1220px;
  margin: 0 auto;
}
.section--alt {
  max-width: none;
  background:
    radial-gradient(ellipse 60% 45% at 15% 0%, rgba(255, 122, 24, .07), transparent 60%),
    var(--bg-alt);
}
.section--alt > * { max-width: 1220px; margin-left: auto; margin-right: auto; }

.section__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section__kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  text-transform: uppercase;
}
.section__lead {
  color: var(--muted);
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s cubic-bezier(.2, .7, .3, 1), transform .8s cubic-bezier(.2, .7, .3, 1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ ERLEBNIS CARDS ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.card {
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  transform-style: preserve-3d;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 122, 24, .13), transparent 45%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { border-color: rgba(255, 122, 24, .4); box-shadow: 0 18px 50px rgba(0,0,0,.5); }

.card__icon {
  width: 48px; height: 48px;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-block;
  filter: drop-shadow(0 6px 16px rgba(255, 122, 24, .35));
  transition: transform .35s cubic-bezier(.2, .9, .3, 1.4);
}
.card__icon svg { width: 100%; height: 100%; }
.card:hover .card__icon { transform: scale(1.2) rotate(-8deg); color: var(--orange-2); }
.card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }

/* ============ PREISE ============ */
.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price {
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s cubic-bezier(.2, .8, .3, 1.2), border-color .3s, box-shadow .35s;
}
.price:hover { transform: translateY(-10px); border-color: rgba(255, 122, 24, .45); box-shadow: 0 26px 60px rgba(0,0,0,.55); }

.price--hot {
  border-color: rgba(255, 46, 99, .5);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 46, 99, .16), transparent 65%),
    linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  transform: scale(1.04);
  z-index: 2;
}
.price--hot:hover { transform: scale(1.04) translateY(-10px); }

.price__badge {
  align-self: center;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price__badge--hot {
  background: var(--grad);
  border: 0;
  color: #fff;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.price h3 { font-family: var(--font-display); font-size: 1.25rem; }
.price__value { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price__unit { color: var(--muted); font-weight: 500; }
.price ul { list-style: none; color: var(--muted); font-size: .95rem; display: grid; gap: 6px; flex: 1; }
.price .btn { align-self: center; }

/* ============ EVENTS ============ */
.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.event {
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.event:hover { transform: translateY(-8px) rotate(-.5deg); box-shadow: 0 24px 55px rgba(0,0,0,.5); }
.event--happy { background: linear-gradient(150deg, rgba(255, 122, 24, .16), var(--panel) 55%); }
.event--dj { background: linear-gradient(150deg, rgba(255, 46, 99, .16), var(--panel) 55%); }
.event--party { background: linear-gradient(150deg, rgba(33, 230, 193, .13), var(--panel) 55%); }

.event__tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  margin-bottom: 16px;
}
.event h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.event__icon { width: 32px; height: 32px; flex-shrink: 0; }
.event--happy .event__icon { color: var(--orange); }
.event--dj .event__icon { color: var(--pink); }
.event--party .event__icon { color: var(--cyan); }
.event p { color: var(--muted); }
.event a { font-weight: 700; display: inline-block; padding: 8px 0; }

/* ============ BOOKING ============ */
.booking {
  background: linear-gradient(165deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 48px);
  max-width: 860px !important;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.booking__progress { margin-bottom: 34px; }
.booking__bar {
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  margin-bottom: 14px;
}
.booking__bar-fill {
  height: 100%;
  width: 25%;
  background: var(--grad);
  border-radius: 6px;
  transition: width .5s cubic-bezier(.2, .8, .3, 1);
  box-shadow: 0 0 14px rgba(255, 90, 40, .7);
}
.booking__steps { display: flex; justify-content: space-between; }
.booking__step {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: color .3s;
}
.booking__step.is-active { color: var(--orange); }
.booking__step.is-done { color: var(--text); }

.booking__pane { display: none; animation: paneIn .45s cubic-bezier(.2, .8, .3, 1) both; }
.booking__pane.is-active { display: block; }
@keyframes paneIn {
  from { opacity: 0; transform: translateX(36px); }
  to { opacity: 1; transform: none; }
}

.booking__q {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 26px;
  text-align: center;
}

.booking__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.option {
  background: rgba(255, 255, 255, .04);
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 28px 18px;
  cursor: pointer;
  color: var(--text);
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  transition: transform .25s, border-color .25s, background .25s, box-shadow .3s;
}
.option:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  background: rgba(255, 122, 24, .08);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.option.is-selected { border-color: var(--orange); background: rgba(255, 122, 24, .13); }
.option__icon { width: 44px; height: 44px; color: var(--orange); }
.option__icon svg { width: 100%; height: 100%; }
.option.is-selected .option__icon, .option:hover .option__icon { color: var(--orange-2); }
.option__label { font-weight: 700; font-size: 1.05rem; }
.option__desc { color: var(--muted); font-size: .85rem; }

.booking__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.field { display: grid; gap: 8px; align-content: start; }
.field--wide { grid-column: 1 / -1; }
.field__label { font-weight: 600; font-size: .9rem; }
.field__hint { font-size: .8rem; color: var(--muted); min-height: 1em; }
.field__hint.is-error { color: #f87171; font-weight: 600; }

.field__input {
  background: rgba(0, 0, 0, .35);
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  color: var(--text);
  padding: 13px 15px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .25s, box-shadow .25s;
  color-scheme: dark;
  width: 100%;
}
.field__input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, .18);
}
.field__input:disabled { opacity: .5; }
textarea.field__input { resize: vertical; }

.field--check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, .04);
  border-radius: 12px;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, .1);
  transition: border-color .25s;
}
.field--check:has(input:checked) { border-color: var(--orange); background: rgba(255, 122, 24, .08); }
.field--check input {
  width: 20px; height: 20px;
  accent-color: var(--orange);
  cursor: pointer;
}
.field--check small { color: var(--muted); display: block; }

.stepper {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, .35);
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 7px;
  width: fit-content;
}
.stepper__btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, .09);
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.stepper__btn:hover { background: var(--orange); color: #000; }
.stepper__btn:active { transform: scale(.9); }
.stepper__val {
  min-width: 44px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.booking__note {
  margin-top: 20px;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}

.booking__nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.summary {
  margin-top: 28px;
  background: rgba(0, 0, 0, .3);
  border: 1px dashed rgba(255, 122, 24, .45);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid;
  gap: 8px;
}
.summary__row { display: flex; justify-content: space-between; gap: 18px; font-size: .95rem; }
.summary__row span:first-child { color: var(--muted); }
.summary__row--total {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 12px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 1.1rem;
}
.summary__row--total .summary__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.summary__hint { font-size: .78rem; color: var(--muted); margin-top: 4px; }

.booking__send {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
.booking__disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  margin-top: 16px;
}

/* ============ KONTAKT ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}
.contact__info { display: grid; gap: 26px; align-content: start; }
.contact__block {
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.contact__block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__block h3 .icon { color: var(--orange); width: 20px; height: 20px; }
.contact__block a .icon { width: 1em; height: 1em; margin-right: 4px; }
.contact__block p, .contact__block td { color: var(--muted); }
.contact__block a { text-decoration: none; }
.contact__block a:hover { text-decoration: underline; }
.contact__block p a { display: inline-block; padding: 9px 0; }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 6px 0; font-size: .95rem; }
.hours td:last-child { text-align: right; }
.hours tr.is-today td {
  color: var(--orange);
  font-weight: 700;
}
.hours tr.is-today td:first-child::after {
  content: ' · heute';
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact__social { display: flex; gap: 12px; margin-top: 14px; }
.contact__social a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--text);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: border-color .25s, color .25s, transform .2s;
}
.contact__social a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); text-decoration: none; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  min-height: 380px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 122, 24, .08), transparent 70%),
    var(--panel);
  display: grid;
  place-items: center;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.contact__map-load {
  background: none;
  border: 2px dashed rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  color: var(--text);
  padding: 40px 36px;
  cursor: pointer;
  display: grid;
  gap: 8px;
  justify-items: center;
  transition: border-color .25s, background .25s;
  margin: 20px;
}
.contact__map-load:hover { border-color: var(--orange); background: rgba(255, 122, 24, .06); }
.contact__map-icon { width: 44px; height: 44px; color: var(--orange); }
.contact__map-load strong { font-size: 1.1rem; }
.contact__map-load small { color: var(--muted); max-width: 260px; }

/* ============ FAQ ============ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq__item {
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq__item[open] { border-color: rgba(255, 122, 24, .45); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  transition: color .2s;
}
.faq__item summary:hover { color: var(--orange); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__x { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__x::before, .faq__x::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--orange);
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq__x::before { width: 18px; height: 2.5px; }
.faq__x::after { width: 2.5px; height: 18px; }
.faq__item[open] .faq__x::after { transform: rotate(90deg); }
.faq__item[open] .faq__x::before { transform: rotate(180deg); }
.faq__item p {
  padding: 0 22px 20px;
  color: var(--muted);
  animation: faqIn .35s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ============ CTA-BAND ============ */
.ctaband {
  background: var(--grad);
  padding: clamp(64px, 9vw, 100px) 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ctaband__pin {
  position: absolute;
  height: 160px;
  opacity: .22;
  pointer-events: none;
}
.ctaband__pin--l { left: 5%; bottom: -26px; transform: rotate(-14deg); }
.ctaband__pin--r { right: 5%; top: -26px; transform: rotate(158deg); }
.ctaband__inner { position: relative; max-width: 640px; margin: 0 auto; }
.ctaband__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.5rem, 4.5vw, 2.6rem);
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}
.ctaband p {
  color: rgba(255, 255, 255, .92);
  margin: 14px auto 30px;
  max-width: 460px;
}
.btn--light {
  background: #fff;
  color: #e0244f;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .3);
}
.btn--light:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 44px rgba(0, 0, 0, .4); }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #07070b;
  padding: 50px clamp(18px, 5vw, 60px) calc(90px + env(safe-area-inset-bottom, 0px));
}
.footer__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  text-align: center;
  justify-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  flex-wrap: wrap;
  justify-content: center;
}
.footer__brand p { font-family: var(--font-body); color: var(--muted); width: 100%; margin-top: 6px; }
.footer__links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--muted); text-decoration: none; transition: color .25s; padding: 10px 6px; display: inline-block; }
.footer__links a:hover { color: var(--orange); }
.footer__copy { color: #5a5866; font-size: .85rem; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px)); left: 50%;
  transform: translateX(-50%) translateY(90px);
  z-index: 90;
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(255, 70, 40, .55);
  transition: transform .4s cubic-bezier(.2, .8, .3, 1.2);
  white-space: nowrap;
}
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }
@media (min-width: 861px) { .sticky-cta { display: none; } }

/* ============ LEGAL PAGES ============ */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 22px 80px;
}
.legal h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.2rem; margin: 30px 0 10px; color: var(--orange); }
.legal p, .legal li { color: var(--muted); margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal .btn { margin-top: 30px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 12, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    font-size: 1.3rem;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.2, .8, .3, 1);
    z-index: 100;
  }
  .nav__links.is-open { transform: none; }
  .nav__burger { display: flex; }

  .contact { grid-template-columns: 1fr; }
  .booking__nav { flex-direction: column-reverse; }
  .booking__nav .btn { width: 100%; }
  .booking__send { flex-direction: column; }
  .booking__send .btn { width: 100%; }
  .lane__pins { gap: 6px; }
  .pin { width: 15px; height: 46px; }
  .pin--2 { height: 49px; }
  .pin--4 { height: 48px; }
  .pin--6 { height: 47px; }
  .ball { width: 42px; height: 42px; }
  .hero__facts { gap: 10px; }
  .fact { padding: 10px 14px; }
}

/* Notch / Dynamic Island: seitliche Schutzzonen */
@supports (padding: env(safe-area-inset-left)) {
  .nav {
    padding-left: calc(clamp(16px, 4vw, 48px) + env(safe-area-inset-left));
    padding-right: calc(clamp(16px, 4vw, 48px) + env(safe-area-inset-right));
  }
}

/* Kurze Displays (iPhone SE & Co.): Hero entzerren */
@media (max-height: 740px) and (max-width: 860px) {
  .hero { padding-top: 108px; padding-bottom: 118px; }
  .hero__title { font-size: clamp(1.9rem, 9.5vw, 3rem); }
  .hero__sub { margin: 14px auto 22px; }
  .hero__facts { margin-top: 22px; gap: 8px; }
  .fact { padding: 9px 13px; }
  .hero__scroll { display: none; }
  .lane { height: 104px; }
  .lane__floor { height: 72px; }
}

/* Handy: entschlacken, damit alles übersichtlich bleibt */
@media (max-width: 640px) {
  /* Hero: nur das Wesentliche */
  .hero { padding-bottom: 126px; }
  .hero__sub { font-size: .95rem; margin: 14px auto 22px; }
  .hero__actions .btn--ghost { display: none; }
  .hero__facts .fact:nth-child(3),
  .hero__facts .fact:nth-child(4) { display: none; }
  .hero__facts { margin-top: 22px; }

  /* Sektionen kompakter */
  .section { padding-top: 56px; padding-bottom: 56px; }
  .section__head { margin-bottom: 28px; }
  .section__lead { font-size: .95rem; }

  /* Erlebnis: kompaktes 2er-Raster, Icon + Titel reichen */
  .cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card { padding: 22px 12px; text-align: center; }
  .card__icon { width: 38px; height: 38px; margin-bottom: 10px; }
  .card h3 { font-size: .92rem; margin-bottom: 0; }
  .card p { display: none; }

  /* Preise: enger, ohne Einzel-Buttons (Reservieren-Button schwebt eh mit) */
  .prices { gap: 14px; }
  .price { padding: 26px 20px; gap: 12px; }
  .price .btn { display: none; }
  .price ul { gap: 4px; font-size: .9rem; }

  /* Events & FAQ enger */
  .events { gap: 14px; }
  .event { padding: 26px 22px; }
  .faq { gap: 10px; }
  .faq__item summary { padding: 15px 18px; font-size: .95rem; }
}

/* Kleine Smartphones */
@media (max-width: 480px) {
  .section { padding-left: 16px; padding-right: 16px; }
  .price__num { font-size: 2.6rem; }
  .price--hot { transform: none; }
  .price--hot:hover { transform: translateY(-10px); }
  .card, .price, .event { padding: 26px 20px; }
  .booking__step { font-size: .72rem; letter-spacing: .5px; }
  .stepper__btn { width: 46px; height: 46px; }
  .ticker { padding: 10px 0; }
  .ticker__track span { font-size: .8rem; }
  .contact__map { min-height: 300px; }
  .contact__map iframe { min-height: 300px; }
  .summary { padding: 18px 16px; }
  .summary__row { font-size: .9rem; }
  .hero__glow--1 { width: 300px; height: 300px; filter: blur(70px); }
  .hero__glow--2 { width: 260px; height: 260px; filter: blur(70px); }
}

/* Reduced motion: alles ruhig */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
