/* ==========================================================================
   Lokale Schriften – DSGVO-konform
   Variable Fonts, komplett aus dem Projektverzeichnis. Keine externen CDNs.
   Jost  = geometrische Display-Sans (Versalien-Headlines)
   Inter = Lesetext
   ========================================================================== */
@font-face {
  font-family: 'Jost';
  src: url('./assets/fonts/jost-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext deckt die Sonderzeichen der Balkan-Gerichte ab (Ćevapčići, Pljeskavica) */
@font-face {
  font-family: 'Jost';
  src: url('./assets/fonts/jost-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  /* Markenrot wie Schwesterseite Marbach – eigenstaendiges Design ueber Typografie
     (geometrische Sans-Versalien) und kantige Formensprache statt ueber die Farbe. */
  --clr-brand:        #C8251A;
  --clr-brand-dark:   #9E1A10;
  --clr-brand-light:  #E03428;
  --clr-gold:         #C8251A;
  --clr-gold-light:   #E03428;
  --clr-dark:         #000000;
  --clr-dark-2:       #0A0A0A;
  --clr-dark-3:       #141414;
  --clr-cream:        #0A0A0A;
  --clr-cream-2:      #111111;
  --clr-cream-3:      #1A1A1A;
  --clr-white:        #ffffff;
  --clr-text:         #F2E8E0;
  --clr-text-mid:     #C0A090;
  /* auf 4,9:1 aufgehellt – der alte Wert #7A5A50 lag mit 3,2:1 unter WCAG AA */
  --clr-text-light:   #A08278;
  --clr-border:       rgba(255,255,255,0.08);
  --clr-border-dark:  rgba(255,255,255,0.16);
  --clr-wowobot:      #22b8e0;

  /* Markenrot bleibt fuer Flaechen; kleine Texte auf Schwarz brauchen den
     helleren Ton, sonst nur 3,5:1 Kontrast. */
  --clr-brand-text:   #FF5A4A;

  --font-heading: 'Jost', 'Futura', 'Century Gothic', 'Trebuchet MS', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);
  --duration:    0.35s;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   18px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.16);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.24);
  --shadow-brand: 0 8px 32px rgba(200,37,26,0.40);

  --nav-h:       72px;
  --max-w:       1200px;
  --max-w-text:  780px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* Ohne diese Zeile waechst die Initial Containing Block bei Ueberbreite mit –
     der fixierte Header wurde dadurch auf schmalen Geraeten breiter als der
     Viewport und der Burger rutschte aus dem Bild. */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-dark);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
address { font-style: normal; }
abbr[title] { text-decoration: underline dotted; cursor: help; }

a {
  color: var(--clr-brand-text);
  text-decoration: none;
  transition: color var(--duration) var(--ease-inout);
}
a:hover { color: var(--clr-white); }

:focus-visible {
  outline: 3px solid var(--clr-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.14;
  color: var(--clr-text);
  /* Lange Komposita wie "Handwerkskunst" oder "Oeffnungszeiten" sprengten bei
     320px Viewport-Breite sonst das Grid. */
  overflow-wrap: break-word;
  hyphens: auto;
}
h1, h2 { text-transform: uppercase; letter-spacing: 0.015em; }

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

em { font-style: normal; color: var(--clr-gold); }

/* ==========================================================================
   Layout utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: clamp(4rem, 10vw, 7rem);
}
.section-cream { background-color: var(--clr-cream); }
.section-dark  { background-color: var(--clr-dark); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration) var(--ease-inout),
              color var(--duration) var(--ease-inout),
              border-color var(--duration) var(--ease-inout),
              transform 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
  min-height: 48px;
}
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
}

.btn-primary {
  background: var(--clr-brand);
  color: var(--clr-white);
  border-color: var(--clr-brand);
  box-shadow: var(--shadow-brand);
}
@media (hover: hover) {
  .btn-primary:hover {
    background: var(--clr-brand-dark);
    border-color: var(--clr-brand-dark);
    box-shadow: 0 12px 40px rgba(200,37,26,0.35);
    color: var(--clr-white);
  }
}

.btn-outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.6);
}
@media (hover: hover) {
  .btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--clr-white);
    color: var(--clr-white);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--clr-brand);
  border-color: var(--clr-border-dark);
}
@media (hover: hover) {
  .btn-ghost:hover {
    background: var(--clr-cream);
    border-color: var(--clr-brand);
    color: var(--clr-brand);
  }
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  min-height: 54px;
}


/* ==========================================================================
   Section helpers
   ========================================================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-brand-text);
  margin-bottom: 0.75rem;
}
.section-tag-light { color: var(--clr-brand-text); }

.section-title {
  margin-bottom: 1.25rem;
  color: var(--clr-text);
}
.section-title-light { color: var(--clr-white); }

.section-desc {
  max-width: 60ch;
  color: var(--clr-text-mid);
  font-size: 1.05rem;
}

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

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background var(--duration) var(--ease-inout),
              box-shadow var(--duration) var(--ease-inout);
}
/* nav-open: bei offenem Mobilmenü muss der Header deckend sein, sonst
   scheinen Bilder durch und das Logo ist nicht mehr lesbar */
#header.scrolled,
#header.nav-open {
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-flame {
  color: var(--clr-gold);
  display: flex;
  align-items: center;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-brand-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo:hover .logo-name { color: var(--clr-brand-text); }

/* Nav Links */
.nav-links {
  display: none;
  gap: 0;
  margin-left: auto;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color var(--duration);
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  display: none;
  margin-left: 0.5rem;
  padding: 0.55rem 1.35rem;
  min-height: 44px;
  font-size: 0.875rem;
}
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

/* Burger Button */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration);
}
@media (min-width: 900px) { .burger { display: none; } }

