/* ============ 1. CSS RESET ============ */

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

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

input,
button,
textarea {
  font: inherit;
}

ul[role="list"] {
  list-style: none;
}

/* ============ 2. DESIGN TOKENS (CSS Custom Properties) ============ */

:root {
  /* Farben — Light/Cream Theme */
  --bg: #faf6ee;
  --bg-soft: #ffffff;
  --bg-muted: #f0e8d6;
  --bg-deep: #2a2522;
  --fg: #1a1714;
  --fg-muted: rgba(26, 23, 20, 0.65);
  --fg-subtle: rgba(26, 23, 20, 0.45);
  --fg-on-dark: #faf6ee;
  --accent: #e63946;
  --accent-dark: #b22d38;
  --accent-soft: #ffe5e7;
  --gold: #c49b5c;
  --border: rgba(26, 23, 20, 0.12);
  --border-strong: rgba(26, 23, 20, 0.2);
  --shadow-soft: 0 1px 3px rgba(26, 23, 20, 0.06), 0 8px 24px rgba(26, 23, 20, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 23, 20, 0.08), 0 20px 40px rgba(26, 23, 20, 0.08);

  /* Typografie */
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --text-fluid-xs: clamp(0.75rem, 0.65rem + 0.35vw, 0.875rem);
  --text-fluid-sm: clamp(0.875rem, 0.8rem + 0.45vw, 1rem);
  --text-fluid-base: clamp(1rem, 0.92rem + 0.35vw, 1.125rem);
  --text-fluid-lg: clamp(1.125rem, 1rem + 0.55vw, 1.375rem);
  --text-fluid-xl: clamp(1.25rem, 1.05rem + 0.85vw, 1.75rem);
  --text-fluid-2xl: clamp(1.5rem, 1.15rem + 1.35vw, 2.25rem);
  --text-fluid-3xl: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  --text-fluid-4xl: clamp(2.25rem, 1.35rem + 3.25vw, 4rem);
  --text-fluid-display: clamp(3rem, 8vw + 1rem, 8rem);

  /* Spacing */
  --container: 1280px;
  --section-y: clamp(4rem, 10vw, 8rem);
  --gap-fluid-sm: clamp(0.75rem, 2vw, 1.25rem);
  --gap-fluid-md: clamp(1.25rem, 3vw, 2rem);
  --gap-fluid-lg: clamp(2rem, 5vw, 4rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --t-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ 3. BASE ============ */

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--text-fluid-base);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-fluid-4xl);
}

h2 {
  font-size: var(--text-fluid-3xl);
}

h3 {
  font-size: var(--text-fluid-2xl);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-size: var(--text-fluid-display);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--accent);
}

::selection {
  background: var(--accent);
  color: white;
}

/* ============ 4. UTILITIES ============ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.eyebrow {
  font-size: clamp(0.65rem, 0.55rem + 0.35vw, 0.75rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.section {
  padding-block: var(--section-y);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-fluid-sm);
  padding: clamp(0.65rem, 1.5vw, 0.85rem) clamp(1.25rem, 3vw, 2rem);
  font-family: var(--font-sans);
  font-size: var(--text-fluid-sm);
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: white;
  box-shadow: 0 0.5rem 2rem rgba(230, 57, 70, 0.35);
}

.btn-secondary {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  color: var(--fg);
  background: var(--bg-soft);
  border-color: var(--fg);
}

.btn-lg {
  padding: clamp(0.85rem, 2vw, 1.1rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: var(--text-fluid-base);
}

.btn-sm {
  padding: clamp(0.45rem, 1vw, 0.55rem) clamp(1rem, 2.5vw, 1.35rem);
  font-size: var(--text-fluid-xs);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: clamp(0.25rem, 0.8vw, 0.35rem) clamp(0.55rem, 1.5vw, 0.75rem);
  font-size: var(--text-fluid-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition:
    background-color var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}

.badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ 5. BACKGROUND NOISE TEXTURE (subtiler Premium-Look wie bar-uno) ============ */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: multiply;
}

body > * {
  position: relative;
  z-index: 1;
}

/* ============ 6. SCROLLBAR ============ */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-muted);
}

::-webkit-scrollbar {
  width: clamp(8px, 1vw, 12px);
}

