/* Nachtwiese – Open-Air-Kino. Art Direction „Blaue Stunde" */

:root {
  --nacht: #0C1631;
  --nacht-2: #111E3E;
  --tief: #060B18;
  --daemmer: #22355E;
  --creme: #F0E6D0;
  --creme-2: #C3BAA5;
  --blau: #8E9FC2;
  --gold: #E6B45E;
  --gold-hell: #F3CF8C;
  --leinwand: #EEE4CD;
  --papier: #EFE5CF;
  --tinte: #15203B;
  --tinte-2: #4A5065;
  --messing: #7A5114;
  --fehler: #F4A48C;
  --linie: rgba(240, 230, 208, .16);
  --linie-tinte: rgba(21, 32, 59, .16);

  --f-display: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --f-text: "Albert Sans", "Helvetica Neue", Arial, sans-serif;

  --rand: clamp(16px, 4.2vw, 64px);
  --max: 1320px;
  --nav-h: 72px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-film: cubic-bezier(.65, 0, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--nacht);
  color: var(--creme);
  font: 400 17px/1.6 var(--f-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }
p, h1, h2, h3, figure, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
[hidden] { display: none !important; }

.sr {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--tinte); padding: 10px 16px; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--gold-hell); outline-offset: 3px; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--rand)); margin-inline: auto; padding-inline: var(--rand); }

/* Typografie */
.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 96px);
  line-height: .98;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.lead { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.55; color: var(--creme-2); max-width: 36ch; }
.label {
  font: 600 12px/1.3 var(--f-text);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blau);
}
.zeit {
  display: inline-flex; align-items: baseline; gap: .3em;
  font-family: var(--f-display); font-size: clamp(34px, 3.4vw, 48px); line-height: 1;
  color: var(--creme); font-variant-numeric: lining-nums;
}
.zeit small { font: 600 11px/1 var(--f-text); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* Knöpfe */
.knopf {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px;
  border: 0; border-radius: 2px; cursor: pointer; text-decoration: none; white-space: nowrap;
  font: 600 13px/1 var(--f-text); letter-spacing: .14em; text-transform: uppercase;
  transition: background-color .25s, color .25s, transform .25s var(--ease);
}
.knopf--gold { background: var(--gold); color: var(--tinte); }
.knopf--gold:hover { background: var(--gold-hell); }
.knopf--gold:active { transform: translateY(1px); }
.knopf--klein { min-height: 40px; padding: 0 16px; font-size: 12px; }
.knopf--breit { width: 100%; }
.textknopf {
  background: none; border: 0; padding: 4px 0; cursor: pointer;
  font: 600 12px/1.3 var(--f-text); letter-spacing: .14em; text-transform: uppercase;
  color: var(--creme); text-decoration: underline; text-decoration-color: var(--gold);
  text-underline-offset: 6px; text-decoration-thickness: 1px;
}
.textknopf:hover { color: var(--gold-hell); }

/* Navigation */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; gap: clamp(16px, 3vw, 44px);
  padding-inline: var(--rand);
  transition: background-color .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.ist-gescrollt { background: rgba(6, 11, 24, .9); border-bottom-color: var(--linie); }
@supports (backdrop-filter: blur(8px)) {
  .nav.ist-gescrollt { background: rgba(6, 11, 24, .74); backdrop-filter: blur(12px); }
}
.nav__marke {
  font-family: var(--f-display); font-size: 26px; line-height: 1; text-decoration: none;
  letter-spacing: -.01em; margin-right: auto;
}
.nav__links { display: flex; gap: clamp(16px, 2.4vw, 36px); }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--creme-2); text-decoration: none; padding-block: 8px;
  background: linear-gradient(var(--gold), var(--gold)) 0 100% / 0 1px no-repeat;
  transition: color .2s, background-size .3s var(--ease);
}
.nav__links a:hover { color: var(--creme); background-size: 100% 1px; }

/* 1 Hero */
.hero {
  position: relative;
  background: var(--tief);
  padding-top: var(--nav-h);
  min-height: 100svh;
  display: flex; flex-direction: column;
}
.hero__bild {
  position: relative;
  height: clamp(340px, min(calc(100vw / 2.39), calc(100svh - var(--nav-h) - 250px)), 900px);
  overflow: hidden;
}
.hero__bild img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero__bild::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(6, 11, 24, .85) 0%, rgba(6, 11, 24, .25) 30%, rgba(6, 11, 24, 0) 55%),
    linear-gradient(to right, rgba(6, 11, 24, .35), rgba(6, 11, 24, 0) 50%);
}
.hero__titelzeile {
  position: relative; z-index: 2;
  margin-top: calc(-1 * clamp(96px, 10.4vw, 170px));
}
.hero__ort { font: 600 13px/1 var(--f-text); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.hero__titel {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(76px, 15.2vw, 250px);
  line-height: .78; letter-spacing: -.035em;
  margin-left: -.05em;
  font-variation-settings: "opsz" 96;
}
.hero__leiste {
  flex: 1;
  display: grid; grid-template-columns: minmax(0, 1.1fr) auto auto; align-items: end; gap: 24px clamp(24px, 4vw, 64px);
  padding-top: clamp(22px, 2.6vw, 40px); padding-bottom: clamp(24px, 3vw, 44px);
}
.hero__saison { color: var(--creme-2); max-width: 44ch; font-size: 16px; text-wrap: pretty; }
.hero__saison strong { color: var(--creme); font-weight: 500; }
.countdown .label { margin-bottom: 6px; }
.countdown__zahlen { display: flex; gap: clamp(12px, 1.6vw, 22px); }
.cd { display: inline-flex; align-items: baseline; gap: 5px; }
.cd__z { font-family: var(--f-display); font-size: clamp(30px, 2.8vw, 42px); line-height: 1; font-variant-numeric: tabular-nums lining-nums; min-width: 1.15em; text-align: right; }
.cd__z[data-cd="t"] { min-width: 1.7em; }
.cd__e { font-size: 12px; color: var(--creme-2); }

/* Blende öffnet sich (Letterbox-Reveal) */
.js .hero__bild img { clip-path: inset(34% 0 34% 0); transform: scale(1.06); transition: clip-path 1.6s var(--ease-film), transform 2.4s var(--ease); }
.js .ist-geladen .hero__bild img { clip-path: inset(0 0 0 0); transform: none; }
.js .hero__titel, .js .hero__ort { opacity: 0; transform: translateY(18px); transition: opacity 1s .7s, transform 1.2s .7s var(--ease); }
.js .ist-geladen .hero__titel, .js .ist-geladen .hero__ort { opacity: 1; transform: none; }

/* 2 Erlebnis */
.erlebnis { position: relative; padding-top: clamp(96px, 12vw, 180px); background: var(--nacht); }
.erlebnis__raster {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 28px);
}
.erlebnis__kopf { grid-column: 1 / 6; grid-row: 1; align-self: start; padding-top: 12px; }
.erlebnis__kopf .h2 { margin-bottom: 28px; max-width: 8.5ch; }
.einstellung__bild { overflow: hidden; background: var(--nacht-2); }
.einstellung__bild img { width: 100%; height: 100%; object-fit: cover; }
.einstellung__text { display: flex; gap: 18px; align-items: baseline; margin-top: 16px; color: var(--creme-2); font-size: 15px; line-height: 1.5; }
.einstellung__text > span:last-child { max-width: 34ch; }
.einstellung--1 { grid-column: 7 / 13; grid-row: 1 / 3; }
.einstellung--1 .einstellung__bild { aspect-ratio: 3 / 2; }
.einstellung--2 { grid-column: 1 / 5; grid-row: 3; margin-top: clamp(56px, 6vw, 88px); }
.einstellung--2 .einstellung__bild { aspect-ratio: 4 / 5; }
.einstellung--2 .einstellung__text { flex-direction: column; gap: 8px; }
.einstellung--3 { grid-column: 6 / 13; grid-row: 3; margin-top: clamp(120px, 13vw, 200px); }
.einstellung--3 .einstellung__bild { aspect-ratio: 2.39 / 1; margin-right: calc(-1 * (var(--rand) + max(0px, (100vw - var(--max) - 2 * var(--rand)) / 2))); }

