/* Qebap by Akin · dunkel, Grün #1c3d21, Osmanisches Gold */
:root {
  /* Eine Flächenfarbe für die ganze Seite (wie erste Sektion nach Hero) */
  --bg: #020202;
  --bg-elevated: #050505;
  --surface: #050505;
  --surface-hover: #0a0a0a;
  --tile-bg: #070707;
  --tile-bg-mid: #0a0a0a;
  --accent: #1c3d21;
  --accent-mid: #234a29;
  --accent-bright: #2f6a38;
  --accent-highlight: #5cb87a;
  --accent-glow: rgba(28, 61, 33, 0.45);
  --accent-page: #0c5741;
  --accent-page-mid: #094a38;
  --accent-page-soft: rgba(12, 87, 65, 0.35);
  --accent-page-faint: rgba(12, 87, 65, 0.12);
  --gold: #c9a35a;
  --gold-deep: #8b6914;
  --gold-soft: #e4c88a;
  --gold-line: rgba(201, 163, 90, 0.22);
  --text: #f5f5f3;
  --text-dim: #c8c8c4;
  --muted: #6e6e6b;
  --footer-muted: #b8b6ae;
  --footer-muted-deep: #9c9a93;
  --footer-heading: #d4d2cb;
  --line: rgba(255, 255, 255, 0.045);
  --line-strong: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  --shadow-soft: 0 12px 48px rgba(0, 0, 0, 0.5);
  --radius: 6px;
  --radius-sm: 4px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif;
  --display: Georgia, "Times New Roman", Times, serif;
}

@font-face {
  font-family: Agatho;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("../fonts/Agatho-Bold.woff2") format("woff2"),
    url("../fonts/agatho-bold.woff2") format("woff2");
}

@font-face {
  font-family: Agatho;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("../fonts/Agatho-Regular.woff2") format("woff2"),
    url("../fonts/agatho-regular.woff2") format("woff2");
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 106, 56, 0.78) rgba(5, 5, 5, 0.98);
}

html::-webkit-scrollbar {
  width: 5px;
}

html::-webkit-scrollbar-track {
  background: rgba(3, 3, 3, 0.98);
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(28, 61, 33, 0.92) 0%,
    rgba(32, 68, 38, 0.88) 45%,
    rgba(160, 130, 72, 0.55) 100%
  );
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(35, 74, 41, 0.95) 0%,
    rgba(201, 163, 90, 0.62) 100%
  );
}

html.is-modal-open,
html.is-modal-open body {
  overflow: hidden;
  touch-action: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  background-image: none;
}

/* Arabisch: lesbare Schrift; volles RTL nur im Inhalt (Header bleibt wie DE) */
html[lang="ar"] {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Tahoma,
    "Noto Sans Arabic",
    "Arial Unicode MS",
    sans-serif;
}

html[lang="ar"] .hero-title,
html[lang="ar"] .section-title {
  font-family:
    Tahoma,
    "Noto Sans Arabic",
    "Noto Naskh Arabic",
    Georgia,
    "Times New Roman",
    serif;
}

body[dir="rtl"] .site-header,
body[dir="rtl"] .site-header .nav-shell,
body[dir="rtl"] .site-header .nav-bar,
body[dir="rtl"] .site-header .nav-bar__tools {
  direction: ltr;
}

body[dir="rtl"] #main {
  direction: rtl;
  text-align: start;
}

body[dir="rtl"] .site-footer {
  direction: rtl;
  text-align: start;
}

/* Raster wie auf Deutsch (kein gespiegeltes Mosaic), Karten-Text trotzdem RTL */
body[dir="rtl"] .gallery-grid--mosaic,
body[dir="rtl"] .feature-grid,
body[dir="rtl"] .review-grid {
  direction: ltr;
}

body[dir="rtl"] .feature-card,
body[dir="rtl"] .review-card {
  direction: rtl;
  text-align: start;
}

body[dir="rtl"] .section-head {
  text-align: start;
}

body[dir="rtl"] .gallery-item__cap {
  direction: rtl;
  text-align: start;
}

body[dir="rtl"] .lightbox {
  direction: ltr;
}

/* Gegen 100vw-/RTL-Overflow + automatische Textzoom-Reflows (Mobile) */
body[dir="rtl"] {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--text);
}

/* Kein left:-9999px — verursacht horiz. Scrollbalken; in RTL oft sichtbar / falsch positioniert */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  z-index: 120;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 0.5rem;
  inset-inline-start: 0.5rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  background: var(--accent);
  color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

#anfahrt {
  scroll-margin-top: 5.5rem;
}

/* Header: freistehende, abgerundete Leiste */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.65rem 0 0.35rem;
  background: transparent;
  border: none;
}

/* Startseite: Navigation liegt über dem Hero-Video, kein eigener Balken im Layout */
.page-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  width: 100%;
  padding: 0.75rem 0 0.5rem;
  background: none;
  pointer-events: none;
}

.page-home .nav-shell {
  pointer-events: auto;
}

.nav-shell {
  position: relative;
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 1.1rem;
  background: rgba(6, 6, 6, 0.92);
  border: 1px solid var(--line);
  border-radius: 11px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transition:
    background 0.32s ease,
    box-shadow 0.35s ease,
    border-color 0.32s ease;
}

.site-header.is-scrolled .nav-bar {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  border-color: var(--line-strong);
}

