/* ============================================================================
   CASA BOCCOLATO — Pizza Napoletana · Köln
   Stylesheet / Design-System
   ----------------------------------------------------------------------------
   Struktur:
     1.  Design-Tokens (CSS-Variablen im :root)
     2.  Reset & Basis
     3.  Typografie-Helfer
     4.  Layout-Helfer (container, section, grid)
     5.  Buttons & Microinteractions
     6.  Intro-Overlay
     7.  Header / Navigation / Mobile-Menü
     8.  Hero
     9.  Sektion: Unsere Geschichte + Zeitleiste
     10. Sektion: Handwerk
     11. Sektion: Speisekarte (Tabs + Karten)
     12. Sektion: Signature "La Boccolato"
     13. Sektion: Restaurant & Lieferservice
     14. Sektion: Galerie + Lightbox
     15. Sektion: Bewertungen
     16. Sektion: Reservierung (Formular)
     17. Sektion: Kontakt
     18. Footer
     19. Mobile Sticky-Aktionsleiste
     20. Modal (Bestellen)
     21. Scroll-Reveal-Utilities
     22. Rechtsseiten (Legal)
     23. Responsive (Media-Queries)
     24. Reduced-Motion & Print
   Alle Farben/Fonts/Abstände zentral als Variablen — hier ändern, überall wirksam.
   ========================================================================== */

/* ============================================================================
   1. DESIGN-TOKENS
   ========================================================================== */
:root {
  /* --- Farbwelt: dunkel, warm, luxuriös --------------------------------- */
  --c-oven-black:   #0e0b09;  /* tiefes Ofenschwarz  */
  --c-charcoal:     #1c1815;  /* dunkles Anthrazit   */
  --c-charcoal-2:   #262019;  /* Anthrazit heller    */
  --c-cream:        #f4ece0;  /* warmes Creme        */
  --c-cream-2:      #ece0cf;  /* Creme dunkler       */
  --c-tomato:       #c0362c;  /* Tomatenrot          */
  --c-lava:         #8f1d16;  /* Vesuv-Lavarot       */
  --c-olive:        #5c6b4a;  /* gedämpftes Olivgrün */
  --c-brass:        #c79a52;  /* warmes Messing/Altgold */
  --c-brass-soft:   #d9b877;  /* Messing hell        */
  --c-terracotta:   #b5613f;  /* Terrakotta          */

  /* --- Semantische Rollen ---------------------------------------------- */
  --bg:             var(--c-oven-black);
  --bg-alt:         var(--c-charcoal);
  --bg-cream:       var(--c-cream);
  --text:           #f0e7d9;
  --text-muted:     #b7a893;
  --text-on-cream:  #2a2019;
  --text-on-cream-muted: #6b5b48;
  --accent:         var(--c-brass);
  --accent-strong:  var(--c-tomato);
  --line:           rgba(199, 154, 82, .22);   /* feine Goldlinie */
  --line-cream:     rgba(42, 32, 25, .14);

  /* --- Typografie ------------------------------------------------------- */
  --font-display: "Cormorant Garamond", "Bodoni Moda", Georgia, serif;
  --font-body:    "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-kicker:  clamp(.72rem, .68rem + .3vw, .82rem);
  --fs-body:    clamp(1rem, .96rem + .25vw, 1.075rem);
  --fs-lead:    clamp(1.12rem, 1rem + .7vw, 1.4rem);
  --fs-h4:      clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  --fs-h3:      clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  --fs-h2:      clamp(2.1rem, 1.5rem + 3vw, 3.7rem);
  --fs-hero:    clamp(2.8rem, 1.6rem + 6.2vw, 6.6rem);

  /* --- Abstände (Spacing-Scale) ---------------------------------------- */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5rem;
  --space-7: 7.5rem;
  --section-y: clamp(4rem, 3rem + 6vw, 8.5rem);

  /* --- Radien ----------------------------------------------------------- */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* --- Schatten --------------------------------------------------------- */
  --shadow-sm:  0 2px 10px rgba(0,0,0,.25);
  --shadow-md:  0 12px 34px rgba(0,0,0,.38);
  --shadow-lg:  0 30px 70px rgba(0,0,0,.5);
  --shadow-glow: 0 0 60px rgba(191, 54, 44, .35);

  /* --- Übergänge -------------------------------------------------------- */
  --t-fast: .18s cubic-bezier(.4,0,.2,1);
  --t-med:  .35s cubic-bezier(.4,0,.2,1);
  --t-slow: .6s  cubic-bezier(.22,.61,.36,1);

  /* --- Layout ----------------------------------------------------------- */
  --max-width: 1240px;
  --max-narrow: 820px;
  --gutter: clamp(1.15rem, .6rem + 2.6vw, 2.75rem);
  --header-h: 74px;
}