.filmab { position: relative; margin-top: clamp(80px, 10vw, 150px); background: var(--tief); padding-block: clamp(20px, 3.2vw, 48px); }
.filmab__bild { aspect-ratio: 2.39 / 1; overflow: hidden; }
.filmab__bild img { width: 100%; height: 100%; object-fit: cover; }
.filmab__text {
  position: absolute; left: 0; right: 0; bottom: clamp(44px, 6vw, 96px);
  display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: 24px;
  pointer-events: none;
}
.filmab__text .zeit { grid-row: 1 / 3; align-self: end; padding-bottom: .55em; }
.filmab__satz { font-family: var(--f-display); font-size: clamp(64px, 11vw, 176px); line-height: .8; letter-spacing: -.03em; justify-self: end; }
.filmab__klein { grid-column: 2; justify-self: end; margin-top: 14px; font-size: 14px; color: var(--creme-2); }

.js .blende .einstellung__bild img,
.js .blende .filmab__bild img { clip-path: inset(14% 0 14% 0); transform: scale(1.04); transition: clip-path 1.3s var(--ease-film), transform 1.8s var(--ease); }
.js .blende.ist-sichtbar .einstellung__bild img,
.js .blende.ist-sichtbar .filmab__bild img { clip-path: inset(0 0 0 0); transform: none; }

/* 3 Programm – Projektorstrahl & Leinwand */
.programm {
  position: relative; overflow: hidden;
  background:
    radial-gradient(70% 40% at 50% 0%, rgba(34, 53, 94, .55), rgba(12, 22, 49, 0) 70%),
    var(--nacht);
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(64px, 6vw, 96px);
}
.programm__buehne { position: relative; }
.programm__kopf {
  position: absolute; z-index: 2; left: var(--rand); right: var(--rand); top: 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
  pointer-events: none;
}
.programm__kopf > * { pointer-events: auto; }
.programm__intro { max-width: 27ch; color: var(--creme-2); font-size: 16px; text-align: right; padding-top: 10px; }

.projektion { position: relative; height: clamp(260px, 26vw, 380px); }
.projektion__linse {
  position: absolute; left: 50%; top: 0; width: 18px; height: 18px; margin-left: -9px; margin-top: -9px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFBF2 0 28%, rgba(247, 238, 216, .75) 42%, rgba(247, 238, 216, 0) 72%);
  box-shadow: 0 0 30px 10px rgba(247, 238, 216, .28), 0 0 90px 30px rgba(230, 180, 94, .12);
}
.projektion__strahl, .projektion__kegel {
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  transform-origin: 50% 0;
}
.projektion__strahl {
  background: url("img/x-lichtstrahl.webp") 50% 0 / 100% 100% no-repeat;
  opacity: .62;
}
.projektion__kegel {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(to bottom, rgba(247, 238, 216, .16), rgba(247, 238, 216, .05) 70%, rgba(247, 238, 216, .12));
}
.projektion__staub { position: absolute; inset: 0; clip-path: polygon(50% 0, 88% 100%, 12% 100%); }
.projektion__staub i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #FFF6E4; opacity: 0;
}
.projektion__staub i:nth-child(1) { left: 48%; top: 30%; }
.projektion__staub i:nth-child(2) { left: 55%; top: 52%; }
.projektion__staub i:nth-child(3) { left: 40%; top: 70%; }
.projektion__staub i:nth-child(4) { left: 61%; top: 78%; width: 3px; height: 3px; }
.projektion__staub i:nth-child(5) { left: 34%; top: 88%; }
.projektion__staub i:nth-child(6) { left: 70%; top: 92%; }
.projektion__staub i:nth-child(7) { left: 51%; top: 64%; width: 3px; height: 3px; }

