/* Glühweintour Hannover
   Palette aus dem Key-Visual: Glut-Orange, tiefes Orange, Kerzengold und
   Schnee im Laternenlicht. Keine Braun-Schwarz- oder Rotflächen. Fließtext auf
   Orange ist dunkles Glutbraun, damit er lesbar bleibt; Weiß nur für große
   Headlines auf Orange. */

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-latin-wght-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Figtree';
  src: url('../fonts/figtree-latin-wght-normal.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --glut:       #f4731b;   /* Orange aus dem Hintergrundbild */
  --glut-deep:  #e85a10;
  --deep:       #c2410c;   /* tiefes Glut-Orange für Streifen, Bänder, Header */
  --deep-dark:  #9a330a;
  --ink:        #4d1a04;   /* Text auf Orange und Hell, ≥ 5:1 */
  --gold:       #ffcf7a;   /* Kerzenlicht, aus dem Logo-Dampf */
  --snow:       #ffe6c9;   /* Schnee im Laternenlicht */
  --snow-hi:    #fff4e6;
  --white:      #ffffff;

  --display: 'Montserrat', system-ui, sans-serif;
  --text:    'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap:     74rem;
  --gutter:   clamp(1rem, 4vw, 2.5rem);
  --header-h: 4.5rem;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font: 400 1.0625rem/1.65 var(--text);
  color: var(--ink);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 3px solid var(--deep); outline-offset: 3px; border-radius: 4px; }
.s--deep :focus-visible, .site-header :focus-visible, .hero :focus-visible,
.site-footer :focus-visible, .pass :focus-visible, .buybar :focus-visible { outline-color: var(--gold); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--white); color: var(--deep); padding: .6rem 1rem;
  border-radius: 999px; font-weight: 700; text-decoration: none;
}
.skip:focus { top: 1rem; }

/* ─────────────────────────────────────────────── Typografie */
h1, h2, h3 { font-family: var(--display); margin: 0; text-wrap: balance; }
h2 {
  font-weight: 900; font-size: clamp(2.2rem, 7vw, 4.6rem);
  line-height: .95; letter-spacing: -.025em; text-transform: uppercase;
  hyphens: manual; -webkit-hyphens: manual; overflow-wrap: break-word;
}
h3 { font-weight: 800; font-size: 1.3rem; line-height: 1.2; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.55; max-width: 40rem; }

/* ─────────────────────────────────────────────── Flächen */
.s { position: relative; padding: clamp(4.5rem, 10vw, 8rem) 0; }
.s + .s, .s + .site-footer { margin-top: -1px; }     /* Subpixel-Spalten */
.s--snow { background: var(--snow); color: var(--ink); }
.s--glut {
  color: var(--ink);
  background:
    radial-gradient(70% 55% at 85% 0%, rgba(255, 190, 110, .55), transparent 70%),
    radial-gradient(60% 50% at 0% 100%, rgba(232, 90, 16, .7), transparent 70%),
    var(--glut);
}
.s--deep {
  color: var(--snow-hi);
  background:
    radial-gradient(60% 70% at 100% 0%, rgba(255, 150, 60, .22), transparent 70%),
    var(--deep);
}
.s--flush { padding-top: 0; }
.s__head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.s__head .lead { margin-top: 1.2rem; }
.s--snow h2 { color: var(--deep); }
.s--glut h2 { color: var(--white); text-shadow: 0 3px 24px rgba(140, 30, 0, .35); }
.s--deep h2 { color: var(--gold); }

/* ─────────────────────────────────────────────── Buttons */
.btn {
  --bg: var(--white); --fg: var(--glut-deep);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 3.2rem; padding: .85rem 1.8rem;
  border: 0; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font: 800 1rem/1.1 var(--display); letter-spacing: .03em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 10px 28px -12px rgba(120, 40, 5, .55);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(120, 40, 5, .6); }
