/* =============================================================
   Fleischerei Schnettler — Design-System
   „Traditionshandwerk, modern erzählt"
   Statisches CSS, kein Build-Step. Struktur:
   1. Fonts  2. Tokens  3. Reset/Basis  4. Typografie
   5. Layout-Helfer  6. Header/Nav  7. Banner  8. Footer
   9. Komponenten  10. Seiten-Sektionen  11. Motion/A11y
   ============================================================= */

/* ---------- 1. Fonts (selbst gehostet, OFL) ---------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-display-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-display-italic-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3-var.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3-italic-var.woff2") format("woff2");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- 2. Design-Tokens ---------- */
:root {
  /* Farben — Rot aus dem Original-Logo abgeleitet (Schriftzug ~#e03030,
     Konturen schwarz). #b01622 = AA-sichere dunklere Logo-Verwandte. */
  --paper: #f6f1e7;          /* warmes Creme, Grundton */
  --paper-deep: #eee7d6;     /* abgesetzte Flächen */
  --paper-card: #fbf8f1;     /* Karten, leicht heller */
  --ink: #262220;            /* Text (warmes Schwarz wie Logo-Kontur) */
  --ink-soft: #5a544b;       /* Sekundärtext */
  --oxblood: #b01622;        /* Primär: Schnettler-Rot (6.2:1 auf Creme) */
  --oxblood-deep: #8f0f19;   /* Hover / Verläufe */
  --rot-hell: #d2202c;       /* heller Logo-Akzent (nur groß/dekorativ) */
  --tanne: #332e2a;          /* Sekundär: warmes Anthrazit (Logo-Schwarz) */
  --tanne-deep: #211d1a;
  --messing: #a8834b;        /* Akzent: Messing/Gold (nur groß/dekorativ) */
  --messing-dark: #82652f;   /* Messing für kleinen Text (AA) */
  --hairline: #d9cfba;       /* feine Linien */
  --weiss: #fdfcf9;

  /* Typografie */
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --fs-hero: clamp(2.4rem, 1.2rem + 5vw, 4.6rem);
  --fs-h1: clamp(2rem, 1.2rem + 3.2vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 1.1rem + 2vw, 2.3rem);
  --fs-h3: clamp(1.2rem, 1.05rem + .7vw, 1.5rem);
  --fs-body: clamp(1rem, .95rem + .25vw, 1.125rem);
  --fs-small: .875rem;

  /* Raum & Form */
  --space: clamp(1rem, .8rem + 1vw, 1.5rem);
  --section: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --content: 72rem;
  --text-measure: 42rem;
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- 3. Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  /* dezente Leinenstruktur */
  background-image:
    linear-gradient(rgba(93, 31, 35, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 31, 35, .015) 1px, transparent 1px);
  background-size: 5px 5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--oxblood); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--oxblood-deep); }
:focus-visible {
  outline: 3px solid var(--oxblood);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--oxblood); color: var(--weiss); }

/* ---------- 4. Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; max-width: var(--text-measure); }
.lead {
  font-size: clamp(1.1rem, 1rem + .6vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 640;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--messing-dark);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--messing);
}
blockquote {
  margin: 2rem 0;
  padding: .4rem 0 .4rem 1.6rem;
  border-left: 2px solid var(--messing);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15em;
  color: var(--ink-soft);
  max-width: var(--text-measure);
}
blockquote cite { display: block; margin-top: .8rem; font-style: normal; font-family: var(--sans); font-size: var(--fs-small); }
/* Zentrierte Zitat-Variante (z. B. Boele-Sektion der Startseite) */
.blockquote--center {
  border-left: 0;
  padding: 0;
  margin: 1rem auto 2rem;
  text-align: center;
}
.blockquote--center::before {
  content: "\201E"; /* „ — Glyphe hängt unter der Baseline, daher line-height 0 + feste Höhe */
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0;
  height: 2.75rem;
  color: var(--messing);
}
.blockquote--center cite { color: var(--messing); letter-spacing: .06em; }
hr.flourish {
  border: 0;
  height: 1px;
  max-width: 8rem;
  margin: 2.5rem auto;
  background: linear-gradient(90deg, transparent, var(--messing), transparent);
}