.leinwand {
  position: relative;
  background: #16223F;
  border: clamp(6px, .8vw, 12px) solid #03060E;
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .8);
  color: var(--tinte);
}
.leinwand::after { /* Lichtspiel unter der Leinwand auf der Wiese */
  content: ""; position: absolute; left: 6%; right: 6%; top: 100%; height: 90px; margin-top: 12px;
  background: radial-gradient(50% 50% at 50% 0%, rgba(240, 230, 208, .12), rgba(240, 230, 208, 0));
  pointer-events: none;
}
.leinwand__licht {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 50% 0%, #FAF4E6 0%, rgba(250, 244, 230, 0) 70%),
    radial-gradient(140% 120% at 50% 40%, #EEE4CD 45%, #D9CCAF 100%);
}
.leinwand__inhalt { position: relative; padding: clamp(24px, 3.4vw, 52px) clamp(18px, 3.6vw, 56px) clamp(28px, 3.4vw, 52px); }

/* Einschalten: nur mit JS versteckt */
.js .projektion__linse { opacity: .18; transform: scale(.5); transition: opacity .4s, transform .6s var(--ease); }
.js .projektion__strahl, .js .projektion__kegel { opacity: 0; transform: scaleX(.02); transition: opacity .9s .25s, transform 1.1s .25s var(--ease-film); }
.js .leinwand__licht { opacity: 0; }
.js .leinwand__inhalt { opacity: 0; transition: opacity 1s 1.1s, filter 1.4s 1.1s var(--ease); }
.js .programm.ist-an .projektion__linse { opacity: 1; transform: none; }
.js .programm.ist-an .projektion__strahl { opacity: .62; transform: none; }
.js .programm.ist-an .projektion__kegel { opacity: 1; transform: none; }
.js .programm.ist-an .leinwand__licht { animation: anschalten 1.1s .75s both; }
.js .programm.ist-an .leinwand__inhalt { opacity: 1; filter: none; }
@media (min-width: 900px) and (hover: hover) {
  .js .programm:not(.ist-an) .leinwand__inhalt { filter: blur(7px); }
}
@keyframes anschalten {
  0% { opacity: 0; } 10% { opacity: .75; } 16% { opacity: .1; } 26% { opacity: .9; }
  32% { opacity: .45; } 44% { opacity: 1; } 100% { opacity: 1; }
}
.programm.ist-an .projektion__staub i { animation: staub 9s linear infinite; }
.programm.ist-an .projektion__staub i:nth-child(2n) { animation-duration: 12s; animation-delay: -3s; }
.programm.ist-an .projektion__staub i:nth-child(3n) { animation-duration: 15s; animation-delay: -7s; }
@keyframes staub {
  0% { opacity: 0; transform: translate(0, 0); }
  20% { opacity: .7; }
  80% { opacity: .5; }
  100% { opacity: 0; transform: translate(18px, -40px); }
}

/* Filter */
.filter { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 32px; }
.filter__gruppe { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.filter__knopf {
  background: none; border: 0; padding: 8px 0 6px; cursor: pointer;
  font: 600 12px/1.2 var(--f-text); letter-spacing: .14em; text-transform: uppercase;
  color: var(--tinte-2);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.filter__knopf:hover { color: var(--tinte); }
.filter__knopf[aria-pressed="true"] { color: var(--tinte); border-bottom-color: var(--messing); }
.filter__knopf:focus-visible, .abend__knopf:focus-visible, .leinwand .textknopf:focus-visible { outline-color: var(--tinte); }
.filter__status { margin-top: 10px; font-size: 13px; color: var(--tinte-2); }

.monate { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(28px, 4vw, 64px); margin-top: clamp(18px, 2.4vw, 32px); }
.monate.ist-einzeln { grid-template-columns: minmax(0, 1fr); }
.monate.ist-einzeln .abende { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(28px, 4vw, 64px); }
.monat__kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--tinte); }
.monat__name { font-family: var(--f-display); font-weight: 400; font-size: clamp(32px, 3vw, 44px); line-height: 1; }
.monat__info { font-size: 13px; color: var(--tinte-2); text-align: right; }

.abend { border-bottom: 1px solid var(--linie-tinte); }
.abend__knopf {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left; color: var(--tinte);
  display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; align-items: center; gap: 16px;
  padding: 14px 10px 14px 4px;
  transition: background-color .2s;
}
.abend__knopf:hover { background: rgba(21, 32, 59, .06); }
.abend__datum { display: flex; flex-direction: column; align-items: flex-start; }
.abend__wt { font: 600 11px/1 var(--f-text); letter-spacing: .14em; text-transform: uppercase; color: var(--tinte-2); }
.abend__tag { font-family: var(--f-display); font-size: 34px; line-height: 1; margin-top: 4px; font-variant-numeric: lining-nums; }
.abend__film { display: flex; flex-direction: column; min-width: 0; }
.abend__titel {
  font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 1.75vw, 25px); line-height: 1.15;
  text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; text-decoration-thickness: 1px;
  transition: text-decoration-color .2s;
}
.abend__knopf:hover .abend__titel { text-decoration-color: var(--messing); }
.abend__meta { font-size: 13px; line-height: 1.4; color: var(--tinte-2); margin-top: 5px; }
.abend__zeit { font-size: 13px; line-height: 1.4; color: var(--tinte-2); white-space: nowrap; }
.abend__trenner { color: var(--messing); padding-inline: 3px; }
.abend__plaetze { display: flex; flex-direction: column; gap: 5px; }
.punkte { display: flex; align-items: center; gap: 8px; }
.punkte__reihe { display: inline-flex; gap: 3px; flex-shrink: 0; }
.strich { margin-left: -.09em; }
.punkte__reihe i { width: 7px; height: 7px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(21, 32, 59, .35); }
.punkte__reihe i.an { background: var(--messing); box-shadow: none; }
.punkte__zahl { font-size: 12px; line-height: 1; color: var(--tinte-2); min-width: 9.5em; }
.punkte.ist-leer .punkte__zahl { color: var(--messing); font-weight: 600; }

.abend.ist-gewaehlt .abend__knopf { background: rgba(122, 81, 20, .1); }
.leer { padding: 32px 0 8px; color: var(--tinte-2); }
.leer .textknopf { color: var(--tinte); margin-left: 8px; }

.programm__legende {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center;
  margin-top: clamp(40px, 5vw, 64px); font-size: 14px; color: var(--creme-2);
}
.punkte__reihe--legende i { box-shadow: inset 0 0 0 1px rgba(240, 230, 208, .5); }
.punkte__reihe--legende i.an { background: var(--gold); }