/* ============================================================================
   2. RESET & BASIS
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;               /* nie horizontales Scrollen */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Warme Grundtextur: feiner Mehlstaub / Vignette über dem Ofenschwarz */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(191,54,44,.10), transparent 60%),
    radial-gradient(900px 500px at 8% 12%, rgba(199,154,82,.06), transparent 55%);
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--c-brass-soft);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Screenreader-only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--c-brass); color: #1a130a;
  padding: .7rem 1.1rem; border-radius: var(--r-sm);
  font-weight: 700; z-index: 2000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ============================================================================
   3. TYPOGRAFIE-HELFER
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .3px;
}

.kicker {
  font-family: var(--font-body);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-brass);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-brass));
}
.kicker.center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--c-brass), transparent);
}

.section-title {
  font-size: var(--fs-h2);
  margin-top: var(--space-2);
  letter-spacing: .5px;
}
.section-title em { font-style: italic; color: var(--c-brass-soft); }

.lead {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
}

.text-accent { color: var(--c-brass-soft); }
.italic { font-style: italic; }

/* ============================================================================
   4. LAYOUT-HELFER
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
.container.narrow { max-width: var(--max-narrow); }

section { position: relative; }

.section-pad { padding-block: var(--section-y); }

.section-head { max-width: 62ch; margin-bottom: var(--space-5); }
.section-head.center { margin-inline: auto; text-align: center; }

/* Creme-Sektionen als warmer Kontrast */
.section--cream {
  background: var(--bg-cream);
  color: var(--text-on-cream);
}
.section--cream .lead { color: var(--text-on-cream-muted); }
.section--cream .section-title em { color: var(--c-lava); }
.section--cream .kicker { color: var(--c-lava); }
.section--cream .kicker::before { background: linear-gradient(90deg, transparent, var(--c-lava)); }

/* Feine Goldlinie als Sektionstrenner */
.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
}

/* Dekorative Vesuv-/Ofenbogen-Kontur (SVG als Hintergrund optional inline) */
.arc-motif {
  position: absolute;
  inset-inline: 0;
  height: 120px;
  opacity: .5;
  pointer-events: none;
}

/* ============================================================================
   5. BUTTONS & MICROINTERACTIONS
   ========================================================================== */
.btn {
  --btn-bg: var(--c-tomato);
  --btn-fg: #fff5ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-med);
  will-change: transform;
}
.btn::after {   /* Glut-Shine bei Hover */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.22), transparent 80%);
  transform: translateX(-120%);
  transition: transform var(--t-slow);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(143,29,22,.4); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }

.btn--gold { --btn-bg: var(--c-brass); --btn-fg: #201607; }
.btn--gold:hover { box-shadow: 0 14px 30px rgba(199,154,82,.4); }

.btn--ghost {
  --btn-fg: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover { border-color: var(--c-brass); color: var(--c-brass-soft); box-shadow: none; }

.btn--ghost-dark {
  --btn-fg: var(--text-on-cream);
  background: transparent;
  border: 1px solid var(--line-cream);
}
.btn--ghost-dark:hover { border-color: var(--c-lava); color: var(--c-lava); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* Text-Link mit animiertem Unterstrich */
.link-underline {
  position: relative;
  color: var(--c-brass-soft);
  font-weight: 600;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ============================================================================
   6. INTRO-OVERLAY
   ========================================================================== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 50% 40%, #16100c 0%, #0a0706 70%);
  transition: opacity .7s ease, visibility .7s ease;
}
.intro[hidden] { display: none; }        /* Fallback */
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.intro__inner {
  text-align: center;
  padding: var(--gutter);
  transform: translateY(0);
}
.intro__arc { width: min(340px, 70vw); height: auto; margin-inline: auto; }
.intro__arc path {
  fill: none;
  stroke: var(--c-brass);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.intro__brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 4vw, 3.6rem);
  letter-spacing: .14em;
  color: var(--c-cream);
  margin-top: 1.4rem;
  opacity: 0;
  animation: introFade .9s ease .6s forwards;
}
.intro__sub {
  margin-top: .6rem;
  color: var(--c-brass-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: clamp(1rem, .8rem + 1vw, 1.4rem);
  opacity: 0;
  animation: introFade .9s ease 1.1s forwards;
}
.intro__skip {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--text-muted);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  opacity: 0;
  animation: introFade .6s ease 1.5s forwards;
}
.intro__skip:hover { color: var(--c-brass-soft); border-color: var(--c-brass); }

@keyframes introFade { to { opacity: 1; } }

/* Linie zeichnen (SVG stroke-dashoffset) */
.intro__arc path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: drawArc 1.6s cubic-bezier(.6,.02,.2,1) .1s forwards;
}
@keyframes drawArc { to { stroke-dashoffset: 0; } }

/* ============================================================================
   7. HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-med), backdrop-filter var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.header__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
/* Zustand nach dem Scrollen */
.header.is-scrolled {
  background: rgba(14, 11, 9, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}

/* Logo */
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: .18em;
  color: var(--c-cream);
}
.brand__sub {
  font-size: .58rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--c-brass);
  margin-top: 4px;
}

/* Desktop-Navigation */
.nav { display: flex; align-items: center; gap: clamp(1rem, .3rem + 1.3vw, 2rem); }
.nav__link {
  position: relative;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  padding: .3rem 0;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--c-brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--c-brass-soft); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: .7rem; }
.header__cta .btn { padding: .68rem 1.15rem; font-size: .85rem; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  position: relative;
  flex: 0 0 auto;
}
.burger span {
  position: absolute; left: 50%; top: 50%;
  width: 20px; height: 1.6px; background: var(--c-cream);
  transform: translate(-50%, -50%);
  transition: transform var(--t-med), opacity var(--t-fast);
}
.burger span:nth-child(1) { transform: translate(-50%, -7px); }
.burger span:nth-child(3) { transform: translate(-50%, 7px); }
.burger.is-open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* Mobile Off-Canvas-Menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(160deg, #17110c, #0b0806);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform var(--t-slow), visibility var(--t-slow);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--c-cream);
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-menu.is-open .mobile-menu__link {
  animation: menuIn .5s cubic-bezier(.22,.61,.36,1) forwards;
}
.mobile-menu__link:hover { color: var(--c-brass-soft); }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu__cta { display: flex; flex-direction: column; gap: .8rem; margin-top: auto; padding-top: 2rem; }
.mobile-menu__meta { margin-top: 1.6rem; color: var(--text-muted); font-size: .85rem; }
.mobile-menu__meta a { color: var(--c-brass-soft); }

/* ============================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  /* sanfter, endloser Bild-Zoom */
  animation: heroZoom 24s ease-in-out infinite alternate;
  transform-origin: 60% 45%;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.16); } }