/* ---------- 5. Layout-Helfer ---------- */
.wrap { max-width: var(--content); margin-inline: auto; padding-inline: var(--space); }
.section { padding-block: var(--section); }
.section--deep { background: var(--paper-deep); border-block: 1px solid var(--hairline); }
.section--dark {
  background: linear-gradient(175deg, var(--tanne), var(--tanne-deep));
  color: var(--paper);
}
/* Dunkle Sektion mit Kirchen-Silhouette im Hintergrund (Startseite) */
.section--kirche { position: relative; overflow: hidden; }
.section--kirche .wrap { position: relative; z-index: 1; }
.kirche-bg {
  position: absolute;
  right: clamp(-6rem, -2vw, 0rem);
  bottom: 0;
  height: 112%;
  width: auto;
  opacity: .17;
  filter: grayscale(1) brightness(1.75) contrast(1.05);
  -webkit-mask-image: linear-gradient(100deg, transparent 8%, #000 55%);
  mask-image: linear-gradient(100deg, transparent 8%, #000 55%);
  pointer-events: none;
  user-select: none;
}
/* Verlauf blendet die Silhouette nach unten in den Sektionshintergrund */
.section--kirche::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(33, 29, 26, .55) 78%, rgba(33, 29, 26, .95) 100%);
  pointer-events: none;
}
@media (max-width: 46rem) {
  .kirche-bg { opacity: .12; right: -30%; }
}
.section--dark h2, .section--dark h3 { color: var(--weiss); }
.section--dark p { color: rgba(246, 241, 231, .85); }
.section--dark a { color: var(--messing-soft, #c9ab77); }
.grid-2 { display: grid; gap: calc(var(--space) * 2); align-items: center; }
.grid-3 { display: grid; gap: calc(var(--space) * 1.5); }
@media (min-width: 46rem) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 6. Header & Navigation ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--oxblood);
  color: var(--weiss);
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 0; color: var(--weiss); }

.topbar {
  background: var(--oxblood);
  color: var(--weiss);
  font-size: var(--fs-small);
  border-bottom: 1px solid rgba(168, 131, 75, .5);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 2.4rem;
  padding-block: .3rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--weiss); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.open-status { display: inline-flex; align-items: center; gap: .5rem; }
