/* ==========================================================================
   KIOSK INDUSTRY — Hamburg
   Farbwelt: Anthrazit, Cremeweiß, das warme Gelb der Leuchtschrift, wenig Rot.
   Tag/Nacht: <html data-light="day|night"> wird nach Sonnenstand gesetzt.
   ========================================================================== */

/* ---------- Schriften – liegen auf dem eigenen Server (assets/fonts),
   keine Verbindung zu Google. Lizenzen: assets/fonts/LICENSE-*.txt */
@font-face {
  font-family: 'Big Shoulders Display';
  src: url('../fonts/big-shoulders-display-latin-800-normal.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Big Shoulders Display';
  src: url('../fonts/big-shoulders-display-latin-900-normal.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/source-serif-4-latin-opsz-normal.woff2') format('woff2');
  font-weight: 200 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/source-serif-4-latin-wght-italic.woff2') format('woff2');
  font-weight: 200 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  src: url('../fonts/schibsted-grotesk-latin-wght-normal.woff2') format('woff2');
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Permanent Marker';
  src: url('../fonts/permanent-marker-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- Registrierte Farben (damit der Tag/Nacht-Wechsel weich blendet) */
@property --bg   { syntax: '<color>'; inherits: true; initial-value: #121110; }
@property --bg-2 { syntax: '<color>'; inherits: true; initial-value: #1b1a17; }
@property --bg-3 { syntax: '<color>'; inherits: true; initial-value: #25231f; }
@property --fg   { syntax: '<color>'; inherits: true; initial-value: #f1e9d8; }
@property --gold { syntax: '<color>'; inherits: true; initial-value: #f7b533; }
@property --gold-text { syntax: '<color>'; inherits: true; initial-value: #f7b533; }
@property --glow-a { syntax: '<number>'; inherits: true; initial-value: 1; }

:root {
  --f-display: 'Big Shoulders Display', 'Oswald', 'Arial Narrow', sans-serif;
  --f-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --f-text: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --f-hand: 'Permanent Marker', 'Marker Felt', 'Comic Sans MS', cursive;

  --g: clamp(16px, 2.3vw, 36px);
  --inset: clamp(8px, .9vw, 14px);
  --sec: clamp(56px, 10vh, 120px);
  --ease: cubic-bezier(.22, .7, .12, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --ink: #121110;
  --cream: #f1e9d8;
  --led: #ffb22e;
  --red: #d23b2b;

  /* Nacht */
  --bg: #121110;
  --bg-2: #1b1a17;
  --bg-3: #25231f;
  --fg: #f1e9d8;
  --gold: #f7b533;
  --gold-text: #f7b533;
  --glow-a: 1;
  --sign-face: #3a2914;

  transition: --bg 1.8s var(--ease), --bg-2 1.8s var(--ease), --bg-3 1.8s var(--ease),
              --fg 1.8s var(--ease), --gold 1.8s var(--ease), --gold-text 1.8s var(--ease), --glow-a 1.8s var(--ease);
}

:root[data-light="day"] {
  --bg: #edeae3;
  --bg-2: #e3dfd5;
  --bg-3: #d6d0c3;
  --fg: #161513;
  --gold: #eba823;
  --gold-text: #7a5a12; /* tagsüber: Buchstaben wie das unbeleuchtete Schild */
  --glow-a: 0;
  --sign-face: #161513;
}

/* abgeleitete Töne */
:root {
  --fg-2: color-mix(in srgb, var(--fg) 66%, transparent);
  --fg-3: color-mix(in srgb, var(--fg) 40%, transparent);
  --line: color-mix(in srgb, var(--fg) 15%, transparent);
  --glow: 0 0 .04em rgb(255 214 140 / calc(.6 * var(--glow-a))),
          0 0 .2em rgb(247 170 40 / calc(.38 * var(--glow-a))),
          0 0 .7em rgb(247 150 20 / calc(.22 * var(--glow-a)));
}

/* ---------- Basis */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 16px/1.5 var(--f-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, figure, ul, ol, dl, dd, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
[hidden] { display: none !important; }
[data-fit] { white-space: nowrap; }

.skip {
  position: fixed; left: 12px; top: 12px; z-index: 300;
  padding: 10px 14px; background: var(--gold); color: var(--ink);
  font: 600 13px/1 var(--f-text); text-decoration: none;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

.label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.wordmark {
  font-family: var(--f-serif);
  font-weight: 600;
  font-style: normal;
  font-variation-settings: 'opsz' 60;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Filmkorn, nur auf Desktop (auf dem Handy zählt jede Millisekunde) */
@media (hover: hover) and (pointer: fine) {
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    opacity: .09;
    mix-blend-mode: overlay;
    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 .5 0 0 0 0 .5 0 0 0 0 .5 0 0 0 1.6 -.3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
}

/* ---------- Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 1s var(--ease), transform 1.3s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Cursor (Desktop) */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .has-cursor, .has-cursor * { cursor: none !important; }
  .has-cursor .cursor {
    display: block;
    position: fixed;
    left: 0; top: 0;
    z-index: 400;
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    transform: translate3d(var(--cx, -99px), var(--cy, -99px), 0);
    transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease),
                background-color .3s, border-color .3s, opacity .3s;
  }
  .has-cursor .cursor.is-link {
    width: 36px; height: 36px; margin: -18px 0 0 -18px;
    background: transparent;
    border: 1px solid var(--gold);
  }
  .has-cursor .cursor.is-view {
    width: 64px; height: 64px; margin: -32px 0 0 -32px;
    background: color-mix(in srgb, var(--gold) 92%, transparent);
  }
  .has-cursor .cursor.is-view::after {
    content: 'View';
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font: 500 10px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase;
    color: var(--ink);
  }
  .has-cursor .cursor.is-off { opacity: 0; }
}

/* ---------- Neon-Flackern (OPEN) */
.flicker { display: inline-block; }
.flicker:hover, .flicker.is-flickering { animation: flicker 1.5s linear 1; }
@keyframes flicker {
  0%, 11%, 13%, 29%, 33%, 58%, 62%, 100% { opacity: 1; }
  12% { opacity: .2; }
  30%, 32% { opacity: .35; }
  60% { opacity: .55; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  z-index: 80;
  left: 0; right: 0; top: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 54px;
  padding: 0 var(--g);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-bottom: 1px solid var(--line);
  font: 600 12px/1 var(--f-text);
  letter-spacing: .09em;
  text-transform: uppercase;
  transform: translate3d(0, -102%, 0);
  transition: transform .7s var(--ease);
}
.nav.is-visible { transform: none; }
.nav a { text-decoration: none; }
.nav__brand {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .07em;
  font-variation-settings: 'opsz' 60;
}
.nav__list { display: flex; gap: clamp(16px, 2.2vw, 34px); margin-left: auto; }
.nav__list a { position: relative; display: block; padding: 8px 0; opacity: .62; transition: opacity .25s; }
.nav__list a:hover, .nav__list a.is-active { opacity: 1; }
.nav__list a.is-active::after {
  content: '';
  position: absolute; left: 50%; bottom: -2px;
  width: 4px; height: 4px; margin-left: -2px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgb(247 181 51 / calc(.9 * var(--glow-a)));
}
.nav__status {
  display: flex; align-items: center; gap: 0;
  padding-left: 22px;
  border-left: 1px solid var(--line);
  font: 500 11px/1 var(--f-mono);
  letter-spacing: .12em;
  white-space: nowrap;
}
.dot {
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgb(247 181 51 / calc(.9 * var(--glow-a)));
}
.is-closed .dot { background: var(--red); box-shadow: none; }

@media (max-width: 899px) {
  .nav {
    top: auto; bottom: 0;
    height: auto;
    padding: 0 0 env(safe-area-inset-bottom);
    border-bottom: 0;
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    transform: translate3d(0, 102%, 0);
  }
  .nav__brand, .nav__status { display: none; }
  .nav__list { width: 100%; margin: 0; gap: 0; }
  .nav__list li { flex: 1 1 0; min-width: 0; }
  .nav__list a {
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    padding: 11px 0 12px;
    font: 500 10px/1 var(--f-mono);
    letter-spacing: .03em;
    white-space: nowrap;
    opacity: .6;
  }
  .nav__list a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: .3;
    transition: background-color .3s, opacity .3s, box-shadow .3s;
  }
  .nav__list a.is-active::before {
    background: var(--gold);
    opacity: 1;
    box-shadow: 0 0 8px rgb(247 181 51 / calc(.9 * var(--glow-a)));
  }
  .nav__list a.is-active::after { display: none; }
}
@media (max-width: 359px) {
  .nav__list a { font-size: 9px; letter-spacing: 0; }
}

/* ==========================================================================
   01 — HERO
   ========================================================================== */
.hero {
  --hp: 0;
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  padding: var(--inset);
}
.hero__frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #4a3c33;
  isolation: isolate;
}
.hero__frame::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(12 10 8 / .66) 0%, rgb(12 10 8 / .22) 26%, rgb(12 10 8 / 0) 44%),
    linear-gradient(0deg, rgb(12 10 8 / .6) 0%, rgb(12 10 8 / 0) 24%);
}
.hero__media {
  position: absolute; inset: 0;
  animation: heroIn 2.2s var(--ease-out) both;
}
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img {
  object-fit: cover;
  object-position: 50% 42%;
  transform: translate3d(0, calc(var(--hp) * 15%), 0) scale(calc(1.02 + var(--hp) * .07));
  transform-origin: 50% 100%;
  will-change: transform;
}
@keyframes heroIn { from { opacity: 0; transform: scale(1.1); } }

.hero__type {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; top: 0;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(18px, 3.6vh, 44px) var(--g) 0;
  color: var(--cream);
  transform: translate3d(0, calc(var(--hp) * -14vh), 0);
  opacity: calc(1 - var(--hp) * 1.7);
}
.hero__title {
  font-size: 9.6vw;
  line-height: .92;
  letter-spacing: .045em;
  text-align: center;
  white-space: nowrap;
  text-shadow: var(--glow);
}
:root[data-light="night"] .hero__title { animation: signOn 2.4s linear 1s both; }
@keyframes signOn {
  0%   { text-shadow: none; opacity: .82; }
  7%   { text-shadow: var(--glow); opacity: 1; }
  9%   { text-shadow: none; opacity: .82; }
  16%  { text-shadow: var(--glow); opacity: 1; }
  19%  { text-shadow: none; opacity: .88; }
  30%, 100% { text-shadow: var(--glow); opacity: 1; }
}
.hero__word { display: inline-block; overflow: hidden; padding: .06em .04em 0; vertical-align: top; }
.hero__word > span { display: inline-block; transform: translate3d(0, 108%, 0); animation: rise 1.3s var(--ease-out) .15s forwards; }
.hero__word + .hero__word > span { animation-delay: .27s; }
/* nach dem Auftauchen: Maske weg, damit das Leuchten frei strahlen kann */
.hero__title.is-set .hero__word { overflow: visible; }
.hero__title.is-set .hero__word > span { animation: none; transform: none; }
@keyframes rise { to { transform: none; } }

.hero__city {
  margin-top: clamp(8px, 1.4vh, 16px);
  padding-left: .62em; /* gleicht das letzte Letterspacing aus */
  font: 600 clamp(11px, .95vw, 14px)/1 var(--f-text);
  letter-spacing: .62em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1.4s var(--ease) .9s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero__enter {
  position: absolute;
  z-index: 2;
  left: 50%; bottom: clamp(12px, 2.8vh, 30px);
  display: inline-flex; align-items: center; gap: .9em;
  padding: 12px 16px;
  color: var(--cream);
  font: 500 11px/1 var(--f-mono);
  letter-spacing: .32em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transform: translate3d(-50%, 0, 0);
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 1.4s forwards;
}
.hero__arrow { display: inline-block; font-family: var(--f-text); letter-spacing: 0; animation: nudge 2.6s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }

@media (orientation: portrait) {
  .hero__media img { object-position: 18% 50%; }
  .hero__title { font-size: 16vw; }
  .hero__word { display: block; }
}

/* ==========================================================================
   ZWISCHENTÖNE
   ========================================================================== */
.whisper {
  display: flex; align-items: center; gap: 14px;
  padding: clamp(26px, 5.5vh, 70px) var(--g);
  color: var(--fg-3);
  font: 500 11px/1 var(--f-mono);
  letter-spacing: .34em;
  text-transform: uppercase;
}
.whisper::before { content: ''; flex: none; width: 26px; height: 1px; background: currentColor; }
.whisper--left { padding-left: 9vw; }
.whisper--right { justify-content: flex-end; padding-right: 11vw; }
.js .whisper[data-reveal] { transform: none; letter-spacing: .7em; transition: opacity 1.4s var(--ease), letter-spacing 1.8s var(--ease); }
.js .whisper[data-reveal].is-in { letter-spacing: .34em; }

/* ==========================================================================
   02 — NOT JUST A KIOSK / A PLACE TO MEET
   ========================================================================== */
.meet { --p: 0; position: relative; height: 290vh; }
.meet__stage {
  --a: clamp(0, calc((var(--p) - .1) / .38), 1);
  --b: clamp(0, calc((var(--p) - .36) / .24), 1);
  --c: clamp(0, calc((var(--p) - .56) / .16), 1);
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.meet__big {
  position: absolute;
  left: var(--g); right: var(--g);
  top: 50%;
  font-family: var(--f-display);
  font-weight: 900;
  line-height: .8;
  text-transform: uppercase;
  transform: translate3d(0, -50%, 0) scale(calc(1 - var(--a) * .05));
  transform-origin: 0 50%;
  opacity: calc(1 - var(--a) * .82);
}
.meet__line { display: block; font-size: 26.5vw; }
.meet__line > span { display: block; }
.js [data-reveal-lines] .meet__line > span { transform: translate3d(0, 30%, 0); opacity: 0; transition: transform 1.3s var(--ease-out), opacity 1s var(--ease); }
.js [data-reveal-lines] .meet__line + .meet__line > span { transition-delay: .12s; }
.js [data-reveal-lines].is-in .meet__line > span { transform: none; opacity: 1; }

.meet__photo {
  position: absolute;
  right: var(--g);
  top: var(--g); bottom: var(--g);
  width: min(35vw, 620px);
  overflow: hidden;
  background: #6e5647;
  transform: translate3d(0, calc((1 - var(--a)) * 112%), 0);
}
.meet__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transform: scale(calc(1.14 - var(--a) * .1));
}

.meet__place {
  position: absolute;
  left: 22vw;
  bottom: calc(var(--g) + 5.2vw);
  z-index: 2;
  color: var(--gold-text);
  font: 900 12.4vw/.8 var(--f-display);
  text-transform: uppercase;
  text-shadow: var(--glow);
}
/* Glow und overflow:hidden vertragen sich in Chrome nicht – daher Einblenden statt Maske */
.meet__pl { --k: var(--b); display: block; opacity: var(--k); transform: translate3d(0, calc((1 - var(--k)) * 34%), 0); }
.meet__pl + .meet__pl { --k: clamp(0, calc(var(--b) * 1.3 - .3), 1); }

.meet__small {
  position: absolute;
  left: calc(22vw + .4vw);
  bottom: var(--g);
  font: 500 clamp(13px, 1.15vw, 17px)/1.3 var(--f-mono);
  letter-spacing: .08em;
  opacity: var(--c);
  transform: translate3d(0, calc((1 - var(--c)) * 14px), 0);
}

@media (max-width: 899px) {
  .meet { --tab: calc(54px + env(safe-area-inset-bottom)); height: 250vh; }
  .meet__big { top: calc(var(--g) + 5svh); transform: translate3d(0, calc((1 - var(--a)) * 20svh), 0) scale(calc(1 - var(--a) * .05)); }
  .meet__line { font-size: 25vw; }
  .meet__photo {
    left: var(--g); right: var(--g);
    top: auto; bottom: var(--tab);
    width: auto;
    height: 58svh;
    transform: translate3d(0, calc((1 - var(--a)) * 58%), 0);
  }
  .meet__photo img { object-position: 50% 30%; }
  .meet__place {
    left: var(--g);
    bottom: calc(var(--tab) + 58svh - 16vw);
    font-size: 17.5vw;
  }
  .meet__small {
    left: auto; right: calc(var(--g) + 10px);
    bottom: calc(var(--tab) + 10px);
    padding: 8px 10px;
    background: var(--ink);
    color: var(--cream);
    font-size: 11.5px;
    letter-spacing: .06em;
    text-align: right;
  }
}

/* ==========================================================================
   03 — TONIGHT AT KIOSK INDUSTRY
   ========================================================================== */
.tonight {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--g);
  row-gap: clamp(28px, 4vw, 56px);
  padding: var(--sec) var(--g) calc(var(--sec) * .6);
}
.tonight__title {
  grid-column: 1 / -1;
  font: 900 clamp(56px, 10.5vw, 176px)/.8 var(--f-display);
  text-transform: uppercase;
}
.tonight__title > span { display: block; }
.tonight__title .wordmark {
  margin-top: .12em;
  color: var(--gold-text);
  font-size: .5em;
  line-height: 1;
  letter-spacing: .05em;
  text-shadow: var(--glow);
}

.board {
  grid-column: 1 / span 9;
  position: relative;
  padding: clamp(10px, 1.1vw, 16px);
  background: linear-gradient(180deg, #2a2723, #1a1816);
  border-radius: 5px;
  box-shadow: 0 1px 0 rgb(255 255 255 / .07) inset, 0 50px 90px -50px rgb(0 0 0 / .8);
}
.board__screen {
  --pad: clamp(18px, 3vw, 46px);
  position: relative;
  overflow: hidden;
  padding: var(--pad) var(--pad) 0;
  border-radius: 2px;
  background-color: #0a0908;
  background-image: radial-gradient(circle at center, #211b14 1.3px, transparent 1.7px);
  background-size: 6px 6px;
  box-shadow: inset 0 0 50px rgb(0 0 0 / .85);
  color: var(--led);
}
.board__screen::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, rgb(255 255 255 / .045) 0 34%, transparent 34.2%);
}
.board__row { display: flex; justify-content: space-between; gap: 16px; }
.board__small {
  font: 500 clamp(10px, .9vw, 12px)/1.2 var(--f-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgb(255 160 30 / .7);
  white-space: nowrap;
}
.board__small .live { color: #ff4a36; text-shadow: 0 0 8px rgb(255 60 40 / .9); }
.board__small .live i { display: inline-block; width: .7em; height: .7em; margin-right: .5em; border-radius: 50%; background: currentColor; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: .15; } }

.board__main { padding: clamp(22px, 4vw, 60px) 0 clamp(20px, 3.2vw, 48px); min-height: clamp(180px, 22vw, 330px); display: flex; flex-direction: column; justify-content: center; }
.board__big {
  font: 800 clamp(64px, 11vw, 180px)/.86 var(--f-display);
  text-transform: uppercase;
  white-space: nowrap;
}
.board__mid {
  margin-top: .22em;
  font: 800 clamp(30px, 4.4vw, 72px)/1 var(--f-display);
  white-space: nowrap;
}
.led {
  display: inline-block;
  -webkit-mask-image: radial-gradient(circle at center, #000 2px, transparent 2.35px);
  mask-image: radial-gradient(circle at center, #000 2px, transparent 2.35px);
  -webkit-mask-size: 6px 6px;
  mask-size: 6px 6px;
}
.led-glow { filter: drop-shadow(0 0 2px rgb(255 170 40 / .95)) drop-shadow(0 0 18px rgb(255 140 20 / .45)); }
.board__mid.led-glow { filter: drop-shadow(0 0 2px rgb(255 170 40 / .9)) drop-shadow(0 0 12px rgb(255 140 20 / .35)); }
.board__main.is-live .board__big .led { color: #ffc34d; }

.board__ticker {
  margin: 0 calc(var(--pad) * -1);
  padding: 13px 0 15px;
  border-top: 1px solid #2a231a;
  overflow: hidden;
  white-space: nowrap;
}
.board__track {
  display: inline-flex;
  gap: 2.4em;
  padding-left: 2.4em;
  font: 500 12px/1 var(--f-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgb(255 160 30 / .7);
  animation: ticker 42s linear infinite;
}
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }

.screw {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7a736a, #2b2825 72%);
  box-shadow: 0 1px 1px rgb(0 0 0 / .7);
}
.screw::after { content: ''; position: absolute; left: 1px; right: 1px; top: 3.5px; height: 1px; background: #191715; transform: rotate(40deg); }
.screw--tl { left: 4px; top: 4px; }
.screw--tr { right: 4px; top: 4px; }
.screw--bl { left: 4px; bottom: 4px; }
.screw--br { right: 4px; bottom: 4px; }
.screw--tr::after, .screw--bl::after { transform: rotate(-20deg); }

.hours { grid-column: 10 / span 3; align-self: end; }
.hours .label { margin-bottom: 14px; color: var(--fg-2); }
.hours__list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: .72em 0;
  border-top: 1px solid var(--line);
  font: 500 13px/1.2 var(--f-mono);
  letter-spacing: .05em;
}
.hours__list li:last-child { border-bottom: 1px solid var(--line); }
.hours__list li.is-today { color: var(--gold); }
.hours__list li.is-today > span:first-child::before { content: '● '; }
:root[data-light="day"] .hours__list li.is-today { color: var(--fg); font-weight: 600; }
:root[data-light="day"] .hours__list li.is-today > span:first-child::before { color: var(--gold); }

@media (max-width: 899px) {
  .board, .hours { grid-column: 1 / -1; }
  .hide-sm { display: none; }
  .board__main { min-height: 38vw; }
}

/* ==========================================================================
   04 — WHAT'S IN THE FRIDGE?
   ========================================================================== */
.fridge { padding: var(--sec) var(--g); }
.fridge__title {
  margin-bottom: clamp(28px, 4vw, 60px);
  font: 900 clamp(60px, 12.5vw, 214px)/.8 var(--f-display);
  text-transform: uppercase;
}
.fridge__door {
  --frame: clamp(12px, 1.6vw, 22px);
  position: relative;
  padding: var(--frame);
  border-radius: 20px 20px 12px 12px;
  background: linear-gradient(180deg, #34343a, #1d1d21 30%, #18181b);
  box-shadow:
    0 1px 0 rgb(255 255 255 / .12) inset,
    0 -2px 0 rgb(0 0 0 / .5) inset,
    0 60px 100px -60px rgb(0 0 0 / .85);
}
.fridge__inside {
  position: absolute;
  inset: var(--frame);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgb(225 240 255 / .28), rgb(225 240 255 / 0) 22%),
    linear-gradient(180deg, rgb(10 12 16 / .2), rgb(10 12 16 / .72)),
    url("../img/fridge-shelves.jpg") center 35% / cover,
    #26292e;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .06), inset 0 0 90px rgb(0 0 0 / .55);
}
.fridge__inside::before {
  /* Regalböden */
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 calc(25% - 3px), rgb(255 255 255 / .09) calc(25% - 3px) calc(25% - 1px), rgb(0 0 0 / .3) calc(25% - 1px) 25%);
}
.fridge__inside::after {
  /* Glas: Spiegelung und kalter Hauch an den Rändern */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgb(255 255 255 / .1) 0 18%, transparent 18.2% 58%, rgb(255 255 255 / .05) 58.2% 64%, transparent 64.2%),
    radial-gradient(130% 70% at 50% 110%, rgb(235 245 255 / .22), transparent 60%);
}
.fridge__stickers {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(40px, auto);
  gap: clamp(12px, 1.6vw, 24px);
  padding: clamp(28px, 4.5vw, 80px) clamp(22px, 4vw, 72px) clamp(48px, 5vw, 90px);
  min-height: min(92vh, 900px);
}
.fridge__handle {
  position: absolute;
  right: calc(var(--frame) * .5 - 5px);
  top: 26%; bottom: 26%;
  width: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #6d6d73, #d3d3d8 40%, #8a8a90 70%, #4a4a50);
  box-shadow: 0 6px 14px rgb(0 0 0 / .5);
}
.fridge__brand {
  position: absolute;
  left: 50%; bottom: calc(var(--frame) * .5 - 5px);
  transform: translateX(-50%);
  font: 500 8px/1 var(--f-mono);
  letter-spacing: .3em;
  color: rgb(255 255 255 / .38);
  white-space: nowrap;
}
.fridge__note { margin-top: 22px; color: var(--fg-2); font: 500 13px/1.4 var(--f-mono); letter-spacing: .04em; }

/* -- Aufkleber: gemeinsame Basis */
.sticker {
  --r: 0deg;
  position: relative;
  align-self: start;
  color: var(--ink);
  transform: rotate(var(--r));
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: drop-shadow(0 10px 14px rgb(0 0 0 / .42));
}
.sticker:hover { transform: rotate(calc(var(--r) * .3)) translate3d(0, -6px, 0) scale(1.02); filter: drop-shadow(0 22px 22px rgb(0 0 0 / .5)); }
.sticker__name { display: block; font: 900 1em/.82 var(--f-display); text-transform: uppercase; }
.sticker__note { display: block; font: 500 11px/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; }

/* COLD DRINKS – runder Aufkleber */
.sticker--round {
  --r: -9deg;
  grid-column: 1 / span 3; grid-row: 1 / span 3;
  justify-self: center;
  display: grid; place-items: center;
  width: clamp(170px, 17vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 5px var(--cream), inset 0 0 0 6px rgb(0 0 0 / .1);
  text-align: center;
}
.sticker--round .sticker__name { font-size: clamp(34px, 3.4vw, 52px); }
.sticker__rim { position: absolute; inset: 4%; width: 92%; height: 92%; animation: spin 36s linear infinite; animation-play-state: paused; }
.sticker__rim text { font: 500 11px var(--f-mono); letter-spacing: .1em; fill: var(--red); }
.sticker--round:hover .sticker__rim { animation-play-state: running; }
.sticker__temp { position: absolute; bottom: 21%; font: 600 11px/1 var(--f-mono); letter-spacing: .1em; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ENERGY – Preisschild */
.sticker--tag {
  --r: 5deg;
  grid-column: 4 / span 3; grid-row: 1 / span 2;
  margin-top: 4vw;
  padding: 22px 24px 20px 46px;
}
.sticker--tag::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--gold);
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 22px 100%, 0 50%);
}
.sticker--tag .sticker__name { font-size: clamp(50px, 5.8vw, 92px); }
.sticker--tag .sticker__note { margin-top: 10px; }
.sticker__hole {
  position: absolute; left: 13px; top: 50%;
  width: 12px; height: 12px; margin-top: -6px;
  border-radius: 50%;
  background: #1c1d21;
  box-shadow: inset 0 2px 3px rgb(0 0 0 / .7);
}
.sticker__hole::after {
  /* Schnur */
  content: '';
  position: absolute; left: 5px; top: 5px;
  width: 58px; height: 1.5px;
  background: rgb(240 230 210 / .8);
  transform-origin: 0 50%;
  transform: rotate(-148deg);
}

/* SOFT DRINKS – Prägeband */
.sticker--dymo {
  --r: -2.5deg;
  grid-column: 3 / span 6; grid-row: 4;
  justify-self: start;
  padding: 11px 20px 10px;
  border-radius: 3px;
  background: linear-gradient(180deg, #d6412f, #b52d20 55%, #a8271b);
  color: #fbf4ee;
}
.sticker--dymo .sticker__name {
  font: 700 clamp(20px, 2.3vw, 34px)/1 var(--f-text);
  letter-spacing: .2em;
  text-shadow: 0 1px 0 rgb(255 255 255 / .35), 0 -1px 0 rgb(0 0 0 / .45);
}
.sticker--dymo .ch { display: inline-block; transform: translateY(var(--y, 0)) rotate(var(--t, 0deg)); }

/* BEER – Pappschild */
.sticker--card {
  --r: -3.5deg;
  grid-column: 1 / span 4; grid-row: 5 / span 3;
  padding: 18px 26px 22px;
  background:
    repeating-linear-gradient(90deg, rgb(0 0 0 / .035) 0 2px, transparent 2px 9px),
    radial-gradient(120% 90% at 30% 20%, #d9b988, #c49c67 60%, #b38a57);
}
.sticker--card .sticker__name { font: 400 clamp(66px, 8vw, 130px)/.95 var(--f-hand); text-transform: uppercase; color: #1f1b17; }
.sticker--card .sticker__note {
  display: inline-block;
  margin-top: 4px;
  font: 400 clamp(30px, 3.2vw, 48px)/1 var(--f-hand);
  letter-spacing: 0;
  text-transform: none;
  color: var(--red);
  transform: rotate(-7deg);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.tape {
  position: absolute;
  top: -12px;
  width: 74px; height: 24px;
  background: rgb(243 238 222 / .62);
  box-shadow: 0 1px 2px rgb(0 0 0 / .15);
}
.tape--l { left: -16px; transform: rotate(-32deg); }
.tape--r { right: -16px; transform: rotate(28deg); }

/* SNACKS – Stern */
.sticker--star {
  --r: 9deg;
  grid-column: 6 / span 3; grid-row: 5 / span 3;
  justify-self: center;
  display: grid; place-items: center;
  width: clamp(170px, 17vw, 250px);
  aspect-ratio: 1;
}
.sticker__burst { position: absolute; inset: 0; width: 100%; height: 100%; }
.sticker__burst polygon { fill: #141311; stroke: var(--gold); stroke-width: 3; stroke-linejoin: round; }
.sticker--star .sticker__name { position: relative; color: var(--gold); font-size: clamp(34px, 3.4vw, 52px); transform: rotate(-14deg); }
.sticker--star:hover .sticker__burst { animation: spin 14s linear infinite; }

/* SWEETS – Regaletikett */
.sticker--shelf {
  --r: -1deg;
  grid-column: 5 / span 5; grid-row: 8 / span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 18px;
  padding: 14px 18px 12px;
  border-top: 6px solid var(--gold);
  background: #f7f4ec;
}
.sticker--shelf .sticker__name { grid-column: 1; font-size: clamp(44px, 5vw, 78px); }
.sticker--shelf .sticker__note { grid-column: 1; color: #6a655c; }
.sticker__code {
  grid-column: 2; grid-row: 1 / span 2;
  align-self: stretch;
  width: 70px;
  background: repeating-linear-gradient(90deg, #1b1a18 0 2px, transparent 2px 3px, #1b1a18 3px 4px, transparent 4px 7px, #1b1a18 7px 10px, transparent 10px 11px);
  opacity: .85;
}

/* KIOSK CLASSICS – Plakat */
.sticker--poster {
  --r: 1.6deg;
  grid-column: 9 / span 4; grid-row: 1 / span 5;
  display: flex; flex-direction: column; gap: 18px;
  padding: clamp(22px, 2.4vw, 36px);
  min-height: 100%;
  background: #121110;
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .06);
}
.sticker__kicker { font: 500 10px/1 var(--f-mono); letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.sticker--poster .sticker__name.wordmark {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 60px);
  line-height: .98;
  letter-spacing: .03em;
  color: var(--gold);
  text-shadow: 0 0 .5em rgb(247 170 40 / .35);
}
.sticker__list { margin-top: auto; font: 500 12px/1.9 var(--f-mono); letter-spacing: .06em; text-transform: uppercase; color: rgb(241 233 216 / .8); }

/* Spezi – Abzug mit Klebeband */
.sticker--photo {
  --r: -4deg;
  grid-column: 10 / span 3; grid-row: 6 / span 4;
  padding: 10px 10px 14px;
  background: #f4efe4;
}
.sticker--photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 45%; }
.sticker__hand { display: block; margin-top: 10px; font: 400 clamp(18px, 1.6vw, 24px)/1 var(--f-hand); color: #1f1b17; }

@media (max-width: 899px) {
  .fridge__stickers {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: 0;
    gap: 26px 12px;
    padding: 34px 18px 56px;
  }
  .sticker--round  { grid-column: 1 / span 3; grid-row: auto; width: 42vw; }
  .sticker--tag    { grid-column: 4 / span 3; grid-row: auto; margin-top: 8vw; padding: 16px 12px 14px 34px; }
  .sticker--tag .sticker__name { font-size: 10vw; }
  .sticker--poster { grid-column: 1 / -1; grid-row: auto; }
  .sticker--dymo   { grid-column: 1 / -1; grid-row: auto; justify-self: center; }
  .sticker--card   { grid-column: 1 / span 4; grid-row: auto; }
  .sticker--card .sticker__name { font-size: 17vw; }
  .sticker--star   { grid-column: 4 / span 3; grid-row: auto; justify-self: end; width: 38vw; margin-top: -20vw; z-index: 2; }
  .sticker--shelf  { grid-column: 1 / -1; grid-row: auto; }
  .sticker--photo  { grid-column: 2 / span 4; grid-row: auto; }
  .fridge__handle { top: 12%; bottom: 70%; }
}

/* ==========================================================================
   06 — KIOSK CAM
   ========================================================================== */
.cam { padding: var(--sec) var(--g); }
.cam__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 18px 32px;
  margin-bottom: clamp(36px, 6vw, 96px);
}
.cam__title { font: 900 clamp(72px, 15vw, 258px)/.78 var(--f-display); text-transform: uppercase; }
.cam__hud { display: flex; flex-wrap: wrap; gap: 8px 24px; padding-bottom: 6px; color: var(--fg-2); }
.rec { display: inline-flex; align-items: center; gap: 8px; color: var(--red); }
.rec i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: blink 1.4s steps(1) infinite; }
.js-timecode { font-variant-numeric: tabular-nums; }

.cam__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--g);
  row-gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

/* Zickzack: Hochformat links / Querformat rechts, dann umgekehrt */
.shot--1 { grid-column: 1 / span 5; }
.shot--2 { grid-column: 7 / span 6; margin-top: 6vw; }
.shot--3 { grid-column: 9 / span 4; margin-top: -5vw; --tilt: 1.4deg; }
.shot--4 { grid-column: 1 / span 7; grid-row: 2; }
.shot--5 { grid-column: 5 / span 6; --tilt: -1deg; }

.shot__btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .8s var(--ease);
}
.shot__img { position: relative; display: block; overflow: hidden; }
.shot__img img { width: 100%; transition: filter .7s var(--ease), transform 1.4s var(--ease); }

/* Analog-Effekt beim Hover: Lichtleck + Korn, bewusst zurückhaltend */
.shot__img::before, .shot__img::after { content: ''; position: absolute; pointer-events: none; opacity: 0; }
.shot__img::before {
  inset: 0; z-index: 1;
  background:
    radial-gradient(90% 70% at 0% 100%, rgb(255 110 40 / .7), transparent 60%),
    radial-gradient(70% 50% at 100% 0%, rgb(255 200 90 / .45), transparent 60%);
  mix-blend-mode: screen;
  transition: opacity .8s var(--ease);
}
.shot__img::after {
  inset: -50%; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.4 -.55'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  transition: opacity .5s;
}
@media (hover: hover) {
  .shot__btn:hover { transform: rotate(0deg); }
  .shot__btn:hover .shot__img img { filter: contrast(1.08) saturate(1.1) sepia(.1); transform: scale(1.025); }
  .shot__btn:hover .shot__img::before { opacity: .42; }
  .shot__btn:hover .shot__img::after { opacity: .22; animation: grain .5s steps(3) infinite; }
}
@keyframes grain {
  0% { transform: translate3d(0, 0, 0); }
  33% { transform: translate3d(-4%, 3%, 0); }
  66% { transform: translate3d(3%, -4%, 0); }
  100% { transform: translate3d(-2%, -2%, 0); }
}

/* Abzug */
.shot--print .shot__btn { padding: 10px 10px 12px; background: #f3eee3; box-shadow: 0 24px 40px -26px rgb(0 0 0 / .7); }
/* Negativstreifen */
.shot--film .shot__btn {
  padding: 26px 12px;
  background:
    repeating-linear-gradient(90deg, transparent 0 9px, #ddd4c2 9px 17px) 0 8px / 100% 9px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 9px, #ddd4c2 9px 17px) 0 calc(100% - 8px) / 100% 9px no-repeat,
    #0e0d0c;
}

@media (max-width: 899px) {
  .cam__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); row-gap: 34px; column-gap: 14px; }
  .shot--1, .shot--2, .shot--4, .shot--5 { grid-column: 1 / -1; grid-row: auto; margin-top: 0; }
  .shot--3 { grid-column: 2 / span 4; grid-row: auto; margin-top: 0; }
}

/* -- Foto-Ansicht */
.viewer {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  max-width: none; max-height: none;
  margin: 0; padding: 0;
  border: 0;
  background: rgb(9 8 7 / .96);
  color: var(--cream);
  overscroll-behavior: contain;
}
.viewer::backdrop { background: transparent; }
.viewer[open] { animation: fadeIn .35s var(--ease) both; }
.viewer__inner { position: relative; display: grid; place-items: center; width: 100%; height: 100%; padding: 60px var(--g) 70px; }
.viewer__fig { display: grid; justify-items: center; gap: 14px; }
.viewer__frame { position: relative; line-height: 0; }
.viewer__img {
  width: auto; height: auto;
  max-width: min(92vw, 1500px);
  max-height: calc(100vh - 170px);
  max-height: calc(100dvh - 170px);
  animation: viewIn .6s var(--ease-out) both;
}
@keyframes viewIn { from { opacity: 0; transform: scale(.97); } }
.viewer__stamp {
  position: absolute;
  right: 3.5%; bottom: 4%;
  width: clamp(120px, 18%, 240px);
  opacity: 0;
  filter: drop-shadow(0 0 2px rgb(255 120 30 / .9)) drop-shadow(0 0 7px rgb(255 90 20 / .5));
}
.viewer__stamp svg { width: 100%; height: auto; overflow: visible; }
.viewer__stamp rect { fill: #ff8d2a; }
.viewer.is-stamped .viewer__stamp { opacity: .92; transition: opacity .08s linear .5s; }
.viewer__btn, .viewer__close {
  position: absolute;
  border: 0; background: none;
  color: var(--cream);
  cursor: pointer;
}
.viewer__btn { top: 50%; width: 56px; height: 56px; margin-top: -28px; font-size: 22px; opacity: .6; transition: opacity .2s; }
.viewer__btn:hover { opacity: 1; }
.viewer__prev { left: 6px; }
.viewer__next { right: 6px; }
.viewer__close { top: 14px; right: var(--g); padding: 10px 0; }
.viewer__count { position: absolute; top: 24px; left: var(--g); color: rgb(241 233 216 / .55); }
@media (max-width: 899px) {
  .viewer__btn { top: auto; bottom: 10px; margin: 0; }
  .viewer__img { max-width: 100%; }
}

/* ==========================================================================
   07 — SEEN AT KIOSK INDUSTRY
   ========================================================================== */
.seen { padding: var(--sec) 0; overflow: hidden; }
.seen__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px 40px;
  padding: 0 var(--g);
  margin-bottom: clamp(32px, 5vw, 76px);
}
.seen__title { font: 900 clamp(60px, 11vw, 190px)/.8 var(--f-display); text-transform: uppercase; }
.seen__title > span { display: block; }
.seen__title .wordmark { margin-top: .14em; font-size: .46em; line-height: 1; color: var(--gold-text); text-shadow: var(--glow); }
.seen__handle {
  font: 500 clamp(14px, 1.4vw, 19px)/1 var(--f-mono);
  letter-spacing: .08em;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}
.seen__rail { overflow: hidden; }
.seen__track {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.8vw, 28px);
  width: max-content;
  padding: 0 var(--g);
}
.post { flex: none; width: clamp(230px, 22vw, 360px); }
.post:nth-child(3n + 2) { margin-top: 6vw; }
.post:nth-child(3n) { margin-top: 2vw; }
.post a { display: block; text-decoration: none; }
.post img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1s var(--ease), filter .6s; }
.post--tall img { aspect-ratio: 3 / 4; }
.post a:hover img { transform: scale(.98); filter: saturate(1.1); }
.post__cap { display: block; margin-top: 12px; color: var(--fg-2); text-transform: none; letter-spacing: .06em; }
.seen__foot { margin-top: clamp(34px, 5vw, 70px); padding: 0 var(--g); font: 500 15px/1.4 var(--f-text); color: var(--fg-2); }
.seen__foot strong { color: var(--fg); font-weight: 600; }
.seen__foot a { color: var(--fg); text-decoration-color: var(--gold); text-underline-offset: 4px; }

@media (hover: hover) and (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .seen__track.is-looping { animation: marquee 80s linear infinite; }
  .seen__rail:hover .seen__track { animation-play-state: paused; }
}
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }
@media (max-width: 899px), (hover: none) {
  .seen__rail { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; }
  .seen__rail::-webkit-scrollbar { display: none; }
  .seen__track { padding: 0 var(--g); }
  .post { width: 70vw; max-width: 340px; scroll-snap-align: center; }
}

/* ==========================================================================
   07b — GOOGLE-BEWERTUNGEN
   ========================================================================== */
.reviews {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--g);
  row-gap: clamp(32px, 4vw, 60px);
  align-items: center;
  padding: var(--sec) var(--g);
}
.reviews__main { grid-column: 1 / span 7; }
.reviews__title { font: 900 clamp(56px, 9.5vw, 164px)/.8 var(--f-display); text-transform: uppercase; }
.reviews__score { display: flex; align-items: flex-end; gap: clamp(16px, 2vw, 34px); margin-top: clamp(26px, 3.4vw, 54px); }
.reviews__num {
  color: var(--gold-text);
  font: 900 clamp(120px, 16vw, 270px)/.76 var(--f-display);
  text-shadow: var(--glow);
}
.reviews__meta { display: grid; gap: 12px; padding-bottom: .4em; }
.reviews__meta .label { color: var(--fg-2); }
.stars { width: clamp(150px, 14vw, 230px); height: auto; overflow: visible; }
.stars__base use { fill: var(--line); }
.stars__top use { fill: var(--gold); }
.mini-star { display: inline-block; width: .95em; height: .95em; vertical-align: -.12em; fill: var(--gold); }

.reviews__quote { max-width: 30em; margin-top: clamp(30px, 4vw, 60px); }
.reviews__quote blockquote { margin: 0; font: italic 400 clamp(26px, 2.9vw, 46px)/1.14 var(--f-serif); }
.reviews__quote figcaption { margin-top: 14px; color: var(--fg-2); }
.reviews__more { display: grid; gap: 22px; margin-top: 30px; }
.reviews__more p { font: italic 400 clamp(20px, 1.9vw, 28px)/1.2 var(--f-serif); }
.reviews__more .label { display: block; margin-top: 8px; color: var(--fg-2); }

/* Kassenbon */
.receipt {
  --paper: #f5f1e6;
  grid-column: 9 / span 4;
  position: relative;
  margin-bottom: 8px;
  padding: 26px 24px 22px;
  background: var(--paper);
  color: #1b1a17;
  font: 500 13px/1.55 var(--f-mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  transform: rotate(1.6deg);
  filter: drop-shadow(0 22px 24px rgb(0 0 0 / .35));
}
.js .receipt[data-reveal] { transform: translate3d(0, 28px, 0) rotate(1.6deg); }
.js .receipt[data-reveal].is-in { transform: rotate(1.6deg); }
.receipt::after {
  /* abgerissene Kante */
  content: '';
  position: absolute; left: 0; right: 0; top: 100%;
  height: 8px;
  background: conic-gradient(from -45deg at 50% 100%, var(--paper) 90deg, #0000 0) 0 0 / 14px 8px repeat-x;
}
.receipt__head { text-align: center; font-weight: 600; }
.receipt__head span { display: block; font-size: 11px; font-weight: 400; color: #5d5950; }
.receipt__rule { height: 0; margin: 14px 0; border-top: 1px dashed #9d988d; }
.receipt__title { margin-bottom: 6px; font-weight: 600; }
.receipt__rows > div { display: flex; align-items: baseline; gap: 8px; }
.receipt__rows > div::after { content: ''; order: 2; flex: 1; border-bottom: 1px dotted #9d988d; transform: translateY(-4px); }
.receipt__rows dt { order: 1; }
.receipt__rows dd { order: 3; font-weight: 600; }
.receipt__thanks { text-align: center; font-weight: 600; }
.receipt__code {
  display: block;
  width: 72%; height: 34px;
  margin: 14px auto 0;
  background: repeating-linear-gradient(90deg, #1b1a17 0 2px, transparent 2px 4px, #1b1a17 4px 5px, transparent 5px 8px, #1b1a17 8px 11px, transparent 11px 12px);
}

.reviews__cta {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 12px 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.reviews__link { font: 900 clamp(28px, 3.3vw, 54px)/1 var(--f-display); text-transform: uppercase; text-decoration: none; }
.reviews__link span { display: inline-block; font-family: var(--f-text); font-weight: 400; transition: transform .5s var(--ease); }
.reviews__link:hover span { transform: translateX(10px); }
.reviews__ask { font: 500 15px/1.4 var(--f-text); color: var(--fg-2); }
.reviews__ask a { color: var(--fg); text-decoration-color: var(--gold); text-underline-offset: 4px; }
.reviews__note { width: 100%; color: var(--fg-3); letter-spacing: .06em; text-transform: none; }

@media (max-width: 899px) {
  .reviews__main, .receipt, .reviews__cta { grid-column: 1 / -1; }
  .reviews__num { font-size: 34vw; }
  .receipt { justify-self: center; width: min(100%, 340px); }
  .reviews__link { font-size: 8.6vw; }
}

/* ==========================================================================
   08 — FIND US
   ========================================================================== */
.find { padding: var(--sec) var(--g) calc(var(--sec) * .8); }
.find__title {
  margin-bottom: clamp(32px, 5vw, 80px);
  font: 900 clamp(58px, 11.5vw, 196px)/.8 var(--f-display);
  text-transform: uppercase;
}
.find__title > span:first-child { display: block; }
@media (max-width: 899px) {
  .find__title { font-size: 17.5vw; }
  .find__title > span { display: block; }
}
.find__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--g);
  row-gap: 44px;
  align-items: start;
}
.find__info { grid-column: 1 / span 5; }
.find__map { grid-column: 6 / span 7; }
.find__name { font-size: clamp(20px, 1.9vw, 28px); color: var(--gold-text); text-shadow: var(--glow); }
.find__addr { margin-top: 10px; font: 500 clamp(26px, 2.6vw, 40px)/1.12 var(--f-text); font-style: normal; letter-spacing: -.01em; }
.find__district { display: block; margin-top: 12px; font: 500 11px/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-2); }
.find__facts { display: grid; gap: 0; margin: 34px 0 36px; }
.find__facts > div { display: grid; grid-template-columns: minmax(8.5em, 30%) 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); }
.find__facts > div:last-child { border-bottom: 1px solid var(--line); }
.find__facts dt { padding-top: 3px; color: var(--fg-2); }
.find__facts dd { font: 500 15px/1.45 var(--f-text); }
.find__facts a { text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .2s; }
.find__facts a:hover { border-color: var(--gold); }
.hours__list--compact li { padding: .28em 0; border: 0 !important; font-size: 13px; }

.bigbtn {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%;
  padding: clamp(20px, 2.2vw, 30px) clamp(22px, 2.4vw, 34px);
  background: var(--gold);
  color: var(--ink);
  font: 900 clamp(36px, 4.4vw, 70px)/.86 var(--f-display);
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 40px rgb(247 170 40 / calc(.22 * var(--glow-a)));
  transition: box-shadow .4s var(--ease), background-color .3s;
}
.bigbtn__arrow { font-family: var(--f-text); font-weight: 400; transition: transform .5s var(--ease); }
.bigbtn:hover { box-shadow: 0 0 70px rgb(247 170 40 / calc(.4 * var(--glow-a))); }
.bigbtn:hover .bigbtn__arrow { transform: translateX(12px); }
.find__hint { margin-top: 12px; color: var(--fg-2); }

.find__map { position: sticky; top: 84px; }
.find__map > a { display: block; }
.map { width: 100%; height: auto; background: var(--bg-2); aspect-ratio: 880 / 640; }
.map .park  { fill: color-mix(in srgb, var(--fg) 5%, transparent); }
.map .water { fill: color-mix(in srgb, var(--fg) 9%, transparent); }
.map .stream { fill: none; stroke: var(--fg); stroke-opacity: .16; stroke-width: 2; stroke-dasharray: 3 6; }
.map .r3, .map .r2, .map .r1 { fill: none; stroke: var(--fg); stroke-linecap: round; stroke-linejoin: round; }
.map .r3 { stroke-opacity: .2; stroke-width: 2.5; }
.map .r2 { stroke-opacity: .42; stroke-width: 5; }
.map .r1 { stroke-opacity: .55; stroke-width: 8; }
.map .home { stroke: var(--gold); stroke-opacity: .9; stroke-width: 5; }
.map text { font: 500 13px var(--f-mono); letter-spacing: .14em; text-transform: uppercase; fill: var(--fg-2); }
.map .labels text { text-anchor: middle; }
.map .labels .lbl-home { fill: var(--gold-text); font-weight: 600; }
.map .stop circle { fill: var(--bg-2); stroke: var(--fg); stroke-opacity: .55; stroke-width: 1.5; }
.map .stop text { font: 700 10px var(--f-text); letter-spacing: 0; text-anchor: middle; fill: var(--fg-2); }
.map .pin .core { fill: var(--gold); filter: drop-shadow(0 0 6px rgb(247 170 40 / calc(.9 * var(--glow-a)))); }
.map .pin .ring { fill: none; stroke: var(--gold); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s var(--ease) infinite; }
.map .pin .pin-label { fill: var(--fg); font: 600 19px var(--f-serif); letter-spacing: .08em; }
.map .pin .pin-sub { font-size: 11px; fill: var(--fg-2); }
.map .north path { fill: var(--fg-2); }
.map .north text { text-anchor: middle; font-size: 12px; }
.map .scale line { stroke: var(--fg-2); stroke-width: 1.5; }
.map .scale text { text-anchor: middle; font-size: 11px; }
.map .to-u { font-size: 12px; fill: var(--fg); }
@media (max-width: 899px) {
  .map text { font-size: 22px; }
  .map .labels .minor, .map .pin .pin-sub, .map .north, .map .stop { display: none; }
  .map .pin .pin-label { font-size: 30px; }
  .map .scale text, .map .to-u { font-size: 19px; }
}
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(3.2); opacity: 0; } }
.find__coords { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 20px; margin-top: 12px; color: var(--fg-3); }
.find__coords a { text-decoration: none; }

@media (max-width: 899px) {
  .find__info, .find__map { grid-column: 1 / -1; }
  .find__map { position: relative; top: auto; order: -1; }
  .find__facts > div { grid-template-columns: 1fr; gap: 6px; }
  .bigbtn { font-size: 10.6vw; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  padding: clamp(80px, 16vh, 180px) var(--g) calc(26px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.foot__mark {
  display: flex; flex-direction: column;
  font-size: 19vw;
  line-height: .9;
  letter-spacing: .03em;
  color: var(--sign-face);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.foot__mark > span:last-child { align-self: flex-end; }
/* Hinterleuchtete Buchstaben wie am echten Schild – nur nachts */
:root[data-light="night"] .foot__mark {
  text-shadow:
    0 0 1px rgb(255 214 140 / .9),
    0 0 .04em rgb(255 196 80 / .95),
    0 0 .14em rgb(247 165 40 / .7),
    0 0 .4em rgb(247 140 20 / .38),
    0 0 1em rgb(247 120 10 / .2);
}
:root[data-light="night"] .foot__mark.is-off { text-shadow: 0 0 1px rgb(255 214 140 / .15); transition: text-shadow .06s; }
:root[data-light="night"] .foot__mark.is-lighting { animation: halo 1.8s linear both; }
@keyframes halo {
  0% { text-shadow: 0 0 1px rgb(255 214 140 / .15); }
  6% { text-shadow: 0 0 1px rgb(255 214 140 / .9), 0 0 .04em rgb(255 196 80 / .95), 0 0 .14em rgb(247 165 40 / .7), 0 0 .4em rgb(247 140 20 / .38); }
  9% { text-shadow: 0 0 1px rgb(255 214 140 / .15); }
  15% { text-shadow: 0 0 1px rgb(255 214 140 / .9), 0 0 .04em rgb(255 196 80 / .95), 0 0 .14em rgb(247 165 40 / .7); }
  18% { text-shadow: 0 0 1px rgb(255 214 140 / .3); }
}
.foot__links {
  display: flex; flex-wrap: wrap;
  gap: 12px 34px;
  margin-top: clamp(34px, 5vw, 70px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font: 600 13px/1 var(--f-text);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.foot__links a { text-decoration: none; opacity: .75; transition: opacity .2s; }
.foot__links a:hover { opacity: 1; }
.foot__final {
  margin-top: clamp(70px, 14vh, 170px);
  color: var(--gold-text);
  font: 900 9vw/.84 var(--f-display);
  text-transform: uppercase;
  text-shadow: var(--glow);
  white-space: nowrap;
}
.foot__meta {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 8px 24px;
  margin-top: 26px;
  color: var(--fg-3);
}
@media (max-width: 899px) {
  .foot { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .foot__mark { font-size: 17.4vw; }
}

/* ==========================================================================
   RECHTLICHES (Impressum / Datenschutz)
   ========================================================================== */
.legal { max-width: 860px; margin: 0 auto; padding: 28px var(--g) 100px; }
.legal__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.legal__top a { text-decoration: none; }
.legal__home { font-size: 15px; }
.legal h1 { margin: clamp(40px, 8vh, 90px) 0 36px; font: 900 clamp(56px, 11vw, 132px)/.82 var(--f-display); text-transform: uppercase; }
.legal h2 { margin: 42px 0 12px; font: 800 26px/1 var(--f-display); text-transform: uppercase; letter-spacing: .01em; }
.legal p, .legal li { max-width: 62ch; color: var(--fg-2); font-size: 16px; }
.legal p + p { margin-top: 12px; }
.legal strong { color: var(--fg); font-weight: 600; }
.legal ul { margin-top: 10px; padding-left: 1.1em; list-style: disc; }
.legal .todo { color: var(--gold); }
.legal a { text-decoration-color: var(--gold); text-underline-offset: 3px; }
.legal li + li { margin-top: 4px; }
.legal__notice { margin: 22px 0; padding: 16px 20px; border-left: 3px solid var(--gold); background: var(--bg-2); }
.legal__notice p { color: var(--fg); }
.legal__foot { margin-top: 70px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--fg-3); }

/* Weiche Seitenübergänge zwischen den Seiten (moderne Browser) */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .45s; animation-timing-function: var(--ease); }

/* ==========================================================================
   Weniger Bewegung
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__media img, .hero__type { transform: none !important; }
  .meet__photo { transform: none; opacity: var(--a); }
  .meet__big { transform: translate3d(0, -50%, 0); }
  .board__track, .seen__track { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 899px) {
  .meet__big { transform: none; }
}
