/* ==========================================================================
   Mini Punjab Catering – Stylesheet
   Farben, Schriften und Abstaende werden zentral hier gesteuert.
   Farbe aendern? -> Block ":root" direkt unten anpassen.
   ========================================================================== */

/* --- 1. Design-Variablen ------------------------------------------------- */
:root {
  /* Farben */
  --bg:          #0f0d0b;   /* Grundfarbe der Seite */
  --bg-2:        #16130f;   /* Abwechselnder Abschnitts-Hintergrund */
  --surface:     #1e1a15;   /* Karten */
  --surface-2:   #272119;   /* Karten (hover) */
  --line:        rgba(212, 175, 106, .18);
  --line-soft:   rgba(255, 255, 255, .07);
  --gold:        #d4af6a;   /* Akzentfarbe – hier deine Markenfarbe eintragen */
  --gold-deep:   #b8924a;
  --gold-soft:   #ecd7a8;
  --text:        #f4efe6;
  --muted:       #b0a593;

  /* Schriften */
  --font-head: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  /* Masse */
  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --header-h: 76px;
}

/* --- 2. Basis ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.28rem; }
p  { margin: 0 0 1.1em; }

ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 840px; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* Kleine Hilfsklassen fuer Abstaende.
   Bewusst statt style="..." im HTML: nur so kann der Server eine strenge
   Content-Security-Policy senden, die eingeschleusten Code zuverlaessig blockt. */