.burger:hover { background: rgba(255,255,255,0.14); }

.burger-line {
  width: 100%;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-inout),
              opacity var(--duration);
  transform-origin: center;
}
.burger.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem 1.25rem calc(2rem + env(safe-area-inset-bottom, 0px));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease-out);
  z-index: 999;
  will-change: transform;
}
.mobile-nav.is-open {
  transform: translateY(0);
}
@media (min-width: 900px) { .mobile-nav { display: none; } }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color var(--duration), padding-left var(--duration);
}
.mobile-nav-link:hover {
  color: var(--clr-white);
  padding-left: 0.5rem;
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mobile-nav-contact {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  color: var(--clr-brand-text);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.mobile-nav-contact address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration);
}
.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background-color: var(--clr-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Der Mittelwert lag bei 0.28 – genau dort steht die Subline ueber den
     hellsten Stellen des Grill-Videos. */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.48) 42%,
    rgba(0,0,0,0.78) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero-glow-1 {
  width: 500px; height: 320px;
  right: -80px; top: -60px;
  background: radial-gradient(ellipse at center, rgba(200,37,26,0.18) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero-glow-2 {
  width: 400px; height: 280px;
  left: -60px; bottom: -40px;
  background: radial-gradient(ellipse at center, rgba(192,138,48,0.10) 0%, transparent 70%);
  animation-delay: 3s;
}

@keyframes glowPulse {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 0.9; transform: scale(1.06); }
}

.hero-grill-lines { display: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
  .hero-video { display: none; }
  .hero-bg {
    background: url('./hero-poster.jpg') center / cover no-repeat;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 780px;
  margin-inline: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(0,0,0,0.9);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tag-dot { animation: none; }
}

.hero-title {
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  font-size: clamp(2rem, 7vw, 4.2rem);
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
}
.hero-title em {
  color: var(--clr-gold);
  font-style: normal;
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.hero-scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-inner { animation: none; }
}

/* Mobile: Abstand zwischen CTAs und „Entdecken“ */
@media (max-width: 899px) {
  .hero {
    padding-bottom: 4.5rem;
  }
  .hero-content {
    padding-bottom: 3.5rem;
  }
  .hero-scroll {
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--clr-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--clr-white);
}
.trust-icon { color: var(--clr-gold); flex-shrink: 0; }
.trust-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}
.trust-desc {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   ÜBER UNS
   ========================================================================== */
.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
/* Grid-Items haben min-width: auto und wuerden sonst von ihrem breitesten
   Inhalt aufgeblasen statt umzubrechen. */
.about-grid > * { min-width: 0; }
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.about-content { max-width: 56ch; }
.about-content .section-title { margin-top: 0.25rem; }
.about-content .section-lead {
  font-size: 1.1rem;
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-content p {
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
}

/* Aufklappbarer Textteil – haelt die mobile Seite kurz, ohne Inhalt zu streichen */
.about-more { margin-bottom: 1.5rem; }
.about-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-brand-text);
}
.about-more-toggle::-webkit-details-marker { display: none; }
.about-more-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.about-more-icon::before,
.about-more-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-inout), opacity 0.3s var(--ease-inout);
}
.about-more-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.about-more-icon::after  { left: 6px; top: 0; width: 2px; height: 14px; }
.about-more[open] .about-more-icon::after { transform: scaleY(0); opacity: 0; }
.about-more-body { padding-top: 0.75rem; }
.about-more-body p:last-child { margin-bottom: 0; }
/* Ab Tablet ist der Text ohnehin offen – dann ohne Toggle-Optik */
@media (min-width: 860px) {
  .about-more[open] .about-more-toggle { display: none; }
  .about-more-body { padding-top: 0; }
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-dark-2);
  box-shadow: var(--shadow-lg);
}