.open-status::before {
  content: "";
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: #9bb89a;
  box-shadow: 0 0 0 3px rgba(155, 184, 154, .25);
}
.open-status[data-state="closed"]::before { background: #d8b46a; box-shadow: 0 0 0 3px rgba(216, 180, 106, .22); }
.open-status[data-state="ferien"]::before { background: #d8b46a; box-shadow: 0 0 0 3px rgba(216, 180, 106, .22); }

.site-head {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.brand { display: flex; align-items: center; text-decoration: none; }
/* Original-Logo (Schriftzug 940x90) */
.brand-logo {
  display: block;
  width: clamp(15rem, 9rem + 22vw, 26rem);
  height: auto;
}
.site-nav ul {
  display: flex;
  gap: clamp(.6rem, 2vw, 1.8rem);
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.site-nav a {
  display: inline-block;
  padding: .5rem .15rem;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--oxblood); }
.site-nav a[aria-current="page"] {
  color: var(--oxblood);
  border-bottom-color: var(--messing);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: .55rem .8rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
@media (max-width: 52rem) {
  .nav-toggle { display: inline-flex; align-items: center; gap: .5rem; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 18px 30px -18px rgba(42, 39, 35, .35);
    z-index: 50;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: .5rem var(--space) 1rem; }
  .site-nav a { display: block; padding: .8rem .2rem; border-bottom: 1px solid var(--hairline); }
  .site-nav li:last-child a { border-bottom-color: transparent; }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--hairline); }
}

/* ---------- 7. Hinweis-Banner (site-weit, aus site-config.js) ---------- */
.notice-banner {
  background: linear-gradient(90deg, var(--messing-dark), var(--messing));
  color: var(--weiss);
  text-align: center;
  padding: .65rem var(--space);
  font-size: .95rem;
  font-weight: 600;
}
.notice-banner a { color: var(--weiss); }

/* ---------- 8. Footer ---------- */
.site-foot {
  background: var(--tanne-deep);
  color: rgba(246, 241, 231, .82);
  font-size: .95rem;
  margin-top: 0;
}
.site-foot a { color: var(--paper); }
.foot-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3.5rem 2.5rem;
}
@media (min-width: 46rem) { .foot-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-foot h2 {
  color: var(--weiss);
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { padding-block: .18rem; }
.foot-legal {
  border-top: 1px solid rgba(246, 241, 231, .15);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: space-between;
  font-size: var(--fs-small);
}
.foot-seal { margin-bottom: 1.2rem; }

/* Öffnungszeiten-Tabelle */
.hours-table { border-collapse: collapse; width: 100%; max-width: 24rem; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: .4rem .6rem .4rem 0;
  border-bottom: 1px solid var(--hairline);
  font-weight: 400;
  vertical-align: top;
}
.hours-table th { font-weight: 600; white-space: nowrap; padding-right: 1.4rem; }
.site-foot .hours-table th, .site-foot .hours-table td { border-bottom-color: rgba(246, 241, 231, .14); }
.hours-table tr[data-today] th, .hours-table tr[data-today] td { color: var(--weiss); font-weight: 600; }
main .hours-table tr[data-today] th, main .hours-table tr[data-today] td { color: var(--oxblood); }

/* ---------- 9. Komponenten ---------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.7rem;
  border: 1px solid var(--oxblood);
  border-radius: var(--radius);
  background: var(--oxblood);
  color: var(--weiss);
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.btn:hover { background: var(--oxblood-deep); border-color: var(--oxblood-deep); color: var(--weiss); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--oxblood); }
.btn--ghost:hover { background: var(--oxblood); color: var(--weiss); }
.hero .btn--ghost { color: var(--paper); border-color: rgba(246, 241, 231, .6); }
.hero .btn--ghost:hover { background: var(--paper); border-color: var(--paper); color: var(--tanne-deep); }
.btn--light { background: var(--paper); border-color: var(--paper); color: var(--tanne-deep); }
.btn--light:hover { background: var(--weiss); border-color: var(--weiss); color: var(--oxblood); transform: translateY(-1px); }

/* Sticky Click-to-Call (Mobile) */
.call-sticky {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  background: var(--oxblood);
  color: var(--weiss);
  text-align: center;
  padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom));
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 -8px 24px rgba(42, 39, 35, .25);
}
.call-sticky:hover, .call-sticky:focus { color: var(--weiss); background: var(--oxblood-deep); }
@media (max-width: 46rem) {
  .call-sticky { display: block; }
  body { padding-bottom: 4rem; }
}

/* Karten */
.card {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 1rem + 1.5vw, 2rem);
  box-shadow: 0 1px 0 rgba(42, 39, 35, .04);
}
.card h3 { margin-top: 0; }

/* Bilder */
.figure { margin: 0; }
.figure img {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px -22px rgba(42, 39, 35, .45);
}
.figure figcaption {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  padding-top: .6rem;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: .6rem;
}
.figure--framed img { padding: .5rem; background: var(--weiss); }
.img-historic img { filter: sepia(.35) contrast(.95) saturate(.75); }
/* Bildergalerien im 3er-Raster: einheitliche Höhe trotz
   unterschiedlicher Originalformate (z. B. Über Uns) */
.grid-3 .figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Siegel (SVG nutzt currentColor) */
.seal { color: var(--messing); }
.section--dark .seal, .site-foot .seal { color: var(--messing); }

/* Qualitätssiegel (Angebot) — eigenes SVG statt alter Stock-Plakette */
.seal-figure { text-align: center; }
.seal-figure .quality-seal {
  display: block;
  width: min(100%, 21rem);
  height: auto;
  margin-inline: auto;
  margin-bottom: .4rem;
  filter: drop-shadow(0 18px 32px rgba(93, 31, 35, .22));
}
.seal-figure figcaption { border-top: 0; }