/* Fallback-Verlauf falls Bild nicht lädt (Ofenglut) */
.hero__media {
  background:
    radial-gradient(90% 70% at 68% 30%, #5c1a12 0%, #240d08 45%, #0d0705 80%);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(9,6,5,.92) 0%, rgba(9,6,5,.6) 42%, rgba(9,6,5,.25) 70%, rgba(9,6,5,.55) 100%),
    linear-gradient(0deg, rgba(9,6,5,.85), transparent 45%);
}
/* Langsam wandernder Lichtschein */
.hero__light {
  position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(closest-side, rgba(199,154,82,.16), transparent 70%);
  animation: heroLight 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroLight {
  from { transform: translate(-8%, -6%) scale(1); opacity: .7; }
  to   { transform: translate(10%, 8%) scale(1.25); opacity: 1; }
}
/* Glutpartikel-Canvas */
.hero__embers { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero__content { max-width: 760px; }
.hero__kicker { margin-bottom: 1.4rem; }
.hero__title {
  font-size: var(--fs-hero);
  line-height: .98;
  letter-spacing: .5px;
  color: var(--c-cream);
  text-shadow: 0 6px 40px rgba(0,0,0,.5);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: italic; color: var(--c-brass-soft); }
.hero__text {
  margin-top: 1.6rem;
  font-size: var(--fs-lead);
  color: #e7dccb;
  max-width: 48ch;
}
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Trust-Merkmale */
.hero__trust {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  max-width: 620px;
}
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text-muted); }
.trust-item svg { width: 20px; height: 20px; color: var(--c-brass); flex: 0 0 auto; }
.trust-item strong { color: var(--c-cream); font-weight: 600; }

.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-muted); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  z-index: 1;
}
.hero__scroll .mouse {
  width: 22px; height: 36px; border: 1px solid var(--line); border-radius: var(--r-pill);
  position: relative;
}
.hero__scroll .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px;
  background: var(--c-brass); border-radius: 3px; transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 8px); } }

/* ============================================================================
   9. UNSERE GESCHICHTE + ZEITLEISTE
   ========================================================================== */
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.story__prose p + p { margin-top: 1.1rem; }
.story__prose .signature {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-lava);
}
.story__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #2a1c15, #14100c);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__stamp {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(14,11,9,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .5rem 1rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-brass-soft);
}

/* Zeitleiste */
.timeline {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: tl;
}
.timeline__item {
  position: relative;
  padding-top: 2.4rem;
}
.timeline__item::before {   /* Verbindungslinie */
  content: "";
  position: absolute; top: 9px; left: 0; right: -1.5rem;
  height: 1px; background: var(--line-cream);
}
.timeline__item:last-child::before { right: 0; }
.timeline__item::after {    /* Punkt */
  content: "";
  position: absolute; top: 3px; left: 0;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--c-lava);
  box-shadow: 0 0 0 4px rgba(143,29,22,.15);
}
.timeline__year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--c-lava);
}
.timeline__title { font-size: 1.05rem; font-weight: 700; margin-top: .2rem; }
.timeline__desc { font-size: .92rem; color: var(--text-on-cream-muted); margin-top: .3rem; }

/* ============================================================================
   10. HANDWERK
   ========================================================================== */
.craft__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: var(--space-5);
}
.craft-card {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(38,32,25,.7), rgba(20,16,12,.55));
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.craft-card:hover { transform: translateY(-6px); border-color: var(--c-brass); box-shadow: var(--shadow-md); }
.craft-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(199,154,82,.28);
}
.craft-card__icon { width: 34px; height: 34px; color: var(--c-brass); margin: .8rem 0 1rem; }
.craft-card__term {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--c-cream);
  letter-spacing: .04em;
}
.craft-card__de { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-brass); margin-top: .2rem; }
.craft-card__desc { margin-top: .9rem; font-size: .92rem; color: var(--text-muted); }

