/* =========================================================================
   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 — aus DESIGN.md (Editorial „DA MARIA", Ziegelrot auf Büttenpapier) ---- */
  --primary: #C4443C;          /* Ziegelrot — Headlines, Rahmen, Rules, CTAs, Preise */
  --primary-hover: #A6362F;    /* Ziegelrot dunkler — Hover */
  --secondary: #1A1A1A;        /* Tinte/Near-Black — dunkle Blöcke, Drop-Caps */
  --near-white: #F4F1E9;       /* Cream/Papier — Seitenhintergrund */
  --near-black: #1A1A1A;       /* Tinte — Fließtext */
  --light-surface: #EBE6DA;    /* tieferer Cremeton — Cards, Felder */
  --dark-surface: #1A1A1A;     /* Tinte — dunkle Flächen/Bänder */
  --margin-damask: #D8D2C3;    /* greige Damast-Marge außerhalb des roten Rahmens */
  --line: #D8CDB8;             /* warme Hairline */
  --muted: #6E655A;            /* Bildunterschriften, Sekundärtext */
  --status-green: #6fa86b;     /* FIX — nur Live-Banner */

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

  /* ---- Typografie — aus DESIGN.md (Playfair Display + PT Serif) ---- */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;  /* Display/Headline */
  --font-body: "PT Serif", Georgia, "Times New Roman", serif;          /* Body/UI */

  /* ---- Form & Layout — aus DESIGN.md (Flat, scharfe Kanten) ---- */
  --radius: 0px;               /* scharfe Rechtecke; Pills separat via 999px */
  --shadow: none;              /* konsequentes Flat-Design */
  --content-max: 1200px;
  --section-pad: 110px;
  --frame-inset: 14px;         /* Abstand roter Doppelrahmen vom Viewport-Rand */
}

/* ---- 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;
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--near-black);
  background: var(--near-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.1; margin: 0; text-wrap: balance; }
a { color: inherit; }
.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 24px; }
[id] { scroll-margin-top: 140px; } /* Brand-Band + Sticky-Header Offset */

/* ---- Buttons (flach, Radius aus Token) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.2;
  text-decoration: none; padding: 15px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-secondary { background: transparent; color: currentColor; border-color: currentColor; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* =========================================================================
   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)
   ========================================================================= */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--near-white); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 16px; }
.brand { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--near-black); text-decoration: none; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.primary-nav > a { text-decoration: none; color: var(--near-black); padding: 8px 12px; border-radius: var(--radius); white-space: nowrap; }
.primary-nav > a:hover { color: var(--primary); }
.primary-nav__cta { color: #fff; padding: 10px 18px; }
.primary-nav__cta:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.nav-toggle__bar { width: 22px; height: 2px; background: var(--near-black); margin: 0 auto; transition: transform .2s ease, opacity .2s 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: 860px) {
  .nav-toggle { display: flex; }
  .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(--near-white); border-bottom: 1px solid var(--line); padding: 8px 24px 18px; display: none; }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav__cta { text-align: center; margin-top: 10px; border-bottom: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,16,12,.78) 0%, rgba(20,16,12,.6) 45%, rgba(20,16,12,.28) 100%); }
