/* =========================================================
   Seelengarten Halloween Event 2026
   ========================================================= */

@font-face { font-family: "Cinzel"; src: url("../fonts/cinzel.woff2") format("woff2"); font-weight: 400 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant.woff2") format("woff2"); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-italic.woff2") format("woff2"); font-weight: 300 700; font-style: italic; font-display: swap; }
@font-face { font-family: "IM Fell English"; src: url("../fonts/fell-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }

:root {
  --bg: #07060a;
  --bg-2: #0d0a10;
  --bg-3: #140e14;
  --ink: #d9ccb4;
  --ink-dim: #a3947d;
  --parchment: #eadcbc;
  --gold: #d6ad69;
  --gold-hi: #f4e1b2;
  --gold-lo: #8a6230;
  --blood: #9e1d1d;
  --blood-hi: #d12f25;
  --ember: #e8903c;
  --line: rgba(214, 173, 105, .28);

  --f-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --f-body: "Cormorant Garamond", Garamond, Georgia, serif;
  --f-hand: "IM Fell English", "Cormorant Garamond", Georgia, serif;

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.22, .8, .24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: clamp(1.13rem, 1.02rem + .4vw, 1.3rem);
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-hi); }
::selection { background: var(--blood); color: #fff; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { position: relative; padding: clamp(80px, 12vw, 160px) 0; }

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

/* ---------- Hintergrund: Sternenhimmel + Körnung ---------- */
.sky { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; pointer-events: none; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, #1b1220 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, #1a0808 0%, transparent 70%),
    var(--bg);
}
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}

/* ---------- Typografie ---------- */
.eyebrow {
  font-family: var(--f-display); font-weight: 500; font-size: .78rem;
  letter-spacing: .32em; text-transform: uppercase; color: var(--blood-hi);
  margin: 0 0 1rem;
}
.h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4rem); line-height: 1.08; margin: 0;
  background: linear-gradient(180deg, var(--gold-hi) 10%, var(--gold) 55%, var(--gold-lo) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 18px rgba(209, 47, 37, .25));
}
.ornament { display: block; width: min(280px, 70%); height: 22px; color: var(--gold); opacity: .8; margin: 1.4rem 0 1.8rem; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(48px, 7vw, 90px); }
.section__head .ornament { margin-left: auto; margin-right: auto; }
.section__intro { color: var(--ink-dim); font-style: italic; font-size: 1.15em; margin: 0; }
.lead { font-size: 1.25em; line-height: 1.5; color: var(--parchment); }
.lead em { color: var(--blood-hi); font-style: italic; }
.dropcap::first-letter {
  font-family: var(--f-display); font-weight: 900; float: left;
  font-size: 4.1em; line-height: .82; padding: .08em .12em 0 0; color: var(--blood-hi);
  text-shadow: 0 0 22px rgba(209, 47, 37, .45);
}

