/* ==========================================================================
   König Kebap Imbiss, Ravensburg — Demo-Gestaltungsvorschlag
   Charakter: warm, appetitlich, lokal verwurzelt. Tiefrot + warmes Gold.
   Platz 2 der Dönerläden in Ravensburg, 684+ Google-Bewertungen.
   Farbpalette: Tiefrot #8B1F1F · Gold #C8922A · Creme #FAF6EF · Dunkel #1A1A1A
   Schriften: Barlow Condensed (Überschriften) + Source Serif 4 (Body)
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --rot: #8B1F1F;
  --rot-deep: #6A1717;
  --rot-mid: #A32727;
  --gold: #C8922A;
  --gold-deep: #A87220;
  --gold-light: #E8B85A;
  --creme: #FAF6EF;
  --creme2: #F0EAE0;
  --dunkel: #1A1A1A;
  --text-mid: #3D2B1A;
  --text-soft: #6B5040;
  --linie: #DDD0BE;

  --font-head: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 44px -22px rgba(139, 31, 31, 0.35);
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--dunkel);
  background-color: var(--creme);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(200, 146, 42, 0.06), transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(139, 31, 31, 0.05), transparent 40%);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--rot); text-decoration: none; }
::selection { background: var(--rot); color: var(--creme); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--rot-deep);
  text-wrap: balance;
  hyphens: manual;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

.mark { color: var(--gold); }
.mark--creme { color: var(--gold-light); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section--rot .eyebrow { color: var(--gold-light); }
.section--rot .eyebrow::before { background: var(--gold-light); }

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--text-mid);
  max-width: 38rem;
  line-height: 1.68;
}

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--dunkel);
  color: rgba(250, 246, 239, 0.85);
  font-family: var(--font-body);
  font-size: 0.76rem;
  text-align: center;
  padding: 0.5rem var(--pad);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.demo-bar strong { color: var(--gold-light); font-weight: 600; }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--rot-deep);
}
.brand__mark { width: 48px; height: 48px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.0;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand__name small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.22rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}
.nav a {
  color: var(--dunkel);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}
.nav a:hover { color: var(--gold-deep); }
.nav a[aria-current="page"] {
  color: var(--rot);
  border-bottom-color: var(--gold);
}
.nav__cta {
  background: var(--rot) !important;
  color: var(--creme) !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  white-space: nowrap;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.nav__cta:hover { background: var(--rot-deep) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--linie);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--rot-deep);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--rot-deep) 0%, var(--rot) 55%, var(--rot-mid) 100%);
  color: var(--creme);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 9vw, 7rem);
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  color: var(--creme);
  margin-block: 0.4rem 1.4rem;
}
.hero h1 .mark { color: var(--gold); }
.hero .lead { color: rgba(250, 246, 239, 0.88); max-width: 32rem; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.hero__emblem {
  display: grid;
  place-items: center;
}
.hero__emblem .krone-emblem {
  width: min(280px, 58vw);
  filter: drop-shadow(0 24px 40px rgba(26, 26, 26, 0.5));
}

/* ---------- Krone-Ornament-Linie ---------- */
.krone-rule {
  width: 100%;
  height: 30px;
  color: var(--gold);
  opacity: 0.85;
}
.krone-rule svg { width: 100%; height: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  border: 2px solid var(--rot);
  color: var(--rot);
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease), border-color 0.2s;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--rot-deep); }
.btn--solid:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--creme); }
.btn--ghost { border-color: rgba(250, 246, 239, 0.55); color: var(--creme); }
.btn--ghost:hover { background: var(--creme); color: var(--rot-deep); border-color: var(--creme); }
.btn--rot { background: var(--rot); border-color: var(--rot); color: var(--creme); }
.btn--rot:hover { background: var(--rot-deep); border-color: var(--rot-deep); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--creme2 { background: var(--creme2); }
.section--rot {
  background: linear-gradient(170deg, var(--rot-deep) 0%, var(--rot) 100%);
  color: var(--creme);
}
.section--rot h2, .section--rot h3 { color: var(--creme); }
.section--rot p { color: rgba(250, 246, 239, 0.88); }

.section__head { max-width: 48rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section__head h2 { margin-bottom: 0.7rem; }
.section__head p { color: var(--text-soft); }
.section--rot .section__head p { color: rgba(250, 246, 239, 0.85); }

/* ---------- Stärken-Karten (3 Kernpunkte) ---------- */
.staerken {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.staerke {
  background: var(--creme);
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--linie);
  position: relative;
  transition: background 0.3s var(--ease);
}
.staerke:last-child { border-right: none; }
.staerke:hover { background: white; }
.staerke__zahl {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: rgba(139, 31, 31, 0.08);
  margin-bottom: -1.2rem;
  letter-spacing: -0.02em;
}
.staerke__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.staerke h3 { color: var(--rot-deep); margin-bottom: 0.5rem; font-size: 1.4rem; }
.staerke p { font-size: 0.97rem; color: var(--text-soft); }
.staerke::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rot), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.staerke:hover::before { transform: scaleX(1); }

/* ---------- Speisekarten-Vorschau ---------- */
.menu-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.menu-card {
  background: white;
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  box-shadow: 0 4px 16px -8px rgba(139, 31, 31, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.menu-card__kategorie {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.menu-card h3 {
  font-size: 1.5rem;
  color: var(--rot-deep);
  margin-bottom: 0.7rem;
}
.menu-card ul {
  list-style: none;
}
.menu-card li {
  padding: 0.38rem 0;
  border-bottom: 1px dashed var(--linie);
  color: var(--text-soft);
  font-size: 0.95rem;
}
.menu-card li:last-child { border-bottom: none; }
.menu-card li strong { color: var(--dunkel); font-weight: 600; }
.menu-card__accent {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 80px;
  height: 80px;
  color: rgba(200, 146, 42, 0.08);
}
.menu-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
}
.menu-card__link:hover { color: var(--rot); }

/* ---------- Bewertungs-Band ---------- */
.bewertungs-band {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding: 2rem 0;
}
.bewertung-zahl {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  color: var(--creme);
  letter-spacing: -0.02em;
}
.bewertung-sterne {
  display: flex;
  gap: 3px;
  margin-bottom: 0.3rem;
}
.stern { width: 22px; height: 22px; color: var(--gold); }
.bewertung-label {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.75);
  letter-spacing: 0.02em;
}
.bewertung-sep {
  width: 1px;
  height: 80px;
  background: rgba(250, 246, 239, 0.25);
  flex-shrink: 0;
}
.bewertung-text {
  flex: 1;
  min-width: 220px;
}
.bewertung-text p {
  font-size: 1.1rem;
  color: rgba(250, 246, 239, 0.92);
  line-height: 1.55;
}
.bewertung-text .quelle {
  font-size: 0.8rem;
  color: rgba(250, 246, 239, 0.55);
  margin-top: 0.4rem;
}

/* ---------- Besonderheit-Block ---------- */
.brot-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.brot-art {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--rot-mid), var(--rot-deep));
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.brot-art::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(200, 146, 42, 0.3);
  border-radius: var(--radius);
}
.brot-art .krone-art {
  width: 60%;
  color: rgba(200, 146, 42, 0.45);
}
.brot-text blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  line-height: 1.42;
  color: var(--rot-deep);
  margin: 1.3rem 0;
  padding-left: 1.3rem;
  border-left: 3px solid var(--gold);
}
.brot-text h2 { color: var(--rot-deep); }