/* Über dem Video: Glas, kein undurchsichtiger Block */
.page-home .site-header:not(.is-scrolled) .nav-bar {
  background: rgba(4, 6, 5, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

/* Startseite: nach Scroll weiße Leiste wie Speisekarte */
.page-home .site-header.is-scrolled .nav-bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.page-home .site-header.is-scrolled .logo {
  color: #121210;
}

.page-home .site-header.is-scrolled .logo__q {
  color: #121210;
}

.page-home .site-header.is-scrolled .logo__by {
  color: var(--accent-page);
  opacity: 1;
}

.page-home .site-header.is-scrolled .logo:hover .logo__by,
.page-speisekarte .site-header.is-scrolled .logo:hover .logo__by,
.page-franchise .site-header.is-scrolled .logo:hover .logo__by {
  color: var(--accent-page-mid);
}

@media (min-width: 880px) {
  .page-home .site-header.is-scrolled .site-nav a {
    color: #2a2a26;
  }

  .page-home .site-header.is-scrolled .site-nav a:hover {
    color: var(--accent-page);
  }

  .page-home .site-header.is-scrolled .site-nav a:focus-visible {
    outline-color: rgba(12, 87, 65, 0.45);
  }
}

.page-home .site-header.is-scrolled .nav-icon-btn:focus-visible {
  outline-color: rgba(12, 87, 65, 0.5);
}

/* Hero (über Video): Gold wie Hero – Startseite + Unterseiten */
.page-home .site-header:not(.is-scrolled) .logo__by,
.page-speisekarte .site-header:not(.is-scrolled) .logo__by,
.page-franchise .site-header:not(.is-scrolled) .logo__by {
  color: var(--gold-soft);
}

.page-home .site-header:not(.is-scrolled) .logo:hover .logo__by,
.page-speisekarte .site-header:not(.is-scrolled) .logo:hover .logo__by,
.page-franchise .site-header:not(.is-scrolled) .logo:hover .logo__by {
  color: var(--gold);
}

.page-home .site-header:not(.is-scrolled) .nav-icon-btn__img,
.page-speisekarte .site-header:not(.is-scrolled) .nav-icon-btn__img,
.page-franchise .site-header:not(.is-scrolled) .nav-icon-btn__img {
  background-color: var(--gold-soft);
  opacity: 0.96;
}

.logo {
  font-family: Agatho, Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: normal;
  color: inherit;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  flex-shrink: 0;
}

.logo__q {
  font-weight: 400;
  color: #fafaf8;
}

.logo__by {
  font-weight: 400;
  color: var(--gold-soft);
}

.logo:hover {
  text-decoration: none;
}

.logo:hover .logo__q {
  color: #fff;
}

.logo:hover .logo__by {
  color: var(--gold);
}

.nav-bar__tools {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.nav-toggle:hover {
  opacity: 0.88;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: var(--gold-soft);
  transition: transform 0.25s ease;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.5rem;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: transparent;
  text-decoration: none;
  color: var(--gold-soft);
}

.site-nav a:focus-visible {
  outline: 2px solid rgba(228, 200, 138, 0.5);
  outline-offset: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.5rem;
  margin: 0;
  border: 1px solid rgba(228, 200, 138, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(8, 8, 8, 0.35);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
}

.nav-lang-btn:hover {
  border-color: rgba(228, 200, 138, 0.5);
  background: rgba(28, 61, 33, 0.35);
}

.nav-lang-btn:focus-visible {
  outline: 2px solid rgba(228, 200, 138, 0.45);
  outline-offset: 3px;
}

.nav-lang-btn__code {
  pointer-events: none;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.4rem;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.nav-icon-btn:hover {
  opacity: 1;
  transform: scale(1.05);
}

.nav-icon-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
  border-radius: 0;
}

.nav-icon-btn--link {
  text-decoration: none;
}

.nav-icon-btn__img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  pointer-events: none;
  background-color: var(--gold-soft);
  -webkit-mask-image: url('../images/shop-window.svg');
  mask-image: url('../images/shop-window.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.nav-instagram-link {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-instagram-link:hover {
  color: var(--text);
  background: rgba(228, 200, 138, 0.12);
  text-decoration: none;
}

@media (max-width: 879px) {
  .nav-instagram-link {
    font-size: 0.76rem;
    padding: 0.3rem 0.35rem;
  }
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    flex: 1;
    min-width: 0;
  }

  .site-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.05rem;
  }

  .site-nav a {
    padding: 0.45rem 0.55rem;
    font-size: 0.88rem;
  }
}

@media (min-width: 1024px) {
  .site-nav a {
    padding: 0.5rem 0.7rem;
    font-size: 0.93rem;
  }

  .nav-icon-btn {
    padding: 0.5rem 0.45rem;
  }
}

@media (max-width: 879px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 60;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.65rem 0.85rem;
    margin: 0;
    box-shadow: var(--shadow);
    animation: navFade 0.2s ease;
  }

  .site-nav.is-open {
    display: block;
  }
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(96vh, 1020px);
  padding: clamp(7.5rem, 15vh, 10rem) 0 clamp(4rem, 10vh, 6rem);
  overflow: hidden;
  border-bottom: none;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(64px, 12vh, 120px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.65) 50%, var(--bg) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform-origin: center center;
  backface-visibility: hidden;
}

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

.hero--static .hero-media {
  background:
    radial-gradient(ellipse 100% 70% at 50% 35%, rgba(28, 61, 33, 0.22), transparent 58%),
    linear-gradient(165deg, #0a120e 0%, #050807 48%, #0c1410 100%);
}

.hero--static .hero-video {
  display: none;
}

/* Layer über dem Video: eher transparent, Video bleibt sichtbar; Lesbarkeit über Text-Schatten */
.hero-media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -38deg,
      transparent 0,
      transparent 5px,
      rgba(0, 0, 0, 0.04) 5px,
      rgba(0, 0, 0, 0.04) 6px
    ),
    radial-gradient(ellipse 120% 80% at 30% 20%, rgba(0, 0, 0, 0.14), transparent 58%),
    radial-gradient(ellipse 90% 60% at 80% 90%, rgba(28, 61, 33, 0.1), transparent 52%),
    linear-gradient(165deg, rgba(2, 4, 3, 0.52) 0%, rgba(6, 8, 7, 0.4) 42%, rgba(4, 6, 5, 0.48) 100%);
  background-blend-mode: normal, normal, normal, normal;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 50% at 75% 25%, rgba(201, 163, 90, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(38rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero-copy {
  animation: heroFadeIn 0.9s ease-out both;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.12;
  margin: 0 0 1.1rem;
  color: var(--text);
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.88),
    0 1px 3px rgba(0, 0, 0, 0.95);
}

.hero-title--greeting {
  line-height: 1.14;
}

.hero-title__rotor {
  display: inline-block;
  vertical-align: baseline;
  min-width: min(7.5ch, 42vw);
  text-align: center;
}

.hero-title__word {
  display: inline-block;
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title__word--out {
  opacity: 0;
  transform: translateY(-0.35em);
}

.hero-title__word--in {
  animation: heroWordEnter 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroWordEnter {
  from {
    opacity: 0;
    transform: translateY(0.28em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lead {
  font-family: var(--font);
  font-size: clamp(1.02rem, 1.9vw, 1.12rem);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(250, 250, 248, 0.94);
  margin: 0 auto 1.65rem;
  max-width: min(46ch, 92vw);
  text-wrap: balance;
  animation: heroFadeIn 0.9s ease-out 0.12s both;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.82);
}

@media (max-width: 879px) {
  .hero-title {
    font-size: clamp(2.38rem, 7.2vw, 3.05rem);
  }

  .hero-lead {
    font-size: clamp(1.1rem, 4.1vw, 1.2rem);
    line-height: 1.62;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  animation: heroFadeIn 0.9s ease-out 0.24s both;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0 1.65rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 8, 7, 0.42);
  color: rgba(245, 245, 243, 0.96);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.hero-cta-btn--white {
  background: rgba(242, 241, 237, 0.12);
  color: rgba(250, 250, 248, 0.98);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-cta-btn--white:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transform: translateY(-0.5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-cta-btn--line {
  background: rgba(4, 6, 5, 0.35);
  color: rgba(232, 232, 228, 0.92);
  border-color: rgba(201, 163, 90, 0.35);
}

.hero-cta-btn--line:hover {
  color: var(--gold-soft);
  border-color: rgba(201, 163, 90, 0.55);
  background: rgba(28, 61, 33, 0.22);
  text-decoration: none;
  transform: translateY(-0.5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections (ohne Hero: der hat eigene Abstände) */
section.section {
  padding: clamp(2.75rem, 7vw, 4.75rem) 0;
  position: relative;
}

.hero + section.section {
  margin-top: clamp(0.35rem, 1.5vw, 1rem);
}

section.section + section.section {
  margin-top: clamp(0.35rem, 1.5vw, 1.1rem);
}

.page-home__about-strip {
  background: var(--bg);
  padding-top: 50px;
  padding-bottom: clamp(0.65rem, 1.8vw, 1.15rem);
}

.page-home__about-overlap {
  position: relative;
  z-index: 4;
  margin-top: clamp(-4.35rem, -10vw, -7.25rem);
  padding-bottom: 0;
}

.page-home__about-strip + .section.section--gerichte {
  margin-top: clamp(0.35rem, 1.2vw, 1rem);
  padding-top: clamp(1.85rem, 4.5vw, 2.75rem);
}

.page-home .section--stripe-light.section--gerichte .gerichte-copy .franchise-text,
.page-home .section--stripe-light.section--gerichte .gerichte-copy .franchise-text--heart {
  color: #2a2a26;
}

.about-features.about-features--overlap {
  margin-bottom: 0;
  gap: clamp(0.65rem, 2vw, 1rem);
}

.about-features--overlap .about-feature {
  position: relative;
  padding: 1.1rem 1.05rem 1.15rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(165deg, #0d1311 0%, #121a16 42%, #0e1512 100%);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.about-features--overlap .about-feature::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(9, 74, 56, 0.95) 0%,
    rgba(12, 87, 65, 0.85) 38%,
    rgba(110, 88, 42, 0.55) 72%,
    rgba(201, 163, 90, 0.35) 100%
  );
  pointer-events: none;
}

.about-features--overlap .about-feature__icon {
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.65rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-features--overlap .about-feature__icon-img {
  width: 1.65rem;
  height: 1.65rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.about-features--overlap .about-feature__title {
  color: rgba(252, 248, 238, 0.98);
}

.about-features--overlap .about-feature__text {
  color: rgba(245, 245, 238, 0.88);
}

.section-head {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  position: relative;
}

.section-head::after {
  content: "";
  display: block;
  width: min(220px, 42vw);
  height: 1px;
  margin-top: 1rem;
  border-radius: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0.85;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-style: italic;
  margin: 0 0 0.5rem;
  color: rgba(252, 252, 248, 0.98);
}

.section-intro {
  color: rgba(238, 238, 234, 0.92);
  max-width: 60ch;
  margin: 0;
  font-size: 1.02rem;
}

.section-intro--compact {
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 52ch;
  margin-top: 0.15rem;
}

/* Eine Hintergrundfarbe für alle Sektionen */
.section--soft {
  background: transparent;
}

.section--stripe-light {
  background: linear-gradient(165deg, #f8faf9 0%, #f5f5f2 45%, #f3f7f5 100%);
  color: #141412;
}

.section--stripe-light .section-title {
  color: #0e0e0c;
}

.section--stripe-light .section-intro {
  color: #3d3d38;
}

.section--stripe-light .section-head::after {
  opacity: 0.9;
  background: linear-gradient(
    90deg,
    rgba(28, 61, 33, 0.88) 0%,
    var(--accent-page) 42%,
    rgba(201, 163, 90, 0.72) 100%
  );
}

/* Feature-Karten (Basis; Homepage: .about-features--overlap) */
.about-features {
  display: grid;
  gap: 1rem;
  margin: 0 0 clamp(1.5rem, 3.5vw, 2rem);
}

@media (min-width: 720px) {
  .about-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.about-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(12, 87, 65, 0.2);
  background: linear-gradient(165deg, rgba(12, 87, 65, 0.09) 0%, rgba(12, 87, 65, 0.04) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 10px 32px rgba(12, 87, 65, 0.08);
  text-align: left;
}

.about-feature__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(12, 87, 65, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.about-feature__icon-img {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  filter: brightness(0) saturate(100%) invert(27%) sepia(42%) saturate(900%) hue-rotate(118deg) brightness(0.88);
}

.about-feature__title {
  margin: 0 0 0.45rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #121210;
}

.about-feature__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: #3a3a35;
}

.press-slider {
  margin: 0;
  padding: 0;
}

.press-slider__viewport {
  overflow: hidden;
  border-radius: 14px;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 0 rgba(12, 87, 65, 0.06) inset,
    0 20px 50px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.press-slider__viewport:active {
  cursor: grabbing;
}

.press-slider__viewport--angular {
  border-radius: 2px;
  background: #eceae6;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 4px 4px 0 rgba(12, 87, 65, 0.12);
}

.press-slider__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(var(--press-count, 3) * 100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.9, 0.35, 1);
  will-change: transform;
}

.press-slider__track.is-dragging {
  transition: none;
}

.press-slider__slide {
  flex: 0 0 calc(100% / var(--press-count, 3));
  min-width: 0;
  padding: 0;
  box-sizing: border-box;
}

.press-card {
  margin: 0;
  padding: clamp(1.35rem, 3.5vw, 1.85rem) clamp(1.25rem, 3vw, 1.65rem);
  height: 100%;
  text-align: left;
}

.press-card--angular {
  background: #f4f3ef;
  border-left: 4px solid var(--accent-page);
  border-radius: 0;
  box-shadow: none;
}

.press-card__kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a18;
}

.press-card__text {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.62;
  color: #242420;
}

.press-card__cite {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.84rem;
  line-height: 1.45;
  padding-top: 0.65rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.press-card__source {
  font-weight: 700;
  color: var(--accent-page);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.press-card__sep {
  color: #888880;
  font-weight: 400;
}

.press-card__city {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3a3a34;
  letter-spacing: 0.02em;
}

.gerichte-press {
  margin-top: clamp(1.35rem, 3.2vw, 2rem);
  margin-bottom: 0;
}

.press-slider--on-dark .press-slider__viewport--angular {
  border-radius: 2px;
  background: linear-gradient(165deg, #0a0f0d 0%, #101816 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.press-slider--on-dark .press-card--angular {
  position: relative;
  border-left: none;
  border-radius: 0;
  background: linear-gradient(165deg, #0d1311 0%, #121a16 48%, #0e1512 100%);
  overflow: hidden;
}

.press-slider--on-dark .press-card--angular::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(9, 74, 56, 0.98) 0%,
    rgba(12, 87, 65, 0.88) 35%,
    rgba(100, 82, 38, 0.5) 68%,
    rgba(201, 163, 90, 0.42) 100%
  );
  pointer-events: none;
}

.press-card__headline {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.96);
}

.press-slider--on-dark .press-card__headline {
  color: rgba(255, 255, 255, 0.96);
}

.press-slider--on-dark .press-card__text {
  color: rgba(245, 243, 236, 0.88);
}

.press-slider--on-dark .press-card__cite {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.press-slider--on-dark .press-card__source {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.press-slider--on-dark .press-card__sep {
  color: rgba(200, 198, 190, 0.45);
}

.press-slider--on-dark .press-card__city {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* Presse-Slider auf hellem Untergrund (Unsere Gerichte) */
.press-slider--on-light .press-slider__viewport--angular {
  border-radius: 4px;
  background: linear-gradient(165deg, #fbfcfb 0%, #f4f7f5 100%);
  border: 1px solid rgba(12, 87, 65, 0.12);
  box-shadow:
    0 6px 28px rgba(12, 87, 65, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.press-slider--on-light .press-card--angular {
  background: linear-gradient(165deg, #fafdfb 0%, #f5f8f6 100%);
  color: #1a1a18;
}

.press-slider--on-light .press-card--angular::before {
  background: linear-gradient(
    90deg,
    rgba(12, 87, 65, 0.85) 0%,
    rgba(28, 61, 33, 0.55) 42%,
    rgba(201, 163, 90, 0.45) 100%
  );
  height: 2px;
  opacity: 0.9;
}

.press-slider--on-light .press-card__headline {
  color: #141412;
}

.press-slider--on-light .press-card__text {
  color: #3d3d38;
}

.press-slider--on-light .press-card__cite {
  border-top-color: rgba(12, 87, 65, 0.12);
}

.press-slider--on-light .press-card__source {
  color: var(--accent-page);
}

.press-slider--on-light .press-card__sep {
  color: rgba(100, 100, 94, 0.55);
}

.press-slider--on-light .press-card__city {
  color: #3a3a34;
}

/* Galerie in „Unsere Gerichte“ (heller Hintergrund) */
.gallery-grid--in-gerichte-light .gallery-item__inner {
  background: #fff;
  border: 1px solid rgba(12, 87, 65, 0.1);
  box-shadow:
    0 4px 18px rgba(12, 87, 65, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.gallery-grid--in-gerichte-light .gallery-item__inner:hover,
.gallery-grid--in-gerichte-light .gallery-item__inner:focus-visible {
  box-shadow:
    0 10px 28px rgba(12, 87, 65, 0.1),
    0 0 0 1px rgba(12, 87, 65, 0.12);
  border-color: rgba(12, 87, 65, 0.16);
}

/* Unsere Gerichte: Fotos ohne Abdeckung / Verlauf */
.gallery-grid--in-gerichte-light .gallery-item__dim,
.gallery-grid--in-gerichte-light .gallery-item__overlay,
.gallery-grid--in-gerichte-light .gallery-item__overlay::after,
.gallery-grid--in-gerichte-light .gallery-item__frame {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.gallery-grid--in-gerichte-light .gallery-item__cap {
  opacity: 0;
  visibility: hidden;
}

.gallery-grid--in-gerichte-light .gallery-item__inner:focus-visible .gallery-item__cap {
  opacity: 1;
  visibility: visible;
}

.gallery-grid--in-gerichte-light .gallery-item img {
  transform: none;
}

.gallery-grid--in-gerichte-light .gallery-item:hover img,
.gallery-grid--in-gerichte-light .gallery-item:focus-within img {
  transform: none;
}

.gallery-grid--mosaic.gallery-grid--in-gerichte {
  margin-top: clamp(1.35rem, 3vw, 2rem);
}

.section--stripe-light.section--reviews {
  border-top: 1px solid rgba(12, 87, 65, 0.1);
  background: linear-gradient(165deg, #f8faf9 0%, #f5f5f2 45%, #f3f7f5 100%);
}

.section--stripe-light.section--reviews .section-title {
  color: #0e0e0c;
  text-align: left;
}

.section--stripe-light.section--reviews .section-intro--reviews {
  color: #3d3d38;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section--stripe-light.section--reviews .section-head--reviews {
  text-align: left;
}

.section--stripe-light.section--reviews .section-head--reviews::after {
  margin-left: 0;
  margin-right: auto;
}

.section--stripe-light.section--reviews .review-card {
  background: #fafaf8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
}

.section--stripe-light.section--reviews .review-card:hover {
  border-color: rgba(12, 87, 65, 0.28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.section--stripe-light.section--reviews .review-name {
  color: #1a1a18;
}

.section--stripe-light.section--reviews .review-text {
  color: #454540;
}

.section--stripe-light.section--reviews .review-stars {
  color: var(--accent-page);
  filter: none;
}

.section--stripe-light.section--reviews .review-avatar {
  border-color: rgba(12, 87, 65, 0.22);
}

.reviews-youtube {
  margin-top: clamp(2rem, 4.5vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(12, 87, 65, 0.1);
}

.reviews-youtube__head {
  margin-bottom: 1rem;
}

.reviews-youtube__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-style: italic;
  font-weight: 700;
  color: #0e0e0c;
}

.reviews-youtube__gate {
  margin-bottom: 1.35rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(12, 87, 65, 0.14);
  background: rgba(12, 87, 65, 0.04);
}

.reviews-youtube__gate[hidden] {
  display: none;
}

.reviews-youtube__consent-text {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #454540;
}

.reviews-youtube__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1.25rem;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: #fafaf8;
  background: var(--accent-page);
  border: 1px solid rgba(12, 87, 65, 0.35);
  border-radius: var(--radius-sm);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.reviews-youtube__btn:hover {
  background: var(--accent-page-mid);
  border-color: rgba(12, 87, 65, 0.55);
}

.reviews-youtube__btn:focus-visible {
  outline: 2px solid var(--accent-page);
  outline-offset: 2px;
}

.reviews-youtube__grid {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .reviews-youtube__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1rem;
  }
}

.reviews-youtube__cell {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* YouTube-Einbettung (iframe erst nach Einwilligung) */
.reviews-youtube__embed {
  position: relative;
  display: block;
  height: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(12, 87, 65, 0.14);
  background: linear-gradient(165deg, #0d1311 0%, #121a16 42%, #0e1512 100%);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.reviews-youtube__embed::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(9, 74, 56, 0.95) 0%,
    rgba(12, 87, 65, 0.85) 38%,
    rgba(110, 88, 42, 0.55) 72%,
    rgba(201, 163, 90, 0.35) 100%
  );
  pointer-events: none;
}

.reviews-youtube__embed:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 87, 65, 0.28);
  box-shadow:
    0 20px 48px rgba(12, 87, 65, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reviews-youtube__embed-ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050605;
}

.reviews-youtube__iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.reviews-youtube__embed-ph {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(165deg, #0d1311 0%, #121a16 48%, #0e1512 100%);
}

.reviews-youtube__embed-ph[hidden] {
  display: none !important;
}

.reviews-youtube__embed-play {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(12, 87, 65, 0.88);
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.reviews-youtube__embed-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent #fff;
}

.reviews-youtube__embed-hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(228, 200, 138, 0.85);
  max-width: 22ch;
  line-height: 1.35;
}

#franchising.section--stripe-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(12, 87, 65, 0.12);
}

.section--stripe-light .feature-card {
  background: #faf9f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 0 0 1px var(--accent-page-faint);
}

.section--stripe-light .feature-card h3 {
  color: #121210;
}

.section--stripe-light .feature-card p {
  color: #454540;
}

.section--stripe-light .feature-card:hover {
  background: #fcfcfa;
  border-color: rgba(12, 87, 65, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 8px 22px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(12, 87, 65, 0.12);
}

.section--stripe-light .franchise-text {
  color: #2a2a26;
}

.section--stripe-light .franchise-text a {
  color: var(--accent-page-mid);
}

.section--stripe-light .franchise-text a:hover {
  color: #0e0e0c;
}

.section--stripe-light .franchise-wa-note {
  color: #454540 !important;
}

.section--stripe-light .franchise-wa-btn {
  background: #f2f5f3;
  border-color: rgba(12, 87, 65, 0.35);
  color: var(--accent-page);
  box-shadow: 0 0 0 1px rgba(12, 87, 65, 0.06);
}

.section--stripe-light .franchise-wa-btn-num {
  color: #2d4a42;
}

.section--stripe-light .franchise-wa-btn:hover {
  background: #e8f0ec;
  border-color: rgba(12, 87, 65, 0.5);
  color: #063a2a;
  text-decoration: none;
}

.section--stripe-light .franchise-wa-btn:hover .franchise-wa-btn-num {
  color: #1a3d32;
}

.section--stripe-dark {
  background: #030303;
}

.section--stripe-dark .section-intro {
  color: rgba(236, 236, 232, 0.92);
}

.section--location {
  background: transparent;
}

.franchise-wrap {
  text-align: left;
}

.franchise-wrap--full .franchise-content {
  max-width: none;
}

.franchise-content {
  width: 100%;
  max-width: min(82ch, 100%);
  margin: 0;
  padding: 0 0 0.25rem;
  text-align: left;
}

.section-title--franchise-inline {
  margin: 0 0 1.05rem;
  font-size: clamp(1.45rem, 3.1vw, 1.95rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.section--stripe-dark .section-title--franchise-inline {
  color: rgba(252, 250, 245, 0.98);
}

.section--stripe-light .section-title--franchise-inline {
  color: #0e0e0c;
}

.franchise-text {
  margin: 0 0 1.35rem;
  color: rgba(236, 236, 233, 0.94);
  font-size: 1.04rem;
  line-height: 1.72;
}

.franchise-text a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.franchise-text a:hover {
  color: var(--text);
}

.franchise-content > .franchise-wa {
  margin-top: 2.5rem;
}

.franchise-wa {
  margin: 0;
  padding-top: 0;
  border-top: none;
}

.franchise-wa-note {
  margin: 0 0 1.35rem !important;
  color: rgba(228, 228, 224, 0.92) !important;
  font-size: 0.97rem !important;
  line-height: 1.6 !important;
}

.franchise-wa-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 0.25rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: #0c0c0c;
  border: 1px solid rgba(201, 163, 90, 0.35);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.franchise-wa-btn-num {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-dim);
}

.franchise-wa-btn:hover {
  background: #141414;
  border-color: rgba(228, 200, 138, 0.45);
  color: var(--gold-soft);
  text-decoration: none;
}

.franchise-wa-btn:hover .franchise-wa-btn-num {
  color: var(--text);
}

.section--menu {
  border-block: none;
}

.section--menu.alt-bg {
  background: rgba(0, 0, 0, 0.52);
}

.section--menu .wrap {
  width: 100%;
  max-width: min(1100px, 92vw);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(0.85rem, 3vw, 1.25rem);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section--menu .section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.menu-board {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.75rem);
  background:
    linear-gradient(165deg, rgba(8, 10, 9, 0.98) 0%, rgba(2, 3, 2, 0.99) 100%),
    radial-gradient(ellipse 90% 55% at 0% 0%, rgba(28, 61, 33, 0.18), transparent 55%);
  border: 1px solid rgba(201, 163, 90, 0.22);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 64px rgba(0, 0, 0, 0.58);
}

.menu-board__section {
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-board__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-board__heading {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(201, 163, 90, 0.35);
  display: inline-block;
  min-width: min(100%, 12rem);
}

.section--menu .menu-list {
  padding: 0.25rem 0 0;
  max-width: none;
}

.section--menu .menu-board .menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section--menu .menu-board .menu-row:last-child {
  border-bottom: none;
}

.section--menu .menu-board .menu-row .dots {
  display: none;
}

.section--menu .menu-board .menu-row .name {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.section--menu .menu-board .menu-row .price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.section--menu .menu-board .menu-row:hover {
  background: rgba(28, 61, 33, 0.08);
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: var(--radius-sm);
}

.section--menu .menu-note {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: 1rem 1.15rem;
  background: rgba(28, 61, 33, 0.12);
  border: 1px solid rgba(201, 163, 90, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dim);
}

.section--menu .menu-subhead {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  color: rgba(236, 220, 180, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

@media (min-width: 768px) {
  .section--menu .menu-board .menu-list-cols {
    gap: 0 2.5rem;
  }
}

.section--menu-page {
  padding-top: clamp(0.65rem, 2vw, 1.15rem);
}

.menu-page-back {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  text-align: center;
}

.menu-page-hero {
  position: relative;
  min-height: min(58vh, 720px);
  padding: clamp(5rem, 13vh, 7.5rem) 0 clamp(3rem, 8vh, 4.75rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 163, 90, 0.12);
}

.menu-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(52px, 11vh, 110px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.5) 50%, var(--bg) 100%);
}

.menu-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform-origin: center center;
  backface-visibility: hidden;
}

.menu-page-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-page-hero--static .menu-page-hero__media {
  background:
    radial-gradient(ellipse 100% 70% at 50% 35%, rgba(28, 61, 33, 0.2), transparent 58%),
    linear-gradient(165deg, #0a120e 0%, #050807 48%, #0c1410 100%);
}

.menu-page-hero--static .menu-page-hero__video {
  display: none;
}

.menu-page-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -38deg,
      transparent 0,
      transparent 5px,
      rgba(0, 0, 0, 0.06) 5px,
      rgba(0, 0, 0, 0.06) 6px
    ),
    radial-gradient(ellipse 120% 80% at 30% 20%, rgba(0, 0, 0, 0.32), transparent 55%),
    linear-gradient(165deg, rgba(2, 4, 3, 0.82) 0%, rgba(6, 8, 7, 0.72) 42%, rgba(4, 6, 5, 0.8) 100%);
}

.menu-page-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 50% at 75% 25%, rgba(201, 163, 90, 0.07), transparent 60%);
  pointer-events: none;
  opacity: 0.95;
}

.menu-page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  max-width: min(40rem, 92vw);
  margin-inline: auto;
}

.menu-page-hero__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.menu-page-hero__kicker a {
  color: var(--gold-soft);
  text-decoration: none;
}

.menu-page-hero__kicker a:hover {
  text-decoration: underline;
}

.menu-page-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.8vw, 2.85rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}

.menu-page-hero__lead {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.68;
  color: rgba(245, 245, 241, 0.94);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
}

.page-speisekarte .section--menu .menu-board .menu-row .price {
  color: rgba(255, 255, 255, 0.96);
}

.section--gerichte .section-head {
  margin-bottom: clamp(1.1rem, 3vw, 1.5rem);
}

.section--gerichte .section-intro--compact {
  margin-bottom: 0;
}

.gerichte-copy .franchise-text {
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.62;
  color: rgba(245, 245, 240, 0.94);
}

.gerichte-copy .franchise-text--heart {
  font-size: 1.04rem;
  line-height: 1.68;
  color: rgba(252, 250, 245, 0.96);
}

.gerichte-copy .franchise-text:last-of-type {
  margin-bottom: 0;
}

.section--reviews {
  padding-bottom: clamp(3rem, 8vw, 5rem);
  background: transparent;
}

.section-head--reviews {
  text-align: center;
}

.section-head--reviews::after {
  margin-left: auto;
  margin-right: auto;
}

.reviews-google-link-wrap {
  margin: 0.35rem auto 0;
  max-width: 60ch;
}

.reviews-google-link {
  color: var(--muted);
  font-size: 1.02rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(120, 118, 112, 0.55);
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.reviews-google-link:hover {
  color: var(--gold-soft);
  text-decoration-color: rgba(201, 163, 90, 0.65);
}

/* Galerie: Bento ab Desktop; <900px immer symmetrisches 2-Spalten-Raster (6 Bilder = 3 Zeilen) */
.section--gallery .section-intro {
  max-width: 52ch;
}

.gallery-grid--mosaic {
  display: grid;
  gap: clamp(0.4rem, 1.5vw, 0.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(140px, 32vw);
}

@media (min-width: 600px) and (max-width: 899px) {
  .gallery-grid--mosaic {
    grid-auto-rows: minmax(165px, 26vh);
  }
}

@media (min-width: 900px) {
  .gallery-grid--mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* Zeile 3: ähnliche Höhe wie die rechten Zellen oben, nicht zu flach (weniger harter Cover-Schnitt) */
    grid-template-rows: minmax(175px, 22vh) minmax(175px, 22vh) minmax(210px, 21vh);
    grid-auto-rows: unset;
  }

  .gallery-grid--mosaic .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 0;
  }

  .gallery-grid--mosaic .gallery-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .gallery-grid--mosaic .gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
  }

  .gallery-grid--mosaic .gallery-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-grid--mosaic .gallery-item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-grid--mosaic .gallery-item:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
  }
}

.gallery-item {
  margin: 0;
  padding: 0;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.gallery-item__inner {
  position: relative;
  display: block;
  flex: 1;
  min-height: 140px;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0c0e0d 0%, #050505 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  cursor: zoom-in;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.gallery-item__inner:hover,
.gallery-item__inner:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 163, 90, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 163, 90, 0.22);
}

.gallery-item__inner:focus-visible {
  outline: 2px solid rgba(201, 163, 90, 0.45);
  outline-offset: 3px;
}

.gallery-item__dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
  transition: opacity 0.45s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 88%;
  display: block;
  transform: scale(1.02);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hauptbild (mainpic) + Dürüm-Hand: Fokus mittig */
.gallery-grid--mosaic .gallery-item:nth-child(1) img,
.gallery-grid--mosaic .gallery-item:nth-child(2) img {
  object-position: center center;
}

/* Tisch / Laden: gezielter Bildausschnitt */
.gallery-grid--mosaic .gallery-item:nth-child(4) img {
  object-position: center center;
}

.gallery-grid--mosaic .gallery-item:nth-child(5) img {
  object-position: center 18%;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
  background: linear-gradient(
    165deg,
    rgba(28, 61, 33, 0.15) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0.45) 100%
  );
  box-shadow: inset 0 -32px 48px rgba(0, 0, 0, 0.25);
}

.gallery-item__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201, 163, 90, 0.09), transparent 50%);
  mix-blend-mode: screen;
}

.gallery-item__frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  border: 1px solid rgba(201, 163, 90, 0.12);
  transition: border-color 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
  opacity: 0.65;
}

.gallery-item__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 1.35rem 0.85rem 0.65rem;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.96);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.82) 100%);
  transform: translateY(0.35rem);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item__inner:hover .gallery-item__cap,
.gallery-item__inner:focus-within .gallery-item__cap {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.07);
}

.gallery-item:hover .gallery-item__dim,
.gallery-item:focus-within .gallery-item__dim,
.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-within .gallery-item__overlay {
  opacity: 0.35;
}

.gallery-item:hover .gallery-item__frame,
.gallery-item:focus-within .gallery-item__frame {
  border-color: rgba(201, 163, 90, 0.35);
  opacity: 0.9;
}

.gallery-item:focus-within {
  outline: none;
}

/* Scroll reveal: kurz aus dem Dunkeln (kein Unschärfe-Effekt) */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.48s cubic-bezier(0.25, 0.85, 0.35, 1),
    transform 0.48s cubic-bezier(0.25, 0.85, 0.35, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
}

/* Feature cards */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 163, 90, 0.25);
  box-shadow: var(--shadow);
  background: var(--surface-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.section--stripe-light .feature-card::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-page) 50%, var(--gold) 100%);
}

.section--features.is-visible .feature-card {
  animation: cardPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.section--features.is-visible .feature-card:nth-child(1) {
  animation-delay: 0.04s;
}

.section--features.is-visible .feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.section--features.is-visible .feature-card:nth-child(3) {
  animation-delay: 0.16s;
}

.section--features.is-visible .feature-card:nth-child(4) {
  animation-delay: 0.22s;
}

.section--features.is-visible .feature-card:nth-child(5) {
  animation-delay: 0.28s;
}

.section--features.is-visible .feature-card:nth-child(6) {
  animation-delay: 0.34s;
}

@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: rgba(214, 214, 208, 0.94);
  font-size: 0.95rem;
}

@media (max-width: 639px) {
  .section--features .feature-grid {
    gap: 0;
  }

  .section--features .feature-card {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    padding: 1rem 0 1.1rem;
    background: transparent;
  }

  .section--features .feature-card:last-child {
    border-bottom: none;
  }

  .section--stripe-light.section--features .feature-card {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  .section--stripe-dark.section--features .feature-card {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .section--features .feature-card::before {
    display: none;
  }

  .section--features .feature-card:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border-color: transparent;
  }

  .section--features .feature-card h3 {
    font-size: 1rem;
  }

  .section--features .feature-card p {
    font-size: 0.92rem;
  }
}

/* Speisekarte */
.menu-cat {
  margin-bottom: 2.75rem;
}

.menu-cat:last-child {
  margin-bottom: 0;
}

.menu-cat h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  margin: 0 0 1.25rem;
  padding-bottom: 0;
  border-bottom: none;
  color: var(--text);
  position: relative;
}

.menu-subhead {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: none;
  padding-bottom: 0;
}

.menu-subhead--spaced {
  margin-top: 1rem;
}

.menu-cat-grid {
  margin-bottom: 1.25rem;
}

.menu-cat-grid--tight {
  margin-bottom: 0;
}

/* Einheitliche Speisekarten-Fotos */
.menu-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: min(340px, 42vh);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  align-self: start;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

@media (min-width: 520px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-item {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 106, 56, 0.4);
}

.menu-item-visual {
  aspect-ratio: 16/10;
  background: var(--tile-bg);
}

.menu-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.menu-item-body .price {
  margin-top: auto;
  font-weight: 700;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.menu-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--line);
  background: rgba(28, 61, 33, 0.12);
}

.menu-list {
  max-width: 640px;
}

.menu-list-wide {
  max-width: none;
}

@media (min-width: 768px) {
  .menu-list-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  transition: background 0.2s ease;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 8px;
}

.menu-row:hover {
  background: rgba(28, 61, 33, 0.18);
}

.menu-row .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  min-width: 1.5rem;
  margin-bottom: 0.15em;
  opacity: 0.65;
}

.menu-row .name {
  flex-shrink: 0;
}

.menu-row .price {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--gold-soft);
}

/* Standort: Panorama-Karte volle Viewportbreite, Infobox am Pin */
.location-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.location-map-bleed {
  width: 100vw;
  max-width: 100vw;
  /* Physische Ränder: in RTL stabil (margin-inline + 100vw sonst oft horizontaler Overflow) */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
}

.location-map-frame {
  width: 100%;
  display: block;
}

.location-map-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 695 / 620;
  min-height: 260px;
  max-height: none;
  border: none;
  border-block: none;
  box-shadow: none;
  background: #0c0c0c;
}

.location-map-wrap picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .location-map-wrap {
    aspect-ratio: 1024 / 540;
    min-height: clamp(360px, 46vh, 680px);
  }
}

@media (min-width: 1200px) {
  .location-map-bleed {
    width: auto;
    max-width: min(1180px, min(94vw, 1280px));
    margin-left: auto;
    margin-right: auto;
  }

  .location-map-frame {
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
  }

  .location-map-wrap {
    min-height: 0;
    aspect-ratio: 1024 / 540;
  }
}

@media (min-width: 1600px) {
  .location-map-bleed {
    max-width: min(1120px, 94vw);
  }
}

.location-map-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(0.75rem, 3vw, 1.75rem);
  padding-left: clamp(1rem, 10vw, 7rem);
  pointer-events: none;
}

.location-map-inner .location-card--overlay {
  pointer-events: auto;
}

.location-map-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  min-width: 102%;
  min-height: 102%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(1.06);
}

@media (max-width: 767px) {
  /* Genug Höhe für Karte + Live-Status, sonst schneidet overflow die Box ab */
  .location-map-wrap {
    aspect-ratio: auto;
    min-height: clamp(520px, 128vw, 720px);
  }

  .location-map-inner {
    align-items: flex-end;
    justify-content: center;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
    padding-top: clamp(0.75rem, 3vw, 1.25rem);
    padding-bottom: clamp(1rem, 4vw, 1.5rem);
    box-sizing: border-box;
  }

  .location-map-inner .location-card--overlay {
    max-width: min(22rem, 100%);
    flex-shrink: 0;
  }

  .location-card--overlay {
    padding: 1.2rem 1.15rem;
  }

  .location-map-bg {
    min-width: 108%;
    min-height: 108%;
    transform: translate(-50%, -50%) scale(1.12);
    transform-origin: center center;
  }
}

@media (min-width: 1024px) {
  .location-map-bg {
    min-width: 106%;
    min-height: 106%;
    transform: translate(-50%, -50%) scale(1.14);
    object-position: center 42%;
  }
}

.location-map-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(6, 8, 7, 0.28) 48%,
    rgba(4, 4, 4, 0.08) 100%
  );
  pointer-events: none;
}
.location-map-scrim-texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(0, 0, 0, 0.07) 4px,
    rgba(0, 0, 0, 0.07) 5px
  );
  pointer-events: none;
}

