/* ==========================================================================
   Euphrat – Döner & Pizzahaus, Karlsruhe
   v2 · Original-Logo-Palette · Mural-Look · performantes Scrollen
   ========================================================================== */

/* ---------- Fonts (lokal gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Norican";
  src: url("fonts/norican-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anton";
  src: url("fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Permanent Marker";
  src: url("fonts/permanent-marker-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("fonts/barlow-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens: Original-Logo-Farben ---------- */
:root {
  /* Dunkle Basis (Mural-Look) */
  --ink: #171310;
  --ink-soft: #221B15;
  --line: #3A2F26;

  /* Original-Logo-Farben */
  --red: #E13F1B;
  --red-hover: #C43312;
  --red-deep: #5F221A;
  --orange: #E38936;
  --orange-hover: #C97428;
  --yellow: #F2F50A;
  --gold: #D7AC6C;
  --cream: #E2D6CA;
  --white: #F4F1EA;

  --cream-dim: rgba(226, 214, 202, 0.74);
  --dots: rgba(226, 214, 202, 0.3);

  --font-script: "Norican", "Lobster Two", cursive;
  --font-head: "Anton", "Arial Narrow", sans-serif;
  --font-badge: "Permanent Marker", cursive;
  --font-body: "Barlow", "Segoe UI", sans-serif;

  --header-h: 64px;
  --radius: 12px;
}

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

html {
  scroll-padding-top: calc(var(--header-h) + 64px);
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background: var(--ink);
  overflow-x: clip; /* Strahlen-Deko darf keinen horizontalen Scroll erzeugen */
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); /* Platz für Mobile-Bar */
}
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Grunge-Textur: EIN fixes Overlay für die ganze Seite (Sprühfarbe auf Metall) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  will-change: auto;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='240'%20height='240'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.9'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
}

img,
svg {
  max-width: 100%;
  display: block;
}
/* hidden-Attribut muss unsere svg/img-Blockregel schlagen */
[hidden] {
  display: none !important;
}
/* Icon-Sprite: unsichtbar ohne display:none (sonst fallen SVG-Gradienten aus)
   und ohne Layout-Box (sonst Leerraum über dem Header) */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

a {
  color: var(--gold);
}
a:hover {
  color: var(--orange);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}
.wrap--menu {
  width: min(100% - 2.5rem, 1100px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--orange);
  color: var(--ink);
  padding: 0.6em 1.2em;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Icons ---------- */
.ico {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: none;
  vertical-align: -0.28em;
}
.ico--sm {
  width: 18px;
  height: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.75em 1.5em;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:active {
  transform: scale(0.97);
}
.btn .ico {
  width: 20px;
  height: 20px;
}
.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-hover);
  color: var(--white);
}
.btn--orange {
  background: var(--orange);
  color: var(--ink);
}
.btn--orange:hover {
  background: var(--orange-hover);
  color: var(--ink);
}
.btn--ghost {
  border-color: var(--cream-dim);
  color: var(--cream);
  background: rgba(23, 19, 16, 0.45);
}
.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(226, 214, 202, 0.08);
}

