/* =========================================================================
   GustoGang · Static-Track TEMPLATE — styles.css
   -------------------------------------------------------------------------
   Design-Tokens sind PLATZHALTER und werden pro Kunde aus DESIGN.md gesetzt.
   Flach, keine Schatten (sofern DESIGN.md nichts anderes sagt). Radius/Farben/
   Fonts unten ersetzen. Grüner Status-Punkt #6FA86B ist die einzige erlaubte
   funktionale Ausnahme (Live-Banner).
   ========================================================================= */

:root {
  /* ---- FARBEN — DESIGN.md „Amrit Palace" (editorial parchment gallery) ---- */
  --parchment: #d8cbb8;        /* Canvas — warmes Pergament-Beige */
  --linen: #cabca6;            /* zweite Fläche / dezente Schichtung */
  --primary: #2c2c2c;          /* Onyx-Warm — Haupt-CTA-Flächen, Preise, Links */
  --primary-hover: #171513;    /* Hover Primary */
  --secondary: #d49653;        /* Saffron — EINZIGER Akzent, nur sparsam (Sterne, aktive States) */
  --secondary-hover: #b87f3f;  /* Hover Saffron */
  --near-white: #d8cbb8;       /* Seiten-Canvas = Pergament */
  --near-black: #2c2c2c;       /* Onyx-Warm — Primärtext (nie #000) */
  --light-surface: #cfc1ac;    /* Linen — Flächen-/Card-Ton (Tonwertverschiebung) */
  --dark-surface: #292622;     /* Midnight-Roast — dunkle Bänder & Overlays */
  --line: #b6ab9c;             /* Warm-Stone — 1px Hairline / Editorial-Spaltenlinie */
  --line-strong: #9d9182;      /* kräftigere Hairline (Formular-/Karten-Rahmen) */
  --muted: #615b53;            /* Espresso — Sekundärtext */
  --walnut: #857b6d;           /* gedämpfte Metadaten / Captions */
  --status-green: #6fa86b;     /* FIX — nur Live-Banner */

  /* ---- GustoGang Brand (FIX, nicht ersetzen) ---- */
  --gg-blue: #201bde;
  --gg-cream: #efe7d9;

  /* ---- Typografie — DESIGN.md (whisper-weight Serif + geometrischer Sans) ---- */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;  /* TT Ramillas-Substitut, Weight 300 */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; /* Satoshi-Substitut */
  --font-label: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* ---- Form & Layout — DESIGN.md (scharfe Geometrie, keine Schatten) ---- */
  --radius: 3px;               /* Buttons/Tags/Inputs = 3px; Cards = 0px (unten überschrieben) */
  --shadow: none;              /* flach — Tiefe nur über Tonwerte & Hairlines */
  --content-max: 1200px;
  --section-pad: 120px;        /* großzügige Editorial-Abstände (120–160px) */
  --header-h: 76px;
}

/* ---- Dark-Mode optional: nur aktivieren, wenn DESIGN.md eine Dark-Palette vorgibt.
   Dann Tokens hier setzen. Standard: single-theme laut DESIGN.md. ---- */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.15px;
  line-height: 1.6;
  color: var(--near-black);
  background: var(--near-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
/* Editorial: Serif-Headlines im Weight 300, uppercase, eng laufend (nie fetten) */
h1, h2, h3 {
  font-family: var(--font-head); font-weight: 300; line-height: 1.0; margin: 0;
  text-wrap: balance; text-transform: uppercase; letter-spacing: -0.01em;
}
a { color: inherit; }
.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 32px; }
[id] { scroll-margin-top: 96px; } /* Sticky-Header Offset */

