/* ==========================================================================
   Lokale Schriften – DSGVO-konform
   Schriften bitte in /assets/fonts/ ablegen und @font-face hier aktivieren.
   Beispiel:
   @font-face {
     font-family: 'Heading';
     src: url('./assets/fonts/cormorant-garamond-bold.woff2') format('woff2');
     font-weight: 700;
     font-style: normal;
     font-display: swap;
   }
   ========================================================================== */

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --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;
  --clr-text-light:   #7A5A50;
  --clr-border:       rgba(255,255,255,0.08);
  --clr-border-dark:  rgba(255,255,255,0.16);
  --clr-wowobot:      #22b8e0;

  --font-heading: Georgia, 'Palatino Linotype', Palatino, serif;
  --font-body:    '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:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --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.38);

  --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;
}

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-decoration: none;
  transition: color var(--duration) var(--ease-inout);
}
a:hover { color: var(--clr-brand-dark); }

: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.2;
  color: var(--clr-text);
}

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: italic; 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: 100px;
  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;
}
.btn-full { width: 100%; justify-content: center; }

/* ==========================================================================
   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);
  margin-bottom: 0.75rem;
}
.section-tag-light { color: var(--clr-gold-light); }

.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);
}
#header.scrolled {
  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;
  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.65rem;
  font-weight: 500;
  color: var(--clr-gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo:hover .logo-name { color: var(--clr-gold-light); }

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

.nav-link {
  display: block;
  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: 42px;
  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;
  color: var(--clr-gold-light);
  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;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.42) 40%,
    rgba(0,0,0,0.84) 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-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: 100px;
  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);
}
.hero-title em {
  color: var(--clr-gold);
  font-style: italic;
}

.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: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  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; }
}

/* ==========================================================================
   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.75rem;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   ÜBER UNS
   ========================================================================== */
.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@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;
}
.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: 100px;
  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-gold-light);
}

.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.85rem;
  font-weight: 700;
  color: var(--clr-brand);
}
.stat-card span {
  font-size: 0.72rem;
  color: var(--clr-text-mid);
}

/* ==========================================================================
   SPEISEKARTE
   ========================================================================== */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .dishes-grid { grid-template-columns: repeat(4, 1fr); }
}

.dish-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--clr-dark-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
@media (hover: hover) {
  .dish-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
}

.dish-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-cream-2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.dish-content { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }

.dish-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--clr-cream-2);
  border: 1px solid var(--clr-cream-3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-brand);
  width: fit-content;
}
.dish-badge-gold {
  background: rgba(192,138,48,0.12);
  border-color: rgba(192,138,48,0.3);
  color: var(--clr-gold);
}

.dish-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.dish-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
}
.dish-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-brand);
  white-space: nowrap;
  flex-shrink: 0;
}
.dish-desc {
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.55;
}

/* Menu image grid */
.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); }
}

/* Menu categories */
.menu-category {
  margin-bottom: 3rem;
}
.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--clr-brand);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.menu-category-note {
  font-size: 0.83rem;
  color: var(--clr-text-mid);
  margin-bottom: 1.25rem;
}
.menu-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--clr-dark-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}
.menu-cta p {
  flex: 1;
  min-width: 200px;
  color: var(--clr-text-mid);
  font-size: 0.9rem;
  margin: 0;
}

/* Mobile Accordion */
.dishes-accordion {
  margin-top: 2rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dishes-accordion-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  background: var(--clr-white);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  cursor: pointer;
  list-style: none;
  transition: background var(--duration);
}
.dishes-accordion-toggle::-webkit-details-marker { display: none; }
.dishes-accordion-toggle::marker { display: none; }
.dishes-accordion-toggle:hover { background: var(--clr-cream); }
.dishes-accordion[open] .dishes-accordion-toggle { background: var(--clr-cream); }