/* Merkmal-Liste (Angebot / Qualität) */
.feature-list { list-style: none; margin: 0 0 1.5rem; padding: 0; max-width: var(--text-measure); }
.feature-list li {
  position: relative;
  padding: .45rem 0 .45rem 2rem;
  border-bottom: 1px solid var(--hairline);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: .35rem;
  top: 1.05rem;
  width: .8rem;
  height: 1px;
  background: var(--messing);
}

/* Definition/Kontakt-Liste */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding-block: .3rem; }
.contact-list strong { display: inline-block; min-width: 5.5rem; font-weight: 650; }

/* ---------- 10. Seiten-Sektionen ---------- */

/* Hero mit Foto-Hintergrund (Startseite) — dunkles Overlay sichert Kontrast */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  background: var(--tanne-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(24, 17, 13, .93) 0%,
    rgba(24, 17, 13, .82) 42%,
    rgba(52, 24, 18, .38) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 3rem + 6vw, 8.5rem);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 52rem) { .hero .wrap { grid-template-columns: 1.5fr 1fr; } }
.hero .kicker { color: var(--messing); }
.hero .kicker::before { background: var(--messing); }
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 650;
  margin-bottom: .4em;
  color: var(--paper);
}
.hero h1 em {
  font-style: italic;
  color: #e0b878; /* helles Messing — lesbar auf dunklem Foto */
}
.hero .lead { color: rgba(246, 241, 231, .88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-seal { justify-self: center; }
.hero-seal .seal { filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .45)); }
.hero-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--messing), transparent);
  max-width: 16rem;
  margin-bottom: 2rem;
}
.hero .form-hint { color: rgba(246, 241, 231, .65); }
/* Hinweis auf freie Ausbildungsplätze unter den Hero-Buttons */
.hero-jobs {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem .8rem;
  margin: 1.6rem 0 0;
  max-width: 34rem;
  font-size: .98rem;
  line-height: 1.5;
  color: rgba(246, 241, 231, .9);
}
.hero-jobs-badge {
  flex: none;
  align-self: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tanne-deep);
  background: #e0b878;
  padding: .2rem .6rem;
  border-radius: 100px;
}
.hero-jobs a { color: #e0b878; font-weight: 650; text-underline-offset: 3px; }
.hero-jobs a:hover { color: var(--paper); }
/* Tradition: zentrierter Hero über der Montage aus historischen Bildern */
.hero--tradition .wrap {
  display: block;
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem);
}
.hero--tradition::after {
  background: linear-gradient(180deg,
    rgba(24, 17, 13, .74),
    rgba(24, 17, 13, .48) 55%,
    rgba(24, 17, 13, .8));
}
.hero--tradition .flourish { margin-bottom: 0; }

/* Timeline (Tradition) */
.timeline {
  list-style: none;
  margin: 3rem 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: .45rem;
  top: .4rem;
  bottom: .4rem;
  width: 1px;
  background: linear-gradient(var(--messing), var(--hairline));
}
.timeline li {
  position: relative;
  padding: 0 0 2.2rem 2.4rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: .95rem;
  height: .95rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--messing);
}
.timeline .year {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--oxblood);
  display: block;
  line-height: 1.2;
}
.timeline p { margin: .3rem 0 0; }

/* Kapitel-Sprungnavigation (Tradition) */
.chapter-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 231, .93);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.chapter-nav ol {
  list-style: none;
  display: flex;
  gap: .2rem;
  margin: 0;
  padding: 0 var(--space);
  max-width: var(--content);
  margin-inline: auto;
  overflow-x: auto;
  counter-reset: chapter;
}
.chapter-nav a {
  display: inline-block;
  padding: .75rem .8rem;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink-soft);
  counter-increment: chapter;
}
.chapter-nav a::before {
  content: counter(chapter, upper-roman) ". ";
  color: var(--messing-dark);
}
.chapter-nav a:hover { color: var(--oxblood); }
.prose h2 { margin-top: 0; }
.prose { max-width: var(--text-measure); }

