/* =========================================================================
   PFIFF HINTERBRÜHL — styles.css
   Traditionelles österreichisches Wirtshaus seit 1986
   Eine einzige Stylesheet-Datei für die gesamte Seite.
   Aufbau: Variablen → Grundlagen → Layout → Header → Footer →
           Komponenten → Seiten-spezifisch → Responsive → Print
   ========================================================================= */

/* === FARB- & DESIGN-VARIABLEN ===========================================
   Hier zentral die Farben ändern, falls gewünscht. */
:root {
  --color-cream:    #f5ede0;   /* warmer Creme-Hintergrund */
  --color-cream-2:  #efe4d2;   /* etwas dunkleres Creme für Abwechslung */
  --color-green:    #3a5a40;   /* Wirtshaus-/Lodengrün (Hauptakzent) */
  --color-green-dk: #2d4733;   /* dunkleres Grün für Hover */
  --color-wood:     #3d2817;   /* dunkles Holzbraun */
  --color-burgund:  #7a2e2e;   /* Burgund / Weinrot (Highlight) */
  --color-gold:     #b8893d;   /* Goldakzent für Überschriften & Trenner */
  --color-gold-lt:  #d3a85f;   /* helleres Gold */
  --color-ink:      #2a1f15;   /* "fast schwarz" — kein reines Schwarz */
  --color-muted:    #6b5d4d;   /* gedämpfter Text (Beschreibungen) */
  --color-line:     #d8c9b0;   /* dezente Trennlinien */

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --font-script: "Dancing Script", cursive;
  --font-sans: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1180px;              /* maximale Inhaltsbreite */
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(42, 31, 21, 0.08);
  --shadow-md: 0 8px 24px rgba(42, 31, 21, 0.14);
  --shadow-lg: 0 16px 40px rgba(42, 31, 21, 0.20);
}

/* === GRUNDLAGEN / RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-ink);
  /* Dezente Papier-/Holz-Textur über warme radiale Verläufe */
  background-color: var(--color-cream);
  background-image:
    radial-gradient(circle at 15% 12%, rgba(184, 137, 61, 0.06), transparent 45%),
    radial-gradient(circle at 85% 88%, rgba(58, 90, 64, 0.06), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(61, 40, 23, 0.025), transparent 70%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-burgund); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--color-wood);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

p { margin: 0 0 1.1em; }

/* === LAYOUT-HILFEN ====================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* großzügige vertikale Abstände zwischen großen Bereichen */
.section { padding: 90px 0; }
.section--tight { padding: 60px 0; }

.section--green {
  background: var(--color-green);
  color: #f3ead9;
}
.section--green h2, .section--green h3 { color: #fff; }

.text-center { text-align: center; }

/* Eyebrow / kleine Überschrift über großen Titeln */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: .6em;
}

/* Goldener Zier-Trenner mit zentralem Ornament */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 2.5rem;
  max-width: 320px;
  color: var(--color-gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.divider span { font-size: 1.1rem; }

/* === BUTTONS ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn--primary {
  background: var(--color-gold);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-gold-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  border-color: #f3ead9;
  color: #f3ead9;
}
.btn--ghost:hover {
  background: #f3ead9;
  color: var(--color-green);
  transform: translateY(-2px);
}
.btn--green {
  background: var(--color-green);
  color: #fff;
}
.btn--green:hover { background: var(--color-green-dk); color: #fff; transform: translateY(-2px); }
/* Dezenter Outline-Button (z.B. PDF-Download) — Goldbutton ist für Facebook reserviert */
.btn--outline {
  background: transparent;
  border-color: var(--color-green);
  color: var(--color-green);
}
.btn--outline:hover {
  background: var(--color-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
/* PDF-Button mit Icon: Icon + Text sauber nebeneinander */
.pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pdf-download svg { fill: currentColor; flex-shrink: 0; }

/* === HEADER / NAVIGATION ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 237, 224, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow .25s ease;
}
/* Schatten, sobald gescrollt wird (per JS Klasse .is-scrolled) */
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
/* Logo = SVG-Illustration (images/logo.svg) + typografischer Schriftzug daneben. */
.brand { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.brand__mark {
  height: 56px;
  width: auto;
  display: block;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-green);
  line-height: 1;
}
.brand__location {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-top: 3px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 8px 11px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--color-wood);
  border-radius: 6px;
  white-space: nowrap;   /* Labels nie mitten im Wort umbrechen */
}
.main-nav a:hover { background: rgba(58, 90, 64, 0.1); color: var(--color-green); }
.main-nav a.active { color: var(--color-green); border-bottom: 2px solid var(--color-gold); border-radius: 0; }

/* Hamburger-Button (nur Mobile sichtbar) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  width: 46px; height: 46px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 26px; height: 3px;
  background: var(--color-wood);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  position: relative;
}
.nav-toggle span::before { content: ""; position: absolute; top: -8px; }
.nav-toggle span::after  { content: ""; position: absolute; top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-8px) rotate(-45deg); }

/* === HERO =============================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
/* dunkles Overlay für Lesbarkeit */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,31,21,.55), rgba(42,31,21,.65));
}
.hero__inner { position: relative; z-index: 2; padding: 40px 24px; max-width: 820px; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.4); margin-bottom: .2em; }
.hero__sub {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
  color: #f3ead9;
  margin-bottom: 1.8em;
}
.hero__script {
  font-family: var(--font-script);
  color: var(--color-gold-lt);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: .1em;
  display: block;
}