.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 106, 56, 0.35);
}

.location-card--overlay {
  position: relative;
  z-index: 2;
  max-width: min(22rem, calc(100% - 1.5rem));
  margin: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.location-card--overlay:hover {
  transform: none;
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* #anfahrt nutzt section--stripe-light (dunkle Textfarbe) — auf der dunklen Karte kontrastreich überschreiben */
#anfahrt .location-card--overlay {
  color: rgba(245, 245, 240, 0.97);
}

#anfahrt .location-card--overlay address,
#anfahrt .location-card--overlay p,
#anfahrt .location-card--overlay .card-hours-label {
  color: rgba(232, 232, 228, 0.95);
}

#anfahrt .location-card--overlay strong {
  color: rgba(228, 226, 222, 0.96);
}

#anfahrt .location-card--overlay a {
  color: rgba(252, 250, 245, 0.98);
}

#anfahrt .location-card--overlay a:hover {
  color: #fff;
}

#anfahrt .hours-overview__days {
  color: rgba(210, 210, 204, 0.96);
}

#anfahrt .hours-overview__time {
  color: rgba(248, 248, 244, 0.99);
}

#anfahrt .location-live-status--card .location-live-stock-hint--below {
  color: rgba(185, 183, 176, 0.95);
}

#anfahrt .map-btn {
  color: rgba(236, 236, 232, 0.96);
  border-color: rgba(255, 255, 255, 0.14);
}

