/* ============================================================================
   Ristorante Risotto — "Cucina Siciliana"
   style.css  (Tokens kommen aus tokens.css = design-system.css)
   Hero = 5-Ebenen-Parallax-Food-Bühne · Signature "La Spolverata di Zafferano".
   Second-Brain-Regeln verankert:
   - KEINE globale h1/h2/h3-Farbe (Farbe nur per .heading--* / Komponenten-Klasse).
   - ULTRAWIDE: --container-wide, Header gebunden, Layer element-relativ.
   - PARALLAX: 4 abgestufte Speeds. Übergänge per mask, kein hartes Band.
   - Burger: kontrastreich (Safran-Rand, opake Linien).
============================================================================ */

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--color-cream);
  background: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* KEIN overflow-x:hidden hier — macht den Body zum Scroll-Container und
     killt jedes position:sticky (Menü-Filter). Schutz liegt auf html{overflow-x:clip}. */
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, select, textarea, button { font-family: inherit; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* Skip-Link */
.skip-link {
  position: absolute; left: var(--space-md); top: -120%;
  background: var(--color-gold); color: var(--text-on-gold);
  padding: var(--space-sm) var(--space-md); border-radius: var(--radius-sm);
  z-index: var(--z-modal); font-weight: var(--fw-semibold);
}
.skip-link:focus { top: var(--space-md); }

/* ---------------------------------------------------------------- Helpers */
.kicker { display: inline-block; margin-bottom: var(--space-md); }
.section-head { max-width: 62ch; margin-bottom: var(--space-2xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-display);
  font-weight: var(--fw-semibold);
}
.section-sub {
  margin-top: var(--space-md);
  font-size: var(--fs-lead);
  color: var(--color-cream-dim);
  line-height: var(--lh-relaxed);
}
.lead { font-size: var(--fs-lead); color: var(--color-cream-dim); line-height: var(--lh-relaxed); }
.muted { color: var(--color-cream-dim); }

/* Film-Grain Layer (global, dezent) */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  z-index: 1; opacity: var(--grain-opacity);
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Slate-Textur als sehr subtiler Untergrund auf dunklen Sektionen */
.slate-tex { position: relative; }
.slate-tex::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("../assets/img/slate-tile.webp");
  background-size: 520px; background-repeat: repeat;
  opacity: 0.14; mix-blend-mode: multiply;
}
.slate-tex > * { position: relative; z-index: 2; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  min-height: 52px; padding: 0 var(--space-xl);
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-body); letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease-warm),
              background-color var(--dur-base) var(--ease-warm),
              box-shadow var(--dur-base) var(--ease-warm),
              color var(--dur-base) var(--ease-warm);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--color-gold); color: var(--text-on-gold);
  box-shadow: var(--glow-gold);
}
.btn--primary:hover { background: var(--color-gold-soft); box-shadow: var(--glow-gold), var(--shadow-md); }
.btn--ghost {
  background: transparent; color: var(--color-cream);
  border: 1.5px solid var(--line-gold);
}
.btn--ghost:hover { border-color: var(--color-gold); color: var(--color-gold-soft); }
.btn--block { width: 100%; }

/* ============================================================================
   HEADER  (an --container-wide gebunden, ULTRAWIDE-sicher)
============================================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  transition: background-color var(--dur-base) var(--ease-warm),
              box-shadow var(--dur-base) var(--ease-warm),
              border-color var(--dur-base) var(--ease-warm);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(16,12,7,0.94);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--line-gold-faint);
  box-shadow: var(--shadow-md);
}
.header__inner {
  width: 100%; max-width: var(--container-wide); margin-inline: auto;
  padding: var(--space-md) var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
}
.header__brand {
  display: inline-flex; align-items: center; line-height: 0;
}
/* Echtes Kunden-Logo (weiße Script-Wortmarke, 202×92). Höhe ~44px, Breite auto.
   Native Breite 202px → nie über ~190px CSS-Breite zeigen (sonst unscharf). */
.header__logo {
  height: clamp(38px, 2.4vw, 46px);
  width: auto; max-width: 190px;
  filter: drop-shadow(0 1px 6px rgba(16,12,7,0.55));
}
.header__nav { display: flex; align-items: center; gap: var(--space-xl); }
.header__link {
  position: relative; font-size: var(--fs-small); font-weight: var(--fw-medium);
  color: var(--color-cream-dim); letter-spacing: 0.02em;
  transition: color var(--dur-fast) var(--ease-warm);
}
.header__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--color-gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-warm);
}
.header__link:hover { color: var(--color-cream); }
.header__link:hover::after,
.header__link.is-active::after { transform: scaleX(1); }
.header__cta { min-height: 44px; padding: 0 var(--space-lg); }

/* Burger — kontrastreich gegen dunkelsten BG (Safran-Rand, opake Linien) */
.burger {
  display: none;
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(16,12,7,0.85);
  border: 1.5px solid var(--color-gold);
  box-shadow: var(--glow-gold-soft);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger__line {
  display: block; width: 22px; height: 2.5px; border-radius: 2px;
  background: var(--color-gold-soft);
  transition: transform var(--dur-base) var(--ease-warm),
              opacity var(--dur-fast) var(--ease-warm);
}
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile-Nav-Panel */
.mobile-nav {
  position: fixed; inset: 0; z-index: calc(var(--z-header) - 1);
  background: rgba(16,12,7,0.98);
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-xl); padding: var(--space-3xl) var(--container-pad);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-warm),
              transform var(--dur-base) var(--ease-warm),
              visibility var(--dur-base);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav__link {
  font-family: var(--font-display); font-size: var(--fs-h2); color: var(--color-cream);
  font-style: italic;
}
.mobile-nav__link:hover { color: var(--color-gold-soft); }
.mobile-nav .btn { margin-top: var(--space-md); min-width: 240px; }