.btn:active { transform: none; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--ghost { --bg: transparent; --fg: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,.9); }
.btn--ghost:hover { --bg: rgba(255,255,255,.14); box-shadow: inset 0 0 0 2px var(--white); }
.btn--gold { --bg: var(--gold); --fg: var(--ink); }
.btn--gold:hover { --bg: #ffdb99; }
.btn--deep { --bg: var(--deep); --fg: var(--snow-hi); }
.btn--deep:hover { --bg: var(--deep-dark); }
.btn--line { --bg: transparent; --fg: var(--deep); box-shadow: inset 0 0 0 2px var(--deep); }
.btn--line:hover { --bg: rgba(194, 65, 12, .08); box-shadow: inset 0 0 0 2px var(--deep); }
.btn--sm { min-height: 2.6rem; padding: .55rem 1.15rem; font-size: .84rem; }
.btn[aria-disabled="true"], .btn[disabled] { cursor: not-allowed; opacity: .55; transform: none; box-shadow: none; }

/* ─────────────────────────────────────────────── Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h); display: flex; align-items: center;
  transition: background-color .3s, box-shadow .3s;
}
.site-header.is-solid, .site-header.menu-open, .page-legal .site-header {
  background: rgba(194, 65, 12, .96);
  box-shadow: 0 8px 30px -14px rgba(120, 40, 5, .7);
}
.site-header .wrap { display: flex; align-items: center; gap: 1rem; }
.brand { display: block; flex: none; line-height: 0; }
.brand img { height: 3.4rem; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: .15rem; }
.nav a:not(.btn) {
  font: 700 .86rem/1 var(--display); letter-spacing: .02em;
  text-decoration: none; padding: .7rem .85rem; border-radius: 999px; color: var(--white);
}
.nav a:not(.btn):hover { background: rgba(255,255,255,.16); }
.nav .btn { margin-left: .6rem; }
.nav-toggle {
  display: none; margin-left: auto; width: 2.9rem; height: 2.9rem; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.18); color: var(--white); cursor: pointer;
}
.nav-toggle svg { width: 1.4rem; height: 1.4rem; margin: auto; }
@media (max-width: 880px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav:not(.nav--static) {
    position: fixed; inset: var(--header-h) 0 auto; margin: 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    padding: .8rem var(--gutter) 1.4rem; background: var(--deep);
    box-shadow: 0 24px 30px -20px rgba(120, 40, 5, .8);
    opacity: 0; visibility: hidden; transform: translateY(-.5rem);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav:not(.nav--static) a:not(.btn) { padding: 1rem; font-size: 1rem; }
  .nav:not(.nav--static) .btn { margin: .6rem 0 0; }
}

/* ─────────────────────────────────────────────── Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: calc(var(--header-h) + 2rem) 0 clamp(8rem, 18vh, 12rem);
  color: var(--white);
  background: linear-gradient(180deg, #e8620f 0%, var(--glut) 70%, var(--snow) 100%);
}
.hero__bg, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero__bg img { object-fit: cover; object-position: center 72%; }
/* Unten in den verschneiten Boden übergehen */
.hero::after {
  content: ''; position: absolute; inset: auto 0 0; height: 20%; z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 230, 201, 0), rgba(255, 230, 201, .7) 55%, var(--snow));
}
.hero__inner { display: flex; flex-direction: column; align-items: center; gap: clamp(1rem, 2.4vh, 1.5rem); }
.hero__logo { width: min(40rem, 88vw); height: auto; filter: drop-shadow(0 8px 24px rgba(120, 30, 0, .3)); }
.hero__date {
  font: 900 clamp(2.3rem, 7.5vw, 4.6rem)/1 var(--display); letter-spacing: -.02em;
  text-shadow: 0 4px 24px rgba(130, 30, 0, .4); margin: 0;
}
.hero__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin: 0;
  font: 700 clamp(.84rem, 1.8vw, .98rem)/1 var(--display); letter-spacing: .04em; text-transform: uppercase;
}
.hero__meta span {
  display: inline-flex; align-items: center; gap: .45rem; padding: .62rem 1rem; border-radius: 999px;
  background: rgba(194, 65, 12, .4); box-shadow: inset 0 0 0 1px rgba(255, 207, 122, .45);
}
.hero__meta svg { width: 1.05em; height: 1.05em; color: var(--gold); }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: .3rem; }