/* kleinerer Hero für Unterseiten */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,31,21,.5), rgba(42,31,21,.68));
}
.page-hero__inner { position: relative; z-index: 2; padding: 40px 24px; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.page-hero__sub { font-style: italic; color: #f3ead9; font-size: 1.2rem; margin: 0; }

/* === WILLKOMMEN / TEXT-BLÖCKE =========================================== */
.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* === INFO-CARD (Öffnungszeiten / Hinweise) ============================== */
.info-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fffaf2;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px 36px;
  text-align: center;
  position: relative;
}
.info-card__icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: .3em;
}
.info-card h3 { color: var(--color-green); margin-bottom: .8em; }
.info-card .hours { font-size: 1.1rem; margin-bottom: 1em; }
.info-card .hours strong { color: var(--color-wood); }
.badge-nocard {
  display: inline-block;
  background: var(--color-burgund);
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 8px 20px;
  border-radius: 30px;
  margin: .4em 0;
}
.info-card .pause {
  margin-top: 1em;
  font-style: italic;
  color: var(--color-muted);
}

/* === SERVICE-GRID (Kacheln) ============================================= */
.grid {
  display: grid;
  gap: 28px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fffaf2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { overflow: hidden; aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { color: var(--color-green); font-size: 1.3rem; margin-bottom: .35em; }
.card__body p { font-size: .98rem; color: var(--color-muted); margin-bottom: 1.1em; }
.card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-gold);
}
.card__link::after { content: " →"; }

/* === GALERIE ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fffaf2;
}
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { padding: 12px 14px; font-size: .9rem; color: var(--color-muted); font-style: italic; text-align: center; }

/* === CTA-BLOCK (Reservierung etc.) ====================================== */
.cta {
  text-align: center;
}
.cta__phone {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #fff;
  display: inline-block;
  margin-top: .2em;
}
.cta__phone:hover { color: var(--color-gold-lt); }

/* === SPEISEKARTE ======================================================== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.menu-tabs a {
  padding: 10px 22px;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  font-weight: 600;
  color: var(--color-wood);
  background: #fffaf2;
}
.menu-tabs a:hover { background: var(--color-green); color: #fff; border-color: var(--color-green); }

.menu-actions { text-align: center; margin-bottom: 3rem; }

.menu-category { margin-bottom: 3.5rem; }
.menu-category__title {
  text-align: center;
  color: var(--color-green);
  position: relative;
  margin-bottom: 1.8rem;
}

/* Liste der Gerichte */
.dish {
  margin-bottom: 1.4rem;
}
.dish__row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.dish__name {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-wood);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}
/* gepunktete Verbindungslinie zwischen Name und Preis */
.dish__dots {
  flex: 1 1 auto;
  border-bottom: 2px dotted var(--color-gold);
  transform: translateY(-5px);
  min-width: 20px;
}
.dish__price {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-burgund);
  white-space: nowrap;
}
.dish__desc {
  font-style: italic;
  font-size: .96rem;
  color: var(--color-muted);
  margin: .15em 0 0;
  max-width: 90%;
}

.menu-placeholder {
  text-align: center;
  font-style: italic;
  color: var(--color-muted);
  background: #fffaf2;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius);
  padding: 48px 24px;
}

/* Mengenangabe vor dem Preis (z.B. "0,5 l", "2 cl") — bei Getränken */
.dish__size {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: .82rem;
  color: var(--color-muted);
  margin-right: .35em;
}
.dish__size + .dish__size,
.dish__price .sep + .dish__size { margin-left: .5em; }
/* Getränke dürfen im Preisfeld umbrechen (zwei Größen/Preise) */
.dish--drink .dish__price { white-space: normal; text-align: right; }
.dish--drink .dish__name { white-space: normal; }