/* ---------- Features / Info-Kacheln ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.feature {
  border-top: 3px solid var(--gold);
  padding-top: 1.1rem;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--creme); }
.feature p { font-size: 0.96rem; color: rgba(250, 246, 239, 0.85); }

/* ---------- Öffnungszeiten ---------- */
.hours-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.hours-card {
  background: white;
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
  max-width: 32rem;
}
.hours-card h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--linie);
  font-size: 0.97rem;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table th { font-weight: 600; color: var(--dunkel); width: 48%; }
.hours-table td { color: var(--text-soft); }
.hours-note {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rot-deep), var(--rot));
  color: var(--creme);
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-band__bg-krone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  color: rgba(200, 146, 42, 0.07);
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--creme); margin-bottom: 0.6rem; }
.cta-band p { color: rgba(250, 246, 239, 0.88); max-width: 36rem; margin-inline: auto; }
.cta-band .tel {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--gold-light);
  margin-block: 1.4rem 1.2rem;
  letter-spacing: 0.05em;
  border-bottom: 3px solid rgba(232, 184, 90, 0.4);
  transition: border-color 0.2s;
}
.cta-band .tel:hover { border-color: var(--gold-light); }

/* ---------- Kontaktseite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card {
  background: white;
  border: 1px solid var(--linie);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}
.contact-card h2 { font-size: 1.7rem; margin-bottom: 1rem; }
.contact-card .tel-big {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--rot);
  line-height: 1.1;
  margin-block: 0.3rem 0.8rem;
  letter-spacing: 0.04em;
}
.contact-card address { font-style: normal; color: var(--text-soft); line-height: 1.65; }
.contact-card ul { list-style: none; color: var(--text-soft); }
.contact-card li { padding-block: 0.22rem; }
.contact-card .meta { font-size: 0.95rem; }
.contact-card .meta strong { color: var(--dunkel); font-weight: 600; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rot);
  font-weight: 600;
  font-size: 0.97rem;
  margin-top: 0.5rem;
}
.social-link:hover { color: var(--gold-deep); }
.social-link svg { width: 20px; height: 20px; }

/* ---------- Hinweis-Karte ---------- */
.note-card {
  margin-top: 1.8rem;
  background: var(--creme2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1rem 1.4rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.note-card strong { color: var(--rot-deep); font-weight: 600; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 46rem; }
.legal h1 { margin-bottom: 1.6rem; color: var(--rot-deep); font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.35rem; margin: 2rem 0 0.6rem; color: var(--rot-deep); }
.legal p, .legal address { color: var(--text-soft); font-style: normal; }
.legal p + p { margin-top: 0.8rem; }
.legal a { color: var(--gold-deep); text-decoration: underline; }
.legal ul { list-style: disc; padding-left: 1.5rem; color: var(--text-soft); }
.legal li { margin-bottom: 0.3rem; }

.demo-note {
  background: var(--creme2);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.demo-note strong { color: var(--rot-deep); font-weight: 600; }

.placeholder {
  display: inline-block;
  background: var(--creme2);
  border: 1px dashed var(--text-soft);
  border-radius: 6px;
  padding: 0.05rem 0.5rem;
  font-size: 0.87rem;
  color: var(--text-soft);
}

/* ---------- Speisekarte (vollständig) ---------- */
.menu-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.8rem, 4vw, 2.8rem);
}
.menu-kat h3 {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--rot-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--linie);
}
.menu-kat ul { list-style: none; }
.menu-kat li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--linie);
  color: var(--text-soft);
  font-size: 0.97rem;
}
.menu-kat li:last-child { border-bottom: none; }
.menu-kat li strong { color: var(--dunkel); font-weight: 600; }
.veg-badge {
  display: inline-block;
  background: #4A7C43;
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--rot-deep);
  color: rgba(250, 246, 239, 0.82);
  padding-block: clamp(2.4rem, 5vw, 3.6rem) 1.4rem;
}
.site-foot a { color: var(--creme); }
.site-foot a:hover { color: var(--gold-light); text-decoration: underline; }
.site-foot h3 {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.06em;
}
.site-foot ul { list-style: none; font-size: 0.94rem; }
.site-foot li { padding-block: 0.18rem; }
.foot-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.foot-brand .krone-small { width: 38px; color: var(--gold); }
.foot-brand span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--creme);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.foot-meta {
  border-top: 1px solid rgba(250, 246, 239, 0.18);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.83rem;
}

/* ---------- Reveal-Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  body { background-attachment: scroll; }
}

/* ---------- Responsiv ---------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__emblem { order: -1; }
  .hero__emblem .krone-emblem { width: min(180px, 42vw); }
  .staerken { grid-template-columns: 1fr; }
  .staerke { border-right: none; border-bottom: 1px solid var(--linie); }
  .staerke:last-child { border-bottom: none; }
  .brot-block { grid-template-columns: 1fr; }
  .brot-art { aspect-ratio: 16 / 10; max-width: 28rem; }
  .hours-wrap, .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .bewertungs-band { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .bewertung-sep { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--creme);
    border-bottom: 1px solid var(--linie);
    padding: 0.5rem var(--pad) 1.2rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--linie);
    font-size: 1.05rem;
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--linie); }
  .nav__cta { margin-top: 0.9rem; text-align: center; border-radius: 12px; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .brand__name { font-size: 1.25rem; }
  .brand__mark { width: 40px; height: 40px; }
  .foot-grid { grid-template-columns: 1fr; }
  .menu-preview { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .menu-preview { grid-template-columns: 1fr; }
}