/* ---------- Buttons ---------- */
.btn {
  --b: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1em 1.8em; min-height: 52px;
  font-family: var(--f-display); font-weight: 700; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; color: var(--gold-hi); cursor: pointer;
  border: 1px solid var(--b); background: transparent; border-radius: 2px;
  position: relative; isolation: isolate; overflow: hidden;
  transition: color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.btn svg { width: 1.5em; height: 1.5em; flex: none; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(244, 225, 178, .18), transparent);
  transform: translateX(-100%); transition: transform .8s var(--ease);
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }
.btn--blood {
  --b: #c7382c;
  background: linear-gradient(180deg, #b02820, #6e1212);
  color: #fff3dc;
  box-shadow: 0 0 0 1px rgba(0,0,0,.6) inset, 0 10px 30px -10px rgba(209, 47, 37, .7);
}
.btn--blood:hover { box-shadow: 0 0 0 1px rgba(0,0,0,.6) inset, 0 14px 40px -8px rgba(209, 47, 37, .95); }
.btn--ghost { background: rgba(10, 7, 12, .5); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: var(--gold-hi); }

/* ---------- Intro-Tor ---------- */
.intro { display: none; }
.has-intro .intro {
  display: block; position: fixed; inset: 0; z-index: 200; pointer-events: auto;
}
.intro__half {
  position: absolute; top: 0; bottom: 0; width: 50.5%;
  background: radial-gradient(ellipse at center, #140c12 0%, #050406 80%);
  transition: transform 1.9s cubic-bezier(.7, 0, .2, 1), opacity 1.9s ease;
}
.intro__half--l { left: 0; transform-origin: left center; }
.intro__half--r { right: 0; transform-origin: right center; }
.intro__gate { width: 100%; height: 100%; display: block; }
.intro__text {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 1rem;
  font-family: var(--f-hand); font-style: italic; font-size: clamp(1.4rem, 1rem + 2vw, 2.4rem); color: var(--parchment);
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 10px rgba(0,0,0,1);
  transition: opacity .8s ease;
}
.intro__text p {
  position: absolute; left: 0; right: 0; top: calc(50% + 11vh); text-align: center;
  margin: 0; padding: 0 16px; animation: introPulse 2.4s ease-in-out infinite;
}
.intro__coffin { width: 34px; height: 52px; color: var(--gold); filter: drop-shadow(0 0 12px rgba(214,173,105,.6)); }
@keyframes introPulse { 50% { opacity: .55; } }
.intro__skip {
  position: absolute; right: 20px; bottom: 20px;
  font-family: var(--f-display); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  background: none; border: 1px solid var(--line); color: var(--ink-dim); padding: .8em 1.2em; cursor: pointer;
}
.intro.is-open .intro__half--l { transform: perspective(1400px) rotateY(75deg); opacity: 0; }
.intro.is-open .intro__half--r { transform: perspective(1400px) rotateY(-75deg); opacity: 0; }
.intro.is-open .intro__text, .intro.is-open .intro__skip { opacity: 0; }
.intro.is-open { pointer-events: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 16px var(--gutter);
  transition: background .5s ease, padding .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 6, 10, .82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding-top: 10px; padding-bottom: 10px; border-bottom-color: rgba(214, 173, 105, .14);
}
.nav__brand {
  display: flex; align-items: center; gap: .6rem; text-decoration: none;
  font-family: var(--f-display); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 1rem;
  color: var(--gold-hi);
}
.nav__raven { width: 38px; height: 30px; fill: #1a1418; stroke: var(--gold); stroke-width: 3; }
.nav__links { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__links a {
  font-family: var(--f-display); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; position: relative; padding: .5em 0;
  transition: color .3s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 1px; background: var(--blood-hi);
  transition: left .4s var(--ease), right .4s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold-hi); }
.nav__links a:hover::after, .nav__links a.is-active::after { left: 0; right: 0; }
.nav__toggle { display: none; }

@media (max-width: 860px) {
  .nav__toggle {
    display: grid; gap: 6px; width: 46px; height: 46px; place-content: center;
    background: rgba(7,6,10,.6); border: 1px solid var(--line); cursor: pointer; position: relative; z-index: 2;
  }
  .nav__toggle span:not(.visually-hidden) { display: block; width: 22px; height: 1.5px; background: var(--gold-hi); transition: transform .4s var(--ease), opacity .3s; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
    background: rgba(5, 4, 7, .97);
    opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s;
  }
  .nav__links a { font-size: 1.05rem; }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  padding: 120px var(--gutter) 110px; overflow: hidden; isolation: isolate;
}
.hero__forest { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero { --moon: clamp(170px, 22vw, 360px); }
.hero__moon {
  position: absolute; z-index: -3; top: 6%; right: 5%;
  width: var(--moon); aspect-ratio: 1;
  animation: moonRise 3s var(--ease) both .3s;
}
.hero__moon::before {
  content: ""; position: absolute; inset: -60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 222, 190, .22) 0%, rgba(209, 47, 37, .06) 40%, transparent 68%);
}
.hero__moon img { position: relative; width: 100%; height: 100%; }
@keyframes moonRise { from { transform: translateY(60px); opacity: 0; } }
.hero__raven {
  position: absolute; z-index: -2; width: calc(var(--moon) * .34); height: calc(var(--moon) * .272);
  right: calc(5% + var(--moon) * .18); top: calc(6% + var(--moon) * .62);
  fill: #050407;
  animation: ravenBob 6s ease-in-out infinite;
}
@keyframes ravenBob { 50% { transform: translateY(-3px) rotate(-2deg); } }

.bats { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.bat { position: absolute; width: 46px; height: 20px; fill: #060508; opacity: 0; }
.bat--1 { top: 22%; animation: batFly 17s linear infinite 2s; }
.bat--2 { top: 30%; width: 30px; height: 13px; animation: batFly 23s linear infinite 7s; }
.bat--3 { top: 16%; width: 36px; height: 16px; animation: batFly 20s linear infinite 12s reverse; }
.bat--4 { top: 38%; width: 24px; height: 11px; animation: batFly 27s linear infinite 4s reverse; }
.bat use { animation: flap .22s ease-in-out infinite alternate; transform-origin: 50% 50%; transform-box: fill-box; }
@keyframes flap { to { transform: scaleY(.35); } }
@keyframes batFly {
  0% { left: -8%; transform: translateY(0); opacity: 0; }
  5% { opacity: .9; }
  25% { transform: translateY(-40px); }
  50% { transform: translateY(20px); }
  75% { transform: translateY(-30px); }
  95% { opacity: .9; }
  100% { left: 108%; transform: translateY(0); opacity: 0; }
}

.fog { position: absolute; inset: auto 0 0 0; height: 55%; z-index: 0; pointer-events: none; overflow: hidden; }
.fog__layer {
  position: absolute; bottom: -10%; left: 0; width: 300%; height: 100%;
  background-image:
    radial-gradient(ellipse 34% 38% at 18% 70%, rgba(190, 180, 190, .17), transparent 70%),
    radial-gradient(ellipse 44% 30% at 55% 82%, rgba(190, 180, 190, .13), transparent 70%),
    radial-gradient(ellipse 30% 36% at 86% 72%, rgba(190, 180, 190, .15), transparent 70%);
  background-size: 33.3333% 100%;
  background-repeat: repeat-x;
  filter: blur(8px);
  animation: fogDrift 60s linear infinite;
}
.fog__layer--2 { bottom: -22%; height: 120%; opacity: .7; animation-duration: 90s; animation-direction: reverse; }
@keyframes fogDrift { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
.fog::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, var(--bg) 5%, transparent);
}

.hero__lantern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle 26rem at var(--mx, 50%) var(--my, 45%), rgba(232, 144, 60, .10), transparent 70%);
  transition: background .1s;
}

.hero__content { position: relative; z-index: 2; max-width: 980px; }
.hero__content > * { animation: rise 1.4s var(--ease) both; }
.hero__content > :nth-child(2) { animation-delay: .15s; }
.hero__content > :nth-child(3) { animation-delay: .35s; }
.hero__content > :nth-child(4) { animation-delay: .5s; }
.hero__content > :nth-child(5) { animation-delay: .65s; }
.hero__content > :nth-child(6) { animation-delay: .8s; }
.hero__content > :nth-child(7), .hero__content > :nth-child(8) { animation-delay: .95s; }
.has-intro .hero__content > * { animation-delay: 1.6s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); filter: blur(6px); } }