/* Kennzahlen-Zähler */
.craft__stats {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.8rem);
  color: var(--c-brass-soft);
  line-height: 1;
}
.stat__label { margin-top: .4rem; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================================
   11. SPEISEKARTE
   ========================================================================== */
.menu__note {
  font-size: .82rem;
  color: var(--text-on-cream-muted);
  margin-top: .8rem;
}
/* Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: var(--space-4) 0 var(--space-4);
  justify-content: center;
}
.menu-tab {
  padding: .6rem 1.25rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  color: var(--text-on-cream-muted);
  border: 1px solid var(--line-cream);
  transition: all var(--t-fast);
}
.menu-tab:hover { border-color: var(--c-lava); color: var(--c-lava); }
.menu-tab.is-active {
  background: var(--c-lava);
  color: #fdf3ec;
  border-color: var(--c-lava);
  box-shadow: 0 8px 20px rgba(143,29,22,.28);
}

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fadeUp .5s ease; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem 2rem;
}
.menu-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.15rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-cream);
  background: rgba(255,255,255,.4);
  transition: transform var(--t-fast), box-shadow var(--t-med), border-color var(--t-med);
}
.menu-item:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(42,32,25,.12); border-color: rgba(143,29,22,.4); }
.menu-item__body { flex: 1; min-width: 0; }
.menu-item__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-on-cream);
  font-weight: 600;
}
.menu-item__price {
  font-weight: 700;
  color: var(--c-lava);
  white-space: nowrap;
  font-size: 1.05rem;
}
.menu-item__desc { font-size: .9rem; color: var(--text-on-cream-muted); margin-top: .3rem; }

/* Badges */
.badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: var(--r-pill);
  border: 1px solid transparent;
}
.badge--veg    { color: #3f5230; background: rgba(92,107,74,.16); border-color: rgba(92,107,74,.4); }
.badge--best   { color: #8a5a12; background: rgba(199,154,82,.18); border-color: rgba(199,154,82,.5); }
.badge--spicy  { color: #9a2016; background: rgba(192,54,44,.14); border-color: rgba(192,54,44,.4); }
.badge svg { width: 12px; height: 12px; }

/* ============================================================================
   12. SIGNATURE "LA BOCCOLATO"
   ========================================================================== */
.signature {
  background:
    radial-gradient(80% 120% at 82% 20%, rgba(143,29,22,.35), transparent 55%),
    linear-gradient(180deg, #120d09, #0c0806);
  overflow: hidden;
}
.signature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.signature__stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.signature__halo {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(199,154,82,.28), rgba(191,54,44,.12) 60%, transparent 72%);
  filter: blur(4px);
  animation: pulseHalo 6s ease-in-out infinite alternate;
}
@keyframes pulseHalo { from { transform: scale(.96); opacity: .8; } to { transform: scale(1.06); opacity: 1; } }
.signature__disc {
  position: relative;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
  animation: floatY 7s ease-in-out infinite;
}
.signature__disc img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floatY { 0%,100% { transform: translateY(-10px); } 50% { transform: translateY(10px); } }
.signature__ring {
  position: absolute; inset: -2%;
  border-radius: 50%;
  border: 1px dashed rgba(199,154,82,.35);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.signature__badge {
  position: absolute; top: 6%; left: 4%;
  background: var(--c-lava); color: #fdf3ec;
  padding: .5rem .9rem; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.signature__price {
  display: inline-flex; align-items: baseline; gap: .5rem;
  margin-top: 1.4rem;
}
.signature__price b { font-family: var(--font-display); font-size: 2.2rem; color: var(--c-brass-soft); }
.signature__price span { color: var(--text-muted); font-size: .9rem; }
.signature__ingredients {
  margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem;
}
.chip {
  font-size: .8rem; padding: .4rem .8rem;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  color: var(--text-muted);
}

/* ============================================================================
   13. RESTAURANT & LIEFERSERVICE
   ========================================================================== */
.duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.duo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.duo-card__img { position: absolute; inset: 0; z-index: -2; }
.duo-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.duo-card:hover .duo-card__img img { transform: scale(1.06); }
.duo-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(9,6,5,.94) 8%, rgba(9,6,5,.35) 55%, rgba(9,6,5,.1));
}
.duo-card__body { padding: 2rem; }
.duo-card__tag { color: var(--c-brass); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; }
.duo-card__title { font-size: var(--fs-h3); margin: .5rem 0 .8rem; color: var(--c-cream); }
.duo-card__list { display: flex; flex-direction: column; gap: .5rem; margin: 1rem 0 1.4rem; }
.duo-card__list li { display: flex; gap: .6rem; font-size: .92rem; color: var(--text-muted); }
.duo-card__list svg { width: 18px; height: 18px; color: var(--c-brass); flex: 0 0 auto; margin-top: 2px; }

/* ============================================================================
   14. GALERIE + LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: var(--space-4);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: #14100c;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow), filter var(--t-med); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,6,5,.55), transparent 60%);
  opacity: 0; transition: opacity var(--t-med);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item__cap {
  position: absolute; bottom: .8rem; left: .9rem; z-index: 1;
  color: var(--c-cream); font-size: .82rem; letter-spacing: .04em;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med);
}
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: translateY(0); }

/* Editorial-Spannweiten */
.gallery-item.span-2col { grid-column: span 2; }
.gallery-item.span-2row { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2500;
  display: grid; place-items: center;
  background: rgba(6,4,3,.92);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
  padding: var(--gutter);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.96);
  transition: transform var(--t-med);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap { color: var(--text-muted); text-align: center; margin-top: 1rem; font-size: .9rem; }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--c-cream);
  display: grid; place-items: center; background: rgba(14,11,9,.6);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.lightbox__btn:hover { background: var(--c-lava); border-color: var(--c-lava); }
.lightbox__btn.prev { left: 2%; }
.lightbox__btn.next { right: 2%; }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; width: 46px; height: 46px; }

/* ============================================================================
   15. BEWERTUNGEN
   ========================================================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: var(--space-4);
}
.review-card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(38,32,25,.6), rgba(20,16,12,.4));
  position: relative;
}
.review-card__quote { font-size: 3rem; font-family: var(--font-display); color: rgba(199,154,82,.35); line-height: .6; }
.review-card__text { margin: .8rem 0 1.3rem; font-size: 1.02rem; color: #e7dccb; font-style: italic; }
.review-card__stars { color: var(--c-brass); letter-spacing: 2px; }
.review-card__author { margin-top: .6rem; font-size: .85rem; color: var(--text-muted); }
.demo-flag {
  display: inline-block; margin-top: 1.2rem;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); border: 1px dashed var(--line);
  padding: .2rem .55rem; border-radius: var(--r-sm);
}

/* ============================================================================
   16. RESERVIERUNG (FORMULAR)
   ========================================================================== */
.reserve__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: start;
}
.reserve__aside p { color: var(--text-muted); margin-top: 1rem; }
.reserve__hours {
  margin-top: 1.6rem; display: flex; flex-direction: column; gap: .5rem;
  border-top: 1px solid var(--line); padding-top: 1.4rem;
}
.reserve__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.reserve__hours .day { color: var(--text-muted); }
.reserve__hours .time { color: var(--c-cream); }
.reserve__hours .closed { color: var(--c-terracotta); }