/* Zweispaltige Gerichtelisten (Donnerstag, lange Getränke-Gruppen) */
.dishes--2col { column-count: 2; column-gap: 3.5rem; }
.dishes--2col .dish { break-inside: avoid; -webkit-column-break-inside: avoid; }

/* Große Getränke-Gruppe (Bier, Spirituosen, Wein, Alkoholfrei) */
.menu-group-title {
  text-align: center;
  font-family: var(--font-head);
  color: var(--color-burgund);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 1.4rem;
}
/* Unterkategorie innerhalb einer Gruppe */
.menu-subcat {
  text-align: center;
  font-family: var(--font-head);
  color: var(--color-green);
  font-size: 1.35rem;
  margin: 2.4rem 0 1.2rem;
}
.menu-subcat::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-line);
  margin: .6rem auto 0;
}

/* === FLIESS-INHALT (Unterseiten) ======================================= */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { color: var(--color-green); }
.prose ul.checklist { list-style: none; padding: 0; margin: 1.5em 0; }
.prose ul.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: .8em;
}
.prose ul.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 1.1rem;
}
.pullquote {
  border-left: 4px solid var(--color-gold);
  background: #fffaf2;
  padding: 20px 26px;
  margin: 2em 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-green);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* === FOOTER ============================================================= */
.site-footer {
  background: var(--color-wood);
  color: #e8dcc8;
  padding: 70px 0 30px;
  font-size: .98rem;
}
.site-footer a { color: var(--color-gold-lt); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: .9em;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: .4em;
}
.site-footer address { font-style: normal; line-height: 1.9; }
.footer-hours p { margin: 0 0 .3em; line-height: 1.8; }
.footer-warn {
  display: inline-block;
  color: #fff;
  background: var(--color-burgund);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  margin: .8em 0;
  font-size: .9rem;
}
.footer-pause { font-style: italic; color: #c9b89c; margin-top: .8em; }

.social-links { display: flex; gap: 14px; margin-bottom: 1.4em; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.social-links a:hover { background: var(--color-gold); transform: translateY(-2px); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

/* Newsletter-Box */
.newsletter p { margin-bottom: .8em; }
.newsletter form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  flex: 1 1 160px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
}
.newsletter input[type="email"]::placeholder { color: #c9b89c; }
.newsletter input[type="email"]:focus { outline: 2px solid var(--color-gold); background: rgba(255,255,255,.14); }
.newsletter button {
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--color-gold);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .2s ease;
}
.newsletter button:hover { background: var(--color-gold-lt); }

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .88rem;
  color: #c9b89c;
}

/* === FACEBOOK-BANNER (Startseite) ====================================== */
.fb-banner {
  background: linear-gradient(135deg, var(--color-green), var(--color-green-dk));
  color: #f3ead9;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 52px 40px;
  text-align: center;
}
.fb-banner .eyebrow { color: var(--color-gold-lt); }
.fb-banner h2 { color: #fff; }
.fb-banner p { max-width: 580px; margin: 0 auto 1.7em; }
/* Facebook-Icon im Wirtshaus-Stil (kein FB-Blau) */
.fb-ico { width: 22px; height: 22px; fill: currentColor; vertical-align: -4px; margin-right: 10px; }

/* Variante auf der Speisekarte: cremig mit kräftigem Goldrahmen (Abwechslung
   zur grünen Box auf der Startseite). */
.fb-banner--feature {
  background: #fffaf2;
  border-width: 3px;
  color: var(--color-ink);
}
.fb-banner--feature .eyebrow { color: var(--color-gold); }
.fb-banner--feature h2 { color: var(--color-green); }
.fb-banner--feature p { color: var(--color-muted); }

/* === MENÜ-INTRO ======================================================== */
.menu-intro { text-align: center; margin-bottom: 2.6rem; }

/* === ORNAMENT-TRENNER (Gold) =========================================== */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem auto;
}
.ornament-divider__line {
  width: 80px;
  height: 1px;
}
.ornament-divider__line:first-child { background: linear-gradient(to right, transparent, var(--color-gold)); }
.ornament-divider__line:last-child  { background: linear-gradient(to right, var(--color-gold), transparent); }
.ornament-divider__symbol {
  color: var(--color-gold);
  font-size: 1.5rem;
  line-height: 1;
}

/* === CATERING-MENÜVARIANTEN ============================================ */
.menu-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;   /* alle Karten gleich hoch */
}
.variant-card {
  background: #fffaf2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.variant-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.variant-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.variant-card__media img { width: 100%; height: 100%; object-fit: cover; }
.variant-card__body { padding: 28px 26px 32px; display: flex; flex-direction: column; flex: 1; }
.variant-card h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  text-align: center;
  color: var(--color-green);
  margin-bottom: .15em;
}
.variant-card__desc {
  text-align: center;
  font-style: italic;
  font-size: .95rem;
  color: var(--color-muted);
  margin-bottom: 1.4em;
}
.variant-course { margin-bottom: 1.3em; }
.variant-course__label {
  display: block;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: .5em;
}
.variant-course ul { list-style: none; margin: 0; padding: 0; }
.variant-course li {
  padding: .5em 0;
  border-bottom: 1px solid var(--color-line);
  font-size: .96rem;
  line-height: 1.45;
}
.variant-course li:last-child { border-bottom: 0; }