.hero__title { margin: 0; line-height: .95; }
.hero__title-main {
  display: block; font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.5rem, .4rem + 8.4vw, 7.4rem); letter-spacing: .02em;
  background: linear-gradient(180deg, #fff4d6 0%, #eed29a 38%, #c4924a 62%, #7a5226 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,.6)) drop-shadow(0 0 40px rgba(209, 47, 37, .35));
  animation: flicker 7s infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; } 41% { opacity: 1; } 42% { opacity: .78; } 43% { opacity: 1; } 44.5% { opacity: .86; } 45.5% { opacity: 1; }
}
.hero__title-sub {
  display: block; margin-top: .5rem;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(1rem, .6rem + 2vw, 2.1rem);
  letter-spacing: .38em; text-transform: uppercase; color: var(--blood-hi);
  text-shadow: 0 0 24px rgba(209, 47, 37, .55);
  padding-left: .38em;
}
.hero__coffin { width: 26px; height: 40px; color: var(--gold); margin: 1.4rem auto .6rem; display: block; }
.hero__tagline {
  font-family: var(--f-hand); font-style: italic; font-size: clamp(1.5rem, 1rem + 2.2vw, 2.6rem);
  color: var(--parchment); margin: 0 0 1.4rem; text-shadow: 0 0 20px rgba(0,0,0,.9);
}
.hero__date {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .4rem 1rem;
  font-family: var(--f-display); font-weight: 500; font-size: clamp(.72rem, .6rem + .4vw, .92rem);
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold-hi); margin: 0 0 2rem;
}
.hero__date .dot { color: var(--blood-hi); font-size: .8em; }