/* ---- Buttons (ghost/solide, scharfe 3px-Geometrie, keine Schatten) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-label); font-weight: 500; font-size: .82rem; line-height: 1.2;
  text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none; padding: 17px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .35s cubic-bezier(.25,.46,.45,.94), color .35s cubic-bezier(.25,.46,.45,.94), border-color .35s cubic-bezier(.25,.46,.45,.94);
}
.btn-primary { background: var(--primary); color: var(--parchment); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: #fff; }
.btn-secondary { background: transparent; color: currentColor; border-color: currentColor; }
.btn-secondary:hover { background: currentColor; }
.btn-outline { background: transparent; color: var(--near-black); border-color: var(--near-black); }
.btn-outline:hover { background: var(--near-black); color: var(--parchment); }

/* Hero-Buttons auf dunklem Foto: parchment-solide + parchment-ghost */
.btn-hero-primary { background: var(--parchment); color: var(--near-black); border-color: var(--parchment); }
.btn-hero-primary:hover { background: transparent; color: var(--parchment); }
.btn-hero-ghost { background: transparent; color: var(--parchment); border-color: rgba(216,203,184,.55); }
.btn-hero-ghost:hover { background: var(--parchment); color: var(--near-black); border-color: var(--parchment); }

/* =========================================================================
   GUSTOGANG BRAND-BAND (eigenständig, ganz oben) — FIX
   ========================================================================= */
.gg-band {
  background: var(--gg-blue);
  display: block;
}
.gg-band__inner {
  max-width: var(--content-max); margin: 0 auto; padding: 25px 24px;
  display: flex; align-items: center; justify-content: center;
}
.gg-band__logo { height: 46px; width: auto; display: block; }
@media (max-width: 640px) { .gg-band__logo { height: 34px; } .gg-band__inner { padding: 18px 24px; } }

/* =========================================================================
   HEADER / NAVIGATION (sticky, flach)
   ========================================================================= */
/* Transparent über dem Hero (floating), wird beim Scrollen zur soliden Pergament-Leiste */
.site-header { position: sticky; top: 0; z-index: 60; background: transparent; border-bottom: 1px solid transparent; transition: background .35s ease, border-color .35s ease; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }
.brand { font-family: var(--font-head); font-weight: 300; font-size: 1.4rem; text-transform: uppercase; letter-spacing: .01em; color: var(--parchment); text-decoration: none; white-space: nowrap; flex: 0 0 auto; }
.primary-nav { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; justify-content: flex-end; }
.primary-nav > a { font-family: var(--font-label); font-weight: 500; font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; text-decoration: none; color: var(--parchment); padding: 8px 10px; border-radius: var(--radius); white-space: nowrap; opacity: .9; transition: opacity .25s ease, color .25s ease; }
.primary-nav > a:hover { opacity: 1; color: #fff; }
/* CTA — höhere Spezifität als „.primary-nav > a", damit die Schrift immer lesbar bleibt */
.primary-nav > a.primary-nav__cta { margin-left: 10px; padding: 10px 18px; background: transparent; color: var(--parchment); border: 1px solid rgba(216,203,184,.55); opacity: 1; }
.primary-nav > a.primary-nav__cta:hover { background: var(--parchment); color: var(--near-black); border-color: var(--parchment); }

/* Solide Leiste ab Scroll */
.site-header.is-scrolled { background: var(--parchment); border-bottom-color: var(--line); }
.site-header.is-scrolled .brand { color: var(--near-black); }
.site-header.is-scrolled .primary-nav > a { color: var(--near-black); }
.site-header.is-scrolled .primary-nav > a:hover { color: var(--secondary-hover); }
.site-header.is-scrolled .primary-nav > a.primary-nav__cta { background: var(--near-black); color: var(--parchment); border-color: var(--near-black); }
.site-header.is-scrolled .primary-nav > a.primary-nav__cta:hover { background: var(--primary-hover); color: #fff; border-color: var(--primary-hover); }
.site-header.is-scrolled .nav-toggle { border-color: var(--line-strong); }
.site-header.is-scrolled .nav-toggle__bar { background: var(--near-black); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid rgba(216,203,184,.55); border-radius: var(--radius); cursor: pointer; }
.nav-toggle__bar { width: 22px; height: 2px; background: var(--parchment); margin: 0 auto; transition: transform .2s ease, opacity .2s ease, background .3s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1160px) {
  .nav-toggle { display: flex; }
  .site-header { background: var(--parchment); border-bottom-color: var(--line); }
  .site-header .brand, .site-header.is-scrolled .brand { color: var(--near-black); }
  .site-header .nav-toggle__bar { background: var(--near-black); }
  .site-header .nav-toggle { border-color: var(--line-strong); }
  .site-header__inner { position: relative; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--parchment); border-bottom: 1px solid var(--line); padding: 8px 32px 18px; display: none; }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { color: var(--near-black); opacity: 1; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav > a.primary-nav__cta { text-align: center; margin: 12px 0 0; padding: 13px 18px; background: var(--near-black); color: var(--parchment); border-color: var(--near-black); border-bottom: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 92vh; margin-top: calc(-1 * var(--header-h)); display: flex; align-items: center; overflow: hidden; color: var(--parchment); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,25,21,.9) 0%, rgba(28,25,21,.62) 46%, rgba(28,25,21,.2) 78%, rgba(28,25,21,.35) 100%); }
.hero__media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(28,25,21,.55) 0%, transparent 34%); }
.hero__inner { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 48px); padding-bottom: 100px; }
.hero__content { max-width: 700px; }
.hero__eyebrow { font-family: var(--font-label); font-size: .78rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--secondary); margin: 0 0 22px; }
.hero__title { font-size: clamp(2.4rem, 6.4vw, 5.4rem); line-height: .94; letter-spacing: -0.02em; margin: 0 0 22px; color: var(--parchment); hyphens: auto; -webkit-hyphens: auto; }
.hero__subline { font-family: var(--font-body); font-size: clamp(1.02rem, 1.5vw, 1.2rem); font-weight: 400; letter-spacing: -0.15px; line-height: 1.55; color: rgba(239,231,217,.9); margin: 0 0 36px; max-width: 40em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 640px) { .hero { min-height: 88vh; } .hero__cta .btn { width: 100%; } }

