/* =========================================================
   Restaurant Losenbüchel – Bergisches Dreiklang:
   Schiefer (schwarz) · Fachwerk (weiß) · Fensterläden (grün)
   ========================================================= */
:root {
  --paper: #f4ecdf;
  --paper-2: #ebe0cd;
  --cream: #f6f1e7;
  --slate: #1c2124;
  --slate-2: #2a3034;
  --green: #2f5d40;
  --green-d: #1f3f2b;
  --ember: #c4622d;
  --ember-l: #e0894f;
  --gold: #d9a441;
  --ink: #221d18;
  --muted: #6d6358;
  --line: rgba(34, 29, 24, .16);
  --radius: 18px;
  --serif: "Fraunces", Georgia, serif;
  --hand: "Caveat", cursive;
  --sans: "Manrope", system-ui, sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .3 0 0 0 0 .22 0 0 0 0 .14 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  font: 500 17px/1.6 var(--sans);
  color: var(--ink);
  background: var(--paper) var(--noise);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
.wrap { width: min(1200px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--cream); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; border-radius: 6px; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

.eyebrow {
  font: 700 .78rem/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: .8em;
  margin: 0 0 1.2rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--ember-l); }
.h2 {
  font: 600 clamp(2.4rem, 6vw, 4.8rem)/1 var(--serif);
  font-variation-settings: "opsz" 48;
  letter-spacing: -.025em;
  margin: 0 0 1.4rem;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--slate); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95em 1.6em;
  border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bg);
  font: 700 .95rem/1 var(--sans);
  text-decoration: none;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .35s;
  position: relative; overflow: hidden; isolation: isolate;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.35), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(0,0,0,.45); }