/* ---------- Header (ohne backdrop-filter) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(23, 19, 16, 0.95);
  border-bottom: 1px solid var(--gold);
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
}
.brand:hover {
  color: var(--orange);
}
.site-header .brand__logo {
  height: 44px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  gap: 0.25rem;
}
.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-decoration: none;
  padding: 0.5em 0.7em;
  border-radius: 6px;
}
.site-nav a:hover {
  color: var(--orange);
  background: rgba(226, 214, 202, 0.06);
}

/* Burger-Menü: nur auf der Hauptseite, nur mobil */
.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
}
@media (max-width: 767px) {
  .site-header--main .burger {
    display: grid;
  }
  .site-header--main .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: rgba(23, 19, 16, 0.98);
    border-bottom: 1px solid var(--gold);
    padding: 0.6rem 1.25rem 1rem;
  }
  .site-header--main .site-nav.is-open {
    display: flex;
  }
  .site-header--main .site-nav a {
    padding: 0.85em 0.4em;
    font-size: 0.95rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  padding-block: 3rem 4rem;
}
/* Mural als Ganzes: schlichtes cover, kein Zoom, keine starke Verschiebung */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* mobil leicht nach links, damit der Koch im schmalen Ausschnitt bleibt */
  object-position: 30% 20%;
}
@media (min-width: 768px) {
  .hero__bg {
    object-position: center 20%;
  }
}
/* Grundabdunklung ~50 %, dazu radialer Scrim (~70 %) nur hinter dem
   Content-Block; das gemalte Oval darf gedämpft durchschimmern. */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 46% 42% at 50% 52%, rgba(23, 19, 16, 0.7) 0%, rgba(23, 19, 16, 0.45) 55%, transparent 78%),
    linear-gradient(180deg, rgba(23, 19, 16, 0.52) 0%, rgba(23, 19, 16, 0.46) 45%, rgba(23, 19, 16, 0.55) 92%, rgba(23, 19, 16, 0.8) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.4rem;
}
/* Dezente radiale Gold-Strahlen hinter dem Logo */
.hero__rays {
  position: absolute;
  top: -160px;
  left: 50%;
  translate: -50% 0;
  width: min(640px, 130vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 8deg,
    var(--gold) 0deg 5deg,
    transparent 5deg 14deg
  );
  opacity: 0.1;
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 68%);
  mask-image: radial-gradient(circle, #000 0%, transparent 68%);
  pointer-events: none;
}
.hero__logo-img {
  position: relative;
  width: clamp(240px, 58vw, 320px);
  height: auto;
}
.hero__banner {
  position: relative;
  width: clamp(200px, 46vw, 270px);
  height: auto;
  margin-top: -0.5rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.55rem, 5.4vw, 2.9rem);
  line-height: 1.15;
  max-width: 17ch;
  transform: rotate(-1.5deg);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ---------- Sections ---------- */
.section {
  padding-block: 56px;
}
@media (min-width: 768px) {
  .section {
    padding-block: 96px;
  }
}
.section--alt {
  background: var(--ink-soft);
}
/* Einzige rote Farbinsel: Bestellen */
.section--order {
  background: linear-gradient(180deg, var(--red-deep) 0%, var(--ink) 88%);
}

.sec-head {
  position: relative;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}
/* Dezente Gold-Strahlen hinter jedem Sektions-Header */
.sec-head::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -80px;
  width: 420px;
  aspect-ratio: 1;
  background: repeating-conic-gradient(from -10deg, var(--gold) 0deg 4deg, transparent 4deg 14deg);
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle, #000 0%, transparent 70%);
  opacity: 0.07;
  pointer-events: none;
}
.sec-kicker {
  position: relative;
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.sec-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  line-height: 1.1;
  transform: rotate(-1.2deg);
  padding-bottom: 0.28em;
  /* Handgemalter Pinselstrich statt gerader Linie */
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20220%2014'%20preserveAspectRatio='none'%3E%3Cpath%20d='M4%209%20C%2050%203%20110%2012%20216%206'%20fill='none'%20stroke='%23F2F50A'%20stroke-width='5'%20stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 10px;
  background-position: 0 100%;
}

/* Sticker-Badges (Permanent Marker, gedreht) */
.sticker {
  display: inline-block;
  font-family: var(--font-badge);
  font-size: 0.8rem;
  color: var(--yellow);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2em 0.9em;
  transform: rotate(-2deg);
  white-space: nowrap;
}

/* ---------- Divider: Karlsruhe-Silhouette ---------- */
.divider {
  overflow: hidden;
  line-height: 0;
  display: flex;
  justify-content: center;
  padding-block: 0.5rem;
}
.divider svg {
  flex: none;
  height: 72px;
  width: auto;
}

/* ---------- USP-Band: kompakte Zackenrand-Siegel ---------- */
.usps {
  padding-block: 32px;
}
@media (min-width: 768px) {
  .usps {
    padding-block: 48px;
  }
}
.usps__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1rem 1.6rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .usps__grid {
    grid-template-columns: repeat(4, auto);
    gap: 2rem;
  }
}
.seal {
  position: relative;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.4rem;
}
.seal__edge {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Kräftigere Kontur, hellere Füllung (Fix 8) */
.seal__edge polygon {
  fill: var(--ink-soft);
  stroke: var(--gold);
  stroke-width: 2;
}
.seal__icon {
  position: relative;
  color: var(--cream);
}
.seal__icon .ico {
  width: 24px;
  height: 24px;
}
.seal__text {
  position: relative;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--cream);
}
/* Abwechselnd gold/rote Kontur (Fix 6) */
.seal:nth-child(even) .seal__edge polygon {
  stroke: var(--red);
}
.seal:nth-child(1) { transform: rotate(-2deg); }
.seal:nth-child(2) { transform: rotate(1.5deg); }
.seal:nth-child(3) { transform: rotate(-1.5deg); }
.seal:nth-child(4) { transform: rotate(2deg); }