::-webkit-scrollbar-track {
  background: var(--bg-muted);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border: 2px solid var(--bg-muted);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* ============ 7. RESPONSIVE BREAKPOINTS ============ */

/*
 * Mobile-first — Basis gilt für alle Viewports.
 * Erweiterungen / Feintuning nach Breakpoints:
 *
 * - sm: 640px  — zweispaltige Raster, etwas größere Touch-Ziele
 * - md: 768px  — Navigation / zweite Textspalte
 * - lg: 1024px — Hero-Typografie, breitere Cards
 * - xl: 1280px — max .container-Breite (--container)
 */

@media (min-width: 640px) {
  :root {
    --section-y: clamp(4.5rem, 9vw, 8rem);
  }
}

@media (min-width: 768px) {
  .btn {
    padding: clamp(0.7rem, 1.2vw, 0.9rem) clamp(1.35rem, 2.5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .display {
    letter-spacing: 0.03em;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 clamp(1.5rem, 3vw, 2.5rem);
  }
}

/* ============ 8. SITE HEADER ============ */

.site-header .logo:hover .logo-mark {
  color: var(--fg);
}

.site-header .logo:hover .logo-sub {
  color: var(--fg-muted);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding-block: 1rem;
  transition:
    background var(--t-base),
    backdrop-filter var(--t-base),
    border-color var(--t-base);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  position: relative;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-block;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--fg);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.logo .logo-mark.display {
  font-size: 2rem;
}

.logo-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--fg-muted);
  display: block;
  margin-top: -4px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  position: relative;
  padding-bottom: 4px;
}

.nav-desktop a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--t-fast);
}

.nav-desktop a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition:
    color var(--t-fast),
    background-color var(--t-fast);
}

.nav-toggle:hover {
  color: var(--accent);
  background: rgba(26, 23, 20, 0.06);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform var(--t-base);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile > nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a.btn {
  margin-top: var(--gap-fluid-md);
  font-family: var(--font-sans);
  font-size: var(--text-fluid-base);
  padding-block: clamp(0.75rem, 2vw, 1rem);
  border-bottom: none;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ============ 9. HERO (Light Theme, no bg image) ============ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: clamp(6rem, 14vh, 8rem);  /* Header-Clearance */
  padding-bottom: clamp(4rem, 10vh, 6rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 85%, rgba(196, 155, 92, 0.10) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  z-index: 0;
  width: 60vw;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-size: clamp(3rem, 11vw, 8rem);
  margin-block: 1rem 1.25rem;
  color: var(--fg);
}

.accent-text {
  color: var(--accent);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-cta .btn {
  flex: 1 1 auto;
  min-height: 48px;     /* Touch-Target */
}

@media (min-width: 480px) {
  .hero-cta .btn {
    flex: 0 1 auto;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.hero-trust .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}

.hero-trust-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust strong {
  color: var(--fg);
  font-weight: 600;
}

.hero-trust-sep {
  color: var(--fg-subtle);
}

/* Foto-Karte rechts — auf Mobile versteckt, ab lg sichtbar */
.hero-card {
  display: none;
}

@media (min-width: 1024px) {
  .hero-card {
    display: block;
    position: relative;
    transform: rotate(-2.5deg);
  }
}

.hero-card-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow:
    0 20px 50px rgba(26, 23, 20, 0.12),
    0 6px 16px rgba(26, 23, 20, 0.08);
  aspect-ratio: 4 / 5;
}

.hero-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 12px 24px rgba(230, 57, 70, 0.35);
  transform: rotate(2.5deg);  /* gleicht Karten-Rotation aus */
}

.hero-card-tag span:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-card-tag strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--fg-muted);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: bounce 2.4s infinite;
}

.hero-scroll:hover { color: var(--accent); }

.hero-scroll:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

/* ============ 10. SPEISEKARTE (MENU) ============ */

.menu .section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 48rem;
}

.menu .section-title.display,
.menu .section-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: var(--text-fluid-lg);
  color: var(--fg-muted);
  line-height: 1.65;
  margin-top: 1rem;
}

.deal-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(230, 57, 70, 0.25);
  transform: rotate(-1deg);
}

.deal-banner strong {
  display: block;
  font-size: var(--text-fluid-base);
  margin-bottom: 0.25rem;
}

.deal-banner p {
  margin: 0;
  font-size: var(--text-fluid-sm);
  opacity: 0.95;
}

.deal-flame {
  flex-shrink: 0;
  font-size: 2.5rem;
  line-height: 1;
}

.deal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.menu-tab {
  padding: 0.6rem 1.2rem;
  font-family: inherit;
  font-size: var(--text-fluid-sm);
  color: var(--fg-muted);
  cursor: pointer;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition:
    background-color var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}

.menu-tab:hover {
  color: var(--fg);
  border-color: var(--fg-subtle);
}

.menu-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.menu-tab.active {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
}

.menu-category[data-hidden="true"] {
  display: none;
}

.category-title.display,
.menu .category-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-block: 2rem 1.5rem;
}

.menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition:
    border-color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
}

.menu-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.15);
}

.menu-item-body {
  flex: 1;
  min-width: 0;
}

.menu-item-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.menu-item-heading .menu-item-name {
  margin: 0;
}

.menu .badge {
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
}

.menu .badge-popular {
  color: white;
  background: var(--accent);
}