.countdown { display: flex; justify-content: center; gap: clamp(.5rem, 2vw, 1.25rem); margin: 0 0 2.4rem; }
.countdown__cell {
  min-width: clamp(64px, 16vw, 104px); padding: .9rem .4rem .7rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 14, 20, .75), rgba(7, 6, 10, .75));
  box-shadow: inset 0 0 20px rgba(0,0,0,.6);
  position: relative;
}
.countdown__cell::before, .countdown__cell::after {
  content: ""; position: absolute; width: 8px; height: 8px; border: 1px solid var(--gold);
}
.countdown__cell::before { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.countdown__cell::after { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }
.countdown__num {
  display: block; font-family: var(--f-display); font-weight: 700; line-height: 1;
  font-size: clamp(1.6rem, 1rem + 2.6vw, 2.8rem); color: var(--gold-hi); font-variant-numeric: tabular-nums;
}
.countdown__label { display: block; margin-top: .45rem; font-family: var(--f-display); font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-dim); }
.countdown__msg { font-family: var(--f-hand); font-style: italic; font-size: 1.6rem; color: var(--gold-hi); margin: 0 0 2rem; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px;
  background: var(--gold); animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

@media (max-width: 700px) {
  .hero__moon { top: 8%; right: -10%; opacity: .6; }
  .hero__raven { display: none; }
  .hero__cta .btn, .visit__actions .btn { width: 100%; }
}

/* ---------- Geschichte ---------- */
.story__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.story__text p { margin: 0 0 1.2em; }
.story__highlight {
  font-family: var(--f-hand); font-style: italic; font-size: 1.3em; line-height: 1.45; color: var(--parchment);
  border-left: 2px solid var(--blood); padding: .2em 0 .2em 1.2em;
}
.story__highlight strong { color: var(--gold-hi); font-weight: 400; }
.story__figure { margin: 0; position: relative; }
.arch {
  position: relative; border-radius: 999px 999px 6px 6px; overflow: hidden;
  aspect-ratio: 540 / 690;
  box-shadow: 0 0 0 1px var(--gold-lo), 0 0 0 8px #0b080c, 0 0 0 9px rgba(214, 173, 105, .5), 0 40px 90px -20px rgba(0,0,0,.9), 0 0 120px -30px rgba(232, 144, 60, .45);
}
.arch img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 6s var(--ease); }
.story__figure.is-visible .arch img { transform: scale(1); }
.arch__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, transparent 40%, rgba(7,6,10,.65) 100%);
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow { 50% { opacity: .75; } }
.banner {
  position: absolute; left: -8%; bottom: 8%; max-width: 240px;
  padding: 1.2rem 1.4rem 1.4rem;
  font-family: var(--f-hand); font-style: italic; font-size: 1.2rem; line-height: 1.35; color: #2a1a12;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(90, 50, 20, .35), transparent 60%),
    #d9c49a;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.8), inset 0 0 30px rgba(90, 50, 20, .45);
  transform: rotate(-4deg);
  clip-path: polygon(0 2%, 8% 0, 22% 3%, 40% 0, 60% 2%, 78% 0, 94% 3%, 100% 1%, 99% 30%, 100% 60%, 98% 100%, 80% 97%, 60% 100%, 42% 97%, 22% 100%, 6% 97%, 0 100%, 2% 60%, 0 30%);
}

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__figure { max-width: 460px; margin: 0 auto; width: 100%; }
  .banner { left: -4px; }
}

/* ---------- Stationen / Pfad ---------- */
.stations { background: linear-gradient(180deg, transparent, rgba(26, 8, 10, .35) 50%, transparent); }
.path { --lane: 180px; position: relative; display: grid; gap: clamp(40px, 7vw, 90px); padding: 20px 0; }
.path__line { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.path__line path { fill: none; }
.path__trail { stroke: rgba(214, 173, 105, .28); stroke-width: 2; stroke-dasharray: 2 10; stroke-linecap: round; }
.path__glow { stroke: var(--ember); stroke-width: 2.5; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(232, 144, 60, .9)); }

.station {
  position: relative; width: calc(50% - var(--lane) / 2); display: flex; align-items: flex-start; gap: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: linear-gradient(145deg, rgba(40, 26, 20, .92), rgba(16, 11, 12, .95));
  border: 1px solid rgba(214, 173, 105, .22);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9), inset 0 1px 0 rgba(244, 225, 178, .06);
  border-radius: 3px;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.station::before {
  content: ""; position: absolute; top: 50%; width: 16px; height: 16px; right: calc(var(--lane) / -2 - 8px); margin-top: -8px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--ember);
  box-shadow: 0 0 0 5px rgba(232, 144, 60, .15), 0 0 20px rgba(232, 144, 60, .7);
}
.station--right { justify-self: end; }
.station--right::before { right: auto; left: calc(var(--lane) / -2 - 8px); }
.station:hover { transform: translateY(-4px); border-color: rgba(214, 173, 105, .5); box-shadow: 0 40px 70px -30px rgba(0,0,0,.95), 0 0 40px -10px rgba(232, 144, 60, .3); }
.station__sign { flex: none; position: relative; width: 72px; height: 72px; display: grid; place-items: center; }
.station__sign::before {
  content: ""; position: absolute; inset: 11px; border: 1px solid var(--gold); transform: rotate(45deg);
  background: radial-gradient(circle, rgba(232, 144, 60, .18), transparent 70%);
}
.station__icon { position: relative; width: 38px; height: 38px; color: var(--gold-hi); }
.station__icon .flame { animation: flame 1.6s ease-in-out infinite; transform-origin: 24px 31px; }
@keyframes flame { 50% { transform: scale(.85, 1.1); opacity: .8; } }
.station__no {
  position: absolute; bottom: -1.7rem; left: 50%; transform: translateX(-50%);
  font-family: var(--f-display); font-size: .72rem; letter-spacing: .2em; color: var(--blood-hi);
}
.station h3 {
  margin: 0 0 .5rem; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.25rem, 1rem + .9vw, 1.6rem);
  color: var(--gold-hi); line-height: 1.2; letter-spacing: .04em;
}
.station h3 small { display: block; font-size: .62em; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim); margin-top: .3rem; }
.station p { margin: 0; color: var(--ink); }
.station--reward { background: linear-gradient(145deg, rgba(80, 18, 16, .92), rgba(22, 8, 10, .96)); border-color: rgba(209, 47, 37, .5); }
.station--reward h3 small { color: var(--gold); font-size: .78em; }