.form {
  background: linear-gradient(180deg, rgba(38,32,25,.6), rgba(20,16,12,.5));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--text-muted); }
.field label .req { color: var(--c-tomato); }
.field input,
.field select,
.field textarea {
  font: inherit; font-size: .95rem;
  color: var(--c-cream);
  background: rgba(14,11,9,.55);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #7a6d5c; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-brass);
  box-shadow: 0 0 0 3px rgba(199,154,82,.15);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c79a52' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--c-tomato); }
.field__error { font-size: .78rem; color: #e98a80; display: none; }
.field.invalid .field__error { display: block; }

.form__consent { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1.3rem; }
.form__consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--c-lava); flex: 0 0 auto; }
.form__consent label { font-size: .84rem; color: var(--text-muted); }
.form__consent a { color: var(--c-brass-soft); text-decoration: underline; }

/* Erfolgsmeldung */
.form__success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form__success.is-visible { display: block; animation: fadeUp .5s ease; }
.form__success svg { width: 58px; height: 58px; color: var(--c-olive); margin-bottom: 1rem; }
.form__success h3 { font-size: 1.7rem; color: var(--c-cream); }
.form__success p { color: var(--text-muted); margin-top: .6rem; }

/* ============================================================================
   17. KONTAKT
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: stretch;
}
.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-line { display: flex; gap: 1rem; }
.contact-line svg { width: 22px; height: 22px; color: var(--c-brass); flex: 0 0 auto; margin-top: 3px; }
.contact-line h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-brass); font-weight: 700; }
.contact-line p, .contact-line address { color: var(--text); font-style: normal; margin-top: .2rem; }
.contact-line a:hover { color: var(--c-brass-soft); }
.contact__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .5rem; }

/* Karten-Platzhalter */
.map-placeholder {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(199,154,82,.06), transparent),
    repeating-linear-gradient(45deg, #16110d 0 22px, #191309 22px 44px);
  display: grid;
  place-items: center;
  text-align: center;
}
.map-placeholder__inner { padding: 2rem; }
.map-placeholder svg { width: 40px; height: 40px; color: var(--c-lava); }
.map-placeholder p { color: var(--text-muted); margin-top: .8rem; font-size: .9rem; }
.map-placeholder .pin {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--c-tomato);
  box-shadow: 0 0 0 6px rgba(192,54,44,.2); animation: pulseHalo 2.5s ease-in-out infinite;
}

