/* =========================================================================
   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 — Referenz „Grafschafter Wirtshaus" (Screenshots) + Marken-Crest (grün/gold) ---- */
  --primary: #6e7b52;          /* Wald-Salbei-Grün — Haupt-CTA / Links */
  --primary-hover: #58633f;    /* Hover Primary */
  --secondary: #93a07f;        /* Salbei-Akzent (Labels, Ornamente) */
  --secondary-hover: #7c896a;  /* Hover Secondary */
  --gold: #c19a45;             /* gedämpftes Gold aus dem Wirtshaus-Wappen (feine Akzente) */
  --near-white: #efe8dc;       /* Papier/Leinen-Hintergrund (cremeweiß) */
  --near-black: #262420;       /* warmes Anthrazit — Text / dunkler Anker */
  --light-surface: #e6dece;    /* tieferer Cremeton für Flächen/Cards */
  --dark-surface: #262420;     /* dunkle Sektionen / Footer (warmes Anthrazit) */
  --line: #d8cfbb;             /* Trennlinie auf Papier */
  --line-strong: #c3b79c;      /* kräftigere Trennlinie (Karten-/Formularrahmen) */
  --muted: #6f695c;            /* gedämpfter Text */
  --status-green: #6fa86b;     /* FIX — nur Live-Banner */

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

  /* ---- Typografie — Referenz: kräftige Holztype-Display + eleganter Serif-Body ---- */
  --font-head: "Bowlby One", Impact, "Arial Black", sans-serif;   /* Display-Headlines (Versalien, Holztype-Look) */
  --font-body: "EB Garamond", Georgia, "Times New Roman", serif;  /* Body / Sublines (klassischer Serif) */
  --font-label: "Oswald", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; /* Labels / Buttons (gesperrte Versalien) */

  /* ---- Form & Layout ---- */
  --radius: 4px;               /* knappe Radien wie in der Referenz */
  --shadow: none;              /* flach */
  --content-max: 1240px;
  --section-pad: 96px;
  --rail-w: 26px;              /* sehr schmale linke Vertikal-Leiste (Breite ≈ ein Menüpunkt) */
  --paper-edge: 40px;          /* sichtbarer Papierrand rund um den Inhalt */
}

/* ---- 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);
  line-height: 1.6;
  color: var(--near-black);
  background-color: var(--near-white);
  /* feine Leinen-/Papierstruktur (ohne Bildasset) */
  background-image:
    repeating-linear-gradient(90deg, rgba(120,105,80,.045) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg,  rgba(120,105,80,.045) 0 1px, transparent 1px 4px);
  -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 (Referenz: gesperrte Versalien, Ghost-Rahmen, flach) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-label); font-weight: 500; font-size: .82rem; line-height: 1.2;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; padding: 16px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s 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; }
/* Ghost auf dunklem Grund (Hero/Foto): dünner heller Rahmen, füllt beim Hover */
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.94); color: var(--near-black); border-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; }
}

/* =========================================================================
   RAHMEN / SHELL + LINKE VERTIKAL-LEISTE (Referenz „Grafschafter Wirtshaus")
   Papierrand rundum, links eine schmale Leiste mit Wappen, gedrehter Navigation
   und Social-Icons; Inhalt in der Hauptspalte rechts daneben.
   ========================================================================= */
.shell { max-width: var(--content-max); margin: 0 auto; padding: var(--paper-edge); display: flex; gap: 30px; align-items: flex-start; }
.main-col { flex: 1 1 auto; min-width: 0; max-width: 100%; display: flex; flex-direction: column; gap: 24px; }

.side-rail {
  position: sticky; top: var(--paper-edge);
  flex: 0 0 var(--rail-w); width: var(--rail-w);
  display: flex; flex-direction: column; align-items: center; gap: 34px;
  padding: 2px 0;
}
.side-rail__badge { display: block; }
.side-rail__badge img { width: 26px; height: auto; display: block; }
/* Menüpunkte einspaltig untereinander, jeweils vertikal gedreht (Breite = ein Punkt) */
.side-rail__nav { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 10px; }
.side-rail__nav a {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--font-label); font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; font-size: .82rem; color: var(--near-black);
  text-decoration: none; white-space: nowrap; transition: color .15s ease;
}
.side-rail__nav a:hover { color: var(--primary); }