.hero__inner { position: relative; z-index: 1; padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.hero__content { max-width: 640px; }
.hero__eyebrow { font-size: .95rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.hero__title { font-size: clamp(2.4rem, 5.2vw, 4rem); margin: 0 0 18px; }
.hero__subline { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.92); margin: 0 0 32px; max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 640px) { .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: 720px; margin: 0 auto 44px; text-align: center; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 0 0 12px; }
.section__lead { font-size: 1.1rem; color: var(--muted); margin: 0; }
.section__actions { text-align: center; margin-top: 40px; }

.band { background: var(--secondary); color: #fff; padding: var(--section-pad) 0; }
.band .section__title { color: #fff; }

.usp__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.usp__item { text-align: center; }
.usp__title { font-size: 1.2rem; margin: 0 0 8px; color: #fff; }
.usp__item p { margin: 0; color: rgba(255,255,255,.9); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--near-white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.section--light .card { background: var(--light-surface); }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__media--placeholder { display: flex; align-items: center; justify-content: center; background: var(--light-surface); color: var(--muted); font-size: .95rem; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__title { font-size: 1.25rem; }
.card__desc { margin: 0; color: var(--muted); }
.card__price { margin: 8px 0 0; font-weight: 700; color: var(--primary); font-size: 1.1rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery__item { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review { margin: 0; background: var(--near-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow); }
.review__head { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; background: var(--secondary); flex: 0 0 auto; }
.review__stars { margin: 0; color: #FBBC04; letter-spacing: 2px; }
.review__text { margin: 0; }
.review__author { font-weight: 700; }
.reviews__source { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 26px; color: var(--muted); }

.ueber { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: center; }
.ueber__portrait { width: 240px; height: 240px; border-radius: 50%; overflow: hidden; margin: 0 auto; }
.ueber__portrait img { width: 100%; height: 100%; object-fit: cover; }
.ueber__portrait--placeholder { display: flex; align-items: center; justify-content: center; background: var(--light-surface); color: var(--muted); text-align: center; font-size: .95rem; padding: 12px; }
.ueber__text .section__title { text-align: left; }
.ueber__text p { margin: 0 0 14px; font-size: 1.08rem; }
.ueber__motto { font-family: var(--font-head); font-style: italic; color: var(--secondary); font-size: 1.3rem; }

.oeff { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.oeff__tile { background: var(--light-surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 12px 8px; text-align: left; border-bottom: 1px solid var(--line); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today { font-weight: 700; color: var(--primary); }
.hours__closed { color: var(--muted); }
.hours__note { text-align: center; margin: 22px auto 0; color: var(--muted); font-weight: 700; }
@media (max-width: 640px) { .oeff { grid-template-columns: 1fr; } }

.anfahrt { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; max-width: 820px; margin: 0 auto; }
.anfahrt__address { font-style: normal; font-size: 1.15rem; line-height: 1.7; }
.anfahrt__address a { color: var(--primary); text-decoration: none; }
.anfahrt__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.anfahrt__pay { text-align: center; margin: 28px auto 0; color: var(--muted); }

.cta__inner { text-align: center; }
.cta__title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 0 0 10px; color: #fff; }
.cta__text { margin: 0 0 28px; color: rgba(255,255,255,.9); }
.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 .review,
html.reveal .ueber__media,
html.reveal .ueber__text,
html.reveal .oeff,
html.reveal .anfahrt,
html.reveal .anfahrt__pay,
html.reveal .cta__inner,
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: 56px 0 24px; text-align: center; }
.menu-block__head { text-align: center; margin-bottom: 36px; }
.menu-block__time { margin: 6px 0 0; color: var(--secondary); font-weight: 700; letter-spacing: .04em; }
.menu-list { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; }
.menu-item { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item__info { flex: 1; }
.menu-item__name { font-size: 1.2rem; margin: 0 0 4px; }
.menu-item__desc { margin: 0; color: var(--muted); }
.menu-item__variant { margin: 6px 0 0; color: var(--muted); font-size: .95rem; }
.menu-item__price { flex: 0 0 auto; font-weight: 700; color: var(--primary); font-size: 1.1rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-notes { max-width: 820px; margin: 0 auto; }

/* 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: 860px) {
  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .usp__grid, .cards, .gallery { grid-template-columns: 1fr; }
  .ueber { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .ueber__text .section__title { text-align: center; }
  .anfahrt { flex-direction: column; text-align: center; }
  .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; }

/* =========================================================================
   EDITORIAL THEME — „DA NOI" (Referenz DA MARIA), aus docs/DESIGN.md
   Büttenpapier-Optik, Ziegelrot, Playfair/PT Serif, flach, roter Doppelrahmen.
   Diese Sektion überschreibt Template-Defaults gezielt.
   ========================================================================= */

/* Greige Damast-Marge außerhalb des roten Rahmens */
body { background: var(--margin-damask); }

/* Buttons editorial: scharfe Kante, Versalien, Serife, 1px, Hover invertiert */
.btn { border-width: 1px; border-radius: 0; text-transform: uppercase;
  letter-spacing: .08em; font-family: var(--font-body); font-weight: 700; font-size: .82rem; padding: 14px 26px; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ---- Paper-Wrapper + roter Doppelrahmen (dekorativ) ---- */
.paper { position: relative; background: var(--near-white); }
.page-frame { position: absolute; inset: var(--frame-inset); border: 1.5px solid var(--primary);
  pointer-events: none; z-index: 6; }
.page-frame::before { content: ""; position: absolute; inset: 5px; border: 1px solid var(--primary); opacity: .5; }
@media (max-width: 640px){ :root{ --frame-inset: 8px; } }

/* ================= EDITORIAL HEADER ================= */
.site-header { position: static; background: transparent; border-bottom: none; }
.site-header__inner { min-height: 0; padding-top: 30px; padding-bottom: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* Wortmarke (nur /menu-Header nutzt sie noch), im dünnen roten Kasten */
.brand { display: block; text-align: center;
  border: 1px solid var(--primary); padding: 10px 26px; text-decoration: none; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 800; color: var(--primary);
  font-size: 1.5rem; letter-spacing: .06em; text-transform: uppercase; display: block; }
.brand__sub { font-family: var(--font-body); font-style: italic; color: var(--primary);
  font-size: .8rem; letter-spacing: .04em; display: block; margin-top: 4px; }

/* MENU-Pill (links) + RESERVE-Oval (rechts) */
.hdr-pill { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.hdr-pill--menu { color: #fff; }
.hdr-pill--menu .hdr-pill__disc { display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; border-radius: 999px; background: var(--primary); color: #fff;
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
/* Hamburger-Symbol im MENU-Kreis */
.hdr-burger { position: relative; display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.hdr-burger::before, .hdr-burger::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.hdr-burger::before { top: -7px; }
.hdr-burger::after { top: 7px; }
.hdr-reserve { display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--primary); border-radius: 999px; padding: 12px 26px; text-decoration: none;
  color: var(--primary); font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: .8rem; transition: background-color .18s ease, color .18s ease; }
.hdr-reserve::before, .hdr-reserve::after { content: "•"; opacity: .7; }
.hdr-reserve:hover { background: var(--primary); color: #fff; }

/* ================= EDITORIAL HERO ================= */
.hero { position: relative; min-height: 0; display: block; overflow: visible; color: var(--near-black); }
.hero__media { position: relative; inset: auto; z-index: 0; margin-top: 28px; overflow: hidden; height: clamp(340px, 54vh, 600px); }
.hero__media::after { content: none; }
.hero__img { position: absolute; left: 0; right: 0; top: -14%; width: 100%; height: 128%; object-fit: cover; object-position: center 55%; filter: none; will-change: transform; }
/* Subline als Kachel im Bild */
.hero__tile { position: absolute; left: 22px; bottom: 22px; z-index: 2; max-width: min(480px, 72%);
  background: rgba(244, 241, 233, .93); border: 1px solid var(--primary); padding: 20px 24px; }
.hero__tile .hero__subline { margin: 0; }
@media (max-width: 640px){
  .hero__media { height: clamp(300px, 62vh, 460px); }
  .hero__tile { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 15px 16px; }
  .hero__tile .hero__subline { font-size: .96rem; }
}
.hero__inner { position: relative; z-index: 2; padding-top: 8px; padding-bottom: 8px; }
.hero__content { max-width: none; }

/* Eyebrow mit danebenliegender Linie (italic, rot) */
.hero__eyebrow { font-family: var(--font-body); font-style: italic; color: var(--primary);
  text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; gap: 16px; margin: 0 0 10px; }
.hero__eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--primary); opacity: .55; }

/* Riesen-Display-Headline */
.hero__title { font-family: var(--font-head); font-weight: 800; color: var(--primary);
  text-transform: uppercase; line-height: .92; letter-spacing: -0.01em;
  font-size: clamp(3.6rem, 15vw, 12rem); margin: 0; }
.hero__title .hero__diamond { color: var(--primary); font-size: .5em; vertical-align: .18em; padding: 0 .12em; }

/* Untertitel unter der Headline (Desktop-Akzent) */
.hero__sub { font-family: var(--font-body); font-style: italic; color: var(--primary);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem); letter-spacing: .02em; margin: 8px 0 0; }

/* Award-Caption (italic, rechtsbündig) */
.hero__award { font-family: var(--font-body); font-style: italic; color: var(--primary);
  text-align: right; font-size: clamp(1rem, 1.5vw, 1.25rem); margin: 6px 0 0; }

.hero__subline { font-family: var(--font-body); color: var(--near-black); font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6; max-width: 42em; margin: 20px 0 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Live-Banner als cremefarbene Pille mit rotem Rand */
.hero .open-status { background: var(--light-surface); border: 1px solid var(--primary); color: var(--near-black);
  border-radius: 999px; padding: 8px 18px; font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  margin: 18px 0 24px; }
.hero .open-status__dot { background: var(--muted); }
.hero .open-status.is-open .open-status__dot { background: var(--status-green); box-shadow: 0 0 0 4px rgba(111,168,107,.22); }

/* Poststempel (Restaurant Guru), dekorativ */
.hero__stamp { position: absolute; top: 6px; right: 24px; width: 128px; height: 128px; z-index: 1;
  color: var(--muted); opacity: .5; transform: rotate(-12deg); pointer-events: none; }
.hero__stamp svg { width: 100%; height: 100%; }
@media (max-width: 860px){ .hero__stamp { display: none; } }

/* Dünne rote Rule als Sektions-Trenner (Print-Zitat) */
.hero::after { content: ""; display: block; height: 1px; background: var(--primary);
  margin: 0 24px; opacity: .8; }

@media (max-width: 760px){
  /* Header bleibt einzeilig: MENU links, Reservieren rechts */
  .site-header__inner { padding-top: 18px; padding-bottom: 14px; }
  .hero__sub { display: none; }              /* Untertitel nur Desktop */

  /* Mobil: alles zentriert & ruhig arrangiert */
  .hero__content { text-align: center; }
  /* Eyebrow: klein, einzeilig, ohne dekorative Linie */
  .hero__eyebrow { display: block; justify-content: center; white-space: nowrap;
    font-size: .62rem; letter-spacing: .14em; margin: 0 0 14px; }
  .hero__eyebrow::after { display: none; }
  .hero__title { font-size: clamp(2.7rem, 13vw, 4.4rem); margin: 0 auto; }
  .hero__award { text-align: center; font-size: .95rem; margin: 10px 0 0; }
  .hero .open-status { display: inline-flex; margin: 18px 0 20px; }
  .hero__cta { justify-content: center; gap: 10px; }
  .hero__cta .btn { width: 100%; }

  /* Kompakter Hero, damit das Bild ohne Scrollen sichtbar wird */
  .hero__inner { padding-top: 6px; padding-bottom: 0; }
  .hero__media { margin-top: 20px; }
}
@media (max-width: 400px){
  .hdr-pill--menu .hdr-pill__disc { width: 56px; height: 56px; }
  .hdr-reserve { padding: 10px 18px; letter-spacing: .1em; }
}

/* =========================================================================
   EDITORIAL — SECTION-KOMPONENTEN (Phase 2)
   Dünne rote Rules als Trenner, Eyebrow+Linie, rote Vollflächen-Headlines,
   Drop-Caps, karierter Trenner, Kupferstich-Illustrationen.
   ========================================================================= */

/* Sektions-Grundlayout auf Papier, dünne rote Rule oben als Trenner */
.paper .section { position: relative; background: var(--near-white); }
.paper .section--surface { background: var(--near-white); }
.paper .section--light { background: var(--near-white); }
.paper .section::before { content: ""; position: absolute; top: 0; left: 40px; right: 40px;
  height: 1px; background: var(--primary); opacity: .5; }
@media (max-width: 640px){ .paper .section::before { left: 20px; right: 20px; } }

/* Eyebrow (italic, rot, mit nachlaufender Linie) */
.eyebrow { font-family: var(--font-body); font-style: italic; color: var(--primary);
  text-transform: uppercase; letter-spacing: .18em; font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; gap: 16px; margin: 0 0 18px; }
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--primary); opacity: .55; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before, .eyebrow--center::after { content: ""; flex: 1; height: 1px; background: var(--primary); opacity: .55; }

/* Section-Kopf + Titel (Playfair) */
.section__head { margin-bottom: 44px; }
.section__title { font-family: var(--font-head); font-weight: 800; color: var(--near-black);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.02; margin: 0; letter-spacing: -0.005em; }
.section__lead { font-family: var(--font-body); color: var(--muted); font-size: 1.08rem; max-width: 40em; margin: 14px 0 0; }
.section__head--center { text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::before { content: ""; flex: 1; height: 1px; background: var(--primary); opacity: .55; }
.section__head--center .section__lead { margin-left: auto; margin-right: auto; }

/* Rote Vollflächen-Headline (weißer Playfair-Text) */
.block-title { display: inline-block; background: var(--primary); color: #fff;
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase; line-height: .96;
  padding: 18px 26px 22px; font-size: clamp(2.2rem, 5.5vw, 4.6rem); letter-spacing: .01em; }

/* Drop-Cap: schwarzes Quadrat, weiße Serifen-Initiale */
.has-dropcap::first-letter { float: left; font-family: var(--font-head); font-weight: 800;
  font-size: 3.2rem; line-height: .7; background: var(--secondary); color: #fff;
  padding: .18em .2em .12em; margin: .06em .55rem .1em 0; }

/* Karierter (rot/weiß) Print-Trenner */
.divider-check { height: 14px; margin: 0 40px;
  background: repeating-conic-gradient(var(--primary) 0% 25%, var(--near-white) 0% 50%) 0 0 / 14px 14px; }
@media (max-width: 640px){ .divider-check { margin: 0 20px; } }

/* Dünne rote Rule (Inline-Akzent unter Kartentiteln) */
.hr-red { width: 46px; height: 2px; background: var(--primary); border: 0; margin: 12px 0 14px; }

/* ================= USP ================= */
.usp.band { background: var(--near-white); color: var(--near-black); }
.usp .section__head { text-align: center; }
.award-badge { display: flex; justify-content: center; margin: 0 0 40px; }
.usp__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0; }
.usp__item { text-align: center; padding: 6px 18px; border-right: 1px solid var(--line); min-width: 0; overflow-wrap: anywhere; }
.usp__item:last-child { border-right: none; }
.usp__icon { width: 44px; height: 44px; margin: 0 auto 16px; color: var(--primary); }
.usp__icon svg { width: 100%; height: 100%; fill: none; stroke: var(--primary); stroke-width: 1.4; }
.usp__title { font-family: var(--font-body); font-style: italic; text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); font-size: .92rem; font-weight: 700; margin: 0 0 10px; }
.usp__item p { margin: 0; color: var(--near-black); font-size: .98rem; }

/* ================= HIGHLIGHTS ================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 30px; }
.card { background: transparent; border: 0; border-radius: 0; overflow: visible; }
.section--surface .card, .section--light .card { background: transparent; }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--primary); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.25,1,.5,1); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 18px 2px 0; }
.card__title { font-family: var(--font-head); font-weight: 700; color: var(--near-black); font-size: 1.35rem; margin: 0; }
.card__desc { margin: 12px 0 0; color: var(--muted); font-size: 1rem; }

/* ================= GALLERY (Ambiente) ================= */
.gallery { display: grid; grid-template-columns: 1.4fr 1fr; grid-auto-rows: 1fr; gap: 20px; }
.gallery__item { position: relative; margin: 0; border: 1px solid var(--primary); overflow: hidden; aspect-ratio: 3/2; }
.gallery__item:first-child { grid-row: span 2; aspect-ratio: auto; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__cap { position: absolute; left: 12px; bottom: 10px; color: #fff; font-family: var(--font-body);
  font-style: italic; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem;
  background: rgba(26,26,26,.55); padding: 4px 10px; }

/* ================= BEWERTUNGEN ================= */
.reviews__head { text-align: center; margin-bottom: 40px; }
.reviews__google { width: 34px; height: 34px; margin: 0 auto 14px; }
.reviews__stars { color: #FBBC04; letter-spacing: 3px; font-size: 1.1rem; }
.reviews__meta { color: var(--muted); margin: 6px 0 0; font-size: .98rem; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { margin: 0; background: var(--light-surface); border: 1px solid var(--line); padding: 24px 22px; }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review__avatar { width: 40px; height: 40px; border-radius: 999px; display: inline-flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 700; font-family: var(--font-body); flex: 0 0 auto; }
.review__author { font-weight: 700; color: var(--near-black); }
.review__date { display: block; color: var(--muted); font-size: .82rem; font-weight: 400; }
.review__stars { color: #FBBC04; letter-spacing: 2px; margin: 0 0 8px; }
.review__text { margin: 0; color: var(--near-black); font-size: .98rem; line-height: 1.6; }

/* ================= ÜBER UNS ================= */
.ueber { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ueber__media { margin: 0; }
.ueber__portrait { border: 1px solid var(--primary); padding: 10px; background: var(--near-white); }
.ueber__portrait img { width: 100%; display: block; }
.ueber__cap { font-family: var(--font-body); font-style: italic; color: var(--primary);
  text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; margin: 12px 0 0;
  display: flex; align-items: center; gap: 12px; }
.ueber__cap::before { content: ""; width: 34px; height: 1px; background: var(--primary); }
.ueber__text .block-title { margin: 0 0 24px; }
.ueber__text p { color: var(--near-black); margin: 0 0 16px; }
.ueber__text p:last-child { margin-bottom: 0; }

/* ================= ÖFFNUNGSZEITEN ================= */
.oeff { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: stretch; }
.oeff__tile { background: var(--secondary); color: #fff; padding: 34px 30px; display: flex; flex-direction: column; }
.oeff__tile .open-status { background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff; border-radius: 999px; align-self: flex-start; }
.oeff__tile .open-status__dot { background: rgba(255,255,255,.6); }
.oeff__tile .open-status.is-open .open-status__dot { background: var(--status-green); }
.oeff__tilehead { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; margin: 22px 0 4px; }
.oeff__note { color: rgba(255,255,255,.75); margin: 0 0 auto; }
.oeff__clock { font-family: var(--font-head); font-size: 1.4rem; border-top: 1px solid rgba(255,255,255,.25); padding-top: 16px; margin-top: 22px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours td { text-align: right; color: var(--near-black); font-variant-numeric: tabular-nums; }
.hours th { font-family: var(--font-body); font-weight: 700; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours .hours__closed { color: var(--muted); }
.hours tr.is-today { background: var(--light-surface); }
.hours tr.is-today th { color: var(--primary); }
.hours tr.is-today th::after { content: " · Heute"; font-style: italic; font-weight: 400; color: var(--primary); font-size: .8em; }

/* ================= ANFAHRT ================= */
.anfahrt { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.anfahrt__card { border: 1px solid var(--primary); padding: 30px; }
.anfahrt__address { font-style: normal; color: var(--near-black); line-height: 1.7; margin: 0 0 18px; }
.anfahrt__address strong { font-family: var(--font-head); font-size: 1.3rem; }
.anfahrt__list { list-style: none; margin: 0 0 22px; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.anfahrt__list li { display: flex; align-items: center; gap: 12px; color: var(--near-black); }
.anfahrt__list svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.4; flex: 0 0 auto; }
.anfahrt__map { border: 1px solid var(--primary); padding: 10px; }
.anfahrt__map iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(.2) sepia(.12); }

/* ================= RESERVE / CTA ================= */
.cta.band { background: var(--near-white); color: var(--near-black); padding: 0 0 var(--section-pad); }
.cta__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; padding-top: var(--section-pad); }
.cta__title { margin: 0 0 22px; }
.cta__lead { color: var(--near-black); margin: 0 0 26px; max-width: 34em; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.reserve__box { text-align: center; }
.reserve__phoneart { width: 150px; height: 150px; margin: 0 auto 6px; color: var(--secondary); }
.reserve__phoneart svg { width: 100%; height: 100%; }
.reserve__tel { font-family: var(--font-body); font-style: italic; color: var(--primary); font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); text-decoration: none; display: inline-block; margin: 6px 0 24px; }
.reserve__tel:hover { text-decoration: underline; }
.reserve__facts { display: grid; gap: 16px; }
.reserve__facts dt { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; color: var(--near-black); }
.reserve__facts dd { margin: 4px 0 0; color: var(--muted); }

/* ================= GASTRO INFO-FOOTER (Zusatz-Segment der Vorlage) ================= */
.info-footer { background: var(--near-white); padding: 0 0 70px; }
.info-footer__box { border: 1px solid var(--primary); padding: 44px 40px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-footer__col h2 { font-family: var(--font-head); font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; color: var(--near-black); margin: 0 0 16px; }
.info-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.info-footer__col a, .info-footer__col li { color: var(--muted); text-decoration: none; }
.info-footer__col a:hover { color: var(--primary); }

/* GustoGang Partner-Slot editorial angleichen */
.gg-partner { background: var(--near-white); }
.gg-partner__card { border: 1px solid var(--primary); background: var(--near-white); border-radius: 0; }

/* ================= RESPONSIVE (Editorial) ================= */
@media (max-width: 900px){
  .usp__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 0; }
  .usp__item { border-right: 0; padding: 14px 16px; }
  .usp__item:nth-child(odd) { border-right: 1px solid var(--line); }
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .ueber, .oeff, .anfahrt, .cta__inner { grid-template-columns: 1fr; gap: 34px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item:first-child { grid-row: auto; aspect-ratio: 3/2; }
  .info-footer__box { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 560px){
  .usp__grid, .cards, .reviews, .gallery { grid-template-columns: 1fr; }
  .usp__item, .usp__item:nth-child(odd) { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 26px; }
  .usp__item:last-child { border-bottom: 0; }
  .gallery__item:first-child { grid-row: auto; }
  .cta__actions .btn, .section__actions .btn { width: 100%; }
}

/* =========================================================================
   OPTIMIERUNGEN (Runde 2)
   ========================================================================= */

/* MENU-Pille als Button (Reset) */
button.hdr-pill { background: transparent; border: 0; padding: 0; font: inherit; cursor: pointer; }

/* ---- Navigations-Overlay (öffnet über MENU-Pille) ---- */
html.nav-open { overflow: hidden; }
.nav-drawer { position: fixed; inset: 0; z-index: 200; background: var(--near-white);
  display: flex; align-items: center; justify-content: center; text-align: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.nav-drawer.is-open { opacity: 1; visibility: visible; }
.nav-drawer::before { content: ""; position: absolute; inset: 14px; border: 1.5px solid var(--primary); pointer-events: none; }
.nav-drawer__close { position: absolute; top: 22px; right: 30px; width: 54px; height: 54px;
  background: transparent; border: 1px solid var(--primary); border-radius: 999px; color: var(--primary);
  font-size: 1.7rem; line-height: 1; cursor: pointer; transition: background-color .15s, color .15s; }
.nav-drawer__close:hover { background: var(--primary); color: #fff; }
.nav-drawer__inner { padding: 24px; }
.nav-drawer__list { list-style: none; margin: 24px 0 34px; padding: 0; display: grid; gap: 4px; }
.nav-drawer__list a { font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  color: var(--near-black); text-decoration: none; font-size: clamp(1.7rem, 5vw, 2.9rem); line-height: 1.15;
  letter-spacing: .005em; display: inline-block; transition: color .15s ease; }
.nav-drawer__list a:hover { color: var(--primary); }

/* ---- USP: Titel lesbar (dunkel statt weiß), Icons entfernt ---- */
.usp .section__title { color: var(--near-black); }
.usp .section__head { text-align: center; }
.usp__item { padding-top: 6px; }

/* ---- HIGHLIGHTS: einzeln, Bild + Text nebeneinander (alternierend) ---- */
.hl-rows { display: grid; gap: 68px; }
.hl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.hl-row:nth-child(even) .hl-row__media { order: 2; }
.hl-row__media { border: 1px solid var(--primary); overflow: hidden; aspect-ratio: 4 / 3; }
.hl-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,1,.5,1); }
.hl-row:hover .hl-row__media img { transform: scale(1.04); }
.hl-row__no { font-family: var(--font-head); font-style: italic; color: var(--primary); opacity: .55; font-size: 1.3rem; }
.hl-row__title { font-family: var(--font-head); font-weight: 800; color: var(--near-black);
  text-transform: uppercase; line-height: 1.02; font-size: clamp(1.7rem, 3vw, 2.6rem); margin: 6px 0 0; }
.hl-row__body .hr-red { margin: 16px 0; }
.hl-row__desc { color: var(--muted); font-size: 1.1rem; line-height: 1.6; margin: 0; max-width: 34em; }

/* ---- RESERVE: Telefon-Bild (Kupferstich) statt SVG ---- */
.reserve__phoneart { width: 190px; height: 190px; margin: 0 auto 4px; }
.reserve__phoneart img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* ---- ÜBER UNS: Foto füllt den Kreis vollständig ---- */
.ueber__portrait { border: 2px solid var(--primary); border-radius: 50%; padding: 0;
  aspect-ratio: 1; overflow: hidden; max-width: 430px; margin: 0 auto; background: var(--light-surface); }
.ueber__portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ueber__cap { justify-content: center; }

/* ---- ÖFFNUNGSZEITEN: Food-Bild als Ambiente ---- */
.oeff__ambient { position: relative; margin: 0 0 32px; border: 1px solid var(--primary);
  overflow: hidden; height: clamp(190px, 26vw, 290px); }
.oeff__ambient img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.oeff__ambient-cap { position: absolute; left: 16px; bottom: 14px; color: #fff; font-family: var(--font-body);
  font-style: italic; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem;
  background: rgba(26,26,26,.5); padding: 6px 12px; }

/* ---- ANFAHRT: einfache Checkboxen statt Icons ---- */
.anfahrt__list .check { width: 20px; height: 20px; border: 1.5px solid var(--primary);
  flex: 0 0 auto; position: relative; display: inline-block; }
.anfahrt__list .check::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid var(--primary); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---- Live-Pille mobil einzeilig ---- */
@media (max-width: 640px){
  .hero .open-status { white-space: nowrap; font-size: .7rem; padding: 7px 14px; gap: 8px; }
  .hero .open-status__dot { width: 8px; height: 8px; }
}

/* ---- Overflow-Härtung schmale Screens (Grid-Tracks / lange Wörter) ---- */
.ueber__text, .ueber__media { min-width: 0; }
.block-title { max-width: 100%; overflow-wrap: anywhere; }
.nav-drawer { max-width: 100%; overflow: hidden; }
.nav-drawer__list a { overflow-wrap: anywhere; }

/* ---- HIGHLIGHTS/ÜBER-UNS responsive ---- */
@media (max-width: 760px){
  .hl-row { grid-template-columns: 1fr; gap: 22px; }
  .hl-row:nth-child(even) .hl-row__media { order: 0; }
  .hl-rows { gap: 48px; }
}

/* =========================================================================
   FEINSCHLIFF (Runde 3)
   ========================================================================= */

/* /menu: Kategorie-Überschriften in Ziegelrot */
.menu-block .section__title { color: var(--primary); }