/* ============================================================================
   HERO — eine durchgehende, immersive Szene (Referenz: ref-hero-parallax.png)
   Komposition: dunkler warmer Grund · große Risotto-Szene mittig-unten
   (full-bleed, randlos einblutend) · Zutaten fliegen über die volle Breite
   als gestaffelte Parallax-Ebenen · Headline als Overlay oben-links.
   KEIN abgesetzter Bild-Kasten, keine Card/Rundung um die Schüssel.
============================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-start;
  overflow: hidden;
  background: var(--color-ink);
  isolation: isolate;
}
/* L0 BG-Textur + Vignette (statisch) */
.hero__bg {
  position: absolute; inset: 0; z-index: var(--z-bg);
  background-image: url("../assets/img/slate-tile.webp");
  background-size: 720px; background-repeat: repeat;
  opacity: 0.5;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(16,12,7,0.62) 0%, rgba(16,12,7,0.18) 34%, rgba(16,12,7,0) 56%),
    var(--overlay-vignette);
}
/* Gestaffelte Tiefenebenen — jede Ebene EIGENE Position über die ganze
   Hero-Breite. Element-relativ verankert (kein vw-Drift); Text überlagert. */
.hero__layer {
  position: absolute; z-index: var(--z-hero-l1);
  pointer-events: none;
  will-change: transform;
}
.hero__layer img { width: 100%; height: auto; }

/* L1 Boden-Bühne: die GANZE Risotto-Szene als full-bleed Cover, die untere
   ~62% des Heros füllend. Die Szene hat selbst eine dunkle linke Zone (für
   die Headline) und die Schüssel rechts der Mitte. Oben + Seiten weich
   maskiert → blutet randlos in den Ink-Grund (kein Kasten, keine Kante).
   Extra Höhe + bottom-Überstand, damit der Parallax-Scrub keine Kante zeigt. */
.hero__layer--scene {
  z-index: var(--z-hero-l2);
  /* die Schüssel als GROSSER, dominanter Blickfang in der unteren/zentralen
     Hero-Fläche. Layer breit + hoch, in die Schüssel hineingezoomt, mittig
     verankert; oben + Seiten weich maskiert → randlos einblutend (kein Kasten). */
  /* Schüssel center-RIGHT (wie Referenz: linke Spalte für die Headline frei,
     Gericht dominiert die rechte/untere Fläche). */
  left: 60%; bottom: -8%; transform: translateX(-50%);
  width: min(98%, 1480px); height: 80%;
  /* obere Maske kräftig + linke Flanke stark abgeschattet → Headline-Lesezone
     oben-links bleibt dunkel; Schüssel dominiert rechts/unten */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.38) 16%, #000 40%, #000 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 12%, #000 30%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.38) 16%, #000 40%, #000 100%),
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.35) 12%, #000 30%, #000 92%, transparent 100%);
          mask-composite: intersect;
}
.hero__layer--scene img {
  width: 100%; height: 100%; object-fit: cover;
  /* in die Schüssel hineingezoomt → groß & prominent, mittig im Layer */
  object-position: 60% 46%;
  transform: scale(1.12); transform-origin: 56% 62%;
}
/* warmer, breiter Bühnen-Glow direkt unter/hinter der Schüssel — weiches
   Einbluten in den Grund, füllt die Fläche, keine Box-Anmutung */
.hero__layer--scene::after {
  content: ""; position: absolute; left: 52%; bottom: 16%;
  transform: translate(-50%, 50%);
  width: 84%; height: 104%; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side,
    rgba(224,165,59,0.20) 0%, rgba(224,165,59,0.07) 46%, rgba(224,165,59,0) 74%);
  pointer-events: none;
}
/* L1b Puder-Splash HINTER der Schüssel (Spice-Dust als sichtbarer „Wolken"-
   Burst hinter dem Gericht) — gibt der Komposition die Referenz-Energie */