/* Live-Öffnungs-Banner */
.open-status { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 8px 16px; font-size: .95rem; font-weight: 700; color: #fff; margin: 0 0 22px; }
.open-status__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.55); flex: 0 0 auto; }
.open-status.is-open .open-status__dot { background: var(--status-green); box-shadow: 0 0 0 4px rgba(111,168,107,.25); }
.open-status:empty { display: none; }

/* =========================================================================
   SEKTIONEN (alternierend), Bänder, Cards, Galerie, Reviews, Über uns,
   Öffnungszeiten, Anfahrt, CTA — generalisiert
   ========================================================================= */
.section { padding: var(--section-pad) 0; }
.section--light { background: var(--near-white); }
.section--surface { background: var(--light-surface); }
.section__head { max-width: var(--content-max); margin: 0 0 56px; }
.section__eyebrow { font-family: var(--font-label); font-size: .74rem; font-weight: 500; text-transform: uppercase; letter-spacing: .2em; color: var(--secondary-hover); margin: 0 0 18px; display: flex; align-items: center; gap: 14px; }
.section__eyebrow::after { content: ""; height: 1px; flex: 1; max-width: 220px; background: var(--line); }
.section__title { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: .98; letter-spacing: -0.02em; margin: 0 0 16px; }
.section__lead { font-size: 1.06rem; color: var(--muted); margin: 0; max-width: 62ch; }
.section__actions { margin-top: 48px; }

/* Dunkle Editorial-Bänder (USP, CTA) */
.band { background: var(--dark-surface); color: var(--parchment); padding: 90px 0; }
.band .section__title { color: var(--parchment); }

