/* ============================================================
   DON CAMILLO & PEPPONE — Ristorante · Pizzeria · Biergarten
   Design System 2026 — warm editorial trattoria
   ============================================================ */

:root {
  /* Farben */
  --cream: #FAF5EA;
  --cream-2: #F3EBDA;
  --paper: #FFFCF4;
  --ink: #26211B;
  --ink-2: #6E6355;
  --line: rgba(38, 33, 27, .13);
  --green: #33502F;
  --green-ink: #1E2F1C;
  --green-soft: #E4EADB;
  --terra: #C24428;
  --terra-deep: #A2371F;
  --terra-soft: #F6E2D8;
  --gold: #B98A3E;
  --gold-soft: #F1E4C8;

  /* Typo */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  /* Geometrie */
  --radius: 22px;
  --radius-sm: 14px;
  --nav-h: 76px;
  --wrap: 1200px;

  --shadow-soft: 0 20px 50px -24px rgba(38, 33, 27, .28);
  --shadow-card: 0 14px 34px -18px rgba(38, 33, 27, .22);

  color-scheme: light;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Papier-Textur: als normale, mit dem Inhalt scrollende Hintergrund-
   Kachel statt Fixed-Overlay – ein fixiertes (oder geblendetes)
   Vollbild-Overlay zwingt den Browser, bei jedem Scroll-Frame die
   ganze Seite neu zu rastern. */
:root {
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  background-image: var(--noise);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }

a { color: inherit; }

::selection { background: var(--terra); color: #fff; }

.wrap {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2E7D46 0 33%, #F5F0E4 33% 66%, #C6402B 66%);
  box-shadow: 0 0 0 1px rgba(38,33,27,.08);
}

.eyebrow--plain::before { display: none; }

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }

.section-head h2 {
  font-size: clamp(2rem, 3.6vw + .6rem, 3.3rem);
}

.section-head p { color: var(--ink-2); font-size: 1.06rem; max-width: 58ch; }

.i { font-style: italic; font-weight: 500; color: var(--terra); }

/* Reveal-Animationen */
.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1);
  transition-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary {
  background: var(--terra);
  color: #FFF6EC;
  box-shadow: 0 14px 28px -14px rgba(194, 68, 40, .65);
}

.btn--primary:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -14px rgba(194, 68, 40, .7);
}

.btn--ghost {
  border-color: rgba(38,33,27,.35);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--cream);
  color: var(--green-ink);
  box-shadow: 0 14px 28px -16px rgba(0,0,0,.5);
}

.btn--light:hover { transform: translateY(-2px); background: #fff; }

/* ============================================================
   NAVIGATION — schwebende Glas-Insel
   ============================================================ */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  translate: -50% 0;
  z-index: 100;
  width: min(var(--wrap), 100% - 1.6rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 .9rem 0 1.5rem;
  border-radius: 22px;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(38,33,27,.09);
  box-shadow: 0 10px 34px -18px rgba(38,33,27,.25);
  transition: box-shadow .3s ease, background .3s ease;
}

.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: 0 16px 40px -18px rgba(38,33,27,.38);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

.brand strong em {
  font-style: italic;
  color: var(--terra);
  font-weight: 500;
}

.brand span {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: .3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: .55rem .85rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover { background: rgba(38,33,27,.07); }

.nav-links a.active { background: var(--ink); color: var(--cream); }

.nav-cta { display: flex; align-items: center; gap: .5rem; flex: none; }

.nav-cta .btn { padding: .72rem 1.25rem; font-size: .88rem; white-space: nowrap; }

/* Burger */
.burger {
  display: none;
  flex: none;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(38,33,27,.25);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 2.5px auto;
  transition: transform .3s ease, opacity .3s ease;
}

body.menu-open .burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobiles Overlay-Menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--cream) 96%, transparent);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

body.menu-open .mobile-menu { opacity: 1; visibility: visible; }

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: grid;
  gap: .4rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.7rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding: .35rem 1rem;
  transition: color .2s ease, transform .2s ease;
}

.mobile-menu a:hover { color: var(--terra); transform: translateX(6px) skewX(-3deg); }