.card-title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.location-card address {
  font-style: normal;
  margin: 0 0 1rem;
  line-height: 1.7;
}

.card-hours-label {
  margin: 0 0 0.45rem;
}

.hours-overview {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hours-overview__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-overview__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-overview__days {
  color: var(--text-dim);
  font-weight: 500;
  min-width: 6.5rem;
}

.hours-overview__time {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-align: right;
  margin-left: auto;
}

.location-live-status {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 0.85rem;
}

.location-live-status--card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: -0.15rem;
}

.location-live-status__row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.location-live-status__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.location-live-status--open {
  color: #6ecf8c;
}

.location-live-status--closed {
  color: #e07070;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: var(--text-dim);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.map-btn:hover {
  transform: translateY(-2px);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.map-btn--google:hover {
  border-color: rgba(66, 133, 244, 0.45);
}

.map-btn--apple:hover {
  border-color: rgba(201, 163, 90, 0.45);
}

/* Bewertungen: 1 / 2 / 3 Spalten */
.review-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

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

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

.review-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 163, 90, 0.28);
}

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

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--line);
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-top: 0.15rem;
  filter: drop-shadow(0 0 6px rgba(201, 163, 90, 0.25));
}

.review-text {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(218, 218, 212, 0.94);
  line-height: 1.5;
  overflow-wrap: break-word;
}