/* USP — dunkler Streifen mit Editorial-Spaltenlinien */
.usp__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.usp__item { text-align: left; padding: 4px 32px; border-left: 1px solid rgba(216,203,184,.16); }
.usp__item:first-child { padding-left: 0; border-left: none; }
.usp__title { font-family: var(--font-head); font-weight: 300; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.55rem; line-height: 1; margin: 0 0 12px; color: var(--parchment); }
.usp__item p { margin: 0; color: rgba(239,231,217,.72); font-size: .95rem; line-height: 1.5; }

/* HIGHLIGHTS — randlose Editorial-Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card { background: transparent; border: none; border-radius: 0; overflow: visible; display: flex; flex-direction: column; box-shadow: none; }
.section--light .card { background: transparent; }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 0; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media--placeholder { display: flex; align-items: center; justify-content: center; background: var(--linen); color: var(--muted); font-size: .95rem; }
.card__body { padding: 20px 0 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__title { font-family: var(--font-head); font-weight: 300; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.7rem; line-height: 1; }
.card__desc { margin: 0; color: var(--muted); line-height: 1.55; }
.card__tag { font-family: var(--font-label); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--secondary-hover); }
a.card { text-decoration: none; color: inherit; }
a.card .card__title { transition: color .3s ease; }
a.card:hover .card__title { color: var(--secondary-hover); }
.card__more { margin: 6px 0 0; font-family: var(--font-label); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--secondary-hover); }
.card__more span { transition: transform .25s ease; display: inline-block; }
a.card:hover .card__more span { transform: translateX(4px); }

/* GALLERY — Editorial-Raster mit Akzent-Kacheln */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; grid-auto-flow: dense; gap: 14px; }
.gallery__item { margin: 0; border-radius: 0; overflow: hidden; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* KNOLLE — eigener, dunkler Story-Abschnitt (ersetzt „Über uns") */
.knolle { position: relative; background: var(--dark-surface); color: var(--parchment); overflow: hidden; }
.knolle__bg { position: absolute; inset: 0; z-index: 0; }
.knolle__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.knolle__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(41,38,34,.94), rgba(41,38,34,.74) 60%, rgba(41,38,34,.6)); }
.knolle__inner { position: relative; z-index: 1; padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.knolle__head { max-width: 780px; }
.knolle__eyebrow { font-family: var(--font-label); font-size: .74rem; font-weight: 500; text-transform: uppercase; letter-spacing: .2em; color: var(--secondary); margin: 0 0 18px; }
.knolle__title { font-size: clamp(2.2rem, 5vw, 3.9rem); line-height: .98; letter-spacing: -0.02em; color: var(--parchment); margin: 0 0 26px; }
.knolle__lead { font-size: 1.12rem; line-height: 1.65; color: rgba(239,231,217,.84); margin: 0 0 16px; max-width: 62ch; }
.knolle__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 68px; }
.knolle__stat { border-top: 1px solid rgba(216,203,184,.3); padding-top: 24px; }
.knolle__num { font-family: var(--font-head); font-weight: 300; font-size: clamp(2.6rem, 4.6vw, 3.7rem); line-height: 1; color: var(--secondary); margin: 0 0 14px; letter-spacing: -0.02em; }
.knolle__stat h3 { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--parchment); margin: 0 0 10px; }
.knolle__stat p { margin: 0; color: rgba(239,231,217,.72); font-size: .95rem; line-height: 1.6; }

/* REVIEWS — Editorial-Spalten mit Hairline oben */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 44px; }
.review { margin: 0; background: transparent; border: none; border-top: 1px solid var(--line); border-radius: 0; padding: 26px 0 0; display: flex; flex-direction: column; gap: 14px; box-shadow: none; }
.review__source { font-family: var(--font-label); font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--walnut); }
.review__stars { margin: 0; color: var(--secondary); letter-spacing: 3px; font-size: 1rem; }
.review__text { margin: 0; color: var(--near-black); font-size: .98rem; line-height: 1.6; }
.review__author { font-family: var(--font-label); font-weight: 600; color: var(--muted); font-size: .88rem; margin-top: auto; }
.reviews__source { color: var(--muted); margin: 0 0 8px; }