.mobile-menu .mobile-contact {
  margin-top: 2rem;
  display: grid;
  gap: .6rem;
  justify-items: center;
  font-size: .95rem;
  color: var(--ink-2);
}

body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 14px);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(194,68,40,.10), transparent 65%),
    radial-gradient(720px 480px at -10% 105%, rgba(51,80,47,.10), transparent 60%),
    var(--cream);
}

/* Feine Zutaten-Illustration im Hintergrund */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(38,33,27,.05) 1.2px, transparent 1.3px);
  background-size: 26px 26px;
  mask-image: radial-gradient(720px 560px at 12% 18%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(720px 560px at 12% 18%, #000 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.4vw + .8rem, 5.1rem);
  font-weight: 640;
  margin-bottom: 1.2rem;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 480;
  color: var(--terra);
  position: relative;
  white-space: nowrap;
}

.hero h1 .accent svg {
  position: absolute;
  left: 0;
  bottom: -.12em;
  width: 100%;
  height: .22em;
  color: var(--gold);
}

.hero-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--ink-2);
  max-width: 54ch;
  margin-bottom: 1.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 2rem;
}

/* Live-Status Chip */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1rem .5rem .8rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px -12px rgba(38,33,27,.25);
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2E9E5B;
  flex: none;
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: .35;
  animation: pulse 2s ease-out infinite;
}

.status-chip.closed .status-dot { background: #C9822C; }

@keyframes pulse {
  from { transform: scale(.6); opacity: .5; }
  to   { transform: scale(1.6); opacity: 0; }
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 640;
  line-height: 1;
}

.fact span {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* Hero-Visual: Bogenbild */
.hero-visual { position: relative; }

.arch {
  position: relative;
  border-radius: 380px 380px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--paper);
  outline: 1px solid var(--line);
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,33,27,.28), transparent 45%);
  pointer-events: none;
}

/* Breite Bogenform („Lunetta“) – das Wandbild ist ein 2:1-Querformat,
   so bleiben Pizzabäcker UND Ofen im Bild */
.hero-visual .arch { aspect-ratio: 5 / 3.9; }
.hero-visual .arch img { object-position: 28% 50%; }
.hero-visual:hover .arch img { transform: scale(1.045); }

/* Schwebende Karten am Bild */
.float-card {
  position: absolute;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .7rem 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
  animation: floaty 7s ease-in-out infinite;
}

.float-card small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-2);
}

.float-card .ico {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--terra-soft);
  color: var(--terra);
}

.float-card .ico.green { background: var(--green-soft); color: var(--green); }
.float-card .ico svg { width: 20px; height: 20px; }

.float-card--tl { top: 16%; left: -7%; }
.float-card--br { bottom: 7%; right: -6%; animation-delay: -3.5s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stempel / rotierendes Badge */
.stamp {
  position: absolute;
  top: -34px;
  right: 4%;
  width: 118px;
  height: 118px;
  z-index: 3;
  filter: drop-shadow(0 10px 18px rgba(38,33,27,.22));
}

.stamp svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--green-ink);
  color: var(--cream);
  transform: rotate(-1.2deg);
  margin-block: -1rem;
  padding-block: .95rem;
  overflow: hidden;
  position: relative;
  z-index: 5;
  box-shadow: 0 18px 40px -22px rgba(30,47,28,.7);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  letter-spacing: .04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee b { color: var(--gold); font-weight: 500; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STORIA / ÜBER UNS
   ============================================================ */
.storia { background: var(--cream); }

.storia-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.storia-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.storia-imgs .arch:first-child { aspect-ratio: 4/5.4; margin-top: 2.6rem; }
.storia-imgs .arch:last-child  { aspect-ratio: 4/5.4; border-radius: var(--radius); }

.storia-quote {
  margin: 1.6rem 0 0;
  padding: 1.3rem 1.5rem;
  border-left: 3px solid var(--terra);
  background: var(--paper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.storia-quote footer {
  margin-top: .5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ============================================================
   SPEISEKARTE — Kategorie-Karten
   ============================================================ */
.karte {
  background-color: var(--cream-2);
  background-image: var(--noise);
  position: relative;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.65,.25,1), box-shadow .35s ease;
}

.cat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }

.cat-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.cat-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,33,27,.22), transparent 50%);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.65,.25,1);
}