.review-footnote {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 65ch;
}

/* Legal pages */
.legal {
  padding: 2rem 0 4rem;
}

.legal h1 {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.75rem;
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

.legal p,
.legal ul {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.25rem;
}

/* Footer */
.site-footer {
  border-top: none;
  padding: clamp(3rem, 6vw, 4rem) 0 0;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

.footer-grid--compact {
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.footer-grid strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--footer-heading);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 1;
}

.footer-grid p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 0.96rem;
  line-height: 1.58;
  opacity: 1;
}

.footer-standort {
  margin: 0;
  font-style: normal;
  color: var(--footer-muted);
  font-size: 0.96rem;
  line-height: 1.58;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.footer-bottom__legal {
  margin: 0;
  flex: 1 1 auto;
  min-width: min(100%, 16rem);
  font-size: 0.82rem;
  color: rgba(196, 194, 188, 0.94);
}

.footer-lang-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(12, 12, 12, 0.65);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.footer-lang-btn:hover {
  border-color: rgba(201, 163, 90, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.footer-lang-btn:focus-visible {
  outline: 2px solid rgba(201, 163, 90, 0.5);
  outline-offset: 3px;
}

.footer-lang-btn__flag {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.footer-lang-btn__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Kein Layout-Sprung / kein Überstand bei SVG-Flags (z. B. ar.svg) */
  min-width: 0;
  min-height: 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(196, 194, 188, 0.94);
}

.footer-bottom a {
  color: rgba(200, 198, 192, 0.95);
}

.footer-bottom a:hover {
  color: var(--footer-muted);
}

/* Standort-Popup */
.location-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 1.25rem);
}

.location-modal[hidden] {
  display: none !important;
}

.location-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.location-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(88vh, 640px);
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, #0a0a0a 0%, #030303 100%);
  border: 1px solid rgba(201, 163, 90, 0.22);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.location-modal__title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 1.6rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.location-modal__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.location-modal__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.location-modal__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-modal__input::placeholder {
  color: var(--muted);
}

.location-modal__input:focus {
  outline: none;
  border-color: rgba(201, 163, 90, 0.45);
  box-shadow: 0 0 0 3px rgba(28, 61, 33, 0.35);
}

.location-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-modal__item {
  margin: 0;
}

.location-modal__pick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  padding: 0.95rem 1rem;
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.location-modal__pick:hover {
  background: rgba(28, 61, 33, 0.28);
  border-color: rgba(201, 163, 90, 0.32);
}

.location-modal__pick-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.location-modal__pick-sub,
.location-modal__pick-type {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.35;
}

.location-modal__pick-type {
  margin-top: 0.25rem;
}

.location-modal__pick-status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.35;
  text-align: left;
}