/* ---------- Speisekarte ---------- */
.pills {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.7rem 1.25rem;
  margin-inline: -1.25rem;
  background: linear-gradient(180deg, var(--ink) 84%, rgba(23, 19, 16, 0));
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pills::-webkit-scrollbar {
  display: none;
}
.pill {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5em 1.05em;
  background: var(--ink-soft);
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pill:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.pill.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Kategorie = eigener Block, Header volle Breite; nur Gerichte fließen 2-spaltig */
.menu-cat {
  margin-top: 2.4rem;
  scroll-margin-top: calc(var(--header-h) + 72px);
}
.menu-cat > h3 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  color: var(--white);
  border-bottom: 2px solid var(--line);
  padding-bottom: 0.35em;
  margin-bottom: 0.6rem;
}
/* Ein großes Banner-Bild pro Kategorie (Fix 7) */
.cat-banner {
  margin: 0 0 1rem;
}
.cat-banner img {
  width: 100%;
  height: clamp(200px, 24vw, 240px);
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--red-deep);
}
.cat-intro {
  font-size: 0.92rem;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 0.6rem;
}
.menu-cat .items {
  margin-top: 0.4rem;
}
@media (min-width: 768px) {
  .menu-cat .items {
    columns: 2;
    column-gap: 3rem;
  }
}
.item {
  break-inside: avoid;
  padding-block: 0.55rem;
}
.item__line {
  display: flex;
  align-items: baseline;
  gap: 0.55em;
}
.item__num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--red);
  min-width: 2em;
}
.item__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}
.item__dots {
  flex: 1 1 1.5em;
  min-width: 1.5em;
  border-bottom: 2px dotted var(--dots);
  transform: translateY(-4px);
}
.item__price {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--yellow);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.item__desc {
  font-size: 0.88rem;
  color: var(--cream-dim);
  padding-left: calc(2em + 0.55em);
  margin-top: 0.15rem;
}
/* Haus-Pizza hervorheben (Sticker-Look) */
.item--star {
  position: relative;
  background: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red-deep);
  padding: 0.9rem 1rem 0.8rem;
  margin-block: 0.8rem;
}
.item--star .item__badge {
  position: absolute;
  top: -0.95em;
  right: 0.9rem;
  font-family: var(--font-badge);
  font-size: 0.78rem;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red-deep);
  border-radius: 999px;
  padding: 0.12em 0.8em;
  transform: rotate(2deg);
}
.cat-note {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
  margin-top: 0.5rem;
}
.menu-footnote {
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
  display: grid;
  gap: 0.5rem;
}

/* ---------- Über uns ---------- */
.about__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.about__grid {
  display: block;
}
.about p {
  max-width: 62ch;
  font-size: 1.05rem;
}
.about p + p {
  margin-top: 0.9rem;
}
/* Bildreihe: Spieß + Brot + Yufka (Fix 7) */
.about__media {
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 640px) {
  .about__media {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.about__media img {
  width: 100%;
  height: auto;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red-deep);
  transform: rotate(1deg);
}
.about__media img:nth-child(2) {
  transform: rotate(-1deg);
}
.about__media img:nth-child(3) {
  transform: rotate(0.8deg);
}

/* ---------- Bewertungen ---------- */
.rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.6rem;
}
.rating-line .stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--orange);
}
.rating-line .stars .ico {
  width: 21px;
  height: 21px;
}
.quotes {
  display: grid;
  gap: 1.2rem;
  list-style: none;
}
@media (min-width: 768px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quotes blockquote {
  height: 100%;
  background: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red-deep);
  padding: 1.3rem 1.2rem 1.1rem;
  position: relative;
  transition: transform 0.18s ease;
}
.quotes blockquote:hover {
  transform: translateY(-3px);
}
.quotes blockquote::before {
  content: "„";
  font-family: var(--font-script);
  font-size: 2.6rem;
  line-height: 0;
  color: var(--orange);
  position: absolute;
  top: 1.05rem;
  left: 0.9rem;
}
.quotes p {
  padding-left: 1.6rem;
  font-size: 0.98rem;
}
.quotes .src {
  display: block;
  padding-left: 1.6rem;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 1.6rem;
  font-weight: 600;
}