/* 4 Plätze & Preise */
.preise { position: relative; padding-block: clamp(96px, 10vw, 150px); background: var(--nacht); }
.preise::before { content: ""; position: absolute; left: var(--rand); right: var(--rand); top: 0; height: 1px; background: var(--linie); }
.preise__raster { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 28px); align-items: start; }
.preise__kopf { grid-column: 1 / 6; position: sticky; top: calc(var(--nav-h) + 32px); }
.preise__kopf .lead { margin-top: 24px; }
.plan { margin-top: clamp(32px, 4vw, 56px); max-width: 420px; }
.plan__svg { display: block; width: 100%; height: auto; overflow: visible; }
.plan__see { fill: none; stroke: var(--blau); stroke-width: 1; opacity: .45; }
.plan__leinwand { stroke: var(--creme); stroke-width: 4; }
.plan__strahl { fill: rgba(240, 230, 208, .025); stroke: rgba(230, 180, 94, .28); stroke-width: .8; stroke-dasharray: 3 4; }
.plan__flaeche { fill: rgba(240, 230, 208, 0); stroke: var(--linie); stroke-width: 1; transition: fill .3s, stroke .3s; }
.plan__stuhl, .plan__decke { fill: none; stroke: var(--creme-2); stroke-width: .9; transition: stroke .3s, fill .3s; }
.plan__gras { fill: var(--creme-2); opacity: .55; transition: fill .3s, opacity .3s; }
.plan__zeichen { font: 600 13px var(--f-text); fill: var(--gold); letter-spacing: .08em; }
.plan__txt { font: 500 11px var(--f-text); fill: var(--blau); letter-spacing: .06em; }
.plan__technik { fill: var(--gold); }
.plan__bar, .plan__einlass { fill: none; stroke: var(--creme-2); stroke-width: 1; }
.plan__zone.ist-aktiv .plan__flaeche { fill: rgba(230, 180, 94, .1); stroke: rgba(230, 180, 94, .6); }
.plan__zone.ist-aktiv .plan__stuhl, .plan__zone.ist-aktiv .plan__decke { stroke: var(--gold); fill: rgba(230, 180, 94, .25); }
.plan__zone.ist-aktiv .plan__gras { fill: var(--gold); opacity: 1; }
.plan__legende { margin-top: 18px; font-size: 14px; color: var(--creme-2); max-width: 40ch; }

.billette { grid-column: 7 / 13; display: grid; gap: clamp(20px, 2.4vw, 32px); padding-top: clamp(8px, 2vw, 24px); }
.billett {
  --abriss: clamp(118px, 11vw, 158px);
  --kerbe: 12px;
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) var(--abriss);
  min-height: 210px;
  color: var(--tinte);
  background-color: var(--papier);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .35 0 0 0 0 .28 0 0 0 0 .16 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    linear-gradient(100deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 40%);
  -webkit-mask:
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 0, #0000 97%, #000) top / 100% 51% no-repeat,
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 100%, #0000 97%, #000) bottom / 100% 51% no-repeat;
          mask:
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 0, #0000 97%, #000) top / 100% 51% no-repeat,
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 100%, #0000 97%, #000) bottom / 100% 51% no-repeat;
  transform: rotate(var(--dreh, 0deg));
  transition: transform .5s var(--ease);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .35));
}
.billett:nth-child(2) { margin-left: clamp(0px, 5vw, 72px); margin-right: -12px; }
.billett:nth-child(3) { margin-right: clamp(0px, 4vw, 56px); }
.billett:nth-child(4) { margin-left: clamp(0px, 7vw, 104px); }
.billett:hover, .billett:focus-within { transform: rotate(0deg) translateY(-4px); }
.billett__haupt {
  position: relative; display: flex; flex-direction: column; padding: 20px 26px 18px 28px;
}
.billett__haupt::before {
  content: ""; position: absolute; inset: 9px 0 9px 9px; border: 1px solid rgba(122, 81, 20, .28); border-right: 0; pointer-events: none;
}
.billett__kopf, .billett__fuss {
  display: flex; justify-content: space-between; gap: 12px;
  font: 600 10.5px/1.2 var(--f-text); letter-spacing: .18em; text-transform: uppercase; color: var(--messing);
}
.billett__name { font-family: var(--f-display); font-weight: 400; font-size: clamp(30px, 2.8vw, 42px); line-height: 1.02; margin-top: auto; padding-top: 18px; letter-spacing: -.01em; }
.billett__text { font-size: 15px; line-height: 1.45; color: var(--tinte-2); margin-top: 8px; max-width: 36ch; }
.billett__fuss { margin-top: 18px; color: var(--tinte-2); }
.billett__abriss {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 18px 12px;
  background-image: linear-gradient(to bottom, rgba(21, 32, 59, .32) 50%, transparent 0);
  background-size: 1.5px 9px; background-repeat: repeat-y; background-position: 0 0;
}
.billett__preis { font-family: var(--f-display); font-size: clamp(46px, 4.4vw, 64px); line-height: .9; display: flex; flex-direction: column; align-items: center; font-variant-numeric: lining-nums; }
.billett__preis small { font: 600 11px/1 var(--f-text); letter-spacing: .18em; color: var(--messing); margin-bottom: 8px; }
.billett__link {
  font: 600 11px/1 var(--f-text); letter-spacing: .14em; text-transform: uppercase; color: var(--tinte);
  text-decoration: underline; text-decoration-color: var(--messing); text-underline-offset: 5px; padding: 6px 2px;
}
.billett__link:hover { color: var(--messing); }
.billett__link:focus-visible { outline-color: var(--tinte); }

/* 5 Reservierung */
.reservieren { position: relative; padding-block: clamp(96px, 10vw, 150px) clamp(72px, 7vw, 110px); background: var(--nacht-2); }
.res__kopf { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 28px); align-items: end; margin-bottom: clamp(48px, 6vw, 84px); }
.res__kopf .h2 { grid-column: 1 / 8; }
.res__kopf .lead { grid-column: 9 / 13; }