@media (max-width: 1080px) {
  .path { --lane: 120px; }
  .station { flex-direction: column; gap: 2rem; }
}
@media (max-width: 860px) {
  .station, .station--right { width: auto; margin-left: 56px; justify-self: stretch; }
  .station::before, .station--right::before { left: -41px; right: auto; }
}
@media (min-width: 481px) and (max-width: 860px) {
  .station { flex-direction: row; gap: 1.4rem; }
}

/* ---------- Zeiten ---------- */
.times__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(20px, 3vw, 44px); align-items: stretch; max-width: 1000px; margin: 0 auto; }
.ticket {
  position: relative; text-align: center; padding: clamp(2rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.4rem);
  background: linear-gradient(180deg, rgba(24, 17, 18, .95), rgba(10, 7, 10, .95));
  border: 1px solid rgba(214, 173, 105, .5);
  outline: 1px solid rgba(214, 173, 105, .2); outline-offset: -10px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,1);
  display: flex; flex-direction: column; align-items: center;
}
.ticket__corner { position: absolute; width: 22px; height: 22px; border: 2px solid var(--gold); }
.ticket__corner--tl { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.ticket__corner--tr { top: -6px; right: -6px; border-left: 0; border-bottom: 0; }
.ticket__corner--bl { bottom: -6px; left: -6px; border-right: 0; border-top: 0; }
.ticket__corner--br { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }
.ticket__for { margin: 0 0 1rem; font-family: var(--f-display); font-size: .82rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blood-hi); }
.ticket__show { margin: 0; font-family: var(--f-display); font-weight: 900; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); line-height: 1; color: var(--parchment); letter-spacing: .08em; }
.ticket__time {
  margin: .3rem 0 0; font-family: var(--f-display); font-weight: 700; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem); line-height: 1.1;
  color: var(--gold-hi); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.ticket__time span { color: var(--gold-lo); }
.ticket__icon { width: 54px; height: 54px; color: var(--parchment); margin: 1.3rem 0 1rem; }
.ticket__icon--pumpkin { color: var(--ember); filter: drop-shadow(0 0 12px rgba(232, 144, 60, .6)); }
.ticket__note { margin: 0 0 1.6rem; font-family: var(--f-display); font-size: .88rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.ticket__cal {
  margin-top: auto; display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-display); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); text-decoration: none;
  padding: .7rem 0; min-height: 44px; border-bottom: 1px solid transparent; transition: border-color .3s, color .3s;
}
.ticket__cal svg { width: 20px; height: 20px; }
.ticket__cal:hover { color: var(--gold-hi); border-bottom-color: var(--gold); }
.ticket--night { background: linear-gradient(180deg, rgba(40, 10, 12, .95), rgba(12, 5, 7, .96)); border-color: rgba(209, 47, 37, .6); }
.ticket--night .ticket__icon { filter: drop-shadow(0 0 14px rgba(209, 47, 37, .7)); }

.phases { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.phase { width: 22px; height: 22px; border-radius: 50%; background: var(--parchment); box-shadow: 0 0 12px rgba(234, 220, 188, .5); position: relative; overflow: hidden; }
.phase::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--bg); }
.phase--wax::after { transform: translateX(35%); }
.phase--half::after { transform: translateX(55%); }
.phase--full::after { display: none; }
.phase--flip::after { transform: translateX(-35%); }
.phase--half.phase--flip::after { transform: translateX(-55%); }

.free { text-align: center; margin: clamp(48px, 6vw, 70px) 0 0; }
.free span {
  display: inline-block; font-family: var(--f-display); font-weight: 900; font-size: clamp(1.2rem, .9rem + 1.3vw, 1.9rem);
  letter-spacing: .12em; text-transform: uppercase; color: var(--blood-hi);
  padding: .6rem 1.8rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-shadow: 0 0 24px rgba(209, 47, 37, .6);
}

@media (max-width: 760px) {
  .times__grid { grid-template-columns: 1fr; }
  .phases { flex-direction: row; }
}