.hero__layer--burst {
  z-index: var(--z-hero-l1); opacity: 0.6;
  left: 60%; bottom: 30%; transform: translateX(-50%);
  width: min(86%, 1280px);
  -webkit-mask-image: radial-gradient(70% 80% at 52% 60%, #000 35%, transparent 82%);
          mask-image: radial-gradient(70% 80% at 52% 60%, #000 35%, transparent 82%);
  mix-blend-mode: screen;
}
/* L2 Gewürzstaub: breiter Puder-Schleier über die obere Bildhälfte, bildet
   Tiefe + Frische über der Schüssel (zweite Staub-Schicht, andere Speed) */
.hero__layer--dust {
  z-index: var(--z-hero-l1); opacity: 0.62;
  top: 2%; left: 50%; right: auto; transform: translateX(-50%);
  width: min(128%, 1800px);
  -webkit-mask-image: radial-gradient(82% 92% at 52% 32%, #000 38%, transparent 86%);
          mask-image: radial-gradient(82% 92% at 52% 32%, #000 38%, transparent 86%);
}
/* L3 Safran/Chili-Schweber: dynamisch UM die Schüssel gestreut — von links
   unten hereingewirbelt. Liegt jetzt HINTER dem Text (z-index < Text): scheint
   als warme Stimmung hinter der Headline durch, ohne die Copy zu überlagern.
   Der Lese-Scrim (.hero__copy::before) deckt den Safran in der direkten
   Textzone ab → AA-Kontrast. Opacity leicht gesenkt für ruhigen Untergrund. */
.hero__layer--spice {
  z-index: var(--z-hero-l3); opacity: 0.82;
  top: auto; bottom: 14%; left: -6%; right: auto; transform: none;
  width: clamp(520px, 64vw, 1180px);
  filter: drop-shadow(0 8px 18px rgba(16,12,7,0.5));
}
/* L4 Front-Kräuter: GROSSER, üppiger Zweig RECHTS neben/über der Schüssel —
   markanter Blickfang wie in der Referenz, fliegt von rechts oben herein,
   am schnellsten; klar aus der linken Textzone heraus */
.hero__layer--herbs {
  z-index: var(--z-hero-l4); filter: drop-shadow(0 16px 34px rgba(16,12,7,0.6));
  top: 8%; right: -4%; left: auto; transform: none;
  width: clamp(540px, 56vw, 1080px);
}

/* Copy-Block: Overlay OBEN-LINKS über der Bühne */
.hero__inner {
  position: relative; z-index: var(--z-hero-text);
  width: 100%; max-width: var(--container-wide); margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-top: clamp(7rem, 16vh, 11rem);
}
.hero__copy { max-width: 38ch; position: relative; }
/* Lese-Scrim hinter der Copy (oben-links), sichert AA-Kontrast über der Bühne —
   unabhängig vom Parallax-Scrub, kein opacity-Gate am Text.
   WICHTIG: rein elliptischer Verlauf, der NACH ALLEN SEITEN voll auf transparent
   ausläuft → keine sichtbaren Rechteck-Kanten (auch nicht @3440). Großzügig über
   die Textzone hinaus (inset stark negativ). Zusätzlich mask-Feather als Absicherung. */
.hero__copy::before {
  content: ""; position: absolute; inset: -40% -70% -45% -55%; z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 58% at 34% 46%,
      rgba(16,12,7,0.92) 0%,
      rgba(16,12,7,0.78) 32%,
      rgba(16,12,7,0.40) 56%,
      rgba(16,12,7,0) 76%);
  -webkit-mask-image: radial-gradient(ellipse 70% 66% at 34% 46%, #000 40%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 66% at 34% 46%, #000 40%, transparent 80%);
}
.hero__eyebrow {
  font-family: var(--font-display); font-style: italic;
  color: var(--color-gold-soft); font-size: var(--fs-h4);
  margin-bottom: var(--space-md);
}
.hero__title {
  font-family: var(--font-display); font-style: italic; font-weight: var(--fw-medium);
  font-size: var(--fs-hero); line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--color-cream);
  text-shadow: 0 2px 24px rgba(16,12,7,0.85), 0 1px 4px rgba(16,12,7,0.9);
}
.hero__title .accent { color: var(--color-gold); }
.hero__sub {
  margin-top: var(--space-lg); max-width: 42ch;
  font-size: var(--fs-lead); color: var(--color-cream);
  line-height: var(--lh-relaxed);
  text-shadow: 0 1px 12px rgba(16,12,7,0.9);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-xl); }
.hero__note { margin-top: var(--space-md); font-size: var(--fs-small); color: var(--color-cream-dim); }

/* Scroll-Cue */
.hero__cue {
  position: absolute; left: 50%; bottom: var(--space-lg); transform: translateX(-50%);
  z-index: var(--z-hero-text);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-xs);
  font-size: var(--fs-kicker); letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--color-cream-dim);
}
.hero__cue span {
  width: 1px; height: 38px;
  background: linear-gradient(var(--color-gold), transparent);
  animation: cuepulse 2.2s var(--ease-in-out) infinite;
}
@keyframes cuepulse { 0%,100% { opacity:0.3; transform:scaleY(0.6); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

/* ============================================================================
   SIGNATURE-ÜBERGANG Hero → Social-Proof  ("La Spolverata di Zafferano")
   weiche Maske, kein hartes Band; überlappt die Nachbarn.
============================================================================ */
.proof {
  position: relative; z-index: 4;
  /* edler dunkler Verlauf + dezenter Safran-Glow oben statt flacher Fläche */
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(224,165,59,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-ink) 0%, var(--color-ink-2) 50%, var(--color-ink) 100%);
  padding: var(--section-py-tight) 0;
  margin-top: -2px;
  border-top: 1px solid var(--line-gold-faint);
  border-bottom: 1px solid var(--line-gold-faint);
  overflow: hidden;
}
/* feine Gold-Hairlines knapp innerhalb der Ränder für Wertigkeit */
.proof::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
  opacity: 0.5;
}
.proof::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
  opacity: 0.5;
}
/* Safran-Streu, die aus dem Hero in den Balken "ausläuft" — weich maskiert */
.proof__dust {
  position: absolute; left: 50%; top: -55%; transform: translateX(-50%);
  width: min(1400px, 120%); height: 200%; pointer-events: none;
  background-image: url("../assets/img/hero-saffron-spices.webp");
  background-repeat: no-repeat; background-position: center top; background-size: contain;
  opacity: 0.10; mix-blend-mode: screen; z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 70%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, transparent 70%);
  will-change: transform;
}
.proof__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
  text-align: center;
}
.proof__stars { font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem); color: var(--color-gold); letter-spacing: 0.12em; }
.proof__figures { display: flex; align-items: baseline; gap: var(--space-lg); flex-wrap: wrap; justify-content: center; }
.proof__rating {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4rem); color: var(--color-gold-soft); line-height: 1;
}
.proof__rating small { font-size: 0.4em; color: var(--color-cream-dim); font-family: var(--font-body); font-weight: var(--fw-regular); }
.proof__count {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); color: var(--color-cream);
}
.proof__label { font-size: var(--fs-small); color: var(--color-cream-dim); letter-spacing: var(--tracking-caps); text-transform: uppercase; }
.proof__sep { color: var(--line-gold); margin: 0 0.15em; font-weight: var(--fw-regular); }
.proof__micro { font-style: italic; color: var(--color-cream-dim); font-family: var(--font-display); }