.location-modal__pick-status-main {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.location-modal__pick-status-text {
  display: inline;
}

.location-modal__pick-status .location-live-status__dot {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.55);
}

.location-modal__pick-status.location-live-status--open {
  color: #6ecf8c;
}

.location-modal__pick-status.location-live-status--closed {
  color: #e07070;
}

.location-modal__pick-status .location-live-stock-hint--below {
  color: #484843;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.35;
  padding-left: 0;
  margin: 0;
}

.location-modal__empty {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.location-modal__item--franchise {
  margin: 0;
}

a.location-modal__pick--franchise {
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

a.location-modal__pick--franchise:hover,
a.location-modal__pick--franchise:focus-visible {
  background: rgba(28, 61, 33, 0.28);
  border-color: rgba(201, 163, 90, 0.32);
}

.location-modal__pick-sub--franchise-second {
  margin-top: 0.35rem;
}

/* Sprach-Popup */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 305;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 1.25rem);
}

.lang-modal[hidden] {
  display: none !important;
}

.lang-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.lang-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  max-height: min(88vh, 560px);
  overflow: auto;
  padding: clamp(1.35rem, 3.5vw, 1.75rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, #0a0a0a 0%, #030303 100%);
  border: 1px solid rgba(201, 163, 90, 0.22);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lang-modal__head {
  text-align: center;
  margin: 0 0 1.15rem;
}

.lang-modal__rotor {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1.2;
  letter-spacing: 0.02em;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-modal__rotor-word {
  display: inline-block;
  transition: opacity 0.18s ease;
}

.lang-modal__rotor-word.is-fading {
  opacity: 0.35;
}

.lang-modal__rotor-sub {
  display: inline-block;
  transition: opacity 0.18s ease;
}

.lang-modal__rotor-sub.is-fading {
  opacity: 0.35;
}

.lang-modal__subtitle {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(188, 186, 180, 0.72);
  letter-spacing: 0.02em;
}

.lang-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lang-modal__list--flags {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.lang-modal__item {
  margin: 0;
}

.lang-modal__pick {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.lang-modal__pick--flag {
  width: 44px;
  height: 32px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  border-radius: 5px;
}

.lang-modal__pick--flag .lang-modal__flag {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
}

.lang-modal__pick--flag .lang-modal__flag img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-width: 0;
  min-height: 0;
}

.lang-modal__pick:hover {
  background: rgba(28, 61, 33, 0.28);
  border-color: rgba(201, 163, 90, 0.32);
  text-decoration: none;
  color: var(--text);
}

.lang-modal__pick--flag:hover {
  transform: scale(1.06);
  border-color: rgba(201, 163, 90, 0.45);
}

.lang-modal__pick.is-active {
  border-color: rgba(201, 163, 90, 0.45);
  background: rgba(28, 61, 33, 0.38);
}

.lang-modal__pick--flag.is-active {
  box-shadow: 0 0 0 2px rgba(201, 163, 90, 0.55);
}

.location-live-stock-hint--below {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: #484843;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin: 0;
  padding: 0;
}

.location-live-status--card .location-live-stock-hint--below {
  padding-left: 0.95rem;
  font-size: 0.88rem;
}

.location-modal__pick-status.location-live-status--open .location-live-stock-hint--below,
.location-modal__pick-status.location-live-status--closed .location-live-stock-hint--below {
  color: #484843;
  font-size: 0.8rem;
}

/* Speisekarte: Header wie Startseite über dem Hero */
.page-speisekarte .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  width: 100%;
  padding: 0.75rem 0 0.5rem;
  background: none;
  pointer-events: none;
}

.page-speisekarte .nav-shell {
  pointer-events: auto;
}

.page-speisekarte .site-header:not(.is-scrolled) .nav-bar {
  background: rgba(4, 6, 5, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.page-speisekarte .site-header.is-scrolled .nav-bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.page-speisekarte .site-header.is-scrolled .logo {
  color: #121210;
}

.page-speisekarte .site-header.is-scrolled .logo__q {
  color: #121210;
}

.page-speisekarte .site-header.is-scrolled .logo__by {
  color: var(--accent-page);
  opacity: 1;
}

@media (min-width: 880px) {
  .page-speisekarte .site-header.is-scrolled .site-nav a {
    color: #2a2a26;
  }

  .page-speisekarte .site-header.is-scrolled .site-nav a:hover {
    color: var(--accent-page);
  }

  .page-speisekarte .site-header.is-scrolled .site-nav a:focus-visible {
    outline-color: rgba(12, 87, 65, 0.45);
  }
}

.page-speisekarte .site-header.is-scrolled .nav-icon-btn:focus-visible {
  outline-color: rgba(12, 87, 65, 0.5);
}

.page-speisekarte .menu-page-hero {
  padding: 0 0 clamp(3rem, 8vh, 4.75rem);
}

.page-speisekarte .menu-page-hero__inner {
  padding-top: clamp(5.5rem, 14vh, 8.5rem);
}

.page-speisekarte .menu-page-hero__overlay {
  background:
    repeating-linear-gradient(
      -38deg,
      transparent 0,
      transparent 5px,
      rgba(0, 0, 0, 0.08) 5px,
      rgba(0, 0, 0, 0.08) 6px
    ),
    radial-gradient(ellipse 120% 80% at 30% 20%, rgba(0, 0, 0, 0.52), transparent 55%),
    linear-gradient(165deg, rgba(2, 4, 3, 0.93) 0%, rgba(6, 8, 7, 0.88) 42%, rgba(4, 6, 5, 0.93) 100%);
}

/* Franchise-Seite */
.page-franchise .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  width: 100%;
  padding: 0.75rem 0 0.5rem;
  background: none;
  pointer-events: none;
}

.page-franchise .nav-shell {
  pointer-events: auto;
}

.page-franchise .site-header:not(.is-scrolled) .nav-bar {
  background: rgba(4, 6, 5, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.page-franchise .site-header.is-scrolled .nav-bar {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.page-franchise .site-header.is-scrolled .logo {
  color: #121210;
}

.page-franchise .site-header.is-scrolled .logo__q {
  color: #121210;
}

.page-franchise .site-header.is-scrolled .logo__by {
  color: var(--accent-page);
  opacity: 1;
}

@media (min-width: 880px) {
  .page-franchise .site-header.is-scrolled .site-nav a {
    color: #2a2a26;
  }

  .page-franchise .site-header.is-scrolled .site-nav a:hover {
    color: var(--accent-page);
  }

  .page-franchise .site-header.is-scrolled .site-nav a:focus-visible {
    outline-color: rgba(12, 87, 65, 0.45);
  }
}

.page-franchise .site-header.is-scrolled .nav-icon-btn:focus-visible {
  outline-color: rgba(12, 87, 65, 0.5);
}

/* Weißer Header: Burger-Striche und Store-Icon gleiche Akzentfarbe (#0c5741) */
.page-home .site-header.is-scrolled .nav-toggle span,
.page-speisekarte .site-header.is-scrolled .nav-toggle span,
.page-franchise .site-header.is-scrolled .nav-toggle span {
  background: var(--accent-page);
}

.page-home .site-header.is-scrolled .nav-icon-btn__img,
.page-speisekarte .site-header.is-scrolled .nav-icon-btn__img,
.page-franchise .site-header.is-scrolled .nav-icon-btn__img {
  background-color: var(--accent-page);
  opacity: 1;
}

.franchise-page-hero-full {
  position: relative;
  min-height: min(48vh, 520px);
  padding: clamp(5.5rem, 11vh, 7.5rem) 0 clamp(2rem, 5vh, 3rem);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 163, 90, 0.12);
}

.franchise-page-hero-full__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--franchise-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center center;
  backface-visibility: hidden;
}

.franchise-page-hero-full--has-video .franchise-page-hero-full__media {
  background-image: none;
  transform: none;
}

.franchise-page-hero-full__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.franchise-page-hero-full__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(-38deg, transparent 0, transparent 5px, rgba(0, 0, 0, 0.06) 5px, rgba(0, 0, 0, 0.06) 6px),
    radial-gradient(ellipse 120% 80% at 30% 20%, rgba(0, 0, 0, 0.38), transparent 55%),
    linear-gradient(165deg, rgba(2, 4, 3, 0.88) 0%, rgba(6, 8, 7, 0.78) 42%, rgba(4, 6, 5, 0.82) 100%);
}

.franchise-page-hero-full__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 50% at 75% 25%, rgba(201, 163, 90, 0.07), transparent 60%);
  pointer-events: none;
  opacity: 0.92;
}

.franchise-page-hero-full__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(36rem, 92vw);
  margin-inline: auto;
  text-align: center;
}