/* ---------- Bestellen ---------- */
.order-banner {
  margin: 0 0 1.8rem;
}
.order-banner img {
  width: 100%;
  height: clamp(180px, 32vw, 300px);
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red-deep);
}
.order-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .order-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.order-card {
  background: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red-deep);
  padding: 1.6rem 1.4rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  text-align: center;
  transition: transform 0.18s ease;
}
.order-card:hover {
  transform: translateY(-3px);
}
.order-card h3 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
}
.order-card p {
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.order-card .btn {
  margin-top: 0.4rem;
  justify-self: center;
}

/* ---------- Anfahrt & Öffnungszeiten ---------- */
.visit-grid {
  display: grid;
  gap: 2.2rem;
}
@media (min-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hours {
  width: 100%;
  border-collapse: collapse;
}
.hours caption {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.hours caption .ico {
  color: var(--orange);
  margin-right: 0.35em;
}
.hours th,
.hours td {
  text-align: left;
  padding: 0.55em 0.4em;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  font-weight: 400;
}
.hours th {
  font-weight: 600;
}
.hours td {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hours .today th,
.hours .today td {
  color: var(--red);
  border-bottom-color: var(--red);
  font-weight: 600;
}
.hours .today th::after {
  content: " · heute";
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.visit-photo {
  margin: 1.6rem 0 0;
}
.visit-photo img {
  width: 100%;
  height: auto;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red-deep);
  transform: rotate(-0.5deg);
}
.visit-info h3 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.visit-info address {
  font-style: normal;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.visit-info ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}
.visit-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.95rem;
  color: var(--cream-dim);
}
.visit-info li .ico {
  color: var(--orange);
  margin-top: 0.1em;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 2rem;
  background: #120F0C;
  border-top: 1px solid var(--line);
}
.site-footer .skyline {
  opacity: 0.85;
  overflow: hidden;
  line-height: 0;
  display: flex;
  justify-content: center;
  padding-top: 1.2rem;
}
.site-footer .skyline svg {
  flex: none;
  height: 60px;
  width: auto;
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
  padding-block: 1.8rem 2.4rem;
  text-align: center;
  justify-items: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    justify-items: start;
    align-items: start;
  }
}
.footer-brand .brand {
  font-size: 2rem;
}
.footer-brand p {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.footer-contact address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-contact a {
  text-decoration: none;
}
.footer-social {
  display: flex;
  gap: 0.9rem;
}
@media (min-width: 768px) {
  .footer-social {
    justify-self: end;
  }
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.footer-social a:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(227, 137, 54, 0.08);
}
.footer-legal {
  border-top: 1px solid var(--line);
  padding-block: 1.1rem calc(1.1rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.footer-legal a {
  color: var(--cream-dim);
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--orange);
}

/* ---------- Sticky Mobile-Bar (ohne backdrop-filter) ---------- */
.mobilebar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: var(--ink-soft);
  border-top: 2px solid var(--line);
}
.mobilebar .btn {
  padding: 0.65em 0.5em;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .mobilebar {
    display: none;
  }
}

/* ---------- Rechtsseiten ---------- */
.legal {
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  max-width: 70ch;
}
.legal h1 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin-bottom: 1.6rem;
}
.legal h2 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
  color: var(--gold);
  margin: 2rem 0 0.7rem;
}
.legal p,
.legal ul {
  margin-bottom: 0.9rem;
  color: var(--cream);
}
.legal ul {
  padding-left: 1.3rem;
}
.legal address {
  font-style: normal;
  margin-bottom: 0.9rem;
}
.todo {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-weight: 600;
}

/* ---------- Scroll-Reveal (einziger Effekt: nur opacity + transform) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced Motion: alles aus ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