.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
@media (hover: hover) {
  .about-photo:hover .about-photo-img { transform: scale(1.04); }
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.about-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
}

.badge-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--clr-brand-text);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 1rem 0.75rem;
  background: rgba(200,37,26,0.12);
  border: 1px solid rgba(200,37,26,0.30);
  border-radius: var(--radius-md);
}
.stat-card strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-brand-text);
}
.stat-card span {
  font-size: 0.78rem;
  color: var(--clr-text-mid);
}

/* ==========================================================================
   SPEISEKARTE
   ========================================================================== */


/* ── Strukturierte Karte (Accordion) ──────────────────────────────────────────
   Ersetzt die abfotografierte Karte als Primaerdarstellung: auf dem Handy
   lesbar ohne Zoom und als Text fuer Suchmaschinen indexierbar. */
.menu-beef-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 46rem;
  margin: 0 auto 2rem;
  padding: 0.85rem 1.1rem;
  background: rgba(200,37,26,0.10);
  border: 1px solid rgba(200,37,26,0.28);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}
.menu-beef-note svg { flex-shrink: 0; color: var(--clr-brand-text); }
.menu-beef-note strong { color: var(--clr-text); }

.menu-accordion {
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-cat {
  background: var(--clr-cream-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.menu-cat[open] { border-color: rgba(255,255,255,0.16); }

.menu-cat-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.25rem 1rem;
  padding: 1.1rem 1.25rem;
  min-height: 56px;
  cursor: pointer;
  list-style: none;
  transition: background var(--duration) var(--ease-inout);
}
.menu-cat-head::-webkit-details-marker { display: none; }
@media (hover: hover) {
  .menu-cat-head:hover { background: rgba(255,255,255,0.03); }
}

.menu-cat-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--clr-text);
}
.menu-cat-meta {
  grid-column: 1;
  font-size: 0.8rem;
  color: var(--clr-text-light);
}

/* Plus/Minus aus zwei Pseudo-Elementen – kein Icon-Font noetig */
.menu-cat-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.menu-cat-icon::before,
.menu-cat-icon::after {
  content: '';
  position: absolute;
  background: var(--clr-brand-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-inout), opacity 0.3s var(--ease-inout);
}
.menu-cat-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.menu-cat-icon::after  { left: 9px; top: 0; width: 2px; height: 20px; }
.menu-cat[open] .menu-cat-icon::after { transform: scaleY(0); opacity: 0; }

.menu-cat-body {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid var(--clr-border);
  padding-top: 1rem;
}
.menu-cat-note {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
}

.menu-list { display: flex; flex-direction: column; }

/* Gerichte mit Beschreibung und ggf. mehreren Portionsgroessen */
.menu-row {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.menu-row:last-child { border-bottom: none; }

.menu-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: none;
  letter-spacing: 0;
}
.menu-item-no {
  display: inline-block;
  min-width: 1.6em;
  color: var(--clr-brand-text);
  font-variant-numeric: tabular-nums;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-item-desc {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}
.menu-item-allergens {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--clr-text-light);
  white-space: nowrap;
}