/* =========================================================================
   HERO (gerahmte Foto-Karte mit Holztype-Headline)
   ========================================================================= */
.hero { position: relative; }
.hero__card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: min(78vh, 720px); display: flex; align-items: center;
  color: #fff;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; z-index: 0; }
.hero__card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, rgba(20,17,12,.82) 0%, rgba(20,17,12,.62) 42%, rgba(20,17,12,.22) 72%, rgba(20,17,12,.05) 100%);
}
.hero__overlay { position: relative; z-index: 2; padding: clamp(30px, 5vw, 64px); max-width: 940px; }
.hero__eyebrow {
  font-family: var(--font-label); font-size: .82rem; font-weight: 500; letter-spacing: .26em;
  text-transform: uppercase; color: #e7e0cf; margin: 0 0 20px;
}
.hero__title {
  font-family: var(--font-head); text-transform: uppercase; color: #fff;
  font-size: clamp(2.2rem, 5.4vw, 4.7rem); line-height: 1.0; letter-spacing: .01em;
  margin: 0 0 22px; text-shadow: 0 2px 24px rgba(0,0,0,.35);
  overflow-wrap: break-word;
}
.hero__subline { font-family: var(--font-body); font-size: clamp(1.1rem, 1.7vw, 1.4rem); color: rgba(255,255,255,.94); margin: 0 0 34px; max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 560px) { .hero__cta .btn { width: 100%; } }
@media (max-width: 480px) {
  .hero__overlay { padding: 28px 22px; }
  .hero__title { font-size: clamp(1.75rem, 8.4vw, 2.5rem); }
}

/* Live-Öffnungs-Banner */
.open-status { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 8px 16px; font-family: var(--font-label); font-size: .82rem; font-weight: 500; letter-spacing: .06em; 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; }

/* Vertikal-Leiste → horizontaler Kopf auf Mobile */
@media (max-width: 860px) {
  .shell { flex-direction: column; padding: 18px 16px; gap: 18px; }
  .side-rail {
    position: static; width: auto; flex: none;
    flex-direction: row; align-items: center; gap: 20px;
    border-bottom: 1px solid var(--line); padding-bottom: 14px;
  }
  .side-rail__badge img { width: 52px; }
  .side-rail__nav { writing-mode: horizontal-tb; margin-top: 0; flex-direction: row; gap: 18px 22px; flex-wrap: wrap; }
  .side-rail__nav a { writing-mode: horizontal-tb; transform: none; font-size: .76rem; letter-spacing: .14em; }
}

/* -------- PHASE-1-ANKER: Segmente unterhalb des Hero vorübergehend ausblenden.
   Im Vollausbau (nach Design-Freigabe) die Klasse „is-anchor" am <body> entfernen. -------- */
body.is-anchor #usp,
body.is-anchor #highlights,
body.is-anchor .gg-partner,
body.is-anchor #ambiente,
body.is-anchor #bewertungen,
body.is-anchor #ueber-uns,
body.is-anchor #oeffnungszeiten,
body.is-anchor #anfahrt,
body.is-anchor #cta { 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; }

/* =========================================================================
   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: 1px solid var(--line-strong); box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; }
.reserve__widget iframe { display: block; width: 100%; min-height: 620px; 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; } }

/* =========================================================================
   ALT-BERLINER WIRTSHAUS — VOLLAUSBAU (Referenzstil „Grafschafter Wirtshaus")
   Sektionen liegen in der Hauptspalte; Kontrast über Karten/Kacheln, nicht über
   randlose Bänder. Linksbündige Section-Heads mit Salbei-Eyebrow + Zickzack.
   ========================================================================= */
.main-col { gap: 0; }
.main-col .container { max-width: none; padding: 0; }
.section { padding: 62px 0; }
.section--light, .section--surface { background: transparent; }