.dishes-accordion-body {
  padding: 1.5rem;
  background: var(--clr-cream);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dishes-accordion-body p {
  color: var(--clr-text-mid);
  font-size: 0.95rem;
}

/* ==========================================================================
   VORTEILE
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) {
  .benefit-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
}
@media (min-width: 960px) {
  .benefit-item:nth-child(odd) { border-right: none; }
  .benefit-item:not(:nth-child(3n)) { border-right: 1px solid rgba(255,255,255,0.06); }
}

.benefit-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-brand);
  border-radius: 8px;
  color: var(--clr-white);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
}
.benefit-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ==========================================================================
   ABLAUF
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 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: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 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.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.step-connector { display: none; }

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

/* ==========================================================================
   EVENT
   ========================================================================== */
.event-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-link-event {
  color: var(--clr-brand) !important;
  font-weight: 700;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .event-card { grid-template-columns: 340px 1fr; gap: 3.5rem; }
}

.event-poster {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(200,37,26,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 340px;
  margin-inline: auto;
}
.event-poster-img {
  width: 100%;
  height: auto;
  display: block;
}

.event-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
  line-height: 1.15;
}
.event-artist {
  font-size: 1.1rem;
  color: var(--clr-text-mid);
  margin-bottom: 1.75rem;
}
.event-artist strong { color: var(--clr-brand); }

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.event-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text);
}
.event-detail-item svg { color: var(--clr-brand); flex-shrink: 0; }

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* ==========================================================================
   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); }

.closed-badge {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  background: rgba(200,37,26,0.08);
  border: 1px solid rgba(200,37,26,0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-brand);
}

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

.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-gold); }

.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: 100px;
  color: var(--clr-brand);
  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-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 5fr 7fr; align-items: start; }
}

.contact-intro {
  color: var(--clr-text-mid);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

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

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 1.1rem;
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration), box-shadow var(--duration);
}
a.contact-detail-item {
  cursor: pointer;
}
@media (hover: hover) {
  a.contact-detail-item:hover {
    border-color: var(--clr-brand);
    box-shadow: 0 4px 20px rgba(200,37,26,0.1);
  }
}

.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-detail-text { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-detail-text strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-text-light);
}
.contact-detail-text span,
.contact-detail-text address {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.5;
}

/* Form */
.contact-form-wrap {
  background: var(--clr-cream);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
}
.form-group label abbr {
  color: var(--clr-brand);
  text-decoration: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--clr-dark-3);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  transition: border-color var(--duration), box-shadow var(--duration);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5040' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-brand);
  box-shadow: 0 0 0 3px rgba(200,37,26,0.12);
}

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

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

/* DSGVO Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(200,37,26,0.04);
  border: 1.5px solid rgba(200,37,26,0.15);
  border-radius: var(--radius-sm);
}
.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--clr-brand);
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  line-height: 1.55;
  cursor: pointer;
}
.form-checkbox label a {
  color: var(--clr-brand);
  font-weight: 600;
  text-decoration: underline;
}
.form-checkbox label abbr { color: var(--clr-brand); text-decoration: none; }

.form-note {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  line-height: 1.5;
  text-align: center;
  margin-top: 0.25rem;
}

.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-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,37,26,0.1);
  border-radius: 50%;
  color: var(--clr-brand);
}
.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-gold-light); }

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

.footer-address {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-address a {
  color: var(--clr-gold-light);
  font-weight: 600;
  text-decoration: none;
}
.footer-address a:hover { color: var(--clr-white); }

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

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

.footer-nav a,
.footer-legal-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  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.875rem;
  color: rgba(255,255,255,0.45);
  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.8rem;
  color: rgba(255,255,255,0.3);
}

.powered-by {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.powered-by a {
  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.75rem; }
  .hero-sub { margin-bottom: 1.75rem; font-size: 0.95rem; }

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

  /* Trust bar */
  .trust-card { padding: 1rem 0.5rem; gap: 0.4rem; }

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

  /* Benefits */
  .benefit-item { padding: 1rem 0.75rem; }

  /* Event */
  .event-poster { max-width: 260px; }
  .event-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .event-artist { margin-bottom: 1.25rem; }

  /* Contact */
  .contact-grid { gap: 2rem; }

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

  /* Form */
  .contact-form-wrap { padding: 1.25rem; }
  .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.72rem;
  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.72rem;
  font-weight: 600;
  color: var(--clr-brand);
}
.review-date {
  font-size: 0.72rem;
  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;
  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; }
}

/* Placeholder for missing photos */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
  text-align: center;
  padding: 1rem;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 14px
    );
}
.gallery-placeholder svg { color: rgba(255,255,255,0.15); }
.gallery-placeholder span {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}
.gallery-placeholder em {
  font-style: normal;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
}

/* 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);
}
.gallery-lightbox.lb-open { opacity: 1; }

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

.lb-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1000px);
  max-height: 90svh;
  transform: scale(0.92);
  transition: transform 0.3s var(--ease-out);
}
.gallery-lightbox.lb-open .lb-content { transform: scale(1); }

.lb-img {
  display: block;
  max-width: 100%;
  max-height: 88svh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--clr-white);
  cursor: pointer;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