/* ============================================================================
   18. FOOTER
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, #0b0806, #070504);
  border-top: 1px solid var(--line);
  padding-top: var(--space-6);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand__name { font-size: 1.6rem; }
.footer__tag { color: var(--c-brass-soft); font-style: italic; font-family: var(--font-display); font-size: 1.2rem; margin-top: 1rem; }
.footer__about { color: var(--text-muted); font-size: .9rem; margin-top: 1rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-brass); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a { color: var(--text-muted); font-size: .92rem; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--c-brass-soft); }
.footer__social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--text-muted); transition: all var(--t-fast);
}
.footer__social a:hover { color: var(--c-brass-soft); border-color: var(--c-brass); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding: var(--space-4) 0;
}
.footer__closing { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--c-brass-soft); }
.footer__legal { display: flex; gap: 1.2rem; font-size: .82rem; color: var(--text-muted); flex-wrap: wrap; }
.footer__legal a:hover { color: var(--c-brass-soft); }
.footer__copyright { color: #6a5d4d; font-size: .8rem; }

/* ============================================================================
   19. MOBILE STICKY-AKTIONSLEISTE
   ========================================================================== */
.action-bar {
  position: fixed;
  inset-inline: 0; bottom: 0;
  z-index: 900;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(12,9,7,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: .4rem .4rem calc(.4rem + env(safe-area-inset-bottom));
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: .5rem 0; font-size: .66rem; letter-spacing: .04em;
  color: var(--text-muted); transition: color var(--t-fast);
}
.action-bar a svg { width: 21px; height: 21px; }
.action-bar a:active, .action-bar a:hover { color: var(--c-brass-soft); }
.action-bar a.accent { color: var(--c-brass-soft); }

/* ============================================================================
   20. MODAL (BESTELLEN)
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 2600;
  display: grid; place-items: center;
  padding: var(--gutter);
  background: rgba(6,4,3,.8);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #1a1410, #100c09);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  transform: translateY(18px) scale(.98);
  transition: transform var(--t-med);
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.modal__title { font-size: 1.8rem; color: var(--c-cream); }
.modal__sub { color: var(--text-muted); font-size: .9rem; margin-top: .3rem; }
.modal__close {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  color: var(--c-cream); display: grid; place-items: center; flex: 0 0 auto;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.modal__close:hover { background: var(--c-lava); border-color: var(--c-lava); }
.order-options { display: flex; flex-direction: column; gap: .8rem; }
.order-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.02);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  text-align: left;
  width: 100%;
}
.order-option:hover { border-color: var(--c-brass); background: rgba(199,154,82,.06); transform: translateX(3px); }
.order-option__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  display: grid; place-items: center; flex: 0 0 auto;
  background: rgba(199,154,82,.12); color: var(--c-brass);
}
.order-option__icon svg { width: 24px; height: 24px; }
.order-option__title { font-weight: 700; color: var(--c-cream); }
.order-option__desc { font-size: .84rem; color: var(--text-muted); }
.order-option__arrow { margin-left: auto; color: var(--text-muted); }
.modal__note { margin-top: 1.3rem; font-size: .78rem; color: var(--text-muted); text-align: center; }

/* ============================================================================
   21. SCROLL-REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================================
   22. RECHTSSEITEN (LEGAL)
   ========================================================================== */
.legal { padding-top: calc(var(--header-h) + var(--space-5)); padding-bottom: var(--space-6); }
.legal__demo-banner {
  background: rgba(199,154,82,.1);
  border: 1px dashed var(--c-brass);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  margin-bottom: var(--space-4);
  color: var(--c-brass-soft);
  font-size: .9rem;
}
.legal h1 { font-size: var(--fs-h2); margin-bottom: 1.4rem; }
.legal h2 { font-size: var(--fs-h3); margin: 2.2rem 0 .8rem; color: var(--c-brass-soft); }
.legal h3 { font-size: 1.15rem; margin: 1.4rem 0 .5rem; color: var(--c-cream); }
.legal p, .legal li { color: var(--text-muted); margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal ul li { margin-bottom: .4rem; }
.legal a { color: var(--c-brass-soft); text-decoration: underline; }
.legal address { font-style: normal; color: var(--text); }
.legal__back { display: inline-flex; align-items: center; gap: .5rem; margin-top: var(--space-4); }

/* Allergene-Tabelle */
.allergen-table { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; }
.allergen-table th, .allergen-table td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); font-size: .92rem; }
.allergen-table th { color: var(--c-brass); font-weight: 700; letter-spacing: .04em; }
.allergen-table td { color: var(--text-muted); }
.allergen-table tr:hover td { background: rgba(199,154,82,.04); }