.res {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  grid-template-areas: "abend billett" "plaetze billett" "angaben billett";
  column-gap: clamp(32px, 6vw, 100px);
  align-items: start;
}
.res__abend { grid-area: abend; }
.res__plaetze { grid-area: plaetze; }
.res__angaben { grid-area: angaben; }
.res__billett { grid-area: billett; position: sticky; top: calc(var(--nav-h) + 28px); }

.res__teil { border: 0; margin: 0; padding: 0 0 clamp(40px, 5vw, 60px); min-width: 0; }
.res__teil + .res__teil { padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--linie); }
.res__plaetze:focus { outline: none; }
.res__legende { float: left; width: 100%; font-family: var(--f-display); font-size: clamp(28px, 2.4vw, 36px); line-height: 1.1; padding: 0; margin-bottom: 22px; }
.res__legende + * { clear: both; }

.tage + .tage { margin-top: 18px; }
.tage__monat { font: 600 11px/1 var(--f-text); letter-spacing: .16em; text-transform: uppercase; color: var(--blau); margin-bottom: 10px; }
.tage__liste { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 6px; }
.tag {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 0 9px; border: 1px solid var(--linie); border-radius: 2px; cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.tag input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.tag__wt { font: 600 10px/1 var(--f-text); letter-spacing: .12em; text-transform: uppercase; color: var(--blau); }
.tag__zahl { font-family: var(--f-display); font-size: 26px; line-height: 1; font-variant-numeric: lining-nums; }
.tag:hover { border-color: rgba(230, 180, 94, .6); }
.tag:has(input:checked) { background: var(--gold); border-color: var(--gold); color: var(--tinte); }
.tag:has(input:checked) .tag__wt { color: var(--tinte); }
.tag:has(input:focus-visible) { outline: 2px solid var(--gold-hell); outline-offset: 3px; }
.res__gewaehlt { margin-top: 20px; color: var(--creme-2); font-size: 15px; min-height: 1.6em; }
.res__gewaehlt em { font-family: var(--f-display); font-size: 1.3em; color: var(--creme); }

.platz { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 16px; border-bottom: 1px solid var(--linie); }
.platz:first-of-type { border-top: 1px solid var(--linie); }
.platz__info { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 14px; row-gap: 2px; }
.platz__name { font-size: 17px; font-weight: 500; }
.platz__preis { font-size: 15px; color: var(--creme-2); }
.platz__frei { flex-basis: 100%; font-size: 13px; color: var(--blau); }
.platz__frei.ist-knapp { color: var(--gold); }
.zaehler { display: flex; align-items: center; flex-shrink: 0; }
.zaehler__knopf {
  width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer;
  background: none; border: 1px solid var(--linie); border-radius: 2px; color: var(--creme);
  transition: border-color .2s, background-color .2s;
}
.zaehler__knopf:hover:not(:disabled) { border-color: var(--gold); }
.zaehler__knopf:disabled { opacity: .35; cursor: default; }
.zaehler__knopf svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.zaehler__zahl {
  width: 52px; height: 44px; text-align: center; background: none; border: 0;
  font-family: var(--f-display); font-size: 26px; line-height: 1; color: var(--creme);
  -moz-appearance: textfield; appearance: textfield;
}
.zaehler__zahl::-webkit-outer-spin-button, .zaehler__zahl::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.feld { margin-bottom: 26px; }
.feld label { display: block; font: 600 11px/1.3 var(--f-text); letter-spacing: .16em; text-transform: uppercase; color: var(--blau); margin-bottom: 6px; }
.feld input {
  width: 100%; height: 50px; padding: 0; background: none; border: 0; border-bottom: 1px solid rgba(240, 230, 208, .35); border-radius: 0;
  font-size: 19px; color: var(--creme); transition: border-color .2s;
}
.feld input:focus { outline: none; border-bottom-color: var(--gold); box-shadow: 0 1px 0 0 var(--gold); }
.feld input[aria-invalid="true"] { border-bottom-color: var(--fehler); }
.fehler { margin-top: 10px; font-size: 14px; color: var(--fehler); }
.res__angaben .knopf { margin-top: 10px; }
.res__klein { margin-top: 14px; font-size: 13px; color: var(--creme-2); }

/* Zusammenfassung als Billett */
.stub {
  --kerbe: 12px;
  color: var(--tinte);
  background-color: var(--papier);
  -webkit-mask:
    radial-gradient(circle var(--kerbe) at 0 var(--schnitt, 60%), #0000 97%, #000) left / 51% 100% no-repeat,
    radial-gradient(circle var(--kerbe) at 100% var(--schnitt, 60%), #0000 97%, #000) right / 51% 100% no-repeat;
          mask:
    radial-gradient(circle var(--kerbe) at 0 var(--schnitt, 60%), #0000 97%, #000) left / 51% 100% no-repeat,
    radial-gradient(circle var(--kerbe) at 100% var(--schnitt, 60%), #0000 97%, #000) right / 51% 100% no-repeat;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .35));
}
.stub__oben { padding: 26px 28px 24px; }
.stub__kopf { display: flex; justify-content: space-between; gap: 12px; font: 600 10.5px/1.2 var(--f-text); letter-spacing: .18em; text-transform: uppercase; color: var(--messing); }
.stub__film { font-family: var(--f-display); font-style: italic; font-size: clamp(28px, 2.6vw, 38px); line-height: 1.08; margin-top: 22px; text-wrap: balance; }
.stub__film.ist-leer { font-style: normal; color: var(--tinte-2); font-size: 24px; }
.stub__datum { margin-top: 10px; font-size: 15px; color: var(--tinte-2); line-height: 1.5; }
.stub__unten {
  padding: 22px 28px 26px;
  background-image: linear-gradient(to right, rgba(21, 32, 59, .32) 50%, transparent 0);
  background-size: 9px 1.5px; background-repeat: repeat-x; background-position: 0 0;
}
.stub__zeilen li, .ticket__zeilen li { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; padding-block: 5px; }
.z__preis { font-variant-numeric: tabular-nums; white-space: nowrap; }
.stub__zeilen:empty::before { content: "Noch keine Plätze gewählt."; display: block; font-size: 15px; color: var(--tinte-2); padding-block: 5px; }
.stub__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--tinte); }
.stub__total span:first-child { font: 600 11px/1 var(--f-text); letter-spacing: .18em; text-transform: uppercase; }
.stub__total span:last-child { font-family: var(--f-display); font-size: clamp(34px, 3vw, 44px); line-height: 1; font-variant-numeric: lining-nums; }

/* Erfolg */
.reservieren.ist-reserviert .res__kopf { display: none; }
.erfolg { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); column-gap: clamp(32px, 5vw, 80px); row-gap: 28px; align-items: center; }
.erfolg:focus { outline: none; }
.erfolg__titel { font-family: var(--f-display); font-weight: 400; font-size: clamp(56px, 7vw, 110px); line-height: .9; letter-spacing: -.02em; margin-bottom: 20px; }
.erfolg__neu { grid-column: 2; justify-self: start; }
.ticket {
  --kerbe: 14px; --abriss: 36%;
  display: grid; grid-template-columns: minmax(0, 1fr) var(--abriss);
  color: var(--tinte); background: var(--papier);
  -webkit-mask:
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 0, #0000 97%, #000) top / 100% 51% no-repeat,
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 100%, #0000 97%, #000) bottom / 100% 51% no-repeat;
          mask:
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 0, #0000 97%, #000) top / 100% 51% no-repeat,
    radial-gradient(circle var(--kerbe) at calc(100% - var(--abriss)) 100%, #0000 97%, #000) bottom / 100% 51% no-repeat;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .4));
}
.ticket__haupt { padding: 28px 32px 30px; }
.ticket__kopf { display: flex; justify-content: space-between; gap: 12px; font: 600 11px/1.2 var(--f-text); letter-spacing: .18em; text-transform: uppercase; color: var(--messing); }
.ticket__film { font-family: var(--f-display); font-style: italic; font-size: clamp(34px, 3.8vw, 56px); line-height: 1.02; margin-top: 30px; text-wrap: balance; }
.ticket__datum { margin-top: 14px; font-size: 17px; font-weight: 500; }
.ticket__zeit { font-size: 15px; color: var(--tinte-2); }
.ticket__name { margin-top: 26px; font-size: 15px; }
.ticket__name .label { color: var(--messing); font-size: 10.5px; margin-right: 8px; }
.ticket__abriss {
  padding: 28px 26px; display: flex; flex-direction: column; justify-content: space-between;
  background-image: linear-gradient(to bottom, rgba(21, 32, 59, .32) 50%, transparent 0);
  background-size: 1.5px 9px; background-repeat: repeat-y;
}
.ticket__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--tinte); padding-top: 14px; margin-top: 18px; }
.ticket__total .label { color: var(--tinte); }
.ticket__total span:last-child { font-family: var(--f-display); font-size: 40px; line-height: 1; }
.js .erfolg.ist-neu .ticket { animation: drucken 1.1s var(--ease-film) both; }
@keyframes drucken {
  from { clip-path: inset(0 0 100% 0); transform: translateY(-24px); }
  to { clip-path: inset(0 0 0 0); transform: none; }
}

/* 6 Wetter & Gut zu wissen */
.wetter { position: relative; background: var(--tief); padding-block: clamp(20px, 3.2vw, 48px); }
.wetter__bild { aspect-ratio: 2.39 / 1; overflow: hidden; position: relative; }
.wetter__bild img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: grayscale(1) contrast(1.05) brightness(.9); }
.wetter__bild::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 11, 24, .92) 0%, rgba(6, 11, 24, .5) 32%, rgba(6, 11, 24, 0) 58%),
              linear-gradient(to right, rgba(12, 22, 49, .55), rgba(12, 22, 49, 0) 60%);
}
.wetter__text { position: absolute; left: 0; right: 0; bottom: clamp(44px, 6vw, 100px); }
.wetter__satz { font-family: var(--f-display); font-weight: 400; font-size: clamp(48px, 7.4vw, 124px); line-height: .92; letter-spacing: -.025em; max-width: 12ch; }
.wetter__text p { margin-top: 18px; max-width: 44ch; color: var(--creme-2); }