.menu .badge-popular:hover {
  color: white;
  border-color: transparent;
}

.menu .badge-veggie {
  color: white;
  background: #2d5a3d;
}

.menu .badge-veggie:hover {
  color: white;
  border-color: transparent;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.menu-item-desc {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.menu-item-allergens {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--fg-subtle);
}

.menu-item-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.menu-item-variants span {
  padding: 4px 10px;
  font-size: 0.8rem;
  color: var(--fg);
  background: var(--bg-muted);
  border-radius: var(--radius-full);
}

.menu-item-price {
  flex-shrink: 0;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--accent);
  white-space: nowrap;
}

.menu-allergen-details {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 1rem 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.menu-allergen-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--fg);
}

.menu-allergen-details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.menu-allergen-legend {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.menu-allergen-legend p + p {
  margin-top: 0.75rem;
}

.menu-footnote {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--fg-subtle);
  text-align: center;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ 11. STANDORT (LOCATION) ============ */

.section.location {
  background: var(--bg-muted);
}

.loc-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.location .section-title.display,
.location .section-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 0;
}

.loc-address {
  margin-block: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: normal;
  line-height: 1.7;
  color: var(--fg);
}

.loc-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.loc-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.loc-list svg,
.loc-list [data-lucide] {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent);
}

.loc-list strong {
  display: block;
  margin-bottom: 2px;
}

.loc-list span,
.loc-list a {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.loc-list a:hover {
  color: var(--accent);
}

.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.loc-map {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
}

.loc-pin {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
}

.loc-pin svg,
.loc-pin [data-lucide] {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
}

@media (min-width: 1024px) {
  .loc-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .loc-map {
    aspect-ratio: auto;
    height: 100%;
    min-height: 18rem;
  }
}

/* ============ 12. ÜBER UNS (ABOUT) ============ */

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: 1fr;
}

.about-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-text .section-title.display,
.about-text .section-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--border);
}

.feature-card {
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-card i svg {
  width: 32px;
  height: 32px;
}

.feature-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--fg);
}

.feature-card span {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============ 13. FOOTER ============ */

.site-footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: rgba(250, 246, 238, 0.75);
  background: var(--bg-deep);
  border-top: none;
}

.site-footer h4,
.site-footer .logo-mark,
.site-footer strong {
  color: var(--fg-on-dark);
}

.site-footer .logo-sub {
  color: rgba(250, 246, 238, 0.65);
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer .footer-col > p {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  grid-template-columns: 1fr;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg-on-dark);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.site-footer .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--fg-on-dark);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast);
}

.site-footer .socials a:hover {
  color: white;
  background: var(--accent);
  transform: translateY(-2px);
}

.socials a svg,
.socials a [data-lucide] {
  width: 1.15rem;
  height: 1.15rem;
}

.site-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav a {
  margin-left: 1rem;
}

.footer-bottom nav a:first-child {
  margin-left: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============ 14. RECHTLICHE SEITEN (LEGAL) ============ */

.legal {
  max-width: 800px;
  padding-block: 8rem 4rem;
}

.legal h1 {
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: var(--text-fluid-3xl);
  color: var(--fg);
}

.legal h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--fg);
}

.legal p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

.legal ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.legal .legal-warn {
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--fg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
}

.legal .placeholder {
  padding: 0 0.15em;
  font-weight: 600;
  color: var(--accent);
  background: rgba(230, 57, 70, 0.12);
  border-radius: 2px;
}

/* ============ 15. BACK TO TOP & COOKIE BANNER ============ */

.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: white;
  cursor: pointer;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity var(--t-base),
    transform var(--t-base),
    background-color var(--t-fast);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent-dark);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.back-to-top svg,
.back-to-top [data-lucide] {
  width: 1.35rem;
  height: 1.35rem;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 60;
  display: flex;
  max-width: 560px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--fg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--fg-muted);
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--fg);
}

.cookie-banner .cookie-banner-ok {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner .cookie-banner-ok {
    width: 100%;
  }
}

/* ============ 16. ROUTE GALLERY ============ */

.route-wrap {
  padding-top: clamp(3rem, 6vw, 5rem);
  margin-top: clamp(4rem, 8vw, 6rem);
  border-top: 1px solid var(--border);
}

.route-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.route-wrap .route-title.display,
.route-wrap h3.route-title {
  margin-block: 0.75rem 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.route-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--fg-muted);
}

.route-steps {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .route-steps {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-step {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base);
}

.route-step:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.18);
  transform: translateY(-4px);
}

.route-step .route-num.display,
.route-step .route-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
  place-items: center;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.route-figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-muted);
}

.route-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.route-step:hover .route-figure img {
  transform: scale(1.05);
}

.route-text {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
  gap: 0.4rem;
}

.route-text strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.route-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