/* ---------- Warnung ---------- */
.warning { position: relative; padding: clamp(110px, 16vw, 200px) 0; text-align: center; overflow: hidden; isolation: isolate; }
.warning__bg {
  position: absolute; inset: -15% 0; z-index: -1;
  background: url("../img/kerzen.jpg") center / cover no-repeat;
  filter: saturate(.9) brightness(.5);
  transform: translateY(var(--parallax, 0));
}
.warning::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(7,6,10,.55) 0%, rgba(7,6,10,.92) 75%),
    linear-gradient(180deg, var(--bg), transparent 25%, transparent 75%, var(--bg));
}
.warning__inner { max-width: 900px; }
.warning__label { font-family: var(--f-display); font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--blood-hi); margin: 0 0 1.6rem; font-size: .95rem; }
.warning__quote { margin: 0; }
.warning__quote p {
  margin: 0 0 .6em; font-family: var(--f-hand); font-style: italic;
  font-size: clamp(1.6rem, 1rem + 2.6vw, 3rem); line-height: 1.3; color: var(--parchment);
  text-shadow: 0 2px 20px rgba(0,0,0,.9);
}
.warning__quote em { color: var(--blood-hi); }
.warning .ornament { margin: 2rem auto; }
.warning__ask {
  margin: 0; font-family: var(--f-display); font-weight: 900; font-size: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold-lo)); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Anfahrt ---------- */
.visit { padding-bottom: clamp(140px, 16vw, 220px); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.visit__address { font-style: normal; font-family: var(--f-display); font-size: clamp(1.1rem, .9rem + .8vw, 1.5rem); letter-spacing: .1em; color: var(--parchment); margin-top: 1rem; line-height: 1.5; }
.facts { margin: 0 0 2.2rem; display: grid; gap: 0; }
.facts div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(214, 173, 105, .15); }
.facts dt { display: flex; align-items: center; gap: .7rem; font-family: var(--f-display); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); }
.facts dt svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.facts dd { margin: 0; text-align: right; color: var(--gold-hi); font-weight: 600; }
.visit__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.visit__figure { margin: 0; position: relative; }
.visit__figure img {
  width: 100%; border-radius: 3px;
  box-shadow: 0 0 0 1px var(--gold-lo), 0 0 0 8px #0b080c, 0 0 0 9px rgba(214, 173, 105, .4), 0 40px 80px -30px rgba(0,0,0,1), 0 0 100px -30px rgba(232, 144, 60, .5);
  transform: rotate(1.5deg);
}
.visit__skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: clamp(70px, 10vw, 130px); fill: #030204; }
@media (max-width: 860px) {
  .visit__grid { grid-template-columns: 1fr; }
  .visit__figure { max-width: 480px; }
  .facts div { flex-direction: column; gap: .2rem; }
  .facts dd { text-align: left; padding-left: calc(22px + .7rem); }
}