.cat-card:hover img { transform: scale(1.06); }

.cat-card .body {
  padding: 1.3rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
}

.cat-card h3 {
  font-size: 1.45rem;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.cat-card .ab {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--terra);
  white-space: nowrap;
}

.cat-card p { color: var(--ink-2); font-size: .93rem; margin: 0; flex: 1; }

.cat-card .more {
  margin-top: 1rem;
  font-size: .86rem;
  font-weight: 800;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.cat-card .more svg { width: 15px; height: 15px; transition: transform .3s ease; }
.cat-card:hover .more svg { transform: translateX(5px); }
.cat-card:hover .more { color: var(--terra); }

/* Signature-Gerichte */
.signature {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.sig-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
}

.sig-card:hover { transform: translateY(-5px); }

.sig-card .no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.sig-card h4 { font-size: 1.2rem; margin: .7rem 0 .35rem; }

.sig-card p { font-size: .88rem; color: var(--ink-2); margin: 0 0 .9rem; min-height: 3.4em; }

.sig-card .price {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 1.15rem;
  color: var(--terra);
}

.sig-card .tag {
  position: absolute;
  top: 1.35rem;
  right: 1.25rem;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  padding: .3rem .65rem;
}

/* ============================================================
   BIERGARTEN / FESTE — dunkle Sektion
   ============================================================ */
.feste {
  background:
    var(--noise),
    radial-gradient(820px 480px at 90% 0%, rgba(185,138,62,.16), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(194,68,40,.14), transparent 55%),
    var(--green-ink);
  color: #F3EFE3;
  position: relative;
  overflow: clip;
}

.feste .eyebrow { color: var(--gold); }
.feste .section-head p { color: rgba(243,239,227,.72); }

.feste-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.feste h2 { color: #FBF8EE; }
.feste h2 .accent { font-style: italic; font-weight: 480; color: var(--gold); }

.feste-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.feste-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  font-size: 1rem;
  color: rgba(243,239,227,.88);
}

.feste-list .ico {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(251,248,238,.09);
  border: 1px solid rgba(251,248,238,.16);
  color: var(--gold);
}

.feste-list .ico svg { width: 20px; height: 20px; }

.feste-list strong { display: block; color: #FBF8EE; font-size: 1.02rem; }

.feste-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.feste-stat {
  border: 1px solid rgba(251,248,238,.16);
  background: rgba(251,248,238,.05);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.6rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.feste-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.feste-stat span {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243,239,227,.75);
}

.feste-stat.wide { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.feste-stat.wide p { margin: 0; color: rgba(243,239,227,.85); max-width: 40ch; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--cream); }

.kontakt-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: stretch;
}

.hours-card, .map-shell {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.hours-card { padding: clamp(1.6rem, 3vw, 2.4rem); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 1.8rem;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: .8rem .2rem;
  border-bottom: 1px dashed var(--line);
  font-size: .97rem;
  vertical-align: top;
}

.hours-table th { font-weight: 800; white-space: nowrap; padding-right: 1.4rem; }

.hours-table td { color: var(--ink-2); font-weight: 600; }

.hours-table tr.today th, .hours-table tr.today td { color: var(--terra); }

.hours-table tr.today th::after {
  content: "· heute";
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-left: .5rem;
  color: var(--terra);
}

.contact-lines { display: grid; gap: .9rem; }

.contact-line {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.contact-line:hover { border-color: var(--terra); transform: translateX(4px); background: var(--paper); }

.contact-line .ico {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--terra-soft);
  color: var(--terra);
}

.contact-line .ico svg { width: 20px; height: 20px; }

.contact-line b { display: block; font-size: 1rem; line-height: 1.3; }
.contact-line small { color: var(--ink-2); font-weight: 600; }

/* Karte — Zwei-Klick-Lösung (DSGVO) */
.map-shell {
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: grid;
}

.map-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: .4rem;
  padding: 2rem;
  background:
    radial-gradient(420px 300px at 50% 30%, rgba(51,80,47,.12), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(38,33,27,.045) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(38,33,27,.045) 34px 35px),
    var(--cream-2);
}

.map-placeholder .pin {
  width: 58px;
  height: 58px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--terra);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 16px 30px -12px rgba(194,68,40,.6);
  animation: floaty 5s ease-in-out infinite;
}