.menu-variants {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.5rem;
}
.menu-variants li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--clr-text-mid);
}
/* Fuehrungspunkte zwischen Bezeichnung und Preis */
.menu-variants li::before {
  content: '';
  order: 1;
  flex: 1;
  height: 1px;
  margin-bottom: 0.28em;
  border-bottom: 1px dotted rgba(255,255,255,0.16);
}
.menu-variants li span { order: 0; }
.menu-variants li b {
  order: 2;
  color: var(--clr-text);
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Kompakte Zeilen fuer Getraenke, Salate, Beilagen */
.menu-list-compact { gap: 0; }
.menu-row-compact {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.92rem;
  color: var(--clr-text-mid);
}
.menu-row-compact:last-child { border-bottom: none; }
.menu-row-compact::before {
  content: '';
  order: 1;
  flex: 1;
  height: 1px;
  margin-bottom: 0.28em;
  border-bottom: 1px dotted rgba(255,255,255,0.16);
}
.menu-compact-name { order: 0; color: var(--clr-text); }
.menu-row-compact b {
  order: 2;
  color: var(--clr-text);
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-inline-allergens {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--clr-text-light);
}

.menu-subhead {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-brand-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.5rem 0 0.5rem;
}
.menu-subhead:first-child { margin-top: 0; }
.menu-subhead .menu-item-no { color: inherit; }

.menu-legend-grid { display: grid; gap: 1.5rem; }
@media (min-width: 560px) {
  .menu-legend-grid { grid-template-columns: 1fr 1fr; }
}
.menu-legend-list { display: flex; flex-direction: column; gap: 0.3rem; }
.menu-legend-list li {
  font-size: 0.88rem;
  color: var(--clr-text-mid);
}
.menu-legend-list b { color: var(--clr-brand-text); margin-right: 0.4rem; }

/* Original-Scans, standardmaessig eingeklappt */
.menu-scans {
  max-width: 46rem;
  margin: 2rem auto 0;
}
.menu-scans-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  background: transparent;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  cursor: pointer;
  list-style: none;
  transition: border-color var(--duration), color var(--duration);
}
.menu-scans-toggle::-webkit-details-marker { display: none; }
@media (hover: hover) {
  .menu-scans-toggle:hover { border-color: var(--clr-brand); color: var(--clr-text); }
}
.menu-scans .menu-img-grid { margin-top: 1.25rem; }

.menu-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 560px) {
  .menu-img-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .menu-img-grid { grid-template-columns: repeat(4, 1fr); }
}

.menu-img-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  margin: 0;
  background: #000;
  cursor: zoom-in;
}
.menu-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease-out);
  object-fit: cover;
}
@media (hover: hover) {
  .menu-img-item:hover .menu-img { transform: scale(1.03); }
}


/* ==========================================================================
   ABLAUF
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.25rem;
  background: var(--clr-dark);
}

.step-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-brand);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.2rem;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

.step-connector { display: none; }

.steps-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ==========================================================================
   STANDORT & ÖFFNUNGSZEITEN
   ========================================================================== */
.location-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .location-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

/* Map */
.map-wrap {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

.map-container {
  background: var(--clr-dark);
  line-height: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.map-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.map-container:hover .map-hero-img { transform: scale(1.03); }

.map-address-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--clr-dark-2);
  border-top: 1px solid var(--clr-border);
}
.map-address-info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  min-width: 0;
}
.map-address-info svg { flex-shrink: 0; color: var(--clr-brand); margin-top: 1px; }

/* Opening Hours */
.opening-hours {
  background: var(--clr-dark-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
}
.hours-title svg { color: var(--clr-brand); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}
.hours-row td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
  color: var(--clr-text);
}
.hours-row:last-child td { border-bottom: none; }
.hours-row .hours-day { font-weight: 600; padding-right: 1rem; }
.hours-row .hours-time { color: var(--clr-text-mid); text-align: right; }
.hours-closed .hours-day { color: var(--clr-text-light); }


.hours-row.today td {
  color: var(--clr-brand-text);
  font-weight: 700;
}
.hours-row.today .hours-time { color: var(--clr-brand-text); }

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--clr-text-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.hours-note svg { flex-shrink: 0; color: var(--clr-brand-text); }

.hours-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--clr-cream);
  border: 2px solid var(--clr-brand);
  border-radius: 4px;
  color: var(--clr-brand-text);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: background var(--duration), transform 0.2s;
  min-height: 48px;
}
@media (hover: hover) {
  .hours-phone-btn:hover {
    background: var(--clr-brand);
    color: var(--clr-white);
    transform: translateY(-2px);
  }
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */


.contact-header {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 700px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem 1.35rem;
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: border-color var(--duration), box-shadow var(--duration), transform var(--duration);
}
a.contact-card { cursor: pointer; }
@media (hover: hover) {
  a.contact-card:hover {
    border-color: var(--clr-brand);
    box-shadow: 0 8px 28px rgba(200,37,26,0.12);
    transform: translateY(-2px);
  }
}
.contact-card strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}
.contact-card span,
.contact-card address {
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.5;
  font-style: normal;
}