/* ============================================================================
   GENERIC SECTION
============================================================================ */
.section { position: relative; padding: var(--section-py) 0; overflow: hidden; }
.section--ink   { background: var(--color-ink); }
.section--ink2  { background: var(--color-ink-2); }
/* weiche Gradient-Übergänge zwischen unterschiedlichen Sektion-Tönen */
.section--fade-top::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: clamp(60px,8vw,140px);
  background: linear-gradient(var(--color-ink-2), transparent); z-index: 3; pointer-events: none;
}

/* Reveal-Grundzustand (JS hängt .is-in an) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur-reveal) var(--ease-out-soft), transform var(--dur-reveal) var(--ease-out-soft); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================================
   OUR STORY — Split mit überlappenden Bildern, versch. Parallax-Speeds
============================================================================ */
.story__grid {
  display: grid; gap: var(--space-2xl);
  grid-template-columns: minmax(0,1fr) minmax(0,1.05fr);
  align-items: center;
}
.story__media { position: relative; min-height: 420px; }
.story__media-main {
  width: 86%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
}
.story__media-main img { width: 100%; height: 112%; object-fit: cover; }
.story__media-sub {
  position: absolute; right: 0; bottom: -10%;
  width: 46%; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 3/4;
  border: 4px solid var(--color-ink-2);
}
.story__media-sub img { width: 100%; height: 114%; object-fit: cover; }
.story__text p + p { margin-top: var(--space-md); }
.story__signoff { font-family: var(--font-display); font-style: italic; color: var(--color-gold-soft); margin-top: var(--space-lg); font-size: var(--fs-h4); }

/* ============================================================================
   OUR CHEF — Porträt + Pull-Quote
============================================================================ */
.chef__grid {
  display: grid; gap: var(--space-2xl);
  grid-template-columns: 0.85fr 1.15fr; align-items: center;
}
.chef__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.chef__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); will-change: transform; }
.chef__badge {
  position: absolute; left: var(--space-md); bottom: var(--space-md);
  background: rgba(16,12,7,0.82); color: var(--color-cream-dim);
  font-size: var(--fs-small); padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill); border: 1px solid var(--line-gold-faint);
}
.chef__quote {
  font-family: var(--font-display); font-style: italic; font-weight: var(--fw-medium);
  font-size: var(--fs-display); line-height: var(--lh-snug); color: var(--color-cream);
}
.chef__quote .accent { color: var(--color-gold); }
.chef__body p + p { margin-top: var(--space-md); }
.chef__body { margin-top: var(--space-lg); color: var(--color-cream-dim); }
.chef__sign { font-family: var(--font-display); font-style: italic; color: var(--color-gold-soft); margin-top: var(--space-lg); }

/* ============================================================================
   QUALITY INGREDIENTS — USP-Trio
============================================================================ */
.usp__grid {
  display: grid; gap: var(--grid-gap);
  grid-template-columns: repeat(3, 1fr);
}
.usp__card {
  background: var(--color-ink); border: 1px solid var(--line-hairline);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-warm), transform var(--dur-base) var(--ease-warm);
}
.usp__card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.usp__img { aspect-ratio: 4/3; overflow: hidden; }
.usp__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-warm); }
.usp__card:hover .usp__img img { transform: scale(1.05); }
.usp__body { padding: var(--space-xl); }
.usp__icon { color: var(--color-gold); margin-bottom: var(--space-md); }
.usp__title { font-family: var(--font-display); font-size: var(--fs-h3); color: var(--color-cream); margin-bottom: var(--space-sm); line-height: var(--lh-snug); }
.usp__text { color: var(--color-cream-dim); font-size: var(--fs-body); }

/* ============================================================================
   OUR MENU — Tab-Filter + Card-Grid (kein Preis, kein Cart)
============================================================================ */
.menu__tabs {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  justify-content: center; margin-bottom: var(--space-2xl);
}
.menu__tab {
  min-height: 44px; padding: 0 var(--space-lg); border-radius: var(--radius-pill);
  font-size: var(--fs-small); font-weight: var(--fw-medium); letter-spacing: 0.04em;
  color: var(--color-cream-dim); border: 1px solid var(--line-hairline);
  background: transparent; transition: all var(--dur-base) var(--ease-warm);
}
.menu__tab:hover { color: var(--color-cream); border-color: var(--line-gold-faint); }
.menu__tab.is-active { background: var(--color-gold); color: var(--text-on-gold); border-color: var(--color-gold); }