.route-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.route-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ============ 14. ABOUT — UPDATED ============ */

.about-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.about-lead {
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--fg);
}

.about-lead strong {
  font-weight: 700;
}

.about-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.about-loc {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  background: var(--bg-muted);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
}

.about-loc i,
.about-loc [data-lucide] {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 3px;
  color: var(--accent);
}

.about-loc strong {
  font-weight: 700;
  color: var(--fg);
}

.about-en {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--fg-subtle);
  border-top: 1px dashed var(--border);
}

.about-en strong {
  font-style: normal;
  color: var(--accent);
}

/* ============ 15. MOBILE POLISH (≤ 767px) ============ */

@media (max-width: 767px) {
  /* Header — auf Mobile immer hellen Cream-Bg + Blur, sonst überdeckt das Logo den Hero schlecht */
  .site-header {
    background: rgba(250, 246, 238, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding-block: 0.65rem;
  }

  /* Logo etwas kompakter */
  .logo-mark,
  .logo .logo-mark.display { font-size: 1.6rem; }
  .logo-sub { font-size: 0.7rem; margin-top: -2px; }

  /* Burger größerer Touch-Target */
  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  /* Hero-CTAs vollbreit bei sehr kleinen Screens */
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Hero Sub etwas kleiner — sonst zu lang */
  .hero-sub { font-size: 1.05rem; line-height: 1.5; }

  /* Standort-Grid bricht sauber */
  .loc-grid { gap: 2rem; }
  .loc-actions { flex-direction: column; }
  .loc-actions .btn { width: 100%; }
  .loc-map { aspect-ratio: 4 / 3; }

  /* Menü-Tabs horizontal scrollbar machen */
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 44px;
  }

  /* Menü-Item: variants flex-wrap, kein Quetschen */
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-item-price { align-self: flex-end; }

  /* Über uns Grid stacked */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img img { aspect-ratio: 16 / 10; }

  /* Features 2x2 statt 4x1 */
  .features { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }

  /* Deal-Banner auf Mobile entzerren */
  .deal-banner {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    transform: rotate(-1deg);
  }
  .deal-flame { font-size: 2rem; }
  .deal-price { font-size: 1.5rem; }

  /* Route-Step: Bild-Aspect-Ratio knapper */
  .route-figure { aspect-ratio: 4 / 3; }

  /* Footer-Grid stacked */
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-bottom nav a { margin-left: 0; margin-right: 1rem; }

  /* Cookie-Banner stack */
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner button { width: 100%; }

  /* Back-to-top kleiner und höher */
  .back-to-top { right: 1rem; bottom: 5.5rem; width: 44px; height: 44px; }
}

/* Touch-Target Mindestgröße für ALLE Buttons & Links auf Touch-Geräten */
@media (hover: none) and (pointer: coarse) {
  .btn, .menu-tab, .nav-mobile a.btn { min-height: 44px; }
}

/* Body bei offenem Mobile-Menü scrollbar deaktivieren — bereits via JS */

/* ============ 16. GOOGLE-STYLE REVIEWS ============ */

.reviews {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--border);
}

.reviews-header {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.reviews-headline .eyebrow { display: block; margin-bottom: 0.5rem; }

.reviews-headline h3.display {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 0.85rem;
  color: var(--fg);
}

.reviews-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.reviews-summary-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.reviews-rating {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: var(--fg-muted);
  letter-spacing: 0;
}

.reviews-sub-sep {
  color: var(--fg-subtle);
}

.reviews-stars {
  display: inline-flex;
  gap: 2px;
}

.reviews-stars--sm svg {
  width: 14px;
  height: 14px;
  fill: #FBBC04;
}

.reviews-stars--sm svg.star-empty {
  fill: #dadce0;
}

/* Review-Karten-Grid */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.5rem 1.65rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--avatar-bg, #5f6368);
  color: white;
  border-radius: 50%;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0; /* erlaubt Truncation */
}

.review-author strong {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 600;
  line-height: 1.2;
}

.review-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.3;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 1px 6px;
  background: rgba(26, 115, 232, 0.1);
  color: #1a73e8;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0;
}

.review-badge svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.review-stars {
  display: inline-flex;
  gap: 1px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBC04;
}

.review-time {
  font-size: 0.8rem;
  color: var(--fg-subtle);
}

.review-new {
  font-size: 0.7rem;
  font-weight: 600;
  color: #137333;
  letter-spacing: 0.02em;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg);
  margin: 0;
  /* Soft 5-line clamp damit alle Cards gleich hoch wirken */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.reviews-google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Mobile: horizontaler Scroll wie auf Google selbst */
@media (max-width: 767px) {
  .review-grid {
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: -1rem;
    padding-inline: 1rem;
    padding-bottom: 0.5rem;
  }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card {
    scroll-snap-align: start;
  }
}