/* Countdown: nur Ziffern, getrennt durch Goldpunkte */
.countdown {
  display: flex; align-items: flex-start; justify-content: center; gap: clamp(1rem, 3vw, 1.8rem);
  margin-top: .4rem; text-shadow: 0 2px 16px rgba(130, 30, 0, .5);
}
.countdown[hidden] { display: none; }
.countdown__unit { position: relative; display: grid; justify-items: center; min-width: 2.6ch; }
.countdown__unit + .countdown__unit::before {
  content: ''; position: absolute; left: calc(clamp(1rem, 3vw, 1.8rem) / -2 - 3px); top: .85em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.countdown__num { font: 900 clamp(1.9rem, 5vw, 2.8rem)/1 var(--display); font-variant-numeric: tabular-nums; }
.countdown__lbl { margin-top: .35rem; font: 700 .78rem/1 var(--display); color: var(--gold); }
.countdown-note { font: 800 1.2rem/1.2 var(--display); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.5rem; translate: -50% 0;
  width: 2.8rem; height: 2.8rem; display: grid; place-items: center; border-radius: 50%;
  color: var(--deep); background: rgba(255, 255, 255, .75);
}
.scroll-hint svg { width: 1.2rem; height: 1.2rem; }

/* ─────────────────────────────────────────────── Vorverkauf */
.vvk__head { display: grid; gap: 2rem 3rem; align-items: end; margin-bottom: clamp(2rem, 5vw, 3rem); }
@media (min-width: 960px) { .vvk__head { grid-template-columns: 1fr auto; } }
.vvk__head .lead { margin: 1rem 0 0; }
.incl { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.incl li { display: flex; align-items: center; gap: .8rem; font-weight: 700; line-height: 1.3; }
.incl svg { width: 2.3rem; height: 2.3rem; flex: none; color: var(--deep); }
.incl__title { font: 800 .95rem/1.2 var(--display); color: var(--deep); margin: 0 0 .2rem; }

/* Schatten per filter auf dem Container: die Maske der Tickets würde box-shadow abschneiden */
.passes { display: grid; gap: 1.1rem; filter: drop-shadow(0 18px 22px rgba(120, 40, 5, .28)); }

/* Ein Ticket: Datum | Perforation | Infos | Preis & Kauf */
.pass {
  --cut: 8.5rem;    /* Lage der Perforation */
  --notch: 13px;
  position: relative; display: grid; grid-template-columns: var(--cut) 1fr; align-items: stretch;
  color: var(--snow-hi); border-radius: 20px;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(255, 140, 60, .3), transparent 55%),
    var(--deep);
  /* halbrunde Kerben oben und unten an der Perforation */
  -webkit-mask:
    radial-gradient(circle var(--notch) at var(--cut) 0, #0000 97%, #000) top / 100% 51% no-repeat,
    radial-gradient(circle var(--notch) at var(--cut) 100%, #0000 97%, #000) bottom / 100% 51% no-repeat;
          mask:
    radial-gradient(circle var(--notch) at var(--cut) 0, #0000 97%, #000) top / 100% 51% no-repeat,
    radial-gradient(circle var(--notch) at var(--cut) 100%, #0000 97%, #000) bottom / 100% 51% no-repeat;
}
.pass__date {
  display: grid; place-content: center; justify-items: center; text-align: center;
  padding: 1.4rem .4rem; color: var(--gold);
  background-image: linear-gradient(rgba(255, 207, 122, .5) 50%, transparent 0);
  background-size: 2px 12px; background-repeat: repeat-y; background-position: right top;
}
.pass__day { font: 900 clamp(3.4rem, 8vw, 4.4rem)/.85 var(--display); letter-spacing: -.04em; }
.pass__mon { margin-top: .4rem; font: 800 .95rem/1 var(--display); text-transform: uppercase; letter-spacing: .08em; }
.pass__main {
  display: grid; gap: 1.1rem 2rem; align-items: center;
  padding: 1.5rem clamp(1.2rem, 3vw, 2.2rem);
}
@media (min-width: 820px) { .pass__main { grid-template-columns: 1fr auto; } }
.pass__weekday { font: 900 clamp(1.6rem, 3.5vw, 2.3rem)/1 var(--display); text-transform: uppercase; letter-spacing: -.01em; color: var(--white); }
.pass__facts { list-style: none; margin: .6rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem 1.2rem; font-size: 1rem; color: rgba(255, 244, 230, .9); }
.pass__facts li { display: inline-flex; align-items: center; gap: .45rem; }
.pass__facts svg { width: 1.05rem; height: 1.05rem; color: var(--gold); flex: none; }
.pass__name { margin: .5rem 0 0; font-size: .86rem; color: rgba(255, 244, 230, .65); }
.pass__state {
  display: inline-block; margin-left: .7rem; vertical-align: .35em;
  padding: .34rem .7rem; border-radius: 999px;
  font: 800 .74rem/1 var(--display); letter-spacing: .02em;
  background: var(--gold); color: var(--ink);
}
.pass__state--out { background: rgba(255, 255, 255, .2); color: var(--snow-hi); }
.pass__buy { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.pass__price { line-height: 1; white-space: nowrap; }
.pass__price small { display: block; font: 700 .82rem/1 var(--display); color: rgba(255, 244, 230, .75); margin-bottom: .35rem; }
.pass__price strong { font: 900 2.3rem/1 var(--display); color: var(--white); letter-spacing: -.02em; }
.pass .btn { min-width: 11rem; }
.pass--out .pass__day, .pass--out .pass__weekday, .pass--out .pass__price strong { opacity: .6; }

@media (max-width: 560px) {
  .pass { --cut: 5.4rem; }
  .pass__day { font-size: 2.8rem; }
  .pass__mon { font-size: .78rem; }
  .pass__buy { justify-content: space-between; }
  .pass .btn { min-width: 0; flex: 1 1 100%; }
}

/* Platzhalter beim Laden */
.pass--skeleton { min-height: 9.5rem; background: #dd8455; }
.pass--skeleton .pass__date { background-image: linear-gradient(rgba(255,255,255,.4) 50%, transparent 0); }
.sk { display: block; height: .95rem; border-radius: 6px; background: rgba(255, 255, 255, .3); }
.sk--xl { width: 3.2rem; height: 3.2rem; }
.sk--l { width: 12rem; height: 1.8rem; max-width: 70%; }
.sk--m { width: 18rem; max-width: 90%; margin-top: .8rem; }

.vvk__foot {
  margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: space-between;
}
.vvk__foot p { margin: 0; max-width: 36rem; font-size: .95rem; }
.vvk__group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font: 800 1.05rem/1.3 var(--display); color: var(--deep); }

/* Mobile Kaufleiste */
.buybar {
  position: fixed; inset: auto 0 0; z-index: 45;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: var(--deep); color: var(--snow-hi);
  box-shadow: 0 -12px 30px -14px rgba(120, 40, 5, .6);
  transform: translateY(110%); transition: transform .25s ease;
}
.buybar.is-shown { transform: none; }
.buybar__txt { font: 800 1.05rem/1.15 var(--display); }
.buybar__txt small { display: block; font: 600 .8rem/1.2 var(--text); color: rgba(255, 244, 230, .78); }
@media (max-width: 760px) { .buybar { display: flex; } }

/* ─────────────────────────────────────────────── Lichterkette (Ablauf) */
.route { --h: 6.5rem; position: relative; }
.route__cable { display: none; }
.route__steps { list-style: none; margin: 0; padding: 0; }
.route__step { position: relative; }
.bulb {
  position: relative; width: 4.2rem; height: 4.2rem; border-radius: 50%;
  display: grid; place-items: center;
  font: 900 1.5rem/1 var(--display); color: var(--ink);
  background: radial-gradient(circle at 40% 35%, #fff9ee 0%, #ffe0a0 42%, #f5ae4e 100%);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .28), 0 0 28px 8px rgba(255, 214, 140, .8), 0 0 80px 22px rgba(255, 180, 80, .5);
  transition: background .6s ease, box-shadow .6s ease, color .6s ease;
}
.bulb::before { /* Fassung */
  content: ''; position: absolute; top: -.75rem; left: 50%; translate: -50% 0;
  width: 1.1rem; height: .95rem; border-radius: 3px 3px 2px 2px; background: var(--ink);
}
.route__step h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 900; text-transform: uppercase;
  letter-spacing: -.01em; margin: 1.7rem 0 .6rem;
}
.route__step p { margin: 0; max-width: 22rem; }
.s--glut .route__step h3 { color: var(--white); text-shadow: 0 2px 16px rgba(140, 30, 0, .35); }
.s--snow .route__step h3 { color: var(--deep); }

/* Fotos hängen leicht schräg unter den Birnen – wie an die Kette geklammert */
.route__photo { display: block; width: 100%; max-width: 22rem; margin-top: 1.5rem; }
.route__photo img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 18px; box-shadow: 0 22px 34px -20px rgba(120, 40, 5, .7);
  rotate: -1.6deg;
}
.route__step:nth-child(2) .route__photo img { rotate: 1.4deg; }
.route__step:nth-child(3) .route__photo img { rotate: -1deg; }
.route__step h3 { margin-top: 1.5rem; }

/* Aus, bis die Kette ins Bild kommt – dann gehen die Lichter nacheinander an */
.js .route:not(.is-lit) .bulb {
  background: radial-gradient(circle at 40% 35%, #e3c3a4 0%, #b58767 100%);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .15);
  color: rgba(120, 40, 5, .5);
}
.route__step:nth-child(2) .bulb { transition-delay: .45s; }
.route__step:nth-child(3) .bulb { transition-delay: .9s; }

@media (min-width: 820px) {
  .route__steps { display: grid; grid-template-columns: repeat(3, 1fr); }
  .route__cable {
    display: block; position: absolute; left: 0; top: 0; width: 100%; height: var(--h);
    overflow: visible; color: var(--ink); pointer-events: none;
  }
  .route__step { text-align: center; padding: 0 1.2rem; display: grid; justify-items: center; align-content: start; }
  /* Die Birnen hängen auf der Kurve: Parabel durch (0|5), (50|28.9), (150|48), (250|28.9), (300|5)
     im viewBox 300×60 – also bei 1/6, 1/2 und 5/6 der Breite = Spaltenmitten. */
  .route__step .bulb { margin-top: calc(var(--h) * var(--y) / 60 + .75rem); }
  .route__step:nth-child(1), .route__step:nth-child(3) { --y: 28.9; }
  .route__step:nth-child(2) { --y: 48; }
  .route__step p { margin-inline: auto; }
}
@media (max-width: 819px) {
  .route__steps { position: relative; display: grid; gap: 2.6rem; }
  .route__steps::before {
    content: ''; position: absolute; left: calc(2.1rem - 1.5px); top: 1rem; bottom: 1rem;
    width: 3px; border-radius: 2px; background: var(--ink); opacity: .6;
  }
  .route__step { display: grid; grid-template-columns: 4.2rem 1fr; gap: 0 1.3rem; align-items: start; }
  .route__step .bulb { grid-row: span 3; }
  .route__step .bulb::before { display: none; }
  .route__photo { margin-top: .2rem; }
  .route__step h3 { margin-top: 1.1rem; }
}

/* ─────────────────────────────────────────────── Business-Teaser */
.teaser { display: grid; gap: 2.5rem 4.5rem; align-items: center; }
@media (min-width: 900px) { .teaser { grid-template-columns: 1.1fr 1fr; } }
.teaser h2 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.teaser p { margin: 1.2rem 0 1.6rem; max-width: 34rem; color: rgba(255, 244, 230, .92); }
.teaser .stars { margin-bottom: 2rem; }
.teaser__photo img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 56% center;
  border-radius: 24px; box-shadow: 0 30px 50px -28px rgba(80, 25, 0, .8);
  rotate: 1.5deg;
}
@media (max-width: 899px) { .teaser__photo img { aspect-ratio: 4 / 3; rotate: 0deg; } }

/* Sternliste – der Stern aus dem Logo als Aufzählungszeichen */
.stars { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.stars li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; line-height: 1.4; }
.stars li::before {
  content: ''; flex: none; width: 1.15rem; height: 1.15rem; margin-top: .15rem;
  background: var(--star, var(--deep));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.5l2.2 8.3 8.3 2.2-8.3 2.2L12 22.5l-2.2-8.3L1.5 12l8.3-2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.5l2.2 8.3 8.3 2.2-8.3 2.2L12 22.5l-2.2-8.3L1.5 12l8.3-2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.s--deep .stars { --star: var(--gold); }
.stars--big li { font: 800 clamp(1.1rem, 2.2vw, 1.35rem)/1.3 var(--display); }
.stars--big li::before { width: 1.3rem; height: 1.3rem; margin-top: .05rem; }

/* ─────────────────────────────────────────────── Anfahrt */
.venue { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 920px) {
  .venue { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 5rem; }
  .venue:has(> .venue__faq[hidden]) { grid-template-columns: 1fr; }
}
.venue h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.venue .s__head { margin-bottom: 2rem; }
.venue dl { margin: 0 0 2rem; display: grid; gap: 1.4rem; }
.venue dt { font: 800 1.05rem/1.2 var(--display); color: var(--deep); margin-bottom: .25rem; }
.venue dd { margin: 0; }
.venue .todo { opacity: .75; font-style: italic; }
.venue__links { display: flex; flex-wrap: wrap; gap: .6rem; }


/* ─────────────────────────────────────────────── FAQ */
.faq { max-width: 52rem; border-top: 2px solid rgba(194, 65, 12, .2); }
.faq details { border-bottom: 2px solid rgba(194, 65, 12, .2); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; font: 800 1.12rem/1.35 var(--display); color: var(--deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; flex: none; width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center;
  font: 700 1.35rem/1 var(--display); background: var(--deep); color: var(--snow-hi); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 3rem 1.4rem 0; white-space: pre-line; }

/* ─────────────────────────────────────────────── Footer */
.site-footer { background: var(--deep-dark); color: rgba(255, 244, 230, .82); padding: 3.5rem 0 calc(2rem + env(safe-area-inset-bottom)); font-size: .95rem; }
.site-footer .wrap { display: grid; gap: 2rem; }
@media (min-width: 760px) { .site-footer .wrap { grid-template-columns: auto 1fr; align-items: center; } }
.site-footer img { width: 11rem; height: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
@media (min-width: 760px) { .footer-nav { justify-content: flex-end; } }
.footer-nav a { text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: var(--gold); }
.footer-legal { grid-column: 1 / -1; margin: 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 207, 122, .2); font-size: .82rem; color: rgba(255, 244, 230, .6); }
@media (max-width: 760px) { .has-buybar .site-footer { padding-bottom: 6rem; } }

/* ─────────────────────────────────────────────── Business-Hero: Text links, Foto rechts */
.bhero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(60% 70% at 0% 100%, rgba(194, 65, 12, .55), transparent 70%),
    radial-gradient(50% 60% at 30% 0%, rgba(255, 190, 110, .45), transparent 70%),
    var(--glut);
}
.bhero__photo { position: relative; }
.bhero__photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 44% center; }
/* dunkler Verlauf oben, damit Logo und Menü über dem Foto lesbar bleiben */
.bhero__photo::after {
  content: ''; position: absolute; inset: 0 0 auto; height: 9rem; pointer-events: none;
  background: linear-gradient(to bottom, rgba(80, 22, 0, .6), transparent);
}
.bhero__badge {
  position: absolute; z-index: 1; margin: 0;
  width: 9.5rem; height: 9.5rem; border-radius: 50%;
  display: grid; place-content: center; justify-items: center; text-align: center;
  background: var(--gold); color: var(--ink);
  font: 900 1.9rem/1 var(--display); letter-spacing: -.02em;
  rotate: -10deg; box-shadow: 0 18px 36px -14px rgba(80, 22, 0, .7);
}
.bhero__badge span { font-size: .85rem; font-weight: 800; letter-spacing: 0; }
.bhero__badge span:first-child { margin-bottom: .2rem; }
.bhero__badge span:last-child { margin-top: .3rem; }
.bhero__kicker { margin: 0 0 1rem; font: 800 1.05rem/1.2 var(--display); color: var(--gold); }
.bhero__title {
  font: 900 clamp(2.3rem, 3.8vw, 4.2rem)/.95 var(--display); letter-spacing: -.025em;
  text-transform: uppercase; hyphens: manual; text-shadow: 0 4px 24px rgba(130, 30, 0, .35);
}
.bhero__lead { margin: 1.4rem 0 2rem; max-width: 34rem; font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.55; }
.bhero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

@media (min-width: 900px) {
  .bhero { min-height: min(100svh, 60rem); display: grid; align-items: center; }
  .bhero__photo { position: absolute; top: 0; right: 0; bottom: 0; width: 46%; }
  .bhero__photo img { border-bottom-left-radius: 64px; }
  .bhero__badge { left: -4.75rem; bottom: 14%; }
  .bhero__inner { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 5rem; }
  /* Text endet 6.5rem vor der Fotokante (Platz für den Sticker), egal wie breit das Fenster ist */
  .bhero__text { width: calc(54vw - 6.5rem - max(var(--gutter), (100vw - var(--wrap)) / 2 + var(--gutter))); }
}
@media (max-width: 899px) {
  .bhero__photo { height: min(62svh, 34rem); }
  .bhero__photo img { border-bottom-left-radius: 40px; }
  .bhero__badge { right: var(--gutter); bottom: -3rem; width: 7.8rem; height: 7.8rem; font-size: 1.55rem; }
  .bhero__badge span { font-size: .74rem; }
  .bhero__inner { padding-top: 2.5rem; padding-bottom: 3.5rem; }
  .bhero__kicker { max-width: calc(100% - 8.5rem); }
}

/* ─────────────────────────────────────────────── Business */
.hero--sub { min-height: min(92svh, 54rem); }
.hero--sub .hero__logo { width: min(21rem, 62vw); }
.hero__title {
  font: 900 clamp(2.3rem, 6.8vw, 4.6rem)/.95 var(--display); letter-spacing: -.025em;
  text-transform: uppercase; max-width: 16ch; text-shadow: 0 4px 24px rgba(130, 30, 0, .45);
}
.hero__lead { max-width: 38rem; font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 0; text-shadow: 0 2px 14px rgba(130, 30, 0, .55); }

.banner { display: block; margin: 0 0 clamp(2.5rem, 6vw, 4rem); }
.banner img {
  width: 100%; height: auto; aspect-ratio: 21 / 9; object-fit: cover; object-position: center 62%;
  border-radius: 24px; box-shadow: 0 30px 50px -30px rgba(80, 25, 0, .8);
}
@media (max-width: 700px) { .banner img { aspect-ratio: 4 / 3; } }
.split { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1.4rem; }
.s--deep .split h3 { color: var(--gold); }

.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.tags li {
  padding: .7rem 1.2rem; border-radius: 999px;
  font: 800 1rem/1.2 var(--display); color: var(--ink);
  background: rgba(255, 244, 230, .6);
}

.price { display: grid; gap: 2.5rem 5rem; align-items: center; }
@media (min-width: 900px) { .price { grid-template-columns: auto 1fr; } }
.price__big { font-family: var(--display); color: var(--deep); line-height: 1; }
.price__big small { display: block; font-weight: 800; font-size: 1.15rem; margin-bottom: .6rem; }
.price__big strong { display: block; font-weight: 900; font-size: clamp(4.5rem, 14vw, 8.5rem); letter-spacing: -.045em; }
.price__big span { display: block; font-weight: 800; font-size: 1.15rem; margin-top: .7rem; }
.price h3 { font-size: 1.5rem; font-weight: 900; color: var(--deep); margin-bottom: 1.2rem; }
.price .note { margin: 1.5rem 0 0; max-width: 34rem; }

/* Anfrage */
.inquiry { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
@media (min-width: 960px) { .inquiry { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }
.inquiry__intro .lead { margin: 1.2rem 0 1rem; color: rgba(255, 244, 230, .95); }
.inquiry__intro p { color: rgba(255, 244, 230, .82); }
.inquiry__intro .btn { margin-top: .8rem; }
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.field { display: grid; gap: .4rem; align-content: start; }
.field label { font: 700 .92rem/1.2 var(--display); color: var(--snow-hi); }
.field .opt { font-weight: 500; opacity: .7; }
.field input, .field textarea {
  width: 100%; font: 400 1rem/1.4 var(--text); color: var(--ink);
  padding: .85rem 1rem; border-radius: 14px;
  border: 2px solid transparent; background: var(--snow-hi);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255, 207, 122, .35); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(255, 207, 122, .5); }
.field .err { font-size: .92rem; font-weight: 700; color: var(--white); }
.field .err:empty { display: none; }
.field label.consent { display: flex; gap: .8rem; align-items: flex-start; font: 400 .95rem/1.5 var(--text); color: rgba(255, 244, 230, .9); }
.consent input { flex: none; width: 1.3rem; height: 1.3rem; margin-top: .15rem; accent-color: var(--gold); }
.consent a { color: var(--gold); font-weight: 700; }
.form .btn { justify-self: start; }
.form-status { border-radius: 14px; padding: 1rem 1.2rem; font-weight: 700; }
.form-status:empty { display: none; }
.form-status--ok { background: var(--gold); color: var(--ink); }
.form-status--err { background: rgba(255, 244, 230, .12); color: var(--snow-hi); box-shadow: inset 0 0 0 2px var(--gold); }
.contact-fallback h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: .8rem; }
/* Honeypot: aus dem Sichtfeld, nicht display:none (Doku Kap. 02) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ─────────────────────────────────────────────── Rechtliches */
.legal { padding: calc(var(--header-h) + 3rem) 0 5rem; min-height: 80vh; }
.legal h1 { font: 900 clamp(2.2rem, 6vw, 3.4rem)/1 var(--display); color: var(--deep); text-transform: uppercase; margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.25rem; text-transform: none; letter-spacing: 0; line-height: 1.3; margin: 2rem 0 .6rem; color: var(--deep); }
.legal p, .legal li { max-width: 46rem; }
.legal a:not(.btn) { color: var(--deep); }
.legal .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.legal .placeholder { background: #ffd98f; padding: .1em .35em; border-radius: 4px; }

/* ─────────────────────────────────────────────── Schnee */
.snow { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 40; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .snow { display: none; }
}

/* Warme Fläche, solange ein Foto noch lädt */
.route__photo img, .teaser__photo img, .banner img { background: rgba(120, 40, 5, .28); }