.menu__grid {
  display: grid; gap: var(--grid-gap);
  grid-template-columns: repeat(4, 1fr);
}
.menu__card {
  background: var(--color-ink-2); border: 1px solid var(--line-hairline);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-warm), transform var(--dur-base) var(--ease-warm), box-shadow var(--dur-base) var(--ease-warm);
}
.menu__card.is-hidden { display: none; }
.menu__card:hover { border-color: var(--line-gold); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.menu__card-img { aspect-ratio: 1; overflow: hidden; position: relative; }
.menu__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-warm); }
.menu__card:hover .menu__card-img img { transform: scale(1.06); }
.menu__card-cat {
  position: absolute; top: var(--space-sm); left: var(--space-sm);
  z-index: 2;            /* IMMER über dem (auf Hover skalierten) Bild bleiben */
  font-size: var(--fs-kicker); letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--color-gold-soft); background: rgba(16,12,7,0.78);
  padding: 3px var(--space-sm); border-radius: var(--radius-pill);
  backdrop-filter: blur(2px);
  transition: background-color var(--dur-base) var(--ease-warm);
}
/* Label-Kontrast/-Sichtbarkeit auf Hover halten (kein opacity/translate-Wegblenden) */
.menu__card:hover .menu__card-cat { color: var(--color-gold-soft); background: rgba(16,12,7,0.86); }
.menu__card-body { padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-xs); flex: 1; }
.menu__card-name { font-family: var(--font-display); font-size: var(--fs-h4); color: var(--color-cream); line-height: var(--lh-snug); }
.menu__card-desc { font-size: var(--fs-small); color: var(--color-cream-dim); line-height: var(--lh-normal); }
.menu__note { text-align: center; margin-top: var(--space-2xl); font-style: italic; color: var(--color-cream-dim); font-family: var(--font-display); }

