/* =========================================================
   SCHWAB DÖNER · styles.css
   Palette: Schwarz / Rot / Vegan-Grün / Krem
   ========================================================= */


html, body {
  overflow-x: hidden;
}
:root {
  --black: #0b0b0b;
  --black-2: #151515;
  --black-3: #1f1f1f;
  --cream: #faf6ee;
  --cream-2: #f1ebdd;
  --red: #d7263d;
  --red-dark: #a81a2d;
  --green: #2ea84a;
  --green-dark: #1f7a36;
  --text: #17150f;
  --text-muted: #5a5347;
  --text-light: #eae4d4;
  --border: #eadfc4;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.28);

  --font-display: "Anton", "Archivo Black", "Impact", sans-serif;
  --font-heading: "Archivo Black", "Anton", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(215, 38, 61, 0.35);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--lieferando {
  background: #ff8000;
  color: #fff;
  border-color: #ff8000;
  box-shadow: 0 8px 24px rgba(255, 128, 0, 0.4);
}
.btn--lieferando:hover { background: #e06d00; border-color: #e06d00; }

.btn--wolt {
  background: #009de0;
  color: #fff;
  border-color: #009de0;
  box-shadow: 0 8px 24px rgba(0, 157, 224, 0.4);
}
.btn--wolt:hover { background: #007fb5; border-color: #007fb5; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.section--light .btn--ghost { color: var(--text); border-color: rgba(0,0,0,0.2); }
.section--light .btn--ghost:hover { background: rgba(0,0,0,0.05); border-color: var(--text); }

/* -------- Generic -------- */
.h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: var(--text);
  text-transform: uppercase;
}
.h2--light { color: var(--cream); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow--light { color: #cabf9e; }

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--red { background: var(--red); }
.dot--green { background: var(--green); }

.txt-red { color: var(--red); }
.txt-green { color: var(--green); }
.txt-outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}
.tag--green { background: rgba(46, 168, 74, 0.15); color: var(--green-dark); }

.badge--vegan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(46, 168, 74, 0.35);
}

.planted {
  background: #6a3ea1;
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9em;
}

/* -------- Navbar -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  color: #fff;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.nav__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(215, 38, 61, 0.4);
  font-size: 18px;
}
.nav__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(215, 38, 61, 0.35));
}
.nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__name-top {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
}
.nav__name-bot {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #cabf9e;
  margin-top: 4px;
}

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 26px;
}
.nav__links a {
  font-weight: 600;
  font-size: 14px;
  color: #dcd3bd;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 10px 18px; font-size: 14px; }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 22px 22px;
  background: var(--black-2);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 12px 10px;
  color: #dcd3bd;
  border-radius: 8px;
  font-weight: 600;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* -------- Hero -------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--black);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(215, 38, 61, 0.28), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(46, 168, 74, 0.22), transparent 60%),
    linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cabf9e;
  flex-wrap: wrap;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 22px 0 20px;
  text-transform: uppercase;
}
.hero__sub {
  max-width: 520px;
  color: #d8d1bb;
  font-size: 17px;
  margin: 0 0 30px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 560px;
}
.fact__num--sm { font-size: 28px; }
.fact__num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: #fff;
}
.fact__num span {
  color: var(--red);
  font-size: 0.75em;
  margin-left: 4px;
}
.fact__txt {
  font-size: 12px;
  color: #bdb59c;
  margin-top: 6px;
  line-height: 1.35;
}

.hero__art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }

.hero__food {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 620px;
  height: 560px;
}
.hero__food-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__food-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hero__food-main:hover img { transform: scale(1.05); }
.hero__food-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.hero__food-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(215, 38, 61, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__food-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.hero__food-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__food-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hero__food-tile:hover img { transform: scale(1.06); }
.hero__food-tile--logo {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 18px;
}
.hero__food-tile--logo img {
  object-fit: contain;
  width: auto;
  height: 100%;
  max-height: 100%;
  transition: none;
}
.hero__food-tile--logo:hover img { transform: none; }

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #cabf9e;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll i {
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* -------- Sections -------- */
.section { padding: 100px 0; position: relative; }
.section--light { background: var(--cream); }
.section--dark {
  background: var(--black);
  color: var(--cream);
}
.section__head { text-align: center; margin-bottom: 60px; }
.section__head .eyebrow { justify-content: center; }
.section__sub { color: var(--text-muted); margin: 12px auto 0; max-width: 620px; }
.section--dark .section__sub { color: #a9a18a; }

/* -------- Über uns -------- */
.about__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.about__copy p { font-size: 17px; color: #3d3728; }
.about__bullets {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}
.about__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
}
.about__bullets i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(46, 168, 74, 0.12);
  color: var(--green-dark);
  border-radius: 10px;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--green);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(46, 168, 74, 0.4);
}

.about__card {
  background: var(--black);
  color: var(--cream);
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.about__card-title {
  width: 100%;
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 13px;
}
.about__chip i { color: var(--green); }

/* -------- Deals -------- */
.deals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.deal {
  position: relative;
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.deal:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.deal__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.deal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.deal:hover .deal__img img { transform: scale(1.08); }
.deal__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
}
.deal__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.deal__day {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a9a18a;
}
.deal__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: #fff;
  margin: 8px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.deal__desc { color: #c4bca3; font-size: 14px; flex: 1; }
.deal__price {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  line-height: 1;
  margin-top: 18px;
}
.deal__price span {
  font-size: 0.55em;
  margin-right: 6px;
  color: #fff;
}
.deal--vegan { background: linear-gradient(160deg, #143e22 0%, #0b1f12 100%); border-color: rgba(46, 168, 74, 0.4); }
.deal--vegan .deal__price { color: var(--green); }
.deal--accent { background: linear-gradient(160deg, #2a0b12 0%, #150506 100%); border-color: rgba(215, 38, 61, 0.35); }

.deals__note {
  margin-top: 30px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 14px;
  color: #c4bca3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.deals__note i { color: var(--green); }

/* -------- Menü -------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.menu-cat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  box-shadow: var(--shadow-sm);
}
.menu-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px dashed #e5d9b8;
}
.menu-cat__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.menu-cat__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(215, 38, 61, 0.1);
  color: var(--red);
  border-radius: 12px;
  font-size: 18px;
}
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
}
.m-name { flex-shrink: 0; font-weight: 600; color: var(--text); }
.m-dots {
  flex: 1;
  border-bottom: 2px dotted #d9cca5;
  transform: translateY(-4px);
}
.m-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.02em;
}

.allergen-note {
  margin-top: 34px;
  padding: 14px 20px;
  background: #fff4e1;
  border: 1px solid #ecd8a6;
  border-radius: 12px;
  font-size: 14px;
  color: #7a5b1a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.allergen-note i { color: #c98b10; }

/* -------- Gallery -------- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 14px;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--wide { grid-row: span 2; }

/* -------- Online Order Buttons -------- */
.order-online__btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.order-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border-radius: 16px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.order-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4); }
.order-btn__ico {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 22px;
  flex-shrink: 0;
}
.order-btn__name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.order-btn__sub { font-size: 13px; opacity: 0.85; margin-top: 4px; }
.order-btn--lieferando { background: #ff8000; }
.order-btn--wolt { background: #009de0; }

/* -------- Contact / Map -------- */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.contact__info {
  display: grid;
  gap: 16px;
  align-content: start;
}
.info-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.info-card--dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}
.info-card__ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(215, 38, 61, 0.1);
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.info-card__ico--light {
  background: rgba(46, 168, 74, 0.18);
  color: var(--green);
}
.info-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-card__title--light { color: #fff; }
.info-card__line { font-weight: 500; color: var(--text); }
.info-card__line--big {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--red);
  letter-spacing: 0.04em;
  display: inline-block;
}
.info-card__line--light { color: #dcd3bd; }
.info-card__sub { color: var(--text-muted); font-size: 13px; margin-top: 4px; }
.info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}
.info-card__link:hover { text-decoration: underline; }

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  text-align: center;
}
.hours li {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px dashed #e5d9b8;
  font-size: 15px;
}
.hours li:last-child { border-bottom: 0; }
.hours span:first-child {
  font-weight: 700;
  min-width: 110px;
  text-align: right;
}
.hours span:last-child {
  min-width: 110px;
  text-align: left;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 460px;
  box-shadow: var(--shadow-md);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* -------- Footer -------- */
.footer {
  background: var(--black);
  color: #cabf9e;
  padding: 46px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner { display: grid; gap: 24px; }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__logo { height: 56px; width: auto; filter: brightness(0) invert(1); }
.footer__links { display: inline-flex; gap: 18px; }
.footer__links a { color: #dcd3bd; transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__sub { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #8b8169; }
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
}
.footer__meta a { color: #dcd3bd; }
.footer__meta a:hover { color: #fff; }
.footer__meta i { color: var(--red); margin-right: 6px; }
.footer__legal {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: #8b8169;
  flex-wrap: wrap;
  gap: 8px;
}

/* -------- Floating call -------- */
.float-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(215, 38, 61, 0.5);
  z-index: 40;
  font-size: 20px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(215, 38, 61, 0.5); }
  50% { box-shadow: 0 10px 28px rgba(215, 38, 61, 0.8), 0 0 0 10px rgba(215, 38, 61, 0.1); }
}

/* -------- Reveal on scroll -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* -------- Legal (Impressum/Datenschutz) -------- */
.legal {
  background: var(--cream);
  padding: 80px 0 100px;
  min-height: 60vh;
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
}
.legal__back:hover { text-decoration: underline; }
.legal h1.h2 { font-size: clamp(38px, 5vw, 58px); margin-top: 10px; }
.legal h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 34px 0 10px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.legal p, .legal li {
  color: #3d3728;
  font-size: 15px;
  line-height: 1.7;
}
.legal ul { padding-left: 22px; margin: 10px 0 14px; }
.legal a { color: var(--red); text-decoration: underline; }
.legal a:hover { color: var(--red-dark); }
.legal__intro { font-size: 16px; color: var(--text-muted); margin-top: 6px; }
.legal__updated { font-size: 13px; color: var(--text-muted); margin-top: 40px; }

@media (max-width: 560px) {
  .legal__inner { padding: 28px 22px; }
}

/* -------- Responsive -------- */
@media (max-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { min-height: auto; }
  .hero__food { height: 420px; max-width: 500px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 34px; }
  .deals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 360px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; margin-left: auto; }
  .float-call { display: grid; }
  .order-online__btns { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .section__head { margin-bottom: 40px; }
  .hero__title { font-size: clamp(44px, 13vw, 72px); }
  .deals { grid-template-columns: 1fr; }
  .deal__price { font-size: 48px; }
  .hero__facts { grid-template-columns: 1fr; }
  .footer__legal { justify-content: center; text-align: center; }
  .m-price { font-size: 18px; }
  .menu-cat__title { font-size: 22px; }
}
@media (max-width: 560px) {
  .menu-cat {
    padding: 22px 16px !important;
    overflow: hidden !important;
  }

  .menu-list li {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 10px 0 !important;
  }

  .m-name {
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .m-dots {
    display: none !important;
  }

  .m-price {
    white-space: nowrap !important;
    text-align: right !important;
    font-size: 20px !important;
    min-width: 62px !important;
  }

  html,
  body {
    overflow-x: hidden !important;
  }
}