/* Section-Kopf linksbündig + Ornament */
.section__head { max-width: 760px; margin: 0 0 34px; text-align: left; }
.section__title { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.02; color: var(--near-black); margin: 0 0 14px; }
.section__lead { font-size: 1.15rem; color: var(--muted); margin: 0; }
.section__actions { text-align: left; margin-top: 36px; }
.eyebrow { font-family: var(--font-label); font-weight: 600; letter-spacing: .24em; text-transform: uppercase; font-size: .8rem; color: var(--primary); margin: 0 0 12px; }
.zz { display: block; width: 38px; height: 9px; margin: 0 0 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="38" height="9"><path d="M1 8 5 1 9 8 13 1 17 8 21 1 25 8 29 1 33 8 37 1" fill="none" stroke="%238f9c7c" stroke-width="1.7"/></svg>') left center no-repeat; }

/* -------- HIGHLIGHTS: Gericht-Karten -------- */
.card { background: #fbf7ef; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card__media { aspect-ratio: 4 / 3; }
.card__media img { transition: transform .5s ease; }
.card__title { font-family: var(--font-body); font-weight: 600; font-size: 1.35rem; line-height: 1.15; color: var(--near-black); }
.card__desc { color: var(--muted); font-size: 1.02rem; }
a.card { text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
a.card:hover { transform: translateY(-4px); border-color: var(--secondary); box-shadow: 0 18px 40px -28px rgba(38,36,32,.5); }
a.card:hover .card__media img { transform: scale(1.05); }
.card__more { margin-top: auto; padding-top: 10px; font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--primary); }
.card__more span { transition: transform .2s ease; display: inline-block; }
a.card:hover .card__more span { transform: translateX(4px); }

/* -------- USP: vier Fakten -------- */
.usp { padding: 56px 0; }
.usp__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.usp__item { text-align: left; padding: 26px 24px; background: #fbf7ef; border: 1px solid var(--line); border-radius: var(--radius); }
.usp__title { font-family: var(--font-body); font-weight: 600; font-size: 1.4rem; color: var(--primary); margin: 0 0 8px; }
.usp__item p { margin: 0; color: var(--muted); }
@media (max-width: 860px) { .usp__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp__grid { grid-template-columns: 1fr; } }

/* -------- AMBIENTE: Bento mit Kachel-Overlays -------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 14px; grid-auto-flow: dense; }
.tile { position: relative; overflow: hidden; border-radius: var(--radius); margin: 0; min-width: 0; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover img { transform: scale(1.05); }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile--cap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(38,45,32,.05) 40%, rgba(38,45,32,.72) 100%); }
.tile__cap { position: absolute; left: 18px; bottom: 16px; z-index: 1; color: #fff; font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .01em; line-height: 1.05; max-width: 80%; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
@media (max-width: 760px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; grid-auto-flow: row; }
  .bento .tile, .bento .tile--wide, .bento .tile--tall { grid-column: auto; grid-row: auto; min-width: 0; }
  .tile__cap { font-size: .95rem; }
}
@media (max-width: 480px) { .bento { grid-auto-rows: 150px; } .tile__cap { font-size: .9rem; left: 14px; bottom: 13px; max-width: 92%; } }

/* -------- ÜBER UNS -------- */
.ueber { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.ueber__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.ueber__media img { width: 100%; height: 100%; object-fit: cover; }
.ueber__text .section__title { text-align: left; }
.ueber__text p { margin: 0 0 16px; font-size: 1.1rem; color: #37342c; }
.ueber__motto {
  position: relative; margin: 30px 0 0; padding: 28px 28px 28px 64px;
  font-family: var(--font-body); font-style: italic; font-weight: 500;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem); line-height: 1.38; color: var(--near-black);
  background: #eceee1; border: 1px solid var(--line);
  border-left: 4px solid var(--secondary); border-radius: var(--radius);
}
.ueber__motto::before {
  content: "\201C"; position: absolute; left: 18px; top: 12px;
  font-family: var(--font-head); font-size: 3.2rem; line-height: 1; color: var(--secondary);
}
@media (max-width: 760px) { .ueber { grid-template-columns: 1fr; gap: 26px; } }

/* -------- BEWERTUNGEN -------- */
.reviews__source { justify-content: flex-start; }
.review { background: #fbf7ef; }
.review[hidden] { display: none; }
.review__avatar { background: var(--primary); }

/* -------- ÖFFNUNGSZEITEN -------- */
.oeff__tile { background: var(--dark-surface); border: none; color: #efe8dc; padding: 32px 30px; border-radius: var(--radius); }
.oeff__tile .open-status { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; }
.oeff__note { margin: 16px 0 22px; color: #cfc7b6; }
.oeff__addr { margin-top: 18px; }
.oeff__addr a { color: #d6cdb8; }
.hours th, .hours td { border-bottom-color: var(--line); }
.hours tr.is-today { color: var(--primary); }
.hours__note { text-align: left; color: var(--muted); font-weight: 600; }

/* -------- ANFAHRT -------- */
.anfahrt { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; max-width: none; }
.anfahrt__address { font-style: normal; font-size: 1.15rem; line-height: 1.75; }
.anfahrt__address a { color: var(--primary); text-decoration: none; }
.anfahrt__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.transit { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.transit li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.transit__badge { font-family: var(--font-label); font-weight: 600; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--primary); border-radius: var(--radius); padding: 6px 4px; text-align: center; line-height: 1.15; }
.transit__t { margin: 0; }
.transit__t strong { display: block; }
.transit__t span { color: var(--muted); font-size: .98rem; }
.anfahrt__note {
  position: relative; margin: 26px 0 0; padding: 18px 20px 18px 56px;
  color: #5b4b23; font-size: 1.02rem; line-height: 1.55; font-weight: 500;
  background: #f6efdb; border: 1px solid var(--gold); border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.anfahrt__note::before {
  content: "i"; position: absolute; left: 16px; top: 17px;
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #fff;
  font-family: var(--font-label); font-weight: 700; font-size: .92rem; font-style: normal;
}
@media (max-width: 760px) { .anfahrt { grid-template-columns: 1fr; gap: 26px; } }

/* -------- KONTAKTFORMULAR im #cta -------- */
#cta.section { padding-bottom: 76px; }
.reserve__form-note { text-align: left; margin-left: 0; }
.form-notice {
  position: relative; max-width: 760px; margin: 0 auto 18px; padding: 20px 24px 20px 62px;
  background: #eceee1; border: 1px solid var(--secondary);
  border-left: 5px solid var(--primary); border-radius: var(--radius);
}
.form-notice::before {
  content: "!"; position: absolute; left: 18px; top: 20px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-label); font-weight: 700; font-size: 1.05rem;
}
.form-notice__title { display: block; font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.08rem; color: var(--near-black); margin: 0 0 6px; }
.form-notice__text { color: #43403a; font-size: 1.02rem; line-height: 1.55; }

/* -------- SPEISEKARTE (menu.html) — Feinschliff -------- */
.menu-head { padding: 8px 0 26px; text-align: left; }
.menu-head .section__title { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.menu-block { padding: 40px 0; }
.menu-block__head { text-align: left; margin-bottom: 22px; border-bottom: 2px solid var(--line); padding-bottom: 12px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.menu-block__head .section__title { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0; }
.menu-block__time { margin: 0; color: var(--muted); font-family: var(--font-label); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.menu-list { max-width: none; }
.menu-item { padding: 15px 0; }
.menu-item__name { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; }
.menu-item__price { color: var(--primary); font-family: var(--font-label); font-weight: 500; letter-spacing: .02em; }
.menu-item__tag { display: inline-block; font-family: var(--font-label); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: .62rem; color: var(--primary); background: #e7ecdd; border-radius: 999px; padding: 3px 9px; vertical-align: middle; margin-left: 8px; }
.menu-hints { list-style: none; margin: 0 0 30px; padding: 22px 24px; background: #fbf7ef; border: 1px solid var(--line); border-radius: var(--radius); color: var(--muted); display: grid; gap: 10px; }
.menu-hints li { padding-left: 20px; position: relative; }
.menu-hints li::before { content: "•"; position: absolute; left: 4px; color: var(--secondary); }
.menu-hints a { color: var(--primary); }

/* =========================================================================
   SPEISEKARTE — Magazin-Layout (Referenz „Grafschafter Wirtshaus" /menu)
   Sticky Kategorie-Nav, abwechselnd helle/dunkle Sektionen, mehrspaltige
   Gerichtlisten, Holzdielen-Highlight-Banner, Stempel-Zitat.
   ========================================================================= */
.menu-page { --forest: #3d4a34; --charcoal: #262420; }

/* Sticky Kategorie-Navigation mit gepunkteten Trennern */
.menu-nav { position: sticky; top: 0; z-index: 30; margin: 0 0 10px;
  background: rgba(239,232,220,.94); backdrop-filter: blur(6px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-nav__inner { display: flex; flex-wrap: wrap; align-items: center; }
.menu-nav a { position: relative; font-family: var(--font-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--near-black);
  text-decoration: none; padding: 13px 15px; white-space: nowrap; transition: color .15s ease; }
.menu-nav a + a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 20px; border-left: 1px dotted var(--line-strong); }
.menu-nav a:hover, .menu-nav a.is-active { color: var(--primary); }
@media (max-width: 820px) {
  /* Kategorien vollständig sichtbar umbrechen statt horizontal scrollen */
  .menu-nav { max-width: 100%; }
  .menu-nav__inner { flex-wrap: wrap; width: auto; justify-content: center; row-gap: 2px; }
  .menu-nav a { padding: 10px 12px; }
  .menu-nav a + a::before { display: none; } /* keine vertikalen Punkt-Trenner beim Umbruch */
}

/* Intro „Speis & Trank" */
.menu-intro { display: grid; grid-template-columns: 1.05fr .95fr; border-radius: var(--radius); overflow: hidden; margin: 6px 0 14px; }
.menu-intro__text { background: var(--forest); color: #e7e0cf; padding: clamp(28px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.menu-intro__text h2 { font-family: var(--font-head); text-transform: uppercase; color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.02; margin: 0 0 12px; }
.menu-intro__kicker { font-family: var(--font-label); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-size: .8rem; color: var(--secondary); margin: 0 0 16px; }
.menu-intro__text p { font-family: var(--font-body); font-size: 1.12rem; line-height: 1.6; color: #ded6c4; margin: 0; }
.menu-intro__media { position: relative; min-height: 240px; }
.menu-intro__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) { .menu-intro { grid-template-columns: 1fr; } }

/* Kategorie-Sektion */
.mcat { padding: 46px 0; scroll-margin-top: 70px; }
.mcat--dark { background: var(--forest); border-radius: var(--radius); padding: 46px clamp(22px, 3vw, 48px); margin: 16px 0; scroll-margin-top: 70px; }
.mcat--charcoal { background: var(--charcoal); border-radius: var(--radius); padding: 46px clamp(22px, 3vw, 48px); margin: 16px 0; scroll-margin-top: 70px; }
.mcat__head { margin: 0 0 30px; }
.mcat__title { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.0; color: var(--near-black); margin: 0; }
.mcat__intro { font-family: var(--font-body); font-size: 1.1rem; color: var(--muted); margin: 10px 0 0; max-width: 46em; }
.mcat--dark .mcat__title, .mcat--charcoal .mcat__title { color: #fff; }
.mcat--dark .mcat__intro, .mcat--charcoal .mcat__intro { color: #cfc7b6; }
.mcat--dark .eyebrow, .mcat--charcoal .eyebrow { color: var(--secondary); }

/* Untergruppen-Überschrift innerhalb einer Kategorie */
.msub { font-family: var(--font-head); text-transform: uppercase; font-size: 1.5rem; color: var(--near-black); margin: 32px 0 14px; }
.mcat--dark .msub, .mcat--charcoal .msub { color: #fff; }

/* Gericht-Raster */
.mitems { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 48px; }
.mitem { padding: 15px 0; border-bottom: 1px solid var(--line); }
.mcat--dark .mitem, .mcat--charcoal .mitem { border-bottom-color: rgba(255,255,255,.13); }
.mitem__name { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.02rem; color: var(--near-black); margin: 0 0 5px; }
.mcat--dark .mitem__name, .mcat--charcoal .mitem__name { color: #fff; }
.mitem__desc { font-family: var(--font-body); color: var(--muted); margin: 0; line-height: 1.5; }
.mcat--dark .mitem__desc, .mcat--charcoal .mitem__desc { color: #cfc7b6; }
.mitem__price { display: inline-block; margin: 7px 0 0; font-family: var(--font-label); font-weight: 600; letter-spacing: .02em; font-size: .95rem; color: var(--primary); }
.mcat--dark .mitem__price, .mcat--charcoal .mitem__price { color: #c8d3b6; }
.mitem__tag { display: inline-block; font-family: var(--font-label); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: .58rem; color: var(--primary); background: #e7ecdd; border-radius: 999px; padding: 2px 8px; vertical-align: middle; margin-left: 8px; }
.mcat--dark .mitem__tag, .mcat--charcoal .mitem__tag { color: #dfe6d2; background: rgba(255,255,255,.14); }
.mitem--box { border: 1px solid var(--secondary); border-radius: var(--radius); padding: 16px 18px; }
.mcat--dark .mitem--box, .mcat--charcoal .mitem--box { border: 1px solid rgba(255,255,255,.45); }
@media (max-width: 640px) { .mitems { grid-template-columns: 1fr; } }

/* Holzdielen-Highlight-Banner */
.mfeature { position: relative; overflow: hidden; border-radius: var(--radius); margin: 6px 0 4px; min-height: 260px; display: flex; align-items: center; }
.mfeature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mfeature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,12,.5), rgba(20,17,12,.05) 70%); }
.mfeature__box { position: relative; z-index: 1; margin-left: clamp(18px, 5%, 60px); background: rgba(28,25,20,.86); color: #fff; padding: 22px 28px; max-width: min(62%, 460px); }
.mfeature__name { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.02; margin: 0 0 10px; }
.mfeature__desc { font-family: var(--font-body); color: #e2dccd; margin: 0 0 8px; }
.mfeature__price { font-family: var(--font-label); font-weight: 600; letter-spacing: .02em; color: #c8d3b6; }
@media (max-width: 560px) { .mfeature__box { max-width: 86%; } }

/* Stempel-Zitat (Postmark) */
.mstamp { max-width: 560px; margin: 26px auto; text-align: center; padding: clamp(26px, 4vw, 40px); background: #fbf7ef; color: var(--near-black);
  border: 2px dashed var(--line-strong); border-radius: 12px; }
.mstamp__badge { width: 54px; height: auto; margin: 0 auto 14px; display: block; opacity: .9; }
.mstamp__q { font-family: var(--font-body); font-style: italic; font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.4; margin: 0; }
.mstamp__c { font-family: var(--font-label); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; color: var(--secondary); margin: 14px 0 0; }

/* =========================================================================
   SEO-LANDINGPAGES (Gericht-Unterseiten)
   ========================================================================= */
.lp-breadcrumb { font-family: var(--font-label); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .72rem; color: var(--muted); margin: 0 0 14px; }
.lp-breadcrumb a { color: var(--muted); text-decoration: none; }
.lp-breadcrumb a:hover { color: var(--primary); }
.lp-hero .hero__card { min-height: min(64vh, 580px); }
.lp-lead { font-family: var(--font-body); font-size: clamp(1.15rem, 1.9vw, 1.45rem); line-height: 1.62; color: #38342b; max-width: 46em; }
.lp-lead + .lp-lead { margin-top: 14px; }
.lp-section { padding: 54px 0; }
.lp-section__title { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.05; color: var(--near-black); margin: 0 0 26px; }

.lp-points { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lp-point { background: #fbf7ef; border: 1px solid var(--line); border-left: 4px solid var(--secondary); border-radius: var(--radius); padding: 22px 24px; }
.lp-point h3 { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; color: var(--primary); margin: 0 0 6px; }
.lp-point p { margin: 0; color: var(--muted); }

.lp-comp { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lp-comp__card { background: #fbf7ef; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.lp-comp__card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.3rem; color: var(--near-black); margin: 0 0 8px; }
.lp-comp__card p { margin: 0; color: #4a463d; line-height: 1.55; }

.lp-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.lp-list li { position: relative; padding-left: 26px; color: #4a463d; font-size: 1.06rem; line-height: 1.5; }
.lp-list li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 9px; height: 9px; background: var(--gold); border-radius: 2px; transform: rotate(45deg); }

.lp-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.lp-split--rev .lp-split__media { order: 2; }
.lp-split__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.lp-split__media img { width: 100%; height: 100%; object-fit: cover; }

.lp-faq { display: grid; gap: 12px; max-width: 860px; }

.lp-cta { background: var(--dark-surface); color: #efe8dc; border-radius: var(--radius); padding: clamp(38px, 5vw, 62px); text-align: center; }
.lp-cta h2 { font-family: var(--font-head); text-transform: uppercase; color: #fff; font-size: clamp(1.8rem, 3.8vw, 2.9rem); line-height: 1.02; margin: 0 0 12px; }
.lp-cta p { color: #cfc7b6; font-size: 1.12rem; margin: 0 auto 28px; max-width: 40em; }
.lp-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) { .lp-cta__btns .btn { width: 100%; } }

@media (max-width: 760px) {
  .lp-points, .lp-comp { grid-template-columns: 1fr; }
  .lp-split { grid-template-columns: 1fr; gap: 24px; }
  .lp-split--rev .lp-split__media { order: 0; }
}