/* ============================================================================
   WINE / APERITIVO
============================================================================ */
.wine__grid {
  display: grid; gap: var(--space-2xl);
  grid-template-columns: 1.2fr 0.8fr; align-items: stretch;
}
.wine__media-lg { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; min-height: 340px; }
.wine__media-lg img { width: 100%; height: 110%; object-fit: cover; will-change: transform; }
.wine__side { display: flex; flex-direction: column; gap: var(--space-lg); justify-content: center; }
.wine__media-sm { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.wine__media-sm img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================================
   GALERIE — asymmetrisches Editorial-Grid, sanfter Parallax
============================================================================ */
.gallery__grid {
  display: grid; gap: var(--grid-gap);
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 205px;
  grid-auto-flow: dense;
}
.gallery__item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
/* leichte Überdeckung, damit y-Parallax keine Kanten freilegt */
.gallery__item img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
/* Bündige 6-Spalten-Belegung (Auflösungs-bewusst):
   Reihe 1+2: big 3×2 (höchstaufgelöst) + tall 2×2 (hochkant) + 2×(1×1) rechts = 3+2+1.
   Reihe 3:   drei 2×1 Kacheln = 2+2+2. So bleibt jedes Bild nahe seiner nativen Breite. */
.gallery__item--big  { grid-column: span 3; grid-row: span 2; }
.gallery__item--tall { grid-column: span 2; grid-row: span 2; }
.gallery__item--sm   { grid-column: span 1; grid-row: span 1; }
.gallery__item--wide { grid-column: span 2; grid-row: span 1; }

/* ============================================================================
   BEWERTUNGEN / STIMMEN
============================================================================ */
.reviews__lead { text-align: center; margin-bottom: var(--space-2xl); }
.reviews__grid { display: grid; gap: var(--grid-gap); grid-template-columns: repeat(3, 1fr); }
.review {
  background: var(--color-ink); border: 1px solid var(--line-hairline);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  display: flex; flex-direction: column; gap: var(--space-md);
}
.review__stars { color: var(--color-gold); letter-spacing: 0.1em; font-size: var(--fs-h4); }
.review__text { font-family: var(--font-display); font-style: italic; font-size: var(--fs-h4); color: var(--color-cream); line-height: var(--lh-snug); }
.review__source { font-size: var(--fs-small); color: var(--color-cream-dim); margin-top: auto; }
.reviews__cta { text-align: center; margin-top: var(--space-2xl); }
.reviews__cta a { color: var(--color-gold); font-weight: var(--fw-medium); }
.reviews__cta a:hover { color: var(--color-gold-soft); }

/* ============================================================================
   BOOK A TABLE — Formular + NAP
============================================================================ */
.book { position: relative; overflow: hidden; }
.book__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../assets/img/food-overhead.webp");
  background-size: cover; background-position: center;
  opacity: 0.18; will-change: transform;
}
.book__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(var(--color-ink), rgba(20,16,11,0.7)); }
.book__inner { position: relative; z-index: 2; }
.book__grid { display: grid; gap: var(--space-2xl); grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.book__form-wrap {
  width: 100%; max-width: 100%; box-sizing: border-box; margin-inline: auto;
  background: var(--color-ink-2); border: 1px solid var(--line-gold-faint);
  border-radius: var(--radius-lg); padding: var(--space-2xl); box-shadow: var(--shadow-lg);
}
.book__form-wrap form { min-width: 0; }
.book__form-wrap form > * { min-width: 0; }
.form__row { display: grid; gap: var(--space-md); grid-template-columns: 1fr 1fr; }
.form__row > * { min-width: 0; }
.field { display: flex; flex-direction: column; gap: var(--space-2xs); margin-bottom: var(--space-md); min-width: 0; }
.field label { font-size: var(--fs-small); color: var(--color-cream-dim); font-weight: var(--fw-medium); }
.field .req { color: var(--color-gold); }
.field input, .field select, .field textarea {
  width: 100%; max-width: 100%; min-width: 0;
  min-height: 48px; padding: var(--space-sm) var(--space-md);
  background: var(--field-bg); border: 1px solid var(--field-border);
  border-radius: var(--radius-sm); color: var(--color-cream); font-size: var(--fs-body);
  transition: border-color var(--dur-fast) var(--ease-warm), background-color var(--dur-fast) var(--ease-warm);
}
.field textarea { min-height: 110px; resize: vertical; line-height: var(--lh-normal); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-gold); background: var(--field-bg-focus);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--color-gold) 50%), linear-gradient(135deg, var(--color-gold) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 14px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__consent { font-size: var(--fs-small); color: var(--color-cream-dim); margin: var(--space-md) 0; }
.form__consent a { color: var(--color-gold); text-decoration: underline; }
.form__micro { font-size: var(--fs-small); color: var(--color-cream-dim); margin-top: var(--space-md); text-align: center; }
.form__status { margin-top: var(--space-md); padding: var(--space-md); border-radius: var(--radius-sm); font-size: var(--fs-small); display: none; }
.form__status.is-ok { display: block; background: rgba(143,168,91,0.16); border: 1px solid var(--color-success); color: var(--color-cream); }
.form__status.is-err { display: block; background: rgba(217,102,63,0.16); border: 1px solid var(--color-error); color: var(--color-cream); }

.book__info { display: flex; flex-direction: column; gap: var(--space-xl); }
.info-block h3 { font-family: var(--font-display); color: var(--color-gold-soft); font-size: var(--fs-h4); margin-bottom: var(--space-xs); }
.info-block p, .info-block a { color: var(--color-cream); }
.info-block a:hover { color: var(--color-gold-soft); }
.hours { width: 100%; max-width: 100%; table-layout: fixed; border-collapse: collapse; font-size: var(--fs-small); }
.hours td {
  padding: var(--space-xs) 0; border-bottom: 1px solid var(--line-hairline);
  color: var(--color-cream-dim); min-width: 0; overflow-wrap: anywhere;
}
.hours td:first-child { width: 55%; }
.hours td:last-child {
  width: 45%; text-align: right; color: var(--color-cream);
  font-variant-numeric: tabular-nums; white-space: normal;
}
.hours tr.is-closed td { color: var(--color-gold); font-weight: var(--fw-semibold); }
.maplink { display: inline-flex; gap: var(--space-xs); color: var(--color-gold); font-weight: var(--fw-medium); margin-top: var(--space-xs); }
.maplink:hover { color: var(--color-gold-soft); }

/* ============================================================================
   FOOTER
============================================================================ */
.footer { position: relative; background: var(--color-ink-soft); padding: var(--section-py-tight) 0 var(--space-2xl); overflow: hidden; border-top: 1px solid var(--line-gold); }
.footer__grid { display: grid; gap: var(--space-2xl); grid-template-columns: 1.2fr 1fr 1fr; }
.footer__logo {
  height: clamp(54px, 5vw, 72px); width: auto; max-width: 190px;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 2px 8px rgba(16,12,7,0.5));
}
.footer__claim { font-family: var(--font-display); font-style: italic; color: var(--color-gold-soft); margin-top: var(--space-xs); }
.footer h4 { font-size: var(--fs-kicker); letter-spacing: var(--tracking-kicker); text-transform: uppercase; color: var(--color-gold); margin-bottom: var(--space-md); font-weight: var(--fw-medium); }
.footer p, .footer a { color: var(--color-cream-dim); }
.footer a:hover { color: var(--color-gold-soft); }
.footer__bottom {
  margin-top: var(--space-2xl); padding-top: var(--space-lg); border-top: 1px solid var(--line-hairline);
  display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: space-between; align-items: center;
}
.footer__links { display: flex; gap: var(--space-lg); }
.footer__copy { font-size: var(--fs-small); color: var(--color-cream-faint); }

/* ============================================================================
   LEGAL (impressum/datenschutz)
============================================================================ */
.legal { padding-top: calc(var(--space-4xl) + 40px); min-height: 70vh; }
.legal__title { font-family: var(--font-display); font-size: var(--fs-display); color: var(--color-cream); margin-bottom: var(--space-xl); }
.legal h2 { font-family: var(--font-display); color: var(--color-gold-soft); font-size: var(--fs-h3); margin: var(--space-xl) 0 var(--space-sm); }
.legal h3 { font-family: var(--font-display); color: var(--color-cream); font-size: var(--fs-h4); margin: var(--space-lg) 0 var(--space-xs); }
.legal p { color: var(--color-cream-dim); margin-bottom: var(--space-sm); }
.legal a { color: var(--color-gold); text-decoration: underline; }
.legal strong { color: var(--color-cream); }
.legal .todo { color: var(--color-error); font-style: italic; }
.legal__back { display: inline-block; margin-top: var(--space-2xl); color: var(--color-gold); font-weight: var(--fw-medium); }

/* ============================================================================
   RESPONSIVE
============================================================================ */
/* Ultrawide: Szene füllt die Fläche weiter (object-position hält die Schüssel
   sichtbar), Layer an der Hero-Breite gekoppelt — kein toter Rand, kein vw-Drift. */