/* ---------- Plakat ---------- */
.poster { background: #030204; }
.poster__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.poster__text p { margin: 0 0 2rem; }
.poster__side { justify-self: center; width: min(100%, 440px); display: flex; flex-direction: column; align-items: center; }
.poster__frame {
  position: relative; display: block; padding: 0; border: 0; background: none; cursor: zoom-in;
  width: 100%;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: transform .8s var(--ease);
  box-shadow: 0 0 0 1px var(--gold-lo), 30px 50px 80px -20px rgba(0,0,0,1), 0 0 120px -20px rgba(209, 47, 37, .35);
}
.poster__frame:hover { transform: perspective(1200px) rotateY(0) rotateX(0) scale(1.02); }
.poster__frame img { width: 100%; }
.poster__zoom {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  font-family: var(--f-display); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  background: rgba(7,6,10,.8); color: var(--gold-hi); padding: .5em 1em; border: 1px solid var(--line);
  opacity: 0; transition: opacity .4s;
}
.poster__frame:hover .poster__zoom, .poster__frame:focus-visible .poster__zoom { opacity: 1; }
@media (max-width: 860px) {
  .poster__grid { grid-template-columns: 1fr; }
  .poster__frame { transform: none; }
}

/* ---------- Footer ---------- */
.footer { background: #030204; text-align: center; padding: 40px 0 60px; border-top: 1px solid rgba(214, 173, 105, .12); }
.footer__raven { width: 56px; height: 45px; fill: #1a1418; stroke: var(--gold-lo); stroke-width: 2; margin: 0 auto 1rem; display: block; }
.footer__brand { margin: 0; font-family: var(--f-display); font-weight: 900; font-size: 1.5rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.footer__quote { margin: .4rem 0 1.4rem; font-family: var(--f-hand); font-style: italic; color: var(--ink-dim); }
.footer__meta { margin: 0; font-size: .95rem; color: var(--ink-dim); }
.footer__souls { margin: 1.2rem 0 0; font-family: var(--f-display); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(163, 148, 125, .5); }

.footer__legal { margin-top: 1.4rem; display: flex; justify-content: center; gap: 1.6rem; }
.footer__legal a {
  font-family: var(--f-display); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-dim); text-decoration: none; padding: .6em 0; border-bottom: 1px solid transparent; transition: color .3s, border-color .3s;
}
.footer__legal a:hover { color: var(--gold-hi); border-bottom-color: var(--gold); }

/* ---------- Impressum ---------- */
.nav__back {
  font-family: var(--f-display); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding: .8em 0; transition: color .3s;
}
.nav__back:hover { color: var(--gold-hi); }
.legal { padding: clamp(130px, 16vw, 180px) 0 clamp(70px, 10vw, 120px); }
.legal__inner { max-width: 820px; }
.legal section {
  padding: 1.6rem 0; border-top: 1px solid rgba(214, 173, 105, .15);
}
.legal h2 {
  margin: 0 0 .6rem; font-family: var(--f-display); font-weight: 700; font-size: clamp(1rem, .9rem + .4vw, 1.2rem);
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-hi);
}
.legal p { margin: 0; overflow-wrap: anywhere; }
.legal a:not(.btn) { color: var(--gold-hi); text-decoration-color: rgba(214, 173, 105, .5); text-underline-offset: 3px; }
.legal a:not(.btn):hover { color: #fff; }
.legal__back { margin-top: 2.4rem !important; }
@media (max-width: 520px) { .nav__back { font-size: .64rem; letter-spacing: .12em; } .page-legal .nav__brand span { display: none; } }

/* ---------- Verlorene Seelen (Suchspiel) ---------- */
.seele {
  position: absolute; left: var(--x); top: var(--y); z-index: 5;
  width: 44px; height: 44px; margin: -22px 0 0 -22px; cursor: pointer; border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 235, 255, .95) 0 3px, rgba(160, 200, 255, .35) 5px, transparent 60%);
  animation: soulFloat 5s ease-in-out infinite, soulPulse 2.6s ease-in-out infinite;
  opacity: .55;
  transition: opacity .3s;
}
.seele:hover, .seele:focus-visible { opacity: 1; }
.seele.is-found { animation: soulGone 1.2s var(--ease) forwards; pointer-events: none; }
@keyframes soulFloat { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(6px, -10px); } 66% { transform: translate(-5px, -4px); } }
@keyframes soulPulse { 50% { filter: brightness(1.6) blur(.5px); } }
@keyframes soulGone { to { transform: translateY(-120px) scale(2.4); opacity: 0; filter: blur(4px); } }

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 150; transform: translate(-50%, 30px);
  max-width: min(92vw, 460px); padding: 1rem 1.4rem; text-align: center;
  background: rgba(10, 8, 14, .95); border: 1px solid rgba(160, 200, 255, .35);
  box-shadow: 0 0 40px -6px rgba(160, 200, 255, .35);
  font-family: var(--f-hand); font-style: italic; font-size: 1.15rem; color: #e6eeff;
  opacity: 0; pointer-events: none; transition: opacity .5s ease, transform .5s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast strong { font-family: var(--f-display); font-style: normal; font-size: .75rem; letter-spacing: .2em; display: block; color: #a9c6ff; margin-bottom: .2rem; }

/* ---------- Die letzte Tür ---------- */
/* Eigene, volle Zeile unter Text + Plakat – so sitzt die Tür immer exakt mittig */
.poster__door { grid-column: 1 / -1; justify-self: center; text-align: center; margin-top: clamp(10px, 3vw, 40px); }
.door {
  position: relative; isolation: isolate;
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  background: none; border: 0; cursor: pointer; padding: 1.2rem 1.6rem;
  color: var(--gold); -webkit-tap-highlight-color: transparent;
}
/* pulsierender roter Lichthof hinter der Tür */
.door__halo {
  position: absolute; z-index: -1; left: 50%; top: 42%;
  width: clamp(200px, 26vw, 320px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(209, 47, 37, .55) 0%, rgba(209, 47, 37, .18) 38%, transparent 68%);
  animation: doorHalo 2.4s ease-in-out infinite;
  pointer-events: none;
}
.door__icon {
  width: clamp(96px, 11vw, 150px); height: auto; aspect-ratio: 120 / 150;
  animation: doorPulse 2.4s ease-in-out infinite;
  transition: color .4s;
}
.door__light { animation: doorLight 2.4s ease-in-out infinite; }
.door__keyhole { animation: doorLight 2.4s ease-in-out infinite; }
.door__text {
  margin-top: .6rem; font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1rem, .8rem + 1vw, 1.5rem); letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-hi); text-shadow: 0 0 18px rgba(209, 47, 37, .6);
}
.door__sub { font-family: var(--f-hand); font-style: italic; font-size: clamp(1.05rem, .95rem + .5vw, 1.35rem); color: var(--blood-hi); }