.contact-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}


.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  color: var(--clr-brand);
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.form-group input.is-invalid,
.form-group select.is-invalid { border-color: #d64242; }

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  min-height: 1em;
}


.form-confirm-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--clr-text-mid);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.form-confirm-hint:empty { display: none; }
.form-confirm-hint.is-open { color: #6fcf8a; border-color: rgba(111,207,138,0.2); background: rgba(111,207,138,0.05); }
.form-confirm-hint.is-closed { color: #e0a030; border-color: rgba(224,160,48,0.2); background: rgba(224,160,48,0.05); }

/* Form Success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 2rem;
}
.form-success[hidden] { display: none; }

.form-success h3 { color: var(--clr-text); }
.form-success p { color: var(--clr-text-mid); max-width: 44ch; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--clr-dark);
  padding-top: clamp(3.5rem, 8vw, 6rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.logo-light .logo-name { color: var(--clr-white); }
.logo-light .logo-sub  { color: var(--clr-brand-text); }

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 44ch;
}

.footer-address {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.footer-address a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--clr-brand-text);
  font-weight: 600;
  text-decoration: none;
}
.footer-address a:hover { color: var(--clr-white); }

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-legal-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

/* inline-flex + min-height: 44px Touch-Flaeche statt der reinen 17px Textzeile */
.footer-nav a,
.footer-legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--duration);
}
.footer-nav a:hover,
.footer-legal-nav a:hover { color: var(--clr-white); }

.footer-hours-mini p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.powered-by {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.powered-by a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--clr-wowobot);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--duration);
}
.powered-by a:hover { opacity: 0.8; color: var(--clr-wowobot); }

@media (max-width: 639px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .powered-by { justify-content: center; }
}

/* ==========================================================================
   SCROLL-TO-TOP BUTTON
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.5rem + env(safe-area-inset-right, 0px));
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-brand);
  color: var(--clr-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  transition: transform 0.2s var(--ease-out), opacity 0.3s, background 0.2s;
}
.scroll-top-btn[hidden] { display: none; }
@media (hover: hover) {
  .scroll-top-btn:hover { transform: translateY(-3px); background: var(--clr-brand-dark); }
}

/* ==========================================================================
   Responsive – additional breakpoints
   ========================================================================== */
@media (max-width: 639px) {
  /* Spacing */
  .section { padding-block: 2.5rem; }
  .section-header { margin-bottom: 1.5rem; }
  .section-title { margin-bottom: 0.75rem; }
  .section-desc { font-size: 0.95rem; }

  /* Hero */
  .hero { min-height: 85svh; }
  .hero-content { padding: 1.5rem 1rem; }
  .hero-tag { margin-bottom: 1rem; font-size: 0.8rem; }
  .hero-sub { margin-bottom: 1.75rem; font-size: 0.95rem; }

  /* About */
  .about-stats { display: none; }
  .about-photo { aspect-ratio: 3/2; }

  

  /* Steps */
  .step-item { padding: 1.25rem 0.75rem; gap: 0.5rem; }
  .step-title { font-size: 0.85rem; }
  .step-desc { font-size: 0.82rem; }

  

  
  
  

  

  /* Gallery */
  .gallery-section { padding-bottom: 2.5rem; }

  
  .form-confirm-hint { font-size: 0.82rem; }
}

@media (max-width: 399px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  h1 { font-size: 2rem; }
  .container { padding-inline: 1rem; }
  .step-item { padding: 1rem 0.5rem; }
}

/* ==========================================================================
   BEWERTUNGEN LAUFBAND
   ========================================================================== */
.reviews-section {
  background: var(--clr-cream);
  overflow: hidden;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.reviews-header { text-align: center; }

.reviews-score-bar {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.reviews-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.reviews-avg-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1;
}

.reviews-stars-row {
  display: flex;
  gap: 3px;
  color: #F5A623;
}

.reviews-platform {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  letter-spacing: 0.04em;
}

/* Ticker Wrapper */
.ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 0.25rem;
  margin-block: 2.5rem;
  cursor: default;
  /* Touch-scroll auf Mobilgeräten erlauben */
  touch-action: pan-x;
}

/* Seitliche Fade-Effekte */
.ticker-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.ticker-fade-left  {
  left: 0;
  background: linear-gradient(to right, var(--clr-cream) 0%, transparent 100%);
}
.ticker-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--clr-cream) 0%, transparent 100%);
}