.m-0  { margin: 0; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-26 { margin-top: 26px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-34 { margin-bottom: 34px; }
.text-sm { font-size: .92rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Nur fuer Screenreader sichtbar */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--gold); color: #1a1409; padding: 10px 18px;
  border-radius: 0 0 8px 8px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* --- 3. Abschnitte ------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--alt { background: var(--bg-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* Goldene Zierlinie */
.rule {
  width: 62px; height: 2px; border: 0; margin: 20px 0 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.center .rule {
  margin-left: auto; margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- 4. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: .98rem; font-weight: 650; letter-spacing: .02em;
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, background .18s ease,
              border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1409;
  box-shadow: 0 10px 26px rgba(212, 175, 106, .22);
}
.btn--primary:hover { color: #1a1409; box-shadow: 0 14px 32px rgba(212, 175, 106, .32); }

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: rgba(255, 255, 255, .22);
}
.btn--ghost:hover {
  border-color: var(--gold); color: var(--gold-soft);
  background: rgba(212, 175, 106, .06);
}

.btn--lg { padding: 17px 34px; font-size: 1.04rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* --- 5. Kopfzeile -------------------------------------------------------- */
.topbar {
  background: #0a0908;
  border-bottom: 1px solid var(--line-soft);
  font-size: .84rem;
  color: var(--muted);
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.topbar a { color: var(--muted); }
.topbar a:hover { color: var(--gold); }
.topbar__links { display: flex; gap: 20px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 13, 11, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 12px; color: var(--text); }
.logo:hover { color: var(--text); }

/* Das Logo hat einen weissen Hintergrund, die Seite ist dunkel. Deshalb
   sitzt es auf einer weissen Flaeche — so bleibt der dunkelblaue Schriftzug
   lesbar und das Logo unveraendert.
   Bekommst du vom Designer eine Fassung mit transparentem Hintergrund und
   heller Schrift, kannst du hier "background" und "padding" entfernen. */
.logo__img {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 5px 9px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.site-footer .logo__img { height: 54px; }
.logo__mark {
  width: 42px; height: 42px; flex: 0 0 42px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.15rem; color: var(--gold);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: var(--font-head); font-size: 1.22rem; letter-spacing: .5px; }
.logo__sub {
  font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__list a {
  color: var(--text); font-size: .95rem; font-weight: 500;
  padding: 6px 0; position: relative;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .22s ease;
}
.nav__list a:hover::after,
.nav__list a[aria-current="page"]::after { width: 100%; }
.nav__list a[aria-current="page"] { color: var(--gold); }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; padding: 11px; border-radius: 10px;
}
.burger span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- 6. Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(76vh, 720px);
  display: flex; align-items: center;
  padding: clamp(64px, 10vw, 120px) 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
/* Startbild. Eigenes Foto? Hier den Dateinamen austauschen. */
.hero__bg--start { background-image: url("../img/hero.jpg"); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
              rgba(10, 9, 8, .93) 0%,
              rgba(10, 9, 8, .80) 42%,
              rgba(10, 9, 8, .48) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__inner { max-width: 720px; }
.hero h1 { margin-bottom: .35em; }
.hero__sub { font-size: clamp(1.02rem, 2vw, 1.22rem); color: #ddd3c2; max-width: 56ch; }
.hero .btn-row { margin-top: 30px; }

/* Kleine Kopfzeile fuer Unterseiten */
.page-hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(44px, 6vw, 72px);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(900px 380px at 15% -10%, rgba(212, 175, 106, .14), transparent 62%),
    var(--bg-2);
}
.page-hero h1 { margin-bottom: .3em; }
.breadcrumb { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

/* Vertrauens-Leiste */
.trust {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: .9rem; color: var(--muted);
}
.trust span { display: flex; align-items: center; gap: 9px; }
.trust svg { flex: 0 0 17px; color: var(--gold); }

/* --- 7. Raster und Karten ------------------------------------------------ */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--line); background: var(--surface-2); }
.card__media { aspect-ratio: 4 / 3; background: #12100d; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card__body p:last-of-type { margin-bottom: 0; }
.card h3 { margin-bottom: .45em; }
.card__link {
  margin-top: auto; padding-top: 18px;
  font-weight: 600; font-size: .94rem;
  display: inline-flex; align-items: center; gap: 7px;
}
.card__link::after { content: "\2192"; transition: transform .2s ease; }
.card:hover .card__link::after { transform: translateX(4px); }

.card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(212, 175, 106, .1);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--gold); margin-bottom: 18px;
}

/* Ablauf-Schritte */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 74px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.3rem; color: var(--gold);
}
.step h3 { margin-bottom: .35em; }
.step p { color: var(--muted); margin-bottom: 0; }

/* Zwei-Spalten-Block mit Bild */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px); align-items: center;
}
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split--rev .split__media { order: 2; }

/* Menue-Pakete */
.menu-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 30px 34px;
  height: 100%;
}
.menu-card--feature { border-color: var(--gold); position: relative; }
.menu-card--note { border-color: var(--gold); }
.badge {
  position: absolute; top: -13px; left: 30px;
  background: var(--gold); color: #1a1409;
  font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.menu-card__price {
  font-family: var(--font-head); font-size: 2rem; color: var(--gold);
  margin: 4px 0 2px;
}
.menu-card__price small { font-size: .82rem; color: var(--muted); font-family: var(--font-body); }
/* Variante fuer Text statt Zahl ("Preis auf Anfrage") */
.menu-card__price--text { font-size: 1.32rem; letter-spacing: .01em; }
.menu-list { list-style: none; padding: 0; margin: 22px 0 0; }
.menu-list li {
  padding: 11px 0 11px 28px; position: relative;
  border-top: 1px solid var(--line-soft); color: var(--muted); margin: 0;
}
.menu-list li::before {
  content: "\2726"; position: absolute; left: 0; top: 11px;
  color: var(--gold); font-size: .8rem;
}

/* --- Speisekarte --------------------------------------------------------- */

/* Sprungmarken zu den Abschnitten */
.menu-nav {
  display: flex; flex-wrap: wrap; gap: 9px;
  padding-bottom: 4px;
}
.menu-nav a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: .86rem;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.menu-nav a:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
  background: var(--surface-2);
}

/* Die Abschnitte untereinander */
.menu-stack { display: flex; flex-direction: column; gap: 26px; }

/* Zwischenüberschrift innerhalb eines Abschnitts */
.menu-sub {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin: 30px 0 4px;
}
.menu-sub:first-of-type { margin-top: 22px; }

/* Bestellnummer vor dem Gerichtnamen */
.dish__nr {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  margin-right: 6px;
}

/* Getränke: kompakte Liste statt Gericht-Zeilen */
.drink-list {
  list-style: none; margin: 6px 0 0; padding: 0;
  columns: 2; column-gap: 34px;
}
.drink-list li {
  color: var(--muted); font-size: .95rem;
  padding: 5px 0; margin: 0;
  break-inside: avoid;
}

/* Gruppe von Gerichten innerhalb eines Abschnitts */
.dish-list { margin-top: 6px; }
.dish-list .dish:last-child { border-bottom: 0; }

/* Speisekarte: Gericht + Beschreibung */
.dish {
  display: flex; justify-content: space-between; gap: 22px;
  padding: 16px 0; border-bottom: 1px dashed var(--line-soft);
}
.dish:last-child { border-bottom: 0; }
.dish__name { font-family: var(--font-head); font-size: 1.1rem; }
.dish__desc { color: var(--muted); font-size: .93rem; margin: 3px 0 0; }
.dish__tag {
  flex: 0 0 auto; align-self: flex-start;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line);
  padding: 3px 10px; border-radius: 999px;
}

/* Zitate */
.quote {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  height: 100%;
}
.quote__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.quote p { font-size: 1.02rem; font-style: italic; }
.quote footer { color: var(--muted); font-size: .88rem; font-style: normal; }

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery button {
  padding: 0; border: 0; background: #12100d; cursor: zoom-in;
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3 / 2;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease, opacity .25s ease;
}
.gallery button:hover img { transform: scale(1.06); opacity: .85; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 5, 4, .94);
  display: grid; place-items: center; padding: 24px;
}
.lightbox img { max-width: min(1000px, 92vw); max-height: 86vh; border-radius: var(--radius-sm); }
.lightbox__close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: 0; color: var(--text);
  font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 8px 14px;
}