/* Buffet-Filter & Karten (Partyservice) */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  margin: 2rem 0 2.5rem;
}
.filterbar .chip {
  border: 1px solid var(--hairline);
  background: var(--paper-card);
  color: var(--ink);
  border-radius: 100px;
  padding: .45rem 1.1rem;
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.filterbar .chip:hover { border-color: var(--messing); }
.filterbar .chip[aria-pressed="true"] {
  background: var(--tanne);
  border-color: var(--tanne);
  color: var(--weiss);
}
.filterbar select {
  font: inherit;
  padding: .45rem .8rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--paper-card);
  color: var(--ink);
}
.buffet-grid { display: grid; gap: 1.4rem; }
@media (min-width: 46rem) { .buffet-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 72rem) { .buffet-grid { grid-template-columns: 1fr 1fr 1fr; } }
.buffet-card { display: flex; flex-direction: column; }
.buffet-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .9rem;
}
.buffet-card .tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--messing-dark);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: .15rem .7rem;
}
.buffet-card .personen {
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--tanne);
}
.buffet-card .inhalt { color: var(--ink-soft); flex: 1; }
.buffet-empty { padding: 2rem; text-align: center; color: var(--ink-soft); }

/* Hinweistexte (Anfragen laufen bewusst telefonisch — kein Formular) */
.form-hint { font-size: var(--fs-small); color: var(--ink-soft); max-width: 44rem; }
.section--dark .form-hint { color: rgba(246, 241, 231, .65); }

/* Wochenangebot (aus site-config.js, ausgeblendet wenn inaktiv) */
.weekly[hidden] { display: none; }
.weekly-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 46rem) { .weekly-list { grid-template-columns: 1fr 1fr; } }
.weekly-list li {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--messing);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}
.weekly-list .name { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; display: block; }
.weekly-list .desc { color: var(--ink-soft); font-size: .98rem; }

/* Google-Bewertungen (aus site-config.js) */
.reviews[hidden] { display: none; }
.reviews-stars { display: inline-flex; gap: 1px; line-height: 1; font-size: 1.15rem; letter-spacing: 1px; }
.reviews-stars .is-on { color: var(--messing); }
.reviews-stars .is-off { color: rgba(168, 131, 75, .3); }
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem .7rem;
  margin: .3rem 0 1.5rem;
}
.reviews-agg-text { font-weight: 650; color: var(--ink-soft); }
.reviews-aggregate[hidden] { display: none; }
.reviews-grid {
  list-style: none;
  margin: 2.5rem 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
  text-align: left;
}
.reviews-grid[hidden] { display: none; }
@media (min-width: 46rem) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--paper-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 0 rgba(42, 39, 35, .04);
  display: flex;
  flex-direction: column;
}
.review-card .reviews-stars { margin-bottom: .8rem; }
.review-card blockquote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  max-width: none;
  font-family: var(--sans);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.review-card .review-meta { margin: 0; font-size: var(--fs-small); font-weight: 650; color: var(--ink-soft); }

/* Karte (Kontakt, 2-Klick-Lösung) */
.map-shell {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 16 / 9;
}
.map-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1rem;
  text-align: center;
  padding: var(--space);
}
.map-consent p { font-size: var(--fs-small); color: var(--ink-soft); margin: 0; }

/* Zahlen/Fakten-Band */
.fact-band { display: grid; gap: 1.5rem; text-align: center; }
@media (min-width: 40rem) { .fact-band { grid-template-columns: repeat(3, 1fr); } }
.fact-band .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.6rem + 2.5vw, 3.4rem);
  color: var(--messing);
  display: block;
  line-height: 1.1;
}
.fact-band .label { letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; font-weight: 650; }

/* ---------- 11. Motion & A11y ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  .topbar, .site-nav, .nav-toggle, .call-sticky, .notice-banner, .chapter-nav { display: none !important; }
}