.btn:hover::after { opacity: 1; }
.btn svg { width: 1.2em; height: 1.2em; }
.btn--small { padding: .7em 1.2em; font-size: .85rem; }
.btn--big { padding: 1.1em 1.8em; font-size: 1.1rem; }
.btn--ember { --bg: var(--ember); --fg: #fff; }
.btn--dark { --bg: var(--slate); }
.btn--light { --bg: var(--cream); --fg: var(--slate); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(246,241,231,.7); }
.btn--ghost:hover { background: var(--cream); color: var(--slate); }
.link { font-weight: 700; color: var(--green); text-decoration: none; border-bottom: 2px solid currentColor; justify-self: start; }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 100; pointer-events: none; perspective: 1200px; overflow: hidden; background: #15191b; }
.loader.is-open { background: transparent; }
.loader__tiles { position: absolute; inset: -40px; display: grid; }
.loader__tile {
  background:
    radial-gradient(120% 90% at 30% 10%, #3a4247, #23292d 60%, #1a1e21);
  border-radius: 0 0 50% 50% / 0 0 38% 38%;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.35), 0 3px 0 #111416;
  transform-origin: 50% 0;
}
.loader__mark {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: var(--cream);
}
.loader__hello { font: 500 1.6rem/1 var(--hand); color: var(--ember-l); }
.loader__name { font: 600 clamp(2.6rem, 9vw, 6rem)/1 var(--serif); letter-spacing: -.02em; }
.no-js .loader, .reduced .loader { display: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 12px 12px auto; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  color: var(--cream);
  transition: background .4s, color .4s, box-shadow .4s, transform .5s var(--ease);
}
.nav.is-solid {
  background: rgba(246, 241, 231, .86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  color: var(--ink);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.4);
}
.nav.is-hidden { transform: translateY(-140%); }
.nav__logo { display: flex; align-items: center; gap: .55rem; text-decoration: none; font: 600 1.35rem/1 var(--serif); }
.nav__logo svg { width: 30px; height: 30px; }
.nav__links { display: flex; gap: 1.8rem; margin-inline: auto; }
.nav__links a { text-decoration: none; font-weight: 700; font-size: .92rem; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: .7rem; margin-left: auto; }
.nav__links + .nav__right { margin-left: 0; }
.status {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; white-space: nowrap;
  padding: .45em .9em; border-radius: 999px;
  background: rgba(0,0,0,.18);
}
.nav.is-solid .status { background: rgba(0,0,0,.06); }
.status i, .hours__status i { width: 8px; height: 8px; border-radius: 50%; background: #9a9187; }
.is-open .status i, .is-open .hours__status i { background: #4fbf6a; box-shadow: 0 0 0 0 rgba(79,191,106,.6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(79,191,106,0); } 100% { box-shadow: 0 0 0 0 rgba(79,191,106,0); } }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(0,0,0,.18); position: relative; }
.nav.is-solid .nav__burger { background: var(--slate); color: var(--cream); }
.nav__burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; transition: transform .4s var(--ease); }
.nav__burger span:first-child { top: 18px; } .nav__burger span:last-child { top: 25px; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 45;
  background: var(--slate) var(--noise); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 2.5rem;
  padding: 100px var(--gutter) 40px;
  clip-path: circle(0% at calc(100% - 46px) 46px);
  transition: clip-path .8s var(--ease);
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 46px) 46px); }
.drawer nav { display: grid; gap: .3rem; }
.drawer nav a { font: 600 clamp(2.4rem, 11vw, 4rem)/1.15 var(--serif); text-decoration: none; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 560px; background: var(--slate); color: var(--cream); }
.motion .hero { height: 250svh; }
.hero__stage { position: relative; height: 100svh; min-height: 560px; overflow: hidden; }
.motion .hero__stage { position: sticky; top: 0; }
.hero__scene { position: absolute; inset: 0; }
.hero__svg { width: 100%; height: 100%; display: block; }
.hero__flood { position: absolute; inset: 0; background: radial-gradient(closest-side at 50% 55%, #ffe6b0, var(--paper)); opacity: 0; pointer-events: none; }

/* Tageszeit-Himmel */
.sky-1 { stop-color: #7fa6c4; } .sky-2 { stop-color: #c9dbe0; } .sky-3 { stop-color: #efe2c4; }
.sun { fill: #fff4d6; } .moon-cut { fill: transparent; }
.hill-far { fill: #6f8f78; } .hill-mid { fill: #4d6d58; } .hill-near { fill: #2f4a39; }
.firs-far { fill: #56755f; } .firs-mid { fill: #3a5746; } .fir-near { fill: #1f3528; }
.leaf { fill: #2c4a36; } .bush { fill: #264030; }
.smoke circle { fill: #fff; opacity: .5; }
.bulbs circle { fill: #ffd98a; }
.hero__svg { --glass: #9fb6c0; }
.glass { fill: var(--glass); }
.moon-hole { transform: translate(150px, -150px); }
[data-time="night"] .moon-hole { transform: none; }
.lamp-glow { opacity: 0; }

[data-time="dusk"] .sky-1 { stop-color: #3b4a6b; } [data-time="dusk"] .sky-2 { stop-color: #c7786a; } [data-time="dusk"] .sky-3 { stop-color: #f2b872; }
[data-time="dusk"] .sun { fill: #ffd28a; }
[data-time="dusk"] .hill-far { fill: #5b5a63; } [data-time="dusk"] .hill-mid { fill: #3c4a48; } [data-time="dusk"] .hill-near { fill: #222d29; }
[data-time="dusk"] .firs-far { fill: #4a4c55; } [data-time="dusk"] .firs-mid { fill: #2d3a37; } [data-time="dusk"] .leaf, [data-time="dusk"] .bush, [data-time="dusk"] .fir-near { fill: #1b2521; }

[data-time="night"] .sky-1 { stop-color: #0c1424; } [data-time="night"] .sky-2 { stop-color: #1c2a44; } [data-time="night"] .sky-3 { stop-color: #3a3f55; }
[data-time="night"] .sun { fill: #f2ecd9; } [data-time="night"] .sun-glow { opacity: .25; }
[data-time="night"] .hill-far { fill: #26303f; } [data-time="night"] .hill-mid { fill: #1b2430; } [data-time="night"] .hill-near { fill: #121a20; }
[data-time="night"] .firs-far { fill: #1f2835; } [data-time="night"] .firs-mid { fill: #151d27; } [data-time="night"] .leaf, [data-time="night"] .bush, [data-time="night"] .fir-near { fill: #0f161b; }
[data-time="night"] .smoke circle { fill: #9aa3b5; }
.stars circle { fill: #fff; opacity: 0; }
[data-time="night"] .stars circle { opacity: var(--o, .8); }

/* Licht an, wenn geöffnet (oder abends Wohnlicht oben) */
[data-time="dusk"] .hero__svg, [data-time="night"] .hero__svg { --glass: #2a3542; }
[data-time="dusk"] .w--dim, [data-time="night"] .w--dim { --glass: #e7a954; }
.is-open .hero__svg, .is-open .w--dim { --glass: #ffc766; }
.win-glows { opacity: 0; transition: opacity 1s; }
.is-open .win-glows { opacity: 1; }
.is-open .lamp-glow, [data-time="night"] .lamp-glow, [data-time="dusk"] .lamp-glow { opacity: 1; }
[data-time="day"] .bulbs circle { fill: #e9e0c9; }

.hero__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center;
  padding: clamp(110px, 16vh, 170px) var(--gutter) 0;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
  pointer-events: none;
}
.hero__content a { pointer-events: auto; }
.hero__h1 { margin: 0; font-weight: inherit; }
.hero__h1 > span { display: block; }
.hero__kicker { font: 600 clamp(1.4rem, 3vw, 2rem)/1 var(--hand); color: var(--cream); margin: 0 0 .4rem; }
.hero__title {
  font: 600 clamp(3.4rem, 13vw, 11rem)/.9 var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -.035em;
  margin: 0;
}
.hero__title .ch { display: inline-block; }
.hero__title .ch-wrap { display: inline-block; overflow: hidden; padding-bottom: .08em; vertical-align: top; }
.hero__side {
  position: absolute; z-index: 2; left: var(--gutter); bottom: clamp(28px, 6vh, 56px);
  max-width: 400px; text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero__side::before { content: ""; position: absolute; inset: -80px -120px -60px -80px; z-index: -1; background: radial-gradient(closest-side, rgba(10,14,18,.55), transparent); pointer-events: none; }
.hero__lead { font-size: clamp(1rem, 1.5vw, 1.2rem); margin: 0 0 1.2rem; font-weight: 600; }
.hero__cta { display: flex; gap: .7rem; flex-wrap: wrap; }
.hero__hint {
  position: absolute; left: 0; right: 0; margin-inline: auto; width: max-content; bottom: clamp(22px, 4.5vh, 44px); z-index: 3;
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 1.1rem .6rem .7rem; border-radius: 999px;
  border: 1.5px solid rgba(246,241,231,.4);
  background: rgba(12,16,20,.62); color: var(--cream);
  font: 700 .95rem/1.1 var(--sans); cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
}
.hero__hint::after { content: ""; position: absolute; inset: -2px; border-radius: inherit; border: 2px solid var(--ember-l); opacity: 0; pointer-events: none; }
.hero__hint.is-nudge::after { animation: ring 1.6s var(--ease) 2; }
@keyframes ring { 0% { opacity: .9; transform: scale(1); } 100% { opacity: 0; transform: scale(1.25, 1.6); } }
.hero__hint-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--ember); display: grid; place-items: center; flex: none; }
.hero__hint-icon svg { width: 16px; height: 24px; }
.hint-wheel { animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(9px); opacity: 0; } 100% { opacity: 0; } }
.hint-finger, .hint-dot { animation: swipe 1.6s var(--ease) infinite; }
@keyframes swipe { 0% { transform: translateY(4px); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(-8px); opacity: 0; } }
.hint-swipe, .hint-touch { display: none; }
.hero__hint-chev { font-size: 1.3rem; line-height: .6; color: var(--ember-l); animation: bounce 1.6s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }
@media (hover: none) and (pointer: coarse) {
  .hint-mouse, .hint-desk { display: none; }
  .hint-swipe { display: block; }
  .hint-touch { display: inline; }
}
.hero__progress { transition: opacity .4s; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3; background: rgba(246,241,231,.12); }
.hero__progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--ember)); transform-origin: left; transform: scaleX(0); }
:root:not(.motion) .hero__progress { display: none; }
@media (min-width: 761px) and (max-width: 1100px) { .hero__hint { left: auto; right: var(--gutter); margin: 0; } }

/* ---------- Das Haus ---------- */
.haus { padding: clamp(90px, 14vw, 180px) 0 clamp(60px, 8vw, 120px); position: relative; }
.haus__big {
  font: 400 clamp(1.7rem, 4.2vw, 3.4rem)/1.18 var(--serif);
  font-variation-settings: "opsz" 72;
  letter-spacing: -.015em;
  margin: 0; max-width: 24ch;
}
.motion .haus__big .word { opacity: .14; }
.haus__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: clamp(40px, 6vw, 80px); border-top: 1px solid var(--line); }
.fact { padding-top: 1.4rem; display: grid; gap: .3rem; }
.fact b { font: 600 clamp(2.6rem, 6vw, 4.6rem)/1 var(--serif); color: var(--green); letter-spacing: -.03em; }
.fact small { font-size: .45em; margin-left: .1em; color: var(--ember); vertical-align: super; }
.fact > span { color: var(--muted); font-weight: 600; }

.collage { position: relative; width: min(1200px, 100%); margin: clamp(50px, 8vw, 110px) auto 0; height: clamp(420px, 60vw, 720px); padding-inline: var(--gutter); }
.collage figure { position: absolute; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(0,0,0,.45); }
.collage img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.collage__a { left: var(--gutter); top: 0; width: 52%; aspect-ratio: 3/2; }
.collage__b { right: var(--gutter); top: 14%; width: 34%; aspect-ratio: 4/5; }
.collage__c { left: 34%; bottom: 0; width: 30%; aspect-ratio: 4/3; }
.collage__note { position: absolute; right: 10%; bottom: 4%; margin: 0; font: 700 clamp(1.4rem, 2.8vw, 2.2rem)/1.05 var(--hand); color: var(--ember); transform: rotate(-6deg); }
.extras { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; padding: 0 var(--gutter); margin: clamp(40px, 6vw, 80px) auto 0; max-width: 1000px; }
.extras li { padding: .6em 1.1em; border: 1.5px solid var(--line); border-radius: 999px; font-weight: 700; font-size: .9rem; background: rgba(255,255,255,.35); }

/* ---------- Steaks ---------- */
.steaks {
  position: relative; overflow: hidden;
  background: radial-gradient(90% 70% at 20% 30%, #3a2a22, var(--slate) 70%) , var(--slate);
  color: var(--cream);
  padding: clamp(90px, 12vw, 160px) 0;
}
.steaks__embers { position: absolute; inset: 0; pointer-events: none; }
.steaks__embers canvas { width: 100%; height: 100%; }
.steaks__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.steaks .muted { color: #b9ada0; max-width: 42ch; }
.doneness { margin-top: 2rem; }
.doneness__steak { width: 100%; max-width: 440px; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); overflow: visible; }
.steam path { fill: none; stroke: rgba(255,255,255,.35); stroke-width: 4; stroke-linecap: round; }
.doneness__readout { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem; margin: 1rem 0 .8rem; }
.doneness__name { font: 600 clamp(1.8rem, 3.5vw, 2.6rem)/1 var(--serif); }
.doneness__temp { color: var(--ember-l); font-weight: 700; font-size: .9rem; }
.doneness__range { -webkit-appearance: none; appearance: none; width: 100%; max-width: 440px; height: 10px; border-radius: 99px; background: linear-gradient(90deg, #b3192c, #d05a5f 50%, #7d5a4b); outline-offset: 6px; }
.doneness__range::-webkit-slider-thumb { -webkit-appearance: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream); border: 6px solid var(--ember); box-shadow: 0 4px 14px rgba(0,0,0,.4); cursor: grab; }
.doneness__range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--cream); border: 6px solid var(--ember); cursor: grab; }
.doneness__scale { display: flex; justify-content: space-between; max-width: 440px; font-size: .78rem; color: #9d9185; font-weight: 700; margin-top: .6rem; text-transform: uppercase; letter-spacing: .1em; }

.cuts { display: grid; gap: 1.1rem; }
.cut {
  position: relative; display: grid; grid-template-columns: 110px 1fr; gap: 1.2rem; align-items: center;
  padding: 1.1rem; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  transform-style: preserve-3d; transition: border-color .3s;
}
.cut:hover { border-color: rgba(224,137,79,.6); }
.cut__img { width: 110px; height: 110px; border-radius: 14px; overflow: hidden; }
.cut__img img { width: 100%; height: 100%; object-fit: cover; }
.cut h3 { font: 600 1.6rem/1.1 var(--serif); margin: 0 0 .2rem; }
.cut p { margin: 0 0 .8rem; color: #b9ada0; font-size: .92rem; }
.cut__row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.seg { display: inline-flex; padding: 4px; border-radius: 99px; background: rgba(0,0,0,.35); position: relative; }
.seg button { position: relative; z-index: 1; border: 0; background: none; padding: .45em .9em; font-weight: 700; font-size: .82rem; border-radius: 99px; color: #cbbfb2; transition: color .3s; }
.seg button[aria-pressed="true"] { color: var(--slate); }
.seg__pill { position: absolute; top: 4px; bottom: 4px; left: 4px; border-radius: 99px; background: var(--cream); transition: transform .45s var(--ease), width .45s var(--ease); }
.cut__price { font: 600 1.7rem/1 var(--serif); color: var(--gold); font-variant-numeric: tabular-nums; }
.cut__badge { position: absolute; top: -10px; right: 16px; background: var(--ember); color: #fff; font: 700 1.1rem/1 var(--hand); padding: .3em .7em; border-radius: 8px; transform: rotate(4deg); }
.cuts__more { color: var(--ember-l); font-weight: 700; text-decoration: none; margin-top: .4rem; justify-self: start; }

/* ---------- Schnitzel-Marquee ---------- */
.schnitzel { position: relative; padding: clamp(70px, 10vw, 130px) 0; background: var(--green); color: var(--cream); overflow: hidden; }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: .5em; font: 600 clamp(3rem, 10vw, 8.5rem)/1.05 var(--serif); font-style: italic; letter-spacing: -.02em; will-change: transform; }
.marquee__track i { font-style: normal; color: var(--gold); font-size: .4em; }
.marquee--reverse .marquee__track { color: transparent; -webkit-text-stroke: 1.5px rgba(246,241,231,.65); }
.schnitzel__plate { width: clamp(220px, 34vw, 420px); aspect-ratio: 1; margin: -2.5rem auto; position: relative; z-index: 2; border-radius: 50%; overflow: hidden; border: 10px solid var(--cream); box-shadow: 0 40px 60px -20px rgba(0,0,0,.5); }
.schnitzel__plate img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Speisekarte ---------- */
.menu { padding: clamp(90px, 12vw, 160px) 0 clamp(60px, 8vw, 100px); }
.menu__head { display: grid; gap: .4rem; }
.menu__tools { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: 1rem; }
.search { display: flex; align-items: center; gap: .6rem; flex: 1 1 280px; max-width: 420px; padding: .2rem 1.1rem; border-radius: 999px; background: var(--cream); border: 1.5px solid var(--line); transition: border-color .3s, box-shadow .3s; }
.search:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px rgba(47,93,64,.15); }
.search svg { width: 20px; height: 20px; color: var(--muted); flex: none; }
.search input { border: 0; background: none; outline: 0; font: 600 1rem var(--sans); padding: .8rem 0; width: 100%; color: var(--ink); }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { border: 1.5px solid var(--line); background: transparent; padding: .55em 1em; border-radius: 999px; font-weight: 700; font-size: .85rem; transition: background .3s, color .3s, border-color .3s; }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--slate); color: var(--cream); border-color: var(--slate); }

.menu__cats {
  position: sticky; top: 84px; z-index: 20;
  display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none;
  padding: .7rem var(--gutter); margin: 2rem 0 0;
  background: linear-gradient(var(--paper) 70%, rgba(244,236,223,0));
  mask-image: linear-gradient(90deg, transparent, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent);
}
.menu__cats::-webkit-scrollbar { display: none; }
@media (hover: none) {
  .nav.is-solid { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(246,241,231,.97); }
  .menu__cats { mask-image: none; }
}
.menu__cats a { flex: none; text-decoration: none; font-weight: 700; font-size: .88rem; padding: .5em 1em; border-radius: 999px; color: var(--muted); transition: background .3s, color .3s; }
.menu__cats a.is-active { background: var(--green); color: var(--cream); }

.menu__list { margin-top: 1.5rem; }
.menu__loading { color: var(--muted); }
.cat { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: clamp(24px, 5vw, 70px); padding: clamp(40px, 6vw, 70px) 0; border-top: 1px solid var(--line); }
.cat[hidden] { display: none; }
.cat__head { position: sticky; top: 150px; align-self: start; }
.cat__num { font: 700 1.3rem/1 var(--hand); color: var(--ember); }
.cat h3 { font: 600 clamp(1.8rem, 3.4vw, 2.8rem)/1.05 var(--serif); letter-spacing: -.02em; margin: .3rem 0 .4rem; }
.cat__sub { font: 600 1.4rem/1.1 var(--hand); color: var(--green); margin: 0; }
.cat__img { margin-top: 1.4rem; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.cat__img img { width: 100%; height: 100%; object-fit: cover; }
.motion .cat__img img { transform: scale(1.2); }
.cat--hl { background: linear-gradient(90deg, rgba(196,98,45,.07), transparent 60%); margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); border-radius: 4px; }

.dishes { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.3rem; }
.dish { display: grid; gap: .15rem; }
.dish[hidden] { display: none; }
.dish__top { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.dish__name { min-width: 0; }
.dish__name { font: 600 1.18rem/1.3 var(--serif); }
.dish__dots { flex: 1; border-bottom: 2px dotted rgba(34,29,24,.3); transform: translateY(-5px); min-width: 20px; }
.dish__price { margin-left: auto; font: 600 1.15rem/1 var(--serif); white-space: nowrap; font-variant-numeric: tabular-nums; }
.dish__desc { margin: 0; color: var(--muted); font-size: .95rem; max-width: 52ch; }
.dish__tags { display: inline-flex; gap: .3rem; margin-left: .2rem; vertical-align: middle; }
.tag { font: 700 .66rem/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; padding: .35em .6em; border-radius: 6px; }
.tag--vegetarisch { background: #dfe8d6; color: #2f5d40; }
.tag--scharf { background: #f6d9c9; color: #a4401a; }
.tag--kinder { background: #e4e0f0; color: #4b4380; }
.tag--empfehlung { background: var(--gold); color: #3a2a0a; }
.dish mark { background: rgba(217,164,65,.45); color: inherit; border-radius: 3px; padding: 0 .1em; }
.dishes--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem 2.2rem; }
.dishes--compact .dish__name { font: 600 1rem/1.3 var(--sans); }
.dishes--compact .dish__price { font-size: 1rem; }
.menu__empty { text-align: center; font: 600 1.7rem/1.2 var(--hand); color: var(--muted); padding: 3rem 0; }
.menu__foot { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }

/* ---------- Stimmen ---------- */
.voices { background: var(--paper-2) var(--noise); padding: clamp(80px, 10vw, 140px) 0; }
.voices__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.voices__score b { font: 600 clamp(5rem, 14vw, 10rem)/.9 var(--serif); letter-spacing: -.05em; color: var(--green); }
.voices__score p { margin: .6rem 0 0; font-weight: 700; color: var(--muted); }
.stars-row { position: relative; display: inline-block; font-size: 2rem; letter-spacing: .12em; color: rgba(34,29,24,.15); }
.stars-row__fill { position: absolute; inset: 0; color: var(--gold); width: calc(var(--fill) * 1%); overflow: hidden; white-space: nowrap; }
.voices__quotes { display: grid; gap: 1.4rem; }
.quote { margin: 0; padding: 1.8rem 2rem; background: var(--cream); border-radius: var(--radius); box-shadow: 0 20px 40px -30px rgba(0,0,0,.4); position: relative; }
.quote:nth-child(even) { margin-left: clamp(0px, 6vw, 80px); transform: rotate(.8deg); }
.quote:nth-child(odd) { transform: rotate(-.8deg); }
.quote p { margin: 0; font: 400 clamp(1.4rem, 2.8vw, 2rem)/1.2 var(--serif); font-style: italic; }
.quote::before { content: "„"; position: absolute; top: -.2em; left: .3em; font: 700 5rem/1 var(--serif); color: var(--ember); }
.quote cite { display: block; margin-top: .8rem; font: 700 1.3rem/1 var(--hand); color: var(--muted); font-style: normal; }

/* ---------- Besuch ---------- */
.visit { padding: clamp(90px, 12vw, 160px) 0; }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.2rem; margin-top: 2rem; }
.card { background: var(--cream); border-radius: calc(var(--radius) + 6px); padding: clamp(22px, 3vw, 36px); box-shadow: 0 20px 50px -35px rgba(0,0,0,.45); border: 1px solid rgba(34,29,24,.06); }
.hours { grid-row: span 2; }
.hours__status { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.05rem; padding: .6em 1em; border-radius: 99px; background: var(--paper); margin-bottom: 1.2rem; }
.hours__table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours__table th, .hours__table td { text-align: left; padding: .75rem .4rem; border-bottom: 1px dashed var(--line); font-weight: 600; vertical-align: top; }
.hours__table td { text-align: right; }
.hours__table tr.is-today { background: linear-gradient(90deg, rgba(47,93,64,.12), transparent); }
.hours__table tr.is-today th::after { content: "Heute"; margin-left: .6rem; font: 700 1.05rem/1 var(--hand); color: var(--ember); }
.hours__table .closed { color: var(--ember); }
.hours__note { font-size: .85rem; color: var(--muted); margin: 1rem 0 0; }
.contact { display: grid; gap: 1rem; align-content: start; }
.contact address { font-style: normal; font-size: 1.15rem; line-height: 1.5; }
.contact address strong { font: 600 1.5rem/1.3 var(--serif); }
.contact p { margin: 0; }
.map { position: relative; padding: 0; overflow: hidden; min-height: 280px; }
.map__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map__pin { transform-origin: 223px 160px; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-8px); } }
.map__consent { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; background: rgba(246,241,231,.93); backdrop-filter: blur(6px); padding: 1rem 1.2rem; border-radius: 16px; }
.map__consent p { margin: 0; line-height: 1.35; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--slate) var(--noise); color: var(--cream); padding: 90px 0 110px; margin-top: 40px; }
.footer__scallop {
  position: absolute; left: 0; right: 0; top: -19px; height: 20px;
  background: radial-gradient(circle at 20px 20px, var(--slate) 19.5px, transparent 20.5px) 0 0 / 40px 20px repeat-x;
}
.footer__big { font: 600 clamp(3.4rem, 15vw, 13rem)/.85 var(--serif); letter-spacing: -.05em; margin: 0 0 3rem; color: var(--cream); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols a { text-decoration: none; opacity: .85; }
.footer__cols a:hover { opacity: 1; text-decoration: underline; }
.footer__copy { margin: 3rem 0 0; opacity: .5; font-size: .82rem; }

/* ---------- Mobile Dock ---------- */
.dock { display: none; }

/* ---------- Reveal Utility ---------- */
.motion .reveal { opacity: 0; transform: translateY(30px); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav .btn--ember { display: none; }
  .steaks__grid, .voices__grid { grid-template-columns: 1fr; }
  .cat { grid-template-columns: minmax(0, 1fr); gap: 1.2rem; }
  .cat__head { position: static; }
  .cat__img { max-width: 520px; aspect-ratio: 16/9; }
  .visit__grid { grid-template-columns: 1fr; }
  .hours { grid-row: auto; }
}
@media (max-width: 760px) {
  .hero__side { left: 0; right: 0; bottom: auto; top: calc(clamp(110px, 16vh, 170px) + clamp(3.4rem, 13vw, 11rem) + 40px); max-width: none; display: grid; justify-items: center; }
  .hero__side::before { display: none; }
  .hero__lead { display: none; }
  .hero__cta { justify-content: center; }
  .hero__cta .btn { padding: .8em 1.2em; font-size: .88rem; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { inset: 8px 8px auto; padding: 8px 8px 8px 16px; }
  .nav__logo span { font-size: 1.15rem; }
  .status { font-size: .7rem; padding: .45em .7em; }
  .nav__right { gap: .4rem; }
  .haus__facts { grid-template-columns: 1fr; }
  .fact { grid-template-columns: auto 1fr; align-items: baseline; gap: 1rem; }
  .collage { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .collage figure { position: static; width: auto; }
  .collage__a { grid-column: 1 / -1; }
  .collage__b, .collage__c { aspect-ratio: 1; }
  .collage__note { position: static; grid-column: 1 / -1; text-align: center; margin-top: .5rem; }
  .cut { grid-template-columns: 80px 1fr; gap: .9rem; }
  .cut__img { width: 80px; height: 80px; }
  .dishes--compact { grid-template-columns: 1fr; }
  .menu__cats { top: 72px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .dock {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 40;
    background: var(--slate); border-radius: 999px; padding: 6px; box-shadow: 0 12px 30px -10px rgba(0,0,0,.55);
    transform: translateY(150%); transition: transform .5s var(--ease);
  }
  .dock.is-visible { transform: none; }
  .dock a { text-align: center; color: var(--cream); text-decoration: none; font-weight: 700; font-size: .88rem; padding: .85em .4em; border-radius: 999px; }
  .dock a:first-child { background: var(--ember); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .haus__big .word { opacity: 1; }
}

/* ---------- Rechtliche Seiten ---------- */
.legal__main { padding-top: 140px; padding-bottom: 100px; max-width: 820px; }
.legal__main h2 { font: 600 1.35rem/1.3 var(--serif); margin: 2rem 0 .5rem; }
.legal__main a { color: var(--green); }
.legal__todo { background: #f6d9c9; color: #7a2f10; padding: .9rem 1.1rem; border-radius: 12px; font-weight: 700; }