/* ÖFFNUNGSZEITEN */
.oeff { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.oeff__tile { background: var(--linen); border: 1px solid var(--line); border-radius: 0; padding: 32px; }
.oeff__tile .btn { margin-top: 6px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 14px 6px; text-align: left; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--secondary-hover); font-weight: 600; }
.hours__closed { color: var(--muted); }
.hours__note { margin: 22px 0 0; color: var(--muted); }
@media (max-width: 640px) { .oeff { grid-template-columns: 1fr; } }

/* ANFAHRT */
.anfahrt { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.anfahrt__address { font-style: normal; font-size: 1.15rem; line-height: 1.8; }
.anfahrt__address a { color: var(--near-black); text-decoration: underline; text-underline-offset: 3px; }
.anfahrt__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.anfahrt__pay { margin: 32px 0 0; color: var(--muted); }

/* CTA / Reservierung (dunkles Band) */
.cta__inner { text-align: center; max-width: 900px; margin: 0 auto; }
.cta__title { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 0 0 12px; color: var(--parchment); }
.cta__text { margin: 0 0 34px; color: rgba(239,231,217,.82); font-size: 1.06rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   GUSTOGANG PARTNER-PLATZIERUNG (Netzwerk-Slot) — FESTER BAUSTEIN.
   Hochwertige Platzierung, hebt sich ab, ohne Werbe-Optik. Nutzt FIX --gg-blue.
   Tracking via data-gg-* (siehe index.html-Kommentar + PROCESS.md §7).
   ========================================================================= */
.gg-partner { padding: 76px 0; background: linear-gradient(180deg, var(--near-white) 0%, #edeff6 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gg-partner__card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  max-width: 640px; margin: 0 auto; padding: 46px 40px 40px;
  text-decoration: none; color: var(--near-black);
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid rgba(32,27,222,.16); border-radius: 22px;
  box-shadow: 0 26px 60px -34px rgba(32,27,222,.35), 0 1px 0 rgba(255,255,255,.7) inset;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gg-partner__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gg-blue), #6f6bff); }
.gg-partner__card:hover { transform: translateY(-4px); border-color: rgba(32,27,222,.34); box-shadow: 0 34px 72px -32px rgba(32,27,222,.46); }
.gg-partner__kicker { display: inline-block; font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gg-blue); background: #ece9ff; border-radius: 999px; padding: 6px 14px; }
.gg-partner__logo { height: 30px; width: auto; margin: 4px 0 0; }
.gg-partner__title { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--near-black); margin: 0; }
.gg-partner__text { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.gg-partner__cta { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; background: var(--gg-blue); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; padding: 15px 28px; border-radius: 6px; }
.gg-partner__arrow { transition: transform .2s ease; }
.gg-partner__card:hover .gg-partner__arrow { transform: translateX(4px); }
.gg-partner__cta::after { content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); animation: gg-sheen 4.5s ease-in-out infinite; }
@keyframes gg-sheen { 0%, 62% { left: -120%; } 88%, 100% { left: 150%; } }
@media (prefers-reduced-motion: reduce) {
  .gg-partner__cta::after { display: none; }
  .gg-partner__card, .gg-partner__arrow { transition: none; }
}
@media (max-width: 640px) { .gg-partner { padding: 56px 0; } .gg-partner__card { padding: 38px 24px 32px; } }

/* =========================================================================
   GUSTOGANG-FOOTER (über Gastro-Footer) — FIX, ganzer Abschnitt klickbar
   ========================================================================= */
.gg-footer { background: var(--gg-blue); color: var(--gg-cream); text-decoration: none; display: block; }
.gg-footer__inner { max-width: var(--content-max); margin: 0 auto; padding: 40px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.gg-footer__kick { display: block; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: #bdb8ff; margin: 0 0 12px; }
.gg-footer__logo { height: 40px; width: auto; margin: 0 0 12px; display: block; }
.gg-footer__claim { display: block; margin: 0 0 8px; color: var(--gg-cream); }
.gg-footer__link { display: inline-block; color: #fff; font-weight: 700; animation: gg-glow 2.4s ease-in-out infinite; }
@keyframes gg-glow { 0%,100% { opacity: .65; } 50% { opacity: 1; text-shadow: 0 0 10px rgba(255,255,255,.55); } }
@media (prefers-reduced-motion: reduce) { .gg-footer__link { animation: none; opacity: 1; } }

/* Gastro-Footer-Streifen (weiß, schwarze Schrift) */
.gastro-footer { background: #fff; color: #111; padding: 26px 24px; text-align: center; }
.gastro-footer__copy { margin: 0 0 6px; font-weight: 700; }
.gastro-footer__legal { margin: 0; font-size: .85rem; }
.gastro-footer__legal button { background: none; border: none; color: #888; cursor: pointer; font: inherit; padding: 0 4px; text-decoration: underline; }
.gastro-footer__legal button:hover { color: #555; }

/* =========================================================================
   RECHTS-MODAL (Impressum & Datenschutz)
   ========================================================================= */
.legal-modal[hidden] { display: none; }
.legal-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.legal-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.legal-modal__panel { position: relative; background: var(--near-white); color: var(--near-black); max-width: 760px; width: 100%; max-height: 86vh; overflow-y: auto; border-radius: var(--radius); padding: 32px 34px; }
.legal-modal__close { position: sticky; top: 0; float: right; margin: -8px -8px 0 0; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--near-white); border-radius: var(--radius); font-size: 1.2rem; cursor: pointer; }
.legal-modal h2 { font-size: 1.6rem; margin: 0 0 6px; }
.legal-modal h3 { font-size: 1.15rem; margin: 22px 0 6px; }
.legal-modal p, .legal-modal li { color: var(--near-black); font-size: .95rem; }
.legal-modal__stand { color: var(--muted); font-size: .85rem; margin-top: 4px; }

/* =========================================================================
   SCROLL-REVEAL (armiert nur mit JS via html.reveal)
   ========================================================================= */
html.reveal .section__head,
html.reveal .usp__item,
html.reveal .card,
html.reveal .gallery__item,
html.reveal .knolle__head,
html.reveal .knolle__stat,
html.reveal .review,
html.reveal .oeff,
html.reveal .anfahrt,
html.reveal .anfahrt__pay,
html.reveal .cta__inner,
html.reveal .lp-lead,
html.reveal .lp-feature,
html.reveal .lp-detail__item,
html.reveal .lp-split__media,
html.reveal .lp-col,
html.reveal .menu-block__head,
html.reveal .menu-item {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease-out, transform .55s ease-out; will-change: opacity, transform;
}
html.reveal .is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.reveal [class].is-revealed, html.reveal .card, html.reveal .section__head { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================================
   SPEISEKARTE (menu.html)
   ========================================================================= */
.menu-head { padding: 64px 0 28px; }
.menu-head .section__title { font-size: clamp(2.4rem, 6vw, 4rem); }
.menu-head__lead { color: var(--muted); margin: 18px 0 0; max-width: 60ch; }
.menu-block__head { margin-bottom: 32px; }
.menu-block__head .section__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.menu-block__time { margin: 10px 0 0; color: var(--secondary-hover); font-family: var(--font-label); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.menu-list { list-style: none; margin: 0; padding: 0; max-width: 860px; }
.menu-item { display: flex; align-items: baseline; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item__info { flex: 1; }
.menu-item__name { font-family: var(--font-head); font-weight: 300; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.35rem; line-height: 1.05; margin: 0 0 6px; }
.menu-item__desc { margin: 0; color: var(--muted); line-height: 1.55; }
.menu-item__variant { margin: 6px 0 0; color: var(--walnut); font-size: .95rem; }
.menu-item__en { margin: 6px 0 0; color: var(--walnut); font-size: .88rem; font-style: italic; line-height: 1.45; }
.menu-side__en { display: block; color: var(--walnut); font-size: .8rem; font-style: italic; margin-top: 2px; }
.menu-item--tag .menu-item__name { display: inline-flex; align-items: baseline; gap: 12px; }
.menu-item__badge { font-family: var(--font-label); font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--secondary-hover); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 3px 8px; white-space: nowrap; }
/* Beilagen als kompaktes Editorial-Raster */
.menu-sides { list-style: none; margin: 0; padding: 0; max-width: 860px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
.menu-sides li { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--font-body); }
@media (max-width: 640px) { .menu-sides { grid-template-columns: repeat(2, 1fr); } }
.menu-notes { max-width: 860px; margin: 0; }
/* Voll­breite Food-Bänder in der Speisekarte (Appetit) */
.menu-figure { margin: 0; width: 100%; overflow: hidden; }
.menu-figure img { display: block; width: 100%; height: clamp(220px, 30vw, 400px); object-fit: cover; object-position: center; }

/* Akkordeon (Allergene) */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); background: var(--near-white); }
.accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: transparent; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--near-black); text-align: left; }
.accordion__icon { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: var(--primary); }
.accordion__icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.accordion__icon::after { top: 0; left: 6px; width: 2px; height: 14px; transition: transform .2s ease; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: rotate(90deg); }
.accordion__panel[hidden] { display: none; }
.accordion__panel { padding: 0 20px 20px; color: var(--muted); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 960px) {
  :root { --section-pad: 88px; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .usp__item { padding: 0 26px; }
  .usp__item:nth-child(odd) { padding-left: 0; border-left: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .knolle__stats { grid-template-columns: 1fr; gap: 0; }
  .knolle__stat { margin-top: 24px; }
  .gallery { grid-auto-rows: 200px; }
}
@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .usp__grid, .cards { grid-template-columns: 1fr; gap: 32px; }
  .usp__item { padding: 0; border-left: none; }
  .reviews { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .anfahrt { flex-direction: column; align-items: flex-start; }
  .anfahrt__actions { width: 100%; }
  .anfahrt__actions .btn { flex: 1; }
  .section__actions .btn, .cta__actions .btn { width: 100%; }
}

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* =========================================================================
   RESERVIERUNGS-/KONTAKTFORMULAR (OPTIONAL) — Styling ist inaktiv, solange kein
   Formular auf der Seite steht. Aktivierung: siehe docs/formular-brevo-setup.md
   + docs/bausteine/reservierungs-formular.html.
   ========================================================================= */
.reserve__widget { background: #fff; padding: 10px; border-radius: 0; box-shadow: var(--shadow); max-width: 720px; margin: 0 auto; }
.reserve__widget iframe { display: block; width: 100%; min-height: 800px; border: 0; }
.reserve__form-wrap { max-width: 760px; margin: 40px auto 0; }
.reserve__form-note { text-align: center; color: var(--muted); font-size: .92rem; margin: 0 auto 22px; max-width: 60ch; }
.rform { background: var(--light-surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: clamp(22px, 4vw, 36px); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rform__field { display: flex; flex-direction: column; gap: 6px; }
.rform__field--full { grid-column: 1 / -1; }
.rform label { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--muted); }
.rform input, .rform textarea, .rform select { font-family: var(--font-body); font-size: 1rem; color: var(--near-black); background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 12px 14px; }
.rform input:focus, .rform textarea:focus, .rform select:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }
.rform textarea { resize: vertical; min-height: 90px; }
.rform__actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rform__hint { color: var(--muted); font-size: .82rem; margin: 0; }
.rform__status { grid-column: 1 / -1; margin: 0; padding: 14px 16px; border-radius: var(--radius); background: rgba(32,74,115,.08); border: 1px solid var(--line-strong); color: var(--primary); font-weight: 700; }
.rform__status[hidden] { display: none; }
.rform__status.is-success { background: rgba(111,168,107,.16); border-color: #6fa86b; color: #2f6b3a; }
.rform__status.is-error { background: rgba(176,58,46,.10); border-color: #b03a2e; color: #8f2c22; }
/* Honeypot (unsichtbar für Menschen) */
.rform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* DSGVO-Einwilligung */
.rform__consent label { display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: .9rem; color: var(--near-black); cursor: pointer; }
.rform__consent input { margin-top: 2px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--primary); }
.rform__legal { background: none; border: none; padding: 0; color: var(--primary); text-decoration: underline; cursor: pointer; font: inherit; }
.rform__legal:hover { color: var(--secondary-hover); }
.rform__req { color: #b03a2e; }
.rform__legend { grid-column: 1 / -1; margin: -4px 0 0; color: var(--muted); font-size: .8rem; }
@media (max-width: 560px) { .rform { grid-template-columns: 1fr; } }

/* =========================================================================
   SEO-LANDINGPAGES (Gerichte-Unterseiten) — nutzt Hero/Section aus dem System
   ========================================================================= */
.lp-lead { max-width: 780px; }
.lp-lead p { font-size: 1.12rem; line-height: 1.7; color: var(--near-black); margin: 0 0 18px; }
.lp-lead p:first-child { font-size: 1.32rem; line-height: 1.55; color: var(--near-black); }

/* „Warum … beliebt" — 4 Feature-Punkte */
.lp-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 8px; }
.lp-feature { border-top: 2px solid var(--secondary); padding-top: 20px; }
.lp-feature h3 { font-family: var(--font-head); font-weight: 300; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.35rem; line-height: 1.05; margin: 0 0 8px; }
.lp-feature p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.55; }

/* Detail-Blöcke + Bild-Split */
.lp-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.lp-split--rev .lp-split__text { order: 2; }
.lp-split__media { overflow: hidden; aspect-ratio: 4 / 5; }
.lp-split__media img { width: 100%; height: 100%; object-fit: cover; }
.lp-detail { display: grid; gap: 44px; max-width: 820px; }
.lp-detail__item h3 { font-family: var(--font-head); font-weight: 300; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.05; margin: 0 0 14px; }
.lp-detail__item > p { color: var(--near-black); margin: 0 0 16px; line-height: 1.65; }
.lp-list { list-style: none; margin: 0; padding: 0; }
.lp-list li { position: relative; padding: 9px 0 9px 26px; border-bottom: 1px solid var(--line); color: var(--muted); line-height: 1.5; }
.lp-list li:last-child { border-bottom: none; }
.lp-list li::before { content: ""; position: absolute; left: 3px; top: 17px; width: 7px; height: 7px; background: var(--secondary); transform: rotate(45deg); }

/* Zwei-Spalten-Listen (essen in Berlin / für wen) */
.lp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.lp-cols h3 { font-family: var(--font-head); font-weight: 300; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.5rem; margin: 0 0 18px; }

/* FAQ (nutzt .accordion; SEO-freundlich) */
.faq { max-width: 860px; border-top: 1px solid var(--line); }
.faq .accordion { border: none; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.faq .accordion__trigger { padding: 24px 0; font-family: var(--font-head); font-weight: 300; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.2rem; color: var(--near-black); }
.faq .accordion__panel { padding: 0 0 24px; max-width: 72ch; color: var(--muted); line-height: 1.65; }

/* Kontakt-Zeile im Abschluss-CTA */
.lp-contact { margin: 26px 0 0; color: rgba(239,231,217,.8); font-size: .98rem; line-height: 1.8; }
.lp-contact a { color: var(--parchment); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 860px) {
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-split { grid-template-columns: 1fr; gap: 28px; }
  .lp-split--rev .lp-split__text { order: 0; }
  .lp-cols { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .lp-features { grid-template-columns: 1fr; }
}