/* --- 8. Formular --------------------------------------------------------- */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--muted); }
.req { color: var(--gold); }

input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], input[type="number"], select, textarea {
  width: 100%;
  background: #14110d;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit; font-size: 1rem;
  padding: 13px 15px;
  transition: border-color .2s ease, background .2s ease;
}
input:hover, select:hover, textarea:hover { border-color: rgba(255, 255, 255, .22); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold); background: #171309;
}
textarea { min-height: 140px; resize: vertical; }
select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23d4af6a' d='M7 9 0 2l2-2 5 5 5-5 2 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px;
}
option { background: #14110d; color: var(--text); }
::placeholder { color: #6d6558; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.check input { width: 19px; height: 19px; margin-top: 3px; flex: 0 0 19px; accent-color: var(--gold); }

/* Honeypot – fuer Menschen unsichtbar, faengt Spam-Bots ab */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-note {
  margin-top: 18px; padding: 15px 18px; border-radius: var(--radius-sm);
  font-size: .93rem; display: none;
}
.form-note.is-ok {
  display: block; background: rgba(96, 170, 106, .12);
  border: 1px solid rgba(96, 170, 106, .4); color: #b7e2bd;
}
.form-note.is-err {
  display: block; background: rgba(200, 90, 70, .12);
  border: 1px solid rgba(200, 90, 70, .4); color: #f0b6ab;
}

/* Formular links, Direktkontakt rechts */
.grid--contact { grid-template-columns: 1.55fr 1fr; gap: 34px; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-item--block { display: block; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 20px 22px;
  color: var(--text);
}
a.contact-item:hover { border-color: var(--line); background: var(--surface-2); color: var(--text); }
.contact-item svg { flex: 0 0 21px; color: var(--gold); margin-top: 3px; }
.contact-item strong {
  display: block; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px;
}
.contact-item span { font-size: 1.04rem; }

/* --- 9. FAQ -------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0;
  font-family: var(--font-head); font-size: 1.14rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 19px;
  color: var(--gold); font-size: 1.6rem; line-height: 1; transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-right: 44px; margin: -4px 0 22px; }

/* --- 10. CTA-Band -------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(212, 175, 106, .16), transparent 68%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

/* --- 11. Fusszeile ------------------------------------------------------- */
.site-footer {
  background: #0a0908;
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 0;
  font-size: .94rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 46px;
}
.site-footer h4 {
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold); }
.site-footer p { color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 22px 0 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: #7d7466; font-size: .86rem;
}
.footer-bottom a { color: #7d7466; }

/* --- 12. Mobile Aktionsleiste (nur Smartphone) --------------------------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  background: rgba(12, 10, 9, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  gap: 8px;
}
.action-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 4px; border-radius: 10px;
  font-size: .72rem; font-weight: 600; color: var(--text);
}
.action-bar a.is-primary { background: var(--gold); color: #1a1409; }
.action-bar svg { width: 19px; height: 19px; }

/* --- 13. Sanfte Einblend-Animation --------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --- 14. Responsive ------------------------------------------------------ */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .burger { display: block; }

  .nav {
    position: fixed; inset: 0; z-index: 95;
    background: rgba(10, 9, 8, .985);
    flex-direction: column; justify-content: center; gap: 34px;
    transform: translateX(100%); transition: transform .3s ease;
    padding: 40px 24px;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; text-align: center; gap: 26px; }
  .nav__list a { font-size: 1.3rem; font-family: var(--font-head); }
  .nav .btn { width: min(320px, 82vw); }

  .grid--2, .grid--3, .grid--4, .grid--contact { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .action-bar { display: flex; }
  body { padding-bottom: 74px; }

  .topbar__links { display: none; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .logo__sub { display: none; }
  .logo__img { height: 38px; padding: 4px 7px; }
  .site-footer .logo__img { height: 46px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .action-bar a { width: auto; }
  .step { padding-left: 0; padding-top: 66px; }
  .step::before { top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .dish { flex-direction: column; gap: 8px; }
  .drink-list { columns: 1; }
  .menu-nav a { font-size: .82rem; padding: 7px 13px; }
}

/* --- 15. Bewegung reduzieren / Druck ------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .action-bar, .cta-band, .hero__bg { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   16. Catering-Konfigurator
   ========================================================================== */

/* --- Fortschrittsanzeige ------------------------------------------------- */
.kf-stepper {
  display: flex; gap: 6px;
  list-style: none; margin: 0 0 30px; padding: 0;
  counter-reset: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.kf-stepper::-webkit-scrollbar { display: none; }
.kf-stepper li { flex: 1 1 0; min-width: 88px; margin: 0; }
.kf-stepper button {
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: none; border: 0; cursor: pointer;
  padding: 4px 2px 12px;
  color: var(--muted);
  font-family: var(--font-body); font-size: .82rem;
  border-bottom: 2px solid var(--line-soft);
  transition: color .2s ease, border-color .2s ease;
}
.kf-stepper button:disabled { cursor: default; opacity: .55; }
.kf-stepper__nr {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-soft);
  font-family: var(--font-head); font-size: .95rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.kf-stepper .is-current button { color: var(--gold); border-bottom-color: var(--gold); }
.kf-stepper .is-current .kf-stepper__nr {
  background: var(--gold); color: #1a1409; border-color: var(--gold);
}
.kf-stepper .is-done button { color: var(--text); border-bottom-color: var(--gold-deep); }
.kf-stepper .is-done .kf-stepper__nr { border-color: var(--gold); color: var(--gold); }

/* --- Aufteilung: Inhalt + Auswahlpanel ----------------------------------- */
.kf-layout { display: grid; grid-template-columns: 1fr 310px; gap: 28px; align-items: start; }
.kf-main { min-width: 0; display: flex; flex-direction: column; gap: 22px; }
.kf-side { position: sticky; top: calc(var(--header-h) + 18px); display: grid; gap: 14px; }

.kf-panel { display: flex; flex-direction: column; gap: 0; }
.kf-panel > h2 { margin-top: 0; outline: none; }

/* Schaltflächen unten in jedem Schritt */
.kf-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; margin-top: 26px;
}
.kf-nav .btn { width: auto; }

/* --- Empfehlung ---------------------------------------------------------- */
.kf-empfehlung {
  background: rgba(212, 175, 106, .08);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 20px 0 4px;
}
.kf-empfehlung strong { color: var(--gold); display: block; margin-bottom: 5px; }
.kf-empfehlung p { color: var(--muted); font-size: .94rem; margin: 0; }

/* --- Filterleiste -------------------------------------------------------- */
.kf-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.kf-chip {
  background: #14110d; color: var(--muted);
  border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 9px 18px; cursor: pointer;
  font-family: var(--font-body); font-size: .88rem;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.kf-chip:hover { color: var(--text); border-color: rgba(255, 255, 255, .2); }
.kf-chip.is-on {
  background: var(--gold); color: #1a1409; border-color: var(--gold); font-weight: 650;
}

/* --- Speisen nach Kategorie ---------------------------------------------- */
.kf-kat { margin-top: 34px; }
.kf-kat__kopf { margin-bottom: 16px; }
.kf-kat__kopf h3 { margin-bottom: 2px; }
.kf-kat__kopf p { margin: 0; }

.kf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
  gap: 16px;
}

/* --- Food-Card ----------------------------------------------------------- */
.kf-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.kf-card:hover { transform: translateY(-3px); border-color: var(--line); }
.kf-card.is-on { border-color: var(--gold); background: var(--surface-2); }

.kf-card__media { position: relative; aspect-ratio: 4 / 3; background: #12100d; }
.kf-card__media img { width: 100%; height: 100%; object-fit: cover; }
.kf-card.is-on .kf-card__media::after {
  content: "\2713";
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: #1a1409;
  display: grid; place-items: center;
  font-size: .95rem; font-weight: 700;
}

.kf-tags {
  position: absolute; left: 8px; bottom: 8px;
  display: flex; flex-wrap: wrap; gap: 5px;
}
.kf-tag {
  font-size: .66rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(10, 9, 8, .82); border: 1px solid rgba(255, 255, 255, .14);
  color: var(--text);
}
.kf-tag--veg   { color: #a8d68a; border-color: rgba(168, 214, 138, .4); }
.kf-tag--vegan { color: #7fd6a8; border-color: rgba(127, 214, 168, .4); }
.kf-tag--hot   { color: #f0a07f; border-color: rgba(240, 160, 127, .4); }
.kf-tag--top   { color: var(--gold); border-color: var(--line); }

.kf-card__body { padding: 15px 16px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.kf-card__body h4 {
  font-family: var(--font-head); font-size: 1.04rem; font-weight: 400;
  margin: 0; line-height: 1.25;
}
.kf-card__body p { font-size: .86rem; margin: 0; flex: 1; }

.kf-add {
  margin-top: 4px;
  background: transparent; color: var(--text);
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px;
  padding: 10px 14px; cursor: pointer;
  font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.kf-add:hover { border-color: var(--gold); color: var(--gold-soft); }
.kf-card.is-on .kf-add {
  background: var(--gold); color: #1a1409; border-color: var(--gold);
}

/* --- Auswahl-Panel ------------------------------------------------------- */
.kf-auswahl {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.kf-auswahl h3 { font-size: 1.15rem; margin-bottom: 12px; }
.kf-auswahl__zahl { color: var(--gold); font-size: .95rem; margin: 0 0 3px; }
.kf-auswahl__liste, .kf-auswahl__gerichte { list-style: none; margin: 0; padding: 0; }
.kf-auswahl__liste { margin-top: 16px; border-top: 1px solid var(--line-soft); }
.kf-auswahl__liste li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 7px 0; margin: 0;
  font-size: .9rem; color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.kf-auswahl__liste strong { color: var(--gold); font-variant-numeric: tabular-nums; }
.kf-auswahl__gerichte { margin-top: 14px; max-height: 260px; overflow-y: auto; }
.kf-auswahl__gerichte li {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 5px 0; margin: 0; font-size: .86rem; color: var(--muted);
}
.kf-weg {
  background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: 1.15rem; line-height: 1;
  padding: 2px 6px; border-radius: 6px;
}
.kf-weg:hover { color: #f0a07f; background: rgba(240, 160, 127, .1); }

.kf-vielhinweis {
  background: rgba(212, 175, 106, .08);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px; margin: 0;
  color: var(--muted); font-size: .88rem;
}

/* --- Extras -------------------------------------------------------------- */
.kf-extras { display: grid; gap: 10px; margin-top: 18px; }
.kf-extra {
  display: flex; gap: 13px; align-items: flex-start;
  background: #14110d; border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 15px 16px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.kf-extra:hover { border-color: var(--line); background: var(--surface-2); }
.kf-extra input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; accent-color: var(--gold); }
.kf-extra span { display: block; }
.kf-extra strong { display: block; font-size: .97rem; }
.kf-extra .muted { display: block; margin-top: 2px; }

/* --- Kontaktart ---------------------------------------------------------- */
.kf-radios { border: 0; padding: 0; margin: 4px 0 22px; }
.kf-radios legend {
  font-size: .9rem; font-weight: 600; padding: 0; margin-bottom: 10px;
}
.kf-radios label {
  display: inline-flex; align-items: center; gap: 8px;
  margin-right: 20px; margin-bottom: 8px; cursor: pointer;
  color: var(--muted); font-size: .95rem;
}
.kf-radios input { width: 19px; height: 19px; accent-color: var(--gold); }

/* --- Übersicht ----------------------------------------------------------- */
.kf-block {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0 4px;
}
.kf-block__kopf {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
}
.kf-block__kopf h3 { margin-bottom: 12px; }
.kf-edit {
  background: none; border: 0; cursor: pointer;
  color: var(--gold); font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  padding: 4px 6px; border-radius: 6px;
}
.kf-edit:hover { color: var(--gold-soft); text-decoration: underline; }

.kf-dl { display: grid; grid-template-columns: max-content 1fr; gap: 7px 20px; margin: 0; }
.kf-dl dt { color: var(--muted); font-size: .88rem; }
.kf-dl dd { margin: 0; font-size: .95rem; }

.kf-liste { list-style: none; margin: 4px 0 14px; padding: 0; columns: 2; column-gap: 26px; }
.kf-liste li {
  color: var(--muted); font-size: .92rem; padding: 3px 0; margin: 0;
  break-inside: avoid;
}
.kf-liste li::before { content: "\2726"; color: var(--gold); margin-right: 8px; font-size: .72rem; }

/* --- Feldfehler ---------------------------------------------------------- */
.kf-fehler { color: #f0b6ab; font-size: .86rem; margin: 7px 0 0; }
.has-error input, .has-error select, .has-error textarea { border-color: #c85a46; }

/* --- Erfolgsseite -------------------------------------------------------- */
.kf-erfolg { text-align: center; }
.kf-erfolg__haken {
  width: 66px; height: 66px; margin: 0 auto 20px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(96, 170, 106, .14);
  border: 1px solid rgba(96, 170, 106, .5);
  color: #7fd6a8;
}
.kf-erfolg .kf-dl { justify-content: center; text-align: left; margin-top: 22px; }
.kf-referenz {
  display: inline-block; margin-top: 6px;
  border: 1px dashed var(--line); border-radius: 999px;
  padding: 8px 20px; color: var(--muted); font-size: .92rem;
}
.kf-referenz strong { color: var(--gold); font-variant-numeric: tabular-nums; letter-spacing: .05em; }

/* --- Auswahl-Leiste auf dem Smartphone ----------------------------------- */
.kf-mobilbar {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: calc(84px + env(safe-area-inset-bottom));
  z-index: 88;
  align-items: center; justify-content: center; gap: 12px;
  background: var(--gold); color: #1a1409;
  border: 0; border-radius: 999px;
  padding: 15px 24px; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}
.kf-mobilbar__zahl {
  background: #1a1409; color: var(--gold);
  min-width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  font-size: .88rem; font-variant-numeric: tabular-nums;
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1040px) {
  .kf-layout { grid-template-columns: 1fr; }
  .kf-side { position: static; }
  /* Auf schmalen Geräten nur öffnen, wenn angetippt */
  .kf-auswahl { display: none; }
  .kf-auswahl.is-open { display: block; }
  .kf-mobilbar { display: flex; }
}

@media (max-width: 620px) {
  .kf-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .kf-card__body { padding: 13px 13px 14px; }
  .kf-card__body h4 { font-size: .97rem; }
  .kf-card__body p { font-size: .82rem; }
  .kf-add { padding: 12px 12px; }        /* große Touchfläche */
  .kf-stepper__txt { font-size: .72rem; }
  .kf-stepper li { min-width: 66px; }
  .kf-nav { flex-direction: column-reverse; align-items: stretch; }
  .kf-nav .btn { width: 100%; }
  .kf-liste { columns: 1; }
  .kf-dl { grid-template-columns: 1fr; gap: 2px 0; }
  .kf-dl dd { margin-bottom: 10px; }
}