.wissen { padding-block: clamp(90px, 11vw, 170px); background: var(--nacht); }
.wissen__raster { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 28px); align-items: start; }
.wissen__titel { grid-column: 1 / 5; position: sticky; top: calc(var(--nav-h) + 32px); max-width: 6ch; }
.wissen__liste { grid-column: 6 / 13; }
.wissen__punkt { display: grid; grid-template-columns: minmax(150px, 3fr) minmax(0, 7fr); gap: 24px; padding-block: 24px 26px; border-top: 1px solid var(--linie); }
.wissen__punkt:last-child { border-bottom: 1px solid var(--linie); }
.wissen__punkt dt { font: 600 12px/1.6 var(--f-text); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); padding-top: 3px; }
.wissen__punkt dd { color: var(--creme-2); max-width: 54ch; }

/* 7 Abspann */
.abspann { position: relative; background: var(--tief); overflow: hidden; }
.abspann__himmel { position: absolute; inset: 0; }
.abspann__himmel img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; opacity: .5; }
.abspann__himmel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--nacht) 0%, rgba(6, 11, 24, .35) 30%, rgba(6, 11, 24, .45) 70%, var(--tief) 100%);
}
.abspann__fenster {
  position: relative; height: min(84svh, 780px); overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 72%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 72%, transparent 100%);
}
.abspann__rolle { position: absolute; left: 0; right: 0; top: 0; padding-inline: var(--rand); text-align: center; will-change: transform; }
.abspann__marke { font-family: var(--f-display); font-style: italic; font-size: clamp(56px, 8vw, 120px); line-height: 1; letter-spacing: -.02em; }
.abspann__unter { margin-top: 14px; color: var(--creme-2); font-size: 15px; }
.credits { margin-top: clamp(80px, 10vw, 130px); }
.credits__titel { font: 600 12px/1.3 var(--f-text); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.credits dl > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: clamp(20px, 3vw, 40px); margin-block: 14px; }
.credits dt { text-align: right; font: 600 11.5px/2 var(--f-text); letter-spacing: .18em; text-transform: uppercase; color: var(--blau); }
.credits dd { text-align: left; font-family: var(--f-display); font-size: clamp(18px, 1.7vw, 23px); line-height: 1.35; max-width: 30ch; }
.credits__dank { font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px); line-height: 1.5; }
.abspann__ende { margin-top: clamp(110px, 14vw, 180px); padding-bottom: 20px; font-family: var(--f-display); font-style: italic; font-size: clamp(30px, 3.4vw, 48px); }
.abspann__steuerung { position: relative; display: flex; justify-content: center; margin-top: 20px; }
.abspann__steuerung .textknopf { color: var(--creme-2); font-size: 11px; }