@keyframes doorPulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 4px rgba(209, 47, 37, .35)); }
  50%      { transform: scale(1.07); filter: drop-shadow(0 0 22px rgba(255, 70, 40, .95)); }
}
@keyframes doorHalo {
  0%, 100% { opacity: .45; transform: translate(-50%, -50%) scale(.85); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}
@keyframes doorLight { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

.door:hover .door__icon, .door:focus-visible .door__icon { color: var(--blood-hi); animation-duration: .9s; }
.door:hover .door__halo, .door:focus-visible .door__halo { animation-duration: .9s; }
.door:active .door__icon { transform: scale(.96); }

/* ---------- Jump Scare ---------- */
.scare { position: fixed; inset: 0; z-index: 300; background: #000; display: none; overflow: hidden; cursor: pointer; }
.scare.is-active { display: block; }
.scare__shake { position: absolute; inset: 0; }
.scare.is-active .scare__shake { animation: scareShake .08s linear 18; }
.scare__img {
  position: absolute; inset: -6%; width: 112%; height: 112%; max-width: none; object-fit: cover;
  filter: contrast(1.15) brightness(1.05);
}
/* Hochformat (Handy): Gesicht vollständig zeigen – der schwarze Bildrand geht nahtlos in den Hintergrund über */
@media (orientation: portrait) {
  .scare__img { inset: auto; width: 220vw; height: 123.75vw; left: -60vw; top: calc(42% - 61.9vw); object-fit: cover; }
  .scare__text { bottom: 4%; }
}
.scare.is-active .scare__img { animation: scareIn .22s cubic-bezier(.2, 1.5, .4, 1) both, scareCreep 6s ease-out .22s forwards; }
.scare.is-fading .scare__img { filter: contrast(1.2) brightness(.35) blur(1px); transition: filter 1.2s ease; }
.scare__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(90, 0, 0, .55) 75%, rgba(0, 0, 0, .95) 100%);
}
.scare__flash { position: absolute; inset: 0; background: #b3110b; mix-blend-mode: multiply; opacity: 0; pointer-events: none; }
.scare.is-active .scare__flash { animation: scareFlash .6s ease-out; }
.scare__text {
  position: absolute; left: 0; right: 0; bottom: 8%; text-align: center; padding: 0 16px;
  opacity: 0; transform: translateY(12px); transition: opacity 1s ease, transform 1s var(--ease);
}
.scare.is-fading .scare__text { opacity: 1; transform: none; }
.scare__line { margin: 0; font-family: var(--f-hand); font-style: italic; font-size: clamp(1.5rem, 1rem + 2.4vw, 2.8rem); color: #f1e6cf; text-shadow: 0 0 20px #000, 0 0 40px #000; }
.scare__date { margin: .6rem 0 0; font-family: var(--f-display); font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--blood-hi); font-size: clamp(.8rem, .7rem + .5vw, 1.1rem); text-shadow: 0 0 20px #000; }
.scare__close { margin: 1.6rem 0 0; font-family: var(--f-display); font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(241, 230, 207, .5); }

@keyframes scareIn { 0% { transform: scale(.35); opacity: 0; } 60% { opacity: 1; } 100% { transform: scale(1.04); opacity: 1; } }
@keyframes scareCreep { from { transform: scale(1.04); } to { transform: scale(1.16); } }
@keyframes scareShake {
  0%   { transform: translate(0, 0) rotate(0); }
  20%  { transform: translate(-18px, 10px) rotate(-1.2deg); }
  40%  { transform: translate(16px, -12px) rotate(1deg); }
  60%  { transform: translate(-12px, -8px) rotate(-.8deg); }
  80%  { transform: translate(14px, 12px) rotate(1.2deg); }
  100% { transform: translate(0, 0) rotate(0); }
}
@keyframes scareFlash { 0% { opacity: .9; } 100% { opacity: 0; } }

/* ---------- Lightbox ---------- */
.lightbox {
  padding: 0; border: 0; background: transparent; max-width: 96vw; max-height: 96vh; overflow: visible;
}
.lightbox::backdrop { background: rgba(3, 2, 4, .92); backdrop-filter: blur(6px); }
.lightbox img { max-height: 92vh; width: auto; max-width: 94vw; box-shadow: 0 0 0 1px var(--gold-lo), 0 30px 80px rgba(0,0,0,1); }
.lightbox__close {
  position: absolute; top: -8px; right: -8px; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blood); color: #fff; border: 1px solid var(--gold); font-size: 1.6rem; line-height: 1; cursor: pointer;
}

/* ---------- Scroll-Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.js .reveal--delay { transition-delay: .18s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .bats, .grain { display: none; }
  .js .reveal { opacity: 1; transform: none; }
  .seele { opacity: .8; }
}