@media (min-width: 2200px) {
  .hero__copy { max-width: 46ch; }
  /* Szene groß halten + Schüssel sichtbar, damit die breite Fläche immersiv
     gefüllt bleibt (an Hero-Breite koppeln, nicht 1440er strecken). */
  .hero__layer--scene { height: 90%; width: min(108%, 2200px); }
  .hero__layer--scene img { object-position: 68% 52%; transform: scale(1.14); }
  .hero__layer--burst { width: min(92%, 1900px); }
  .hero__layer--dust  { width: min(112%, 2600px); }
  .hero__layer--spice { left: -3%; width: clamp(900px, 50vw, 1500px); }
  .hero__layer--herbs { right: -2%; width: clamp(820px, 46vw, 1380px); }
}

@media (max-width: 1100px) {
  .menu__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .story__grid, .chef__grid, .wine__grid, .book__grid { grid-template-columns: 1fr; }
  .chef__media { max-width: 460px; }
  .usp__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .story__media-sub { width: 40%; }
  .wine__grid { gap: var(--space-lg); }
}

@media (max-width: 860px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }

  /* ---- M1 Hero: dieselbe immersive Idee wie Desktop. Risotto-Szene GROSS
     in der unteren Hälfte (full-bleed, randlos einblutend) · Headline als
     Overlay oben mit kräftigem Scrim · Zutaten fliegen um die Schüssel,
     aus der oberen Textzone heraus. NICHT Textblock oben + Food-Streifen. ---- */
  .hero { min-height: 96svh; }
  .hero__inner { padding-top: clamp(5rem, 13vh, 7rem); }
  /* Copy kompakter halten, damit CTA + Telefon-Note hoch genug sitzen und die
     untere Hero-Zone frei für Schüssel + rahmende Blätter bleibt */
  .hero__cta { margin-top: var(--space-lg); gap: var(--space-sm); }
  .hero__note { margin-top: var(--space-sm); }

  /* L1 Szene: GROSSE, dominante Schüssel in der unteren ~58%, sauber sichtbar —
     bündig am unteren Rand verankert (kein „abgeschnitten"-Eindruck), Schüssel
     vollständig im Bild (weniger reingezoomt), randlos oben + seitlich maskiert. */
  .hero__layer--scene {
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 118%; height: 52%;
    -webkit-mask-image:
      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 14%, #000 36%, #000 100%),
      linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-composite: source-in;
            mask-image:
      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 14%, #000 36%, #000 100%),
      linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-composite: intersect;
  }
  /* Schüssel zentral & vollständig zeigen: Bildausschnitt zeigt den Schüsselrand
     oben, nicht angeschnitten — moderater Zoom, mittig verankert */
  .hero__layer--scene img { object-position: 56% 42%; transform: scale(1.06); transform-origin: 56% 50%; }
  .hero__layer--scene::after { left: 50%; bottom: 10%; width: 118%; height: 72%; }

  /* L1b Puder-Splash hinter der Schüssel — tief in der unteren Hälfte */
  .hero__layer--burst {
    bottom: 28%; left: 50%; transform: translateX(-50%);
    width: 130%; opacity: 0.45;
  }
  /* L2 Staub: breit über die obere Hälfte, dezent */
  .hero__layer--dust {
    top: 2%; bottom: auto; left: 50%; right: auto; transform: translateX(-50%);
    width: 160%; opacity: 0.4;
  }
  /* L3 Safran/Chili: in die UNTERE-LINKE Ecke geschoben, kleiner + dezenter —
     rahmt die Schüssel, ragt NICHT in die CTA-/Telefon-/Note-Zone
     (hero-text-covered-by-foreground-layer-mobile). */
  .hero__layer--spice {
    top: auto; bottom: -2%; left: -34%; right: auto; transform: none;
    width: clamp(260px, 64vw, 360px); opacity: 0.6;
  }
  /* L4 Kräuter: Zweig in die UNTERE-RECHTE Ecke, kleiner + tiefer — rahmt die
     Schüssel von rechts, bleibt unter der Telefon-/Note-Zeile, kein Blatt drüber */
  .hero__layer--herbs {
    top: auto; bottom: -2%; right: -32%; left: auto; transform: none;
    width: clamp(280px, 62vw, 380px); opacity: 0.9;
  }
  /* Lese-Scrim hinter dem Text auf Mobile: weicher elliptischer Verlauf, läuft
     nach allen Seiten voll transparent aus (keine Box-Kante), deckt Headline +
     Subline + CTA + Telefon-Note ab → AA-Kontrast über der Bühne. */
  .hero__copy::before {
    inset: -22% -34% -30% -30%;
    background: radial-gradient(ellipse 78% 66% at 40% 42%,
      rgba(16,12,7,0.94) 0%,
      rgba(16,12,7,0.82) 40%,
      rgba(16,12,7,0.46) 62%,
      rgba(16,12,7,0) 82%);
    -webkit-mask-image: radial-gradient(ellipse 84% 74% at 40% 42%, #000 46%, transparent 84%);
            mask-image: radial-gradient(ellipse 84% 74% at 40% 42%, #000 46%, transparent 84%);
  }

  /* ---- M3 Menü-Filter: einzeilig scroll-snap + sticky, dockt als echte
     Toolbar unter dem Header an (solider/blur Ink-Grund über volle Breite,
     vertikal zentriert, untere Hairline + dezenter Schatten zur Abgrenzung).
     Lückenlos full-bleed via negative margin (= über --container-pad hinaus). */
  #speisekarte.section { overflow: visible; }   /* sonst killt overflow:hidden das Sticky */
  .menu__tabs {
    flex-wrap: nowrap; justify-content: flex-start; align-items: center;
    /* luftiger Chip-Abstand in der angedockten Toolbar (nicht zusammengepresst) */
    gap: var(--space-md);
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    /* dockt bündig DIREKT unter dem fixen Header an: top = tatsächliche
       Header-Höhe (per JS gemessen, inkl. is-scrolled-Zustand). Fallback 80px
       entspricht der gescrollten Mobile-Header-Höhe → keine Überlappung. */
    position: sticky; top: var(--header-h, 80px); z-index: 20;
    /* full-bleed bis zum Container-Rand (= auf Mobile die Seitenkante) */
    margin-inline: calc(-1 * var(--container-pad));
    padding-inline: var(--container-pad);
    /* angedockte Toolbar-Optik — etwas höher, Chips vertikal zentriert */
    min-height: 66px;
    padding-block: var(--space-md);
    background: rgba(20,16,11,0.86);
    -webkit-backdrop-filter: blur(12px) saturate(115%);
            backdrop-filter: blur(12px) saturate(115%);
    border-bottom: 1px solid var(--line-gold-faint);
    box-shadow: 0 10px 24px -14px rgba(0,0,0,0.85);
    margin-bottom: var(--space-xl);
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tab {
    flex: 0 0 auto; scroll-snap-align: start;
    /* mehr horizontales Padding pro Chip → luftiger, sauberer */
    padding-inline: var(--space-xl);
    background: rgba(34,26,18,0.6);
  }
  .menu__tab.is-active {
    background: var(--color-gold); color: var(--text-on-gold);
    border-color: var(--color-gold); box-shadow: var(--glow-gold-soft);
  }

  /* ---- M4 Galerie: dense 2-Spalten, großes Hero-Bild oben → lückenlos ---- */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; grid-auto-flow: dense; }
  .gallery__item--big { grid-column: span 2; grid-row: span 2; }
  .gallery__item--tall { grid-column: span 1; grid-row: span 2; }
  .gallery__item--sm, .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
}

/* ---- M2 Story: Absolut-Overlap → sauberer, leicht versetzter Stack ---- */
@media (max-width: 760px) {
  .story__media { min-height: 0; display: grid; gap: var(--space-md); position: static; }
  .story__media-main { width: 100%; aspect-ratio: 16/11; }
  .story__media-main img { height: 100%; }
  .story__media-sub {
    position: static; width: 64%; margin-left: auto;
    margin-top: calc(-1 * var(--space-2xl));
    aspect-ratio: 4/3; border-width: 6px;
  }
  .story__media-sub img { height: 100%; }
}

@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero__copy { max-width: none; }

  /* ---- Social-Proof mobil: kompakt, harmonisch gruppiert, edel ----
     Straffe vertikale Abstände, „4,8 von 5" baseline-ausbalanciert, Sterne
     direkt darüber, „1.706 Bewertungen · auf Google" als kompakte Einheit,
     dezente Gold-Hairlines als Trenner. Zentriert. */
  .proof { padding: var(--space-2xl) 0; }
  .proof__inner { gap: var(--space-sm); max-width: 22rem; }
  .proof__stars { font-size: 1.5rem; letter-spacing: 0.18em; margin-bottom: 2px; }
  /* große Rating-Zahl + „/5" optisch ausbalanciert, eine zentrierte Einheit */
  .proof__figures {
    flex-direction: column; align-items: center; gap: var(--space-sm);
    /* Gold-Hairlines ober- + unterhalb der Zahlen → klare, edle Gruppierung */
    width: 100%;
    padding-block: var(--space-md);
    border-top: 1px solid var(--line-gold-faint);
    border-bottom: 1px solid var(--line-gold-faint);
  }
  .proof__rating {
    display: inline-flex; align-items: baseline; gap: 0.12em;
    font-size: 3.2rem; line-height: 0.9;
    color: var(--color-gold-soft);
  }
  .proof__rating small { font-size: 0.34em; letter-spacing: 0.02em; }
  /* „1.706 Bewertungen · auf Google" als eine kompakte, ruhige Zeile */
  .proof__count {
    font-size: 1.15rem; font-weight: var(--fw-medium);
    color: var(--color-cream-dim); letter-spacing: 0.01em;
  }
  .proof__count [data-count] { color: var(--color-cream); font-weight: var(--fw-semibold); }
  .proof__label {
    display: inline; font-family: var(--font-display); font-style: normal;
    font-size: 1em; letter-spacing: 0.01em; text-transform: none;
    color: var(--color-cream-dim);
  }
  .proof__sep { color: var(--line-gold); }
  .proof__micro { font-size: var(--fs-body); margin-top: 2px; }
  .gallery__grid { grid-auto-rows: 150px; }
  /* Form-Card: zentriert, schmaleres Innen-Padding, nichts ragt raus */
  .book__grid { gap: var(--space-xl); }
  .book__form-wrap { max-width: 480px; padding: var(--space-lg); }
}

/* Sehr schmal (≤400px): Card-Padding weiter zurücknehmen, sicher zentriert */
@media (max-width: 400px) {
  .book__form-wrap { padding: var(--space-md); }
}