.map-placeholder .pin::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream);
}

.map-placeholder h3 { font-size: 1.5rem; margin-bottom: .1rem; }
.map-placeholder p { color: var(--ink-2); font-size: .95rem; margin: 0 0 1.2rem; }
.map-placeholder small { color: var(--ink-2); font-size: .76rem; max-width: 40ch; margin-top: .9rem; }
.map-placeholder small a { color: var(--terra); }

.map-shell iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #211C16;
  background-image: var(--noise);
  color: #D9D1C2;
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(217,209,194,.14);
}

.footer .brand strong { color: #F7F1E3; font-size: 1.35rem; }
.footer .brand span { color: rgba(217,209,194,.6); }

.footer-tag { margin-top: 1rem; font-size: .92rem; color: rgba(217,209,194,.72); max-width: 34ch; }

.footer h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }

.footer ul a {
  text-decoration: none;
  color: rgba(217,209,194,.82);
  font-size: .94rem;
  transition: color .2s ease;
}

.footer ul a:hover { color: #fff; }

.footer ul li { font-size: .94rem; color: rgba(217,209,194,.82); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: .82rem;
  color: rgba(217,209,194,.55);
}

.footer-bottom .tricolor {
  display: inline-block;
  width: 44px;
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2E7D46 0 33%, #F5F0E4 33% 66%, #C6402B 66%);
  vertical-align: middle;
  margin-right: .6rem;
}

/* ============================================================
   SPEISEKARTE-SEITE
   ============================================================ */
.menu-hero {
  padding-top: calc(var(--nav-h) + 14px);
  background:
    radial-gradient(720px 420px at 90% -20%, rgba(194,68,40,.12), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.menu-hero-inner {
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: .6rem;
}

.menu-hero h1 { font-size: clamp(2.4rem, 4.6vw + .5rem, 4.2rem); margin-bottom: .4rem; }
.menu-hero h1 .accent { font-style: italic; font-weight: 480; color: var(--terra); }
.menu-hero p { color: var(--ink-2); max-width: 62ch; margin: 0; }

.menu-hero .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
}

.meta-chip {
  font-size: .8rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.meta-chip svg { width: 14px; height: 14px; color: var(--terra); }

/* Sticky Kategorie-Navigation */
.menu-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}

.menu-nav-track {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  padding: .8rem 0;
  scrollbar-width: none;
}

.menu-nav-track::-webkit-scrollbar { display: none; }

.menu-nav a {
  flex: none;
  padding: .52rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-2);
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}

.menu-nav a:hover { color: var(--ink); border-color: var(--line); background: var(--paper); }

.menu-nav a.active { background: var(--ink); color: var(--cream); }

/* Menü-Sektionen */
.menu-section { padding-block: clamp(3rem, 6vw, 4.5rem); scroll-margin-top: 80px; }

.menu-section:nth-child(even) {
  background-color: var(--cream-2);
  background-image: var(--noise);
}

.menu-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}

.menu-section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin: 0;
}

.menu-section-head h2 em { font-style: italic; font-weight: 480; color: var(--terra); }

