/* Entwurf 3 „Kino“ – dunkel, immersiv, Big Shoulders Display + Inter Tight */
:root {
  --display: "Big Shoulders Display", Impact, sans-serif;
  --sans: "Inter Tight", system-ui, sans-serif;
  --bg: #060D16;
  --bg2: #0B1B2E;
  --text: #EEF2F7;
  --mute: #8C9AAD;
  --glow: #3D8FE0;
  --pad: clamp(16px, 4vw, 64px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 18px/1.6 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Kopf */
.top { position: fixed; inset: 0 0 auto; z-index: 40; display: flex; align-items: center; justify-content: space-between; padding: 20px var(--pad); mix-blend-mode: normal; transition: background .4s, padding .4s; }
.top.is-solid { background: rgba(6, 13, 22, .82); backdrop-filter: blur(14px); padding-block: 12px; }
.top__logo { height: 64px; padding: 7px 11px; transition: height .4s; box-shadow: 0 6px 20px -8px rgba(0,0,0,.5); }
.top.is-solid .top__logo { height: 52px; }
.top__nav { display: flex; gap: 32px; align-items: center; font-size: 15px; font-weight: 500; }
.top__nav a { position: relative; }
.top__nav a:not(.top__tel)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: currentColor; transition: right .4s var(--ease); }
.top__nav a:hover::after { right: 0; }
.top__tel { border: 1px solid rgba(255,255,255,.5); padding: 9px 16px; border-radius: 999px; }
.top__tel:hover { background: #fff; color: var(--bg); }

/* Bühne */
.stage { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: #000; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.slide.is-on { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.slide.is-on img { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.15) translate(1%, 1%); } to { transform: scale(1.02) translate(-1%, -1%); } }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%), linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 45%); }
.slide__cap { position: absolute; z-index: 2; left: var(--pad); bottom: clamp(90px, 14vh, 150px); max-width: min(1100px, 80vw); display: flex; flex-direction: column; gap: 14px; }
.slide__meta { font-size: 14px; letter-spacing: .24em; text-transform: uppercase; color: #cfd8e3; opacity: 0; transform: translateY(20px); transition: all .8s var(--ease) .3s; }
.slide__title { font: 800 clamp(48px, 8.4vw, 150px)/.86 var(--display); text-transform: uppercase; letter-spacing: -.005em; opacity: 0; transform: translateY(40px); transition: all 1s var(--ease) .45s; }
.slide__title.is-long, .xcover h1.is-long { font-size: clamp(40px, 5.4vw, 92px); max-width: 22ch; }
.slide__price { font-size: 20px; font-weight: 600; opacity: 0; transition: opacity .8s ease .8s; display: flex; gap: 24px; align-items: baseline; }
.slide__price em { font-style: normal; font-size: 14px; font-weight: 500; color: var(--glow); letter-spacing: .08em; }
.slide.is-on .slide__meta, .slide.is-on .slide__title, .slide.is-on .slide__price { opacity: 1; transform: none; }
.stage__ui { position: absolute; z-index: 5; right: var(--pad); bottom: 44px; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.stage__count { font: 600 16px var(--display); letter-spacing: .2em; color: #cfd8e3; }
.stage__count b { color: #fff; font-size: 30px; }
.stage__bars { display: flex; gap: 6px; }
.stage__bars button { width: 44px; height: 14px; padding: 6px 0; background: none; border: 0; cursor: pointer; }
.stage__bars i { display: block; height: 2px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.stage__bars i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.stage__bars button.done i::after { transform: scaleX(1); }
.stage__bars button.run i::after { animation: bar 7s linear forwards; }
@keyframes bar { to { transform: scaleX(1); } }
.stage__down { position: absolute; z-index: 5; left: 50%; bottom: 28px; transform: translateX(-50%); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: #cfd8e3; padding-bottom: 40px; }
.stage__down::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 1px; height: 32px; background: #fff; animation: drip 2s ease-in-out infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* Prolog */
.prolog { padding: clamp(100px, 18vh, 220px) var(--pad); max-width: 1500px; }
.reveal { font: 600 clamp(32px, 4.6vw, 76px)/1.08 var(--sans); letter-spacing: -.03em; margin: 0 0 56px; }
.reveal .w { color: rgba(238, 242, 247, .16); transition: color .5s; }
.reveal .w.lit { color: var(--text); }
.reveal b .w.lit { color: var(--glow); }
.prolog__sig { display: flex; gap: 40px; flex-wrap: wrap; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); border-top: 1px solid #1d2a3a; padding-top: 24px; }
.prolog__sig span:first-child { color: var(--text); }

/* Filmstreifen (vertikales Scrollen → horizontale Fahrt) */
.film { position: relative; background: var(--bg2); }
.film__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.film__head { position: absolute; top: clamp(80px, 11vh, 110px); left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; align-items: flex-end; z-index: 2; pointer-events: none; }
.film__head h2 { font: 800 clamp(40px, 4.6vw, 80px)/.85 var(--display); text-transform: uppercase; margin: 0; }
.film__head p { color: var(--mute); margin: 0; font-size: 15px; }
.film__track { display: flex; gap: 28px; padding: 0 var(--pad); margin-top: 24vh; will-change: transform; width: max-content; }
.frame { position: relative; width: clamp(230px, 20vw, 320px); flex: none; display: block; }
.frame__no { position: absolute; top: -34px; left: 0; font: 700 18px var(--display); letter-spacing: .2em; color: var(--mute); }
.frame__img { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #111c2a; border-radius: 2px; }
.frame__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 1.2s var(--ease), filter .8s; filter: brightness(.82) saturate(.9); }
.frame:hover .frame__img img { transform: scale(1); filter: brightness(1) saturate(1.05); }
.frame__badge { position: absolute; top: 14px; left: 14px; background: var(--hi-red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 6px 10px; }
.frame__cap { padding-top: 16px; }
.frame__loc { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--glow); }
.frame h3 { font: 700 clamp(22px, 1.8vw, 28px)/1.05 var(--display); text-transform: uppercase; margin: 6px 0 10px; letter-spacing: .01em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.frame__facts { display: block; font-size: 14px; color: var(--mute); }
.frame__price { display: block; font-weight: 600; margin-top: 4px; }
.frame--end { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; aspect-ratio: 3/4; border: 1px solid #25364a; padding: 32px; align-self: flex-start; }
.frame--end p { font: 800 44px/.95 var(--display); text-transform: uppercase; margin: 0 0 20px; }
.frame--end a { color: var(--glow); font-weight: 600; }
.film__progress { position: absolute; left: var(--pad); right: var(--pad); bottom: 40px; height: 1px; background: #25364a; }
.film__progress i { display: block; height: 100%; background: #fff; transform-origin: left; transform: scaleX(0); }

/* Szenen (Leistungen) */
.scenes { display: grid; grid-template-columns: 1fr 1fr; }
.scenes__visual { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.scenes__img { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease, transform 1.6s var(--ease); transform: scale(1.06); }
.scenes__img.is-on { opacity: 1; transform: none; }
.scenes__img img { width: 100%; height: 100%; object-fit: cover; }
.scenes__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--bg)); }
.scene { min-height: 90vh; display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad); opacity: .25; transition: opacity .6s; }
.scene.is-on { opacity: 1; }
.scene__no { font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--glow); }
.scene h2 { font: 800 clamp(52px, 7vw, 124px)/.86 var(--display); text-transform: uppercase; margin: 16px 0 24px; }
.scene p { font-size: 21px; color: #c3cedb; max-width: 30ch; margin: 0; }

/* Besetzung */
.cast { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.cast > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: grayscale(.4) brightness(.6); }
.cast::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg) 0%, transparent 60%); }
.cast__text { position: relative; z-index: 2; padding: var(--pad); max-width: 900px; }
.cast h2 { font: 800 clamp(56px, 9vw, 160px)/.84 var(--display); text-transform: uppercase; margin: 16px 0 24px; }
.cast p { font-size: 20px; color: #c3cedb; max-width: 44ch; }

/* Abspann */
.credits { padding: clamp(100px, 16vh, 200px) var(--pad) 32px; background: radial-gradient(1200px 600px at 20% 0%, rgba(0, 90, 171, .35), transparent 70%), var(--bg); }
.credits__pre { font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--glow); margin: 0; }
.credits h2 { font: 800 clamp(90px, 18vw, 320px)/.8 var(--display); text-transform: uppercase; margin: 20px 0 64px; letter-spacing: -.01em; }
.credits h2 span { color: var(--hi-red); }
.credits__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid #25364a; }
.credits__links a { padding: 28px 0; font: 700 clamp(22px, 2.4vw, 36px) var(--display); letter-spacing: .02em; transition: color .3s; }
.credits__links a:hover { color: var(--glow); }
.credits__links small { display: block; font: 500 12px var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.credits__fine { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 80px; font-size: 13px; color: var(--mute); }

/* ---------- Exposé ---------- */
.xcover { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.xcover img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 14s linear forwards; }
.xcover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,13,22,.95) 0%, rgba(6,13,22,.2) 50%, rgba(6,13,22,.4) 100%); }
.xcover__cap { position: absolute; z-index: 2; left: var(--pad); right: var(--pad); bottom: clamp(40px, 8vh, 90px); }
.xcover h1 { font: 800 clamp(48px, 8vw, 140px)/.86 var(--display); text-transform: uppercase; margin: 14px 0 24px; max-width: 16ch; }
.xcover__row { display: flex; gap: 48px; flex-wrap: wrap; align-items: baseline; }
.xcover__row div small { display: block; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.xcover__row div b { font: 700 clamp(24px, 2.4vw, 36px) var(--display); letter-spacing: .02em; }
.xsplit { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); }
.xsplit__pics img { width: 100%; height: auto; margin-bottom: 6px; cursor: zoom-in; }
.xsplit__info { position: sticky; top: 0; height: 100vh; overflow-y: auto; padding: 110px var(--pad) 40px; background: var(--bg2); scrollbar-width: none; }
.xsplit__info h2 { font: 800 44px/.9 var(--display); text-transform: uppercase; margin: 0 0 24px; }
.xfacts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #25364a; border: 1px solid #25364a; margin-bottom: 32px; }
.xfacts div { background: var(--bg2); padding: 14px 16px; }
.xfacts small { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.xfacts b { font: 700 22px var(--display); letter-spacing: .02em; }
.xbtn { display: block; text-align: center; background: #fff; color: var(--bg); font-weight: 700; padding: 18px; border-radius: 999px; margin-bottom: 12px; transition: background .3s; }
.xbtn:hover { background: var(--glow); color: #fff; }
.xbtn--line { background: transparent; color: #fff; border: 1px solid #fff; }
.xenergy { display: flex; gap: 3px; margin: 10px 0; }
.xenergy span { flex: 1; text-align: center; font-size: 12px; font-weight: 700; padding: 6px 0; color: #fff; opacity: .25; }
.xenergy span.on { opacity: 1; box-shadow: 0 0 0 2px #fff; }
.xtext { padding: clamp(80px, 12vh, 160px) var(--pad); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: var(--pad); border-top: 1px solid #1d2a3a; }
.xtext h2 { font: 800 clamp(40px, 5vw, 84px)/.88 var(--display); text-transform: uppercase; margin: 0; position: sticky; top: 110px; }
.xtext p { font-size: 20px; line-height: 1.7; color: #c3cedb; margin: 0 0 1em; max-width: 64ch; }
.xtext ul { padding: 0; list-style: none; columns: 2; column-gap: 40px; }
.xtext li { padding: 10px 0; border-bottom: 1px solid #1d2a3a; break-inside: avoid; color: #c3cedb; }
.xtext li::before { content: "—"; color: var(--glow); margin-right: 12px; }
.xback { position: fixed; z-index: 45; left: 50%; bottom: 20px; transform: translateX(-50%); background: rgba(6,13,22,.8); backdrop-filter: blur(10px); border: 1px solid #25364a; padding: 10px 20px; border-radius: 999px; font-size: 14px; }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 100; background: #000; display: none; align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 100vw; max-height: 100vh; object-fit: contain; }
.lb button { position: absolute; background: none; border: 0; color: #fff; font: 700 20px var(--display); letter-spacing: .2em; cursor: pointer; padding: 20px; text-transform: uppercase; }
.lb .lb-x { top: 10px; right: 10px; } .lb .lb-p { left: 10px; } .lb .lb-n { right: 10px; }
.lb .lb-c { position: absolute; bottom: 20px; font: 600 14px var(--display); letter-spacing: .25em; color: #aaa; }

@media (max-width: 900px) {
  .top__nav a:not(.top__tel) { display: none; }
  .top__logo { height: 50px; }
  .film { height: auto !important; }
  .film__sticky { position: static; height: auto; padding: 100px 0 60px; }
  .film__head { position: static; margin-bottom: 40px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .film__track { transform: none !important; overflow-x: auto; width: 100%; margin: 0; padding-top: 40px; scroll-snap-type: x mandatory; }
  .frame { scroll-snap-align: start; width: 78vw; }
  .film__progress { display: none; }
  .scenes, .xsplit, .xtext { grid-template-columns: 1fr; }
  .scenes__visual { height: 50vh; top: 0; z-index: 1; }
  .scene { min-height: 60vh; background: var(--bg); }
  .credits__links { grid-template-columns: 1fr; }
  .xsplit__info { position: static; height: auto; padding-top: 40px; }
  .xtext h2 { position: static; }
  .xtext ul { columns: 1; }
  .stage__ui { bottom: 90px; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