.fuss {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px 40px;
  padding-top: clamp(48px, 6vw, 80px); padding-bottom: 36px; margin-top: clamp(24px, 3vw, 40px);
}
.fuss::before { content: ""; position: absolute; left: var(--rand); right: var(--rand); top: 0; height: 1px; background: var(--linie); }
.fuss__marke { font-family: var(--f-display); font-size: 30px; text-decoration: none; }
.fuss__links { display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center; }
.fuss__links a { font-size: 14px; color: var(--creme-2); text-decoration: none; }
.fuss__links a:hover { color: var(--creme); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.fuss__hinweis { font-size: 12px; color: rgba(195, 186, 165, .7); }

/* Laptop */
@media (max-width: 1180px) {
  .nav__links a.nav__opt:first-child { display: none; }
  .einstellung--3 { margin-top: clamp(100px, 12vw, 180px); }
  .preise__kopf { grid-column: 1 / 6; }
  .billette { grid-column: 6 / 13; }
}

/* Tablet */
@media (max-width: 980px) {
  .nav__links .nav__opt { display: none; }
  .hero__leiste { grid-template-columns: 1fr auto; }
  .hero__saison { grid-column: 1 / -1; }
  .monate { grid-template-columns: minmax(0, 1fr); }
  .monate.ist-einzeln .abende { grid-template-columns: minmax(0, 1fr); }
  .monat + .monat { margin-top: 40px; }
  .preise__kopf { grid-column: 1 / -1; position: static; display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
  .preise__kopf .plan { grid-column: 2; grid-row: 1 / 4; margin-top: 0; }
  .billette { grid-column: 1 / -1; margin-top: 56px; max-width: 680px; }
  .res { grid-template-columns: minmax(0, 1fr); grid-template-areas: "abend" "plaetze" "billett" "angaben"; }
  .res__billett { position: static; margin-bottom: clamp(40px, 5vw, 60px); }
  .res__kopf .h2, .res__kopf .lead { grid-column: 1 / -1; }
  .res__kopf .lead { margin-top: 20px; }
  .erfolg { grid-template-columns: minmax(0, 1fr); }
  .erfolg__neu { grid-column: 1; }
  .wissen__titel { grid-column: 1 / -1; position: static; max-width: none; margin-bottom: 36px; }
  .wissen__liste { grid-column: 1 / -1; }
}

/* Mobile: eigene Komposition */
@media (max-width: 760px) {
  :root { --nav-h: 60px; }
  body { font-size: 16px; }
  .nav { gap: 14px; }
  .nav__marke { font-size: 23px; }
  .nav__links a { font-size: 13px; }

  .hero { min-height: 0; }
  .hero__bild { height: min(112vw, calc(100svh - var(--nav-h) - 250px)); min-height: 380px; }
  .hero__bild img { object-position: 50% 30%; }
  .hero__titelzeile { margin-top: -62px; }
  .hero__ort { font-size: 11px; margin-bottom: 8px; }
  .hero__titel { font-size: clamp(60px, 19.4vw, 96px); letter-spacing: -.04em; line-height: .8; }
  .hero__leiste { grid-template-columns: minmax(0, 1fr); gap: 22px; padding-top: 22px; padding-bottom: 32px; }
  .hero__saison { font-size: 15px; }
  .countdown { padding-block: 16px; border-block: 1px solid var(--linie); }
  .countdown__zahlen { justify-content: space-between; }
  .cd { flex-direction: column; align-items: flex-start; gap: 2px; }
  .cd__z { min-width: 0; text-align: left; font-size: 34px; }
  .cd__z[data-cd="t"] { min-width: 0; }
  .hero__leiste .knopf { width: 100%; }

  .erlebnis { padding-top: 88px; }
  .erlebnis__raster { grid-template-columns: repeat(6, minmax(0, 1fr)); column-gap: 12px; }
  .erlebnis__kopf { grid-column: 1 / -1; grid-row: auto; padding-top: 0; }
  .erlebnis__kopf .h2 { font-size: 46px; max-width: 9ch; margin-bottom: 18px; }
  .einstellung--1 { grid-column: 1 / -1; grid-row: auto; margin: 44px calc(-1 * var(--rand)) 0; }
  .einstellung--1 .einstellung__bild { aspect-ratio: 4 / 3; }
  .einstellung--1 .einstellung__text { padding-inline: var(--rand); }
  .einstellung__text { flex-direction: column; gap: 6px; margin-top: 14px; }
  .einstellung--2 { grid-column: 1 / -1; grid-row: auto; margin-top: 56px; display: grid; grid-template-columns: 58% minmax(0, 1fr); column-gap: 16px; align-items: end; }
  .einstellung--2 .einstellung__text { margin-top: 0; padding-bottom: 4px; }
  .einstellung--3 { grid-column: 1 / -1; grid-row: auto; margin-top: 56px; }
  .einstellung--3 .einstellung__bild { aspect-ratio: 900 / 589; margin-right: calc(-1 * var(--rand)); }
  .zeit { font-size: 34px; }

  .filmab { margin-top: 72px; padding-block: 16px; }
  .filmab__bild { aspect-ratio: 4 / 3; }
  .filmab__text { bottom: 30px; grid-template-columns: 1fr; }
  .filmab__text .zeit { grid-row: auto; padding-bottom: 6px; }
  .filmab__satz { font-size: 64px; justify-self: start; }
  .filmab__klein { grid-column: 1; justify-self: start; margin-top: 8px; }

  .programm { padding-top: 88px; padding-bottom: 72px; }
  .programm__kopf { position: static; flex-direction: column; gap: 14px; padding-inline: 0; }
  .programm__intro { text-align: left; padding-top: 0; font-size: 15px; }
  .projektion { height: 170px; margin-top: 28px; }
  .programm__buehne { padding-inline: 12px; }
  .programm__kopf { padding-inline: calc(var(--rand) - 12px); }
  .leinwand { border-width: 5px; }
  .leinwand__inhalt { padding: 18px 14px 22px; }
  .filter { flex-direction: column; gap: 4px; }
  .filter__gruppe { gap: 0 16px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: -14px; padding-inline: 14px; }
  .filter__gruppe::-webkit-scrollbar { display: none; }
  .filter__gruppe:last-child { -webkit-mask-image: linear-gradient(to right, #000 82%, transparent); mask-image: linear-gradient(to right, #000 82%, transparent); }
  .filter__knopf { flex-shrink: 0; padding-block: 10px 8px; }
  .monat__kopf { flex-direction: column; align-items: flex-start; gap: 6px; }
  .monat__info { text-align: left; }
  .abend__knopf { grid-template-columns: 40px minmax(0, 1fr); column-gap: 12px; row-gap: 10px; padding: 14px 4px; align-items: start; }
  .abend__tag { font-size: 30px; }
  .abend__plaetze { grid-column: 2; gap: 6px; }
  .punkte__zahl { min-width: 0; }
  .abend__titel { font-size: 21px; }
  .programm__legende { justify-content: flex-start; text-align: left; padding-inline: calc(var(--rand) - 12px); font-size: 13px; }

  .preise { padding-block: 88px; }
  .preise__kopf { display: block; }
  .preise__kopf .plan { margin-top: 36px; max-width: none; }
  .billette { margin-top: 48px; gap: 18px; }
  .billett { --abriss: 104px; min-height: 176px; }
  .billett:nth-child(n) { margin-inline: 0; }
  .billett:nth-child(2) { margin-left: 14px; margin-right: -6px; }
  .billett:nth-child(4) { margin-left: 10px; }
  .billett__haupt { padding: 16px 16px 14px 20px; }
  .billett__kopf span:last-child { display: none; }
  .billett__name { font-size: 28px; padding-top: 12px; }
  .billett__text { font-size: 14px; }
  .billett__fuss { margin-top: 12px; font-size: 10px; letter-spacing: .12em; }
  .billett__preis { font-size: 42px; }

  .reservieren { padding-block: 88px; }
  .tage__liste { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .tag { padding-block: 9px 8px; }
  .platz { gap: 12px; }
  .platz__info { flex-direction: column; row-gap: 1px; }
  .platz__frei { flex-basis: auto; font-size: 12.5px; }
  .platz__name { font-size: 16px; line-height: 1.3; }
  .platz__preis { font-size: 14px; }
  .zaehler__knopf { width: 44px; height: 44px; }
  .zaehler__zahl { width: 38px; }
  .stub__oben { padding: 22px 20px; }
  .stub__unten { padding: 18px 20px 22px; }
  .ticket { grid-template-columns: 1fr; --abriss: 0px;
    -webkit-mask: none; mask: none; }
  .ticket__abriss { background-image: linear-gradient(to right, rgba(21, 32, 59, .32) 50%, transparent 0); background-size: 9px 1.5px; background-repeat: repeat-x; }
  .ticket__haupt { padding: 22px 20px; }

  .wetter { padding-block: 14px; }
  .wetter__bild { aspect-ratio: 4 / 5; }
  .wetter__bild img { object-position: 50% 20%; }
  .wetter__text { bottom: 36px; }
  .wetter__satz { font-size: 52px; }

  .wissen { padding-block: 80px; }
  .wissen__punkt { grid-template-columns: 1fr; gap: 6px; padding-block: 18px 20px; }

  .abspann__fenster { height: 78svh; }
  .credits dl > div { column-gap: 14px; }
  .credits dt { font-size: 10.5px; letter-spacing: .12em; line-height: 1.9; }
  .credits dd { font-size: 17px; }
  .fuss { grid-template-columns: 1fr; justify-items: start; gap: 18px; }
  .fuss__links { justify-content: flex-start; gap: 6px 20px; }
}

@media (max-width: 400px) {
  .nav__links { display: none; }
}

/* Reduzierte Bewegung: Inhalte sichtbar, räumliche Bewegung aus */
@media (prefers-reduced-motion: reduce) {
  .js .hero__bild img, .js .blende .einstellung__bild img, .js .blende .filmab__bild img { clip-path: none; transform: none; transition: none; }
  .js .hero__titel, .js .hero__ort { transform: none; transition: opacity .6s; }
  .js .projektion__strahl, .js .projektion__kegel { transform: none; transition: opacity .8s; }
  .js .programm.ist-an .leinwand__licht { animation: none; opacity: 1; transition: opacity .8s; }
  .js .leinwand__licht { transition: opacity .8s; }
  .js .leinwand__inhalt { filter: none !important; transition: opacity .8s .3s; }
  .programm.ist-an .projektion__staub i { animation: none; }
  .billett, .billett:hover { transition: none; }
  .js .erfolg.ist-neu .ticket { animation: none; }
  .abspann__fenster { height: auto; -webkit-mask-image: none; mask-image: none; padding-block: 100px 40px; }
  .abspann__rolle { position: static; transform: none !important; }
  .abspann__steuerung { display: none; }
}

/* Review-Ansicht für Ganzseiten-Screenshots (?review=1) */
.review .nav { position: absolute; }
.review .hero { min-height: 0; }
.review .hero__bild { height: calc(100vw / 2.39); }
.review *, .review *::before, .review *::after { transition-duration: 0s !important; transition-delay: 0s !important; animation-duration: 0s !important; animation-delay: 0s !important; }
.review .abspann__fenster { height: auto; -webkit-mask-image: none; mask-image: none; padding-block: 120px 40px; }
.review .abspann__rolle { position: static; transform: none !important; }
.review .abspann__steuerung { display: none; }
@media (max-width: 760px) {
  .review .hero__bild { height: 112vw; }
  .review .wetter__bild { aspect-ratio: 4 / 5; }
}