/* ============================================================================
   23. RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: block; }
  .header__cta .btn { display: none; }
  .header__cta { display: none; }
  .story__grid,
  .signature__grid,
  .duo__grid,
  .reserve__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .signature__stage { max-width: 440px; margin-inline: auto; order: -1; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline__item::before { display: none; }
  .craft__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2col { grid-column: span 2; }
  .action-bar { display: grid; }
  body { padding-bottom: 64px; }   /* Platz für Sticky-Aktionsleiste */
}

@media (max-width: 620px) {
  .craft__grid { grid-template-columns: 1fr; }
  .craft__stats { grid-template-columns: 1fr; gap: 1.8rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.span-2col, .gallery-item.span-2row { grid-column: auto; grid-row: auto; }
  .hero__trust { gap: 1rem 1.4rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .lightbox__btn.prev { left: .5rem; }
  .lightbox__btn.next { right: .5rem; }
  .btn { width: 100%; }               /* volle Breite auf kleinen Screens */
  .hero__actions .btn, .contact__actions .btn { width: auto; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 1.15rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

/* ============================================================================
   24. REDUCED-MOTION & PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__img { animation: none; transform: scale(1.05); }
  .reveal { opacity: 1; transform: none; }
  .intro__brand, .intro__sub, .intro__skip { opacity: 1; animation: none; }
  .intro__arc path { stroke-dashoffset: 0; animation: none; }
}

@media print {
  .header, .action-bar, .intro, .hero__embers, .hero__scroll, .modal, .lightbox { display: none !important; }
  body { color: #000; background: #fff; }
}