/* === RESPONSIVE ========================================================= */
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter { grid-column: 1 / -1; }
  /* Catering-Menüvarianten untereinander, sobald es eng wird */
  .menu-variants { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* Hamburger-Navigation: Das horizontale Menü hat 7 lange Labels und steht neben
   dem Logo+Schriftzug — das passt erst ab ca. 1024px sauber in eine Zeile.
   Darunter zeigen wir das einschiebende Slide-in-Menü. */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--color-cream);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .3s ease;
    padding: 80px 24px 24px;
    z-index: 90;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 1.1rem; border-bottom: 1px solid var(--color-line); border-radius: 0; white-space: normal; }
  .main-nav a.active { border-bottom: 1px solid var(--color-gold); background: rgba(58,90,64,.08); }

  /* Overlay hinter dem Menü */
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(42,31,21,.5);
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease;
    z-index: 80;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 780px) {
  body { font-size: 17px; }
  .section { padding: 60px 0; }

  /* Logo auf Mobile etwas kleiner */
  .brand__mark { height: 44px; }
  .brand__name { font-size: 1.2rem; }
  .brand__location { font-size: 0.62rem; }

  .hero { min-height: 70vh; }
  .gallery { grid-template-columns: repeat(2, 1fr); }

  /* Zweispaltige Gerichtelisten auf schmalen Geräten einspaltig */
  .dishes--2col { column-count: 1; }
}

@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: 1fr; }
  .info-card { padding: 30px 22px; }
  .dish__name { white-space: normal; }
}

@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 10px 16px; }
}

/* === PRINT / PDF (saubere Speisekarte ohne Navigation etc.) ============= */
/* Wird auch für die generierte speisekarte.pdf verwendet (siehe generate_pdf.py). */
@media print {
  @page { size: A4 portrait; margin: 15mm 14mm; }

  body {
    background: #fff !important;
    background-image: none !important;   /* warme Textur weg für sauberes Papier */
    color: var(--color-ink);
    font-size: 11pt;
  }

  /* Alles ausblenden, was nicht zur Karte gehört */
  .site-header,
  .site-footer,
  .menu-tabs,
  .menu-actions,
  .page-hero,
  .nav-toggle,
  .nav-backdrop,
  .cta,
  .btn,
  .no-print { display: none !important; }

  /* Farbige Bänder und große Abstände der Sektionen entfernen */
  .section, .section--tight {
    padding: 0 !important;
    background: #fff !important;
  }
  .container { max-width: 100%; padding: 0; }

  /* Gericht nie über einen Seitenumbruch zerreißen; Kategorien dürfen umbrechen */
  .menu-category { break-inside: auto; margin-bottom: 1rem; }
  .menu-category__title { break-after: avoid; color: var(--color-green); }
  .menu-group-title, .menu-subcat { break-after: avoid; }
  .dish { break-inside: avoid; }

  /* WICHTIG: Auf A4 wäre eine 2-Spalten-Spalte nur ~230px breit — lange
     Gerichtnamen würden abgeschnitten. Für den Druck daher EINSPALTIG,
     volle Breite, Namen dürfen umbrechen statt mit "…" zu kürzen. */
  .dishes--2col { column-count: 1 !important; }
  .dish__name { white-space: normal; overflow: visible; text-overflow: clip; }

  /* Kompaktere Abstände, damit die PDF nicht unnötig viele Seiten hat */
  .dish { margin-bottom: .55rem; }
  .dish__desc { margin-top: .05em; }
  .divider { margin: 0 auto 1rem; }
  .ornament-divider { margin: 1.4rem auto; }
  .menu-intro { margin-bottom: 1.2rem; }
  .menu-subcat { margin: 1.3rem 0 .8rem; }
  .menu-group-title { margin: .4rem 0 1rem; }
  .lead { font-size: 1.05rem; margin-bottom: .4rem; }
  .eyebrow { margin-bottom: .3em; }

  a { color: var(--color-ink); text-decoration: none; }
}