.menu-section-head .sub {
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-note {
  color: var(--ink-2);
  font-size: .94rem;
  max-width: 70ch;
  margin-bottom: 2rem;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.menu-group { margin-bottom: 2.2rem; break-inside: avoid; }

.menu-group h3 {
  font-size: 1.28rem;
  font-weight: 640;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.1rem;
}

.menu-group h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.dishes { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.05rem; }

.dish { display: flex; gap: .85rem; align-items: baseline; }

.dish-no {
  flex: none;
  min-width: 2.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: .98rem;
  color: var(--gold);
}

.dish-body { flex: 1; }

.dish-line {
  display: flex;
  align-items: baseline;
  gap: .7rem;
}

.dish-line h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
}

.dish-line h4 .size {
  font-size: .76rem;
  color: var(--ink-2);
  font-weight: 700;
  margin-left: .4rem;
  letter-spacing: .02em;
}

.dish-line .dots {
  flex: 1;
  min-width: 1.2rem;
  border-bottom: 2px dotted rgba(38,33,27,.22);
  transform: translateY(-4px);
}

.price {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 1.02rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.price-pair { display: inline-flex; gap: 1.1rem; }
.price-pair .price { min-width: 3.2rem; text-align: right; }

.dish-desc {
  margin: .18rem 0 0;
  font-size: .875rem;
  color: var(--ink-2);
  max-width: 52ch;
}

.badge {
  display: inline-block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: 999px;
  vertical-align: 2px;
  margin-left: .45rem;
}

.badge--veg { background: var(--green-soft); color: var(--green); }
.badge--hot { background: var(--terra-soft); color: var(--terra); }

/* Preiskopf-Zeile (z. B. Pizza-Größen) */
.price-head {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: .7rem;
}

.price-head span { min-width: 3.2rem; text-align: right; }

/* Hinweiskasten */
.menu-info {
  margin-top: .8rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  border: 1px solid rgba(185,138,62,.35);
  font-size: .9rem;
  color: #6B5320;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.menu-info svg { width: 18px; height: 18px; flex: none; margin-top: .15rem; }

/* CTA-Banner unten auf der Speisekarte */
.menu-cta {
  background: var(--green-ink);
  color: #F3EFE3;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-block: clamp(3rem, 6vw, 4.5rem);
  background-image: radial-gradient(500px 300px at 90% 10%, rgba(185,138,62,.22), transparent 60%);
}

.menu-cta h2 { color: #FBF8EE; font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 .3rem; }
.menu-cta p { margin: 0; color: rgba(243,239,227,.75); }

/* Back-to-top */
.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: var(--shadow-card);
}

.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--terra); }
.to-top svg { width: 20px; height: 20px; }

/* ============================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   ============================================================ */
.legal {
  padding-top: calc(var(--nav-h) + 14px);
}

.legal-inner {
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.legal h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.legal h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.legal p, .legal li { color: var(--ink-2); font-size: .98rem; }
.legal strong { color: var(--ink); }
.legal a { color: var(--terra); }

.legal-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-card);
  margin-block: 1.5rem;
}

.legal-card p { margin: 0; line-height: 1.9; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .signature { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .nav-cta .btn--ghost { display: none; }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 1.5rem; }
  .hero-visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .float-card--tl { left: -2%; }
  .float-card--br { right: -2%; }
  .stamp { top: -26px; right: 2%; width: 96px; height: 96px; }

  .storia-grid, .feste-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .storia-imgs { max-width: 560px; }
  .menu-cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .nav { top: 10px; padding: 0 .7rem 0 1.1rem; }
  .brand strong { font-size: 1rem; }
  .brand span { letter-spacing: .22em; }

  /* Telefon-Button nur als Icon, damit nichts umbricht */
  .nav-cta { gap: .45rem; }
  .nav-cta .btn--primary { width: 46px; height: 46px; padding: 0; border-radius: 14px; }
  .nav-cta .btn--primary span { display: none; }
  .nav-cta .btn--primary svg { width: 19px; height: 19px; }

  .hero h1 { font-size: clamp(2.3rem, 10vw, 3rem); }
  .hero-facts { gap: 1.1rem 1.6rem; }

  .cat-grid, .signature { grid-template-columns: 1fr; }
  .feste-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }

  .float-card { font-size: .78rem; padding: .55rem .8rem; }
  .float-card .ico { width: 32px; height: 32px; border-radius: 10px; }

  .dish { flex-wrap: wrap; }
  .dish-no { min-width: 1.8rem; }
  .price-pair { gap: .7rem; }
  .price-pair .price { min-width: 2.7rem; }
  .price-head span { min-width: 2.7rem; }
}

/* ============================================================
   PRINT — Speisekarte druckbar
   ============================================================ */
@media print {
  .nav, .menu-nav, .to-top, .menu-cta, .footer, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  .menu-hero { padding-top: 0; }
  .menu-section { padding-block: 1.2rem; break-inside: avoid-page; }
  .menu-section:nth-child(even) { background: #fff; }
  .menu-cols { grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .price, .dish-line h4 { color: #000; }
  a { text-decoration: none; color: inherit; }
}