.franchise-page-hero-full__title {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 2.45rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}

.franchise-page-hero-full__lead {
  margin: 0;
  font-size: clamp(0.92rem, 2.1vw, 1.05rem);
  line-height: 1.55;
  color: rgba(245, 245, 241, 0.88);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

.franchise-page-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 163, 90, 0.85);
}

.section--franchise-page-body {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(3rem, 8vw, 4.5rem);
}

.page-franchise .franchise-page-wrap,
.page-franchise .section--franchise-page-body .wrap {
  max-width: min(1100px, 96vw);
  width: 100%;
}

.franchise-page-lead,
.franchise-page-text {
  color: var(--text-dim);
  max-width: none;
}

.franchise-page-text {
  margin: 0 0 1rem;
  line-height: 1.62;
}

.franchise-form-title {
  margin: clamp(2rem, 4vw, 2.75rem) 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-style: italic;
}

.franchise-steps-indicator {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.franchise-steps-indicator__label {
  text-transform: uppercase;
  font-weight: 600;
}

.franchise-step:not(.is-active) {
  display: none !important;
}

.franchise-step-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.franchise-step-prev {
  margin-right: auto;
}

.franchise-flash {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.franchise-flash--ok {
  background: rgba(28, 61, 33, 0.35);
  border: 1px solid rgba(92, 184, 122, 0.35);
  color: var(--text-dim);
}

.franchise-flash--err {
  background: rgba(80, 30, 30, 0.4);
  border: 1px solid rgba(200, 90, 90, 0.35);
  color: var(--text-dim);
}

.franchise-form {
  margin-top: 0.5rem;
  max-width: none;
  width: 100%;
}

.franchise-step-submit[hidden] {
  display: none !important;
}

.franchise-fieldset {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
  margin: 0;
  background: rgba(6, 6, 6, 0.65);
}

.franchise-fieldset legend {
  padding: 0 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-soft);
}

.franchise-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.franchise-label:first-of-type {
  margin-top: 0;
}

.franchise-input,
.franchise-textarea,
.franchise-file {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.franchise-textarea {
  min-height: 6rem;
  resize: vertical;
}

.franchise-input:focus,
.franchise-textarea:focus {
  outline: none;
  border-color: rgba(201, 163, 90, 0.45);
  box-shadow: 0 0 0 3px rgba(28, 61, 33, 0.35);
}

.franchise-radio-label {
  margin: 1rem 0 0.35rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.franchise-radio {
  display: block;
  margin: 0.35rem 0 0 0.1rem;
  font-size: 0.92rem;
  cursor: pointer;
}

.franchise-radio input {
  margin-right: 0.45rem;
  vertical-align: middle;
}

.franchise-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.franchise-privacy {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.franchise-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Bewertungen: links wie andere Sektionen */
.section-head--reviews {
  text-align: start;
}

.section-head--reviews::after {
  margin-left: 0;
  margin-right: auto;
}

.section-intro--reviews {
  margin-top: 0.5rem;
  max-width: 52ch;
  color: rgba(232, 232, 228, 0.9);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Galerie-Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 310;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3.25rem, 8vw, 4rem) clamp(0.75rem, 3vw, 1.5rem) clamp(0.75rem, 3vw, 1.5rem);
  box-sizing: border-box;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1200px);
  max-height: min(88vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(82vh, 880px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center 88%;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.lightbox__close {
  position: fixed;
  top: clamp(0.65rem, 2.5vw, 1rem);
  right: clamp(0.65rem, 2.5vw, 1rem);
  z-index: 312;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox__close:hover {
  background: #1a1a1a;
  border-color: rgba(201, 163, 90, 0.45);
}

/* Speisekarte: weißer Inhalt unter dem Video-Hero; Navigation wie Hero-Zeilen oben */
.page-speisekarte {
  background: #fff;
}

/* Franchise: weißer Seitenhintergrund unter dem Hero; Navigation wie Standard über Video */
.page-franchise {
  background: #fff;
  color: #1a1a18;
}

.menu-tages-intro {
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(58, 58, 54, 0.92);
  max-width: 62ch;
}

.menu-tages-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-tages-item {
  position: relative;
  padding: 0.8rem 1rem 0.95rem;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(165deg, #fafcfb 0%, #f3f6f4 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.menu-tages-item--inactive {
  opacity: 0.74;
  filter: grayscale(0.32);
}

.menu-tages-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  margin-bottom: 0.3rem;
}

.menu-tages-item__title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 700;
  color: #121210;
}

.menu-tages-item__price {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--accent-page);
  white-space: nowrap;
}

.menu-tages-item__desc {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(72, 72, 66, 0.95);
}

.menu-tages-item__lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  color: #3a3a36;
  line-height: 1.4;
}

.menu-tages-item__lines li {
  margin: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  background: rgba(12, 87, 65, 0.07);
  border: 1px solid rgba(12, 87, 65, 0.12);
}

.menu-tages-item__badge {
  margin: 0.45rem 0 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(110, 48, 48, 0.95);
}

/* Tagesaktionen: dunkle Box, weich eingebunden, hoher Kontrast */
.page-speisekarte .menu-board__section--tagesgerichte {
  padding: clamp(1.1rem, 2.6vw, 1.45rem);
  padding-bottom: clamp(1.2rem, 2.6vw, 1.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  margin-inline: clamp(0rem, 0.5vw, 0.35rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      90deg,
      rgba(9, 74, 56, 0.95) 0%,
      rgba(12, 87, 65, 0.85) 38%,
      rgba(110, 88, 42, 0.55) 72%,
      rgba(201, 163, 90, 0.35) 100%
    )
    0 0 / 100% 3px no-repeat,
    linear-gradient(165deg, #0d1311 0%, #121a16 42%, #0e1512 100%);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-board__heading {
  color: #fff;
  letter-spacing: 0.02em;
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-intro {
  color: #fff;
  font-weight: 500;
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: linear-gradient(165deg, #161f1a 0%, #101814 55%, #0c1210 100%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #fff;
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item--inactive {
  opacity: 0.92;
  filter: grayscale(0.08);
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item__title {
  color: #fff;
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item__price {
  color: #f0e0b8;
  font-size: 1.08rem;
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item__desc {
  color: rgba(255, 255, 255, 0.96);
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item__lines {
  color: #fff;
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item__lines li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
}

.page-speisekarte .menu-board__section--tagesgerichte .menu-tages-item__badge {
  color: #ffb4ae;
}

.page-speisekarte .section--menu.alt-bg {
  background: #fff;
}

.page-speisekarte .menu-board {
  padding: 0.25rem 0 2rem;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.page-speisekarte .menu-board__section {
  border-bottom: none;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.15rem, 2.5vw, 1.65rem);
}

.page-speisekarte .menu-board__heading {
  margin-bottom: 0.65rem;
  padding-bottom: 0.45rem;
  font-weight: 600;
  color: var(--accent-page);
  border-bottom: 1px solid rgba(12, 87, 65, 0.22);
}

.page-speisekarte .section--menu .menu-board .menu-row {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.page-speisekarte .section--menu .menu-board .menu-row:hover {
  background: rgba(12, 87, 65, 0.04);
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}

.page-speisekarte .section--menu .menu-board .menu-row .name {
  color: #1a1a18;
}

.page-speisekarte .section--menu .menu-board .menu-row .price {
  color: var(--accent-page);
}

.page-speisekarte .section--menu .menu-subhead {
  color: #5c5c56;
}

.page-speisekarte .section--menu .menu-note {
  background: #f6f7f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #454540;
}

.page-speisekarte .menu-page-back .hero-cta-btn--line {
  background: #fff;
  color: #1a1a18;
  border: 1px solid rgba(12, 87, 65, 0.32);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-speisekarte .menu-page-back .hero-cta-btn--line:hover {
  background: rgba(12, 87, 65, 0.07);
  color: var(--accent-page);
  border-color: var(--accent-page);
  box-shadow: none;
  transform: none;
}

.page-franchise .section--franchise-page-body {
  background: #fff;
}

.page-franchise .franchise-page-kicker {
  color: var(--accent-page);
}

.page-franchise .franchise-page-lead,
.page-franchise .franchise-page-text {
  color: #454540;
}

.page-franchise .franchise-form-title {
  color: #121210;
}

.page-franchise .franchise-steps-indicator {
  color: #6e6e6b;
}

.page-franchise .franchise-fieldset {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.page-franchise .franchise-fieldset legend {
  color: var(--accent-page);
}

.page-franchise .franchise-label,
.page-franchise .franchise-radio-label {
  color: #3a3a36;
}

.page-franchise .franchise-input,
.page-franchise .franchise-textarea,
.page-franchise .franchise-file {
  background: #fff;
  color: #1a1a18;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.page-franchise .franchise-input:focus,
.page-franchise .franchise-textarea:focus {
  border-color: rgba(12, 87, 65, 0.45);
  box-shadow: 0 0 0 3px rgba(12, 87, 65, 0.12);
}

.page-franchise .franchise-radio {
  color: #454540;
}

.page-franchise .franchise-hint,
.page-franchise .franchise-privacy {
  color: #6e6e6b;
}

.page-franchise .franchise-privacy a {
  color: var(--accent-page);
}

.page-franchise .franchise-flash--ok {
  background: rgba(12, 87, 65, 0.1);
  border: 1px solid rgba(12, 87, 65, 0.28);
  color: #2a4a3e;
}

.page-franchise .franchise-flash--err {
  background: rgba(120, 40, 40, 0.08);
  border: 1px solid rgba(180, 60, 60, 0.22);
  color: #5a2a2a;
}

.page-franchise .franchise-step-buttons .hero-cta-btn--line {
  background: #fff;
  color: #1a1a18;
  border: 1px solid rgba(12, 87, 65, 0.32);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-franchise .franchise-step-buttons .hero-cta-btn--line:hover {
  background: rgba(12, 87, 65, 0.07);
  color: var(--accent-page);
  border-color: var(--accent-page);
  box-shadow: none;
  transform: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .menu-page-hero__media,
  .franchise-page-hero-full__media {
    transform: none !important;
  }

  .hero-glow,
  .hero-copy,
  .hero-lead,
  .hero-cta,
  .site-nav {
    animation: none !important;
  }

  .hero-title__word,
  .hero-title__word--out,
  .hero-title__word--in {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-media .hero-video {
    display: none;
  }

  .hero-media {
    background: var(--surface);
  }

  .menu-page-hero__video {
    display: none;
  }

  .menu-page-hero__media {
    background: var(--surface);
  }

  .franchise-page-hero-full__video {
    display: none;
  }

  .press-slider__track {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-cta-btn,
  .feature-card,
  .location-map-wrap,
  .review-card {
    transition: none !important;
  }

  .feature-card:hover,
  .review-card:hover,
  .map-btn:hover {
    transform: none;
  }

  .section--features.is-visible .feature-card {
    animation: none;
  }

  .gallery-item img,
  .gallery-item__dim,
  .gallery-item__overlay,
  .gallery-item__frame,
  .gallery-item__inner,
  .gallery-item__cap {
    transition: none !important;
  }

  .gallery-item:hover img,
  .gallery-item:focus-within img {
    transform: scale(1.02);
  }

  .gallery-item__inner:hover,
  .gallery-item__inner:focus-visible {
    transform: none;
  }

  .gallery-item:hover .gallery-item__dim,
  .gallery-item:focus-within .gallery-item__dim,
  .gallery-item:hover .gallery-item__overlay,
  .gallery-item:focus-within .gallery-item__overlay {
    opacity: 0.55;
  }

  .gallery-item__inner:hover .gallery-item__cap,
  .gallery-item__inner:focus-within .gallery-item__cap {
    transform: translateY(0);
    opacity: 1;
  }

  .gallery-grid--in-gerichte-light .gallery-item:hover .gallery-item__dim,
  .gallery-grid--in-gerichte-light .gallery-item:focus-within .gallery-item__dim,
  .gallery-grid--in-gerichte-light .gallery-item:hover .gallery-item__overlay,
  .gallery-grid--in-gerichte-light .gallery-item:focus-within .gallery-item__overlay {
    opacity: 0 !important;
  }

  .gallery-grid--in-gerichte-light .gallery-item:hover img,
  .gallery-grid--in-gerichte-light .gallery-item:focus-within img {
    transform: none;
  }
}