/* Ticker Track – CSS-Animation */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.75rem 1rem;
  animation: ticker-scroll 55s linear infinite;
  will-change: transform;
}

.ticker-wrapper:hover .ticker-track,
.ticker-wrapper:focus-within .ticker-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    overflow-x: auto;
    width: 100%;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 1.25rem;
  }
  .ticker-track::-webkit-scrollbar { display: none; }
  .ticker-fade { display: none; }
}

/* Review Card */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 340px;
  min-width: 280px;
  max-width: 90vw;
  padding: 1.5rem;
  background: var(--clr-dark-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  user-select: none;
}

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

.review-card-header {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-white);
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-badge {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.review-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-border);
}
.review-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-brand-text);
}
.review-date {
  font-size: 0.78rem;
  color: var(--clr-text-light);
}

/* Gesamt-Score */
.reviews-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.875rem 1.25rem;
  background: rgba(192,138,48,0.08);
  border: 1px solid rgba(192,138,48,0.18);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--clr-text-mid);
  line-height: 1.55;
}

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery-section { padding-bottom: clamp(3.5rem, 8vw, 6rem); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 0.875rem;
  }
}
@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.gallery-item--wide {
  grid-column: span 1;
}
.gallery-item--tall {
  grid-row: span 1;
}
@media (min-width: 640px) {
  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item--tall {
    grid-row: span 2;
  }
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.5s var(--ease-out);
}
@media (hover: hover) {
  .gallery-item:hover .gallery-img { transform: scale(1.06); }
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 0.875rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
@media (hover: hover) {
  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 639px) {
  .gallery-caption { opacity: 1; transform: none; }
  .gallery-item--hide-mobile { display: none; }
}


/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-inout);
  touch-action: manipulation;
  /* Wischgesten im Overlay dürfen die Seite dahinter nicht mitscrollen */
  overscroll-behavior: contain;
  -webkit-user-select: none;
  user-select: none;
}
.gallery-lightbox.lb-open { opacity: 1; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 3, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lb-close {
  position: absolute;
  top: max(0.85rem, env(safe-area-inset-top, 0px));
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  z-index: 5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--clr-white);
  cursor: pointer;
  transition: background 0.2s;
  touch-action: manipulation;
}
.lb-close:hover { background: rgba(255,255,255,0.28); }

.lb-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: min(100%, 1100px);
  max-height: 90svh;
}

.lb-content {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(90vw, 1000px);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox.lb-open .lb-content { transform: scale(1); }

.lb-img {
  display: block;
  max-width: 100%;
  max-height: 80svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-user-drag: none;
}

.lb-counter {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  pointer-events: none;
}

.lb-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: var(--clr-white);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.lb-nav:hover { background: rgba(255,255,255,0.26); }
.lb-nav:active { transform: scale(0.94); }
.lb-nav[hidden] { display: none; }

@media (max-width: 700px) {
  .gallery-lightbox {
    padding:
      max(3.5rem, calc(env(safe-area-inset-top, 0px) + 3rem))
      0.5rem
      max(1rem, env(safe-area-inset-bottom, 0px));
  }
  .lb-stage {
    width: 100%;
    max-height: none;
    gap: 0;
  }
  .lb-content {
    max-width: 100%;
  }
  .lb-img {
    max-height: 72svh;
    border-radius: 10px;
  }
  .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.45);
    border-color: rgba(255,255,255,0.3);
  }
  .lb-prev { left: 0.35rem; }
  .lb-next { right: 0.35rem; }
  .lb-nav:active { transform: translateY(-50%) scale(0.94); }
  .lb-close {
    width: 44px;
    height: 44px;
  }
  .lb-counter {
    margin-top: 0.75rem;
  }
}


/* ==========================================================================
   Gerichte (Dish cards) · FAQ · Narrow container  — Winnenden-spezifisch
   ========================================================================== */
.container-narrow { max-width: 820px; }


.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: var(--clr-cream-2); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem; color: var(--clr-text);
  transition: color 0.25s var(--ease-inout);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--clr-brand); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--clr-brand); border-radius: 2px;
  transition: transform 0.3s var(--ease-inout);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-a { padding: 0 1.3rem 1.2rem; color: var(--clr-text-mid); line-height: 1.65; }
.faq-a p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .dish-media img, .faq-icon::before, .faq-icon::after { transition: none; }
}
