/* ====================================================
   CSS Variables
   ==================================================== */
:root {
  --c-bg:       #F5E8C4;
  --c-bg-alt:   #EDD9A3;
  --c-dark:     #1A0A05;
  --c-text:     #2B1208;
  --c-heading:  #1A0A05;
  --c-border:   #6B2810;
  --c-accent:   #9B4820;
  --c-gold:     #C8A870;
  --c-nav-bg:   #2B1208;
  --c-nav-text: #F5E8C4;

  --f-display: 'Cinzel', serif;
  --f-script:  'Great Vibes', cursive;
  --f-body:    'EB Garamond', serif;

  --max-w:     860px;
  --pad-x:     1.5rem;
  --pad-sec:   5rem;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--c-dark); /* iOS overscroll oben → dunkel statt weiß */
  overflow-x: hidden;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ====================================================
   Background helpers
   ==================================================== */
.bg-light { background-color: var(--c-bg); }
.bg-alt   { background-color: var(--c-bg-alt); }

/* ====================================================
   Scroll animation system
   Reduced-motion override prevents all transforms.
   ==================================================== */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.13s; }
.delay-2 { transition-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  .animate-in,
  .animate-in.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ====================================================
   Macedonian border strip (pure CSS diamond pattern)
   ==================================================== */
.mk-border-strip {
  height: 20px;
  background-color: var(--c-border);
  background-image:
    linear-gradient(135deg, var(--c-accent) 25%, transparent 25%),
    linear-gradient(225deg, var(--c-accent) 25%, transparent 25%),
    linear-gradient(315deg, var(--c-accent) 25%, transparent 25%),
    linear-gradient(45deg,  var(--c-accent) 25%, transparent 25%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0;
}

/* ====================================================
   Navigation – Desktop: Logo | Reservieren | Hamburger
   ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c-nav-bg);
  border-bottom: 3px solid var(--c-border);
  isolation: isolate;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* — Logo — */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}

/* Fallback-Text wenn kein Logo-Bild */
.site-logo-text {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: 0.1em;
}

/* — WhatsApp Reservieren Button (Mitte) — */
@keyframes navGoldPulse {
  0%   { box-shadow: 0 0 0 0   rgba(200, 168, 112, 0.55); }
  60%  { box-shadow: 0 0 0 10px rgba(200, 168, 112, 0); }
  100% { box-shadow: 0 0 0 0   rgba(200, 168, 112, 0); }
}

@keyframes navShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  /* Goldener Shimmer-Gradient */
  background: linear-gradient(
    105deg,
    var(--c-border)   0%,
    var(--c-accent)  35%,
    var(--c-gold)    50%,
    var(--c-accent)  65%,
    var(--c-border)  100%
  );
  background-size: 200% auto;
  color: #fff7e6;
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid rgba(200, 168, 112, 0.4);
  /* Puls-Animation */
  animation:
    navGoldPulse 2.4s ease-out infinite,
    navShimmer   3.5s linear infinite;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.nav-whatsapp:hover,
.nav-whatsapp:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.15);
  outline: none;
  animation-play-state: paused;
}

.nav-whatsapp-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .nav-whatsapp {
    animation: none;
    background-size: 100% auto;
  }
}

/* — Hamburger + Dropdown (rechts) — */
.nav-menu-wrap {
  position: relative;
  flex-shrink: 0;
}

.nav-toggle-input {
  display: none;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  cursor: pointer;
  padding: 2px 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background-color: var(--c-gold);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Burger → X */
.nav-toggle-input:checked + .nav-burger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle-input:checked + .nav-burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle-input:checked + .nav-burger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 200px;
  background-color: var(--c-nav-bg);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-gold);
  flex-direction: column;
  z-index: 200;
}

.nav-toggle-input:checked ~ .nav-dropdown {
  display: flex;
}

.nav-drop-link {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-nav-text);
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(107, 40, 16, 0.3);
  transition: color 0.15s, background-color 0.15s;
  cursor: pointer;
}

.nav-drop-link:last-child {
  border-bottom: none;
}

.nav-drop-link:hover,
.nav-drop-link:focus-visible {
  color: var(--c-gold);
  background-color: rgba(200, 168, 112, 0.07);
  outline: none;
}

/* Mobile: WhatsApp kleiner, Dropdown full-width */
@media (max-width: 540px) {
  .header-inner {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .nav-whatsapp-text { display: none; }

  .nav-whatsapp {
    padding: 0.55rem 0.75rem;
    border-radius: 50%;
  }

  .nav-dropdown {
    right: 0;
    min-width: 180px;
  }

  /* Altes .nav-link-System ausblenden falls noch vorhanden */
  .nav { display: none; }

  .nav-link--cta {
    margin: 0.5rem 1.5rem 0;
    text-align: center;
    border-radius: 2px;
  }
}

/* ====================================================
   Hero – Restaurantfoto + Neon-Logo
   ==================================================== */
.s-hero {
  position: relative;
  background-color: #0a0402;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center 55%;
  display: flex;
  flex-direction: column;
  min-height: 50vh;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 1, 0, 0.72) 0%,
    rgba(6, 2, 0, 0.42) 45%,
    rgba(4, 1, 0, 0.72) 100%
  );
}

/* =====================================================
   Mobile Fix:
   hero-bg.png ist ein 924×2000px Handy-Screenshot.
   Die weißen Ränder (oben ~500px, unten ~500px) werden
   durch background-size: 200% weggezoomt – nur der
   goldene Restaurantbereich (Mitte) bleibt sichtbar.
   ===================================================== */
@media (max-width: 640px) {
  .s-hero {
    background-size: 300% auto;
    background-position: center 58%;
    min-height: auto;
  }

  .hero-overlay {
    background: rgba(3, 1, 0, 0.38);
  }

  .hero-inner   { padding: 0; }
  .hero-frame   { border: none; }
  .hero-content { padding: 1.5rem 1rem 1.75rem; }
  .corner       { display: none; }

  /* Logo kleiner auf Mobile */
  .hero-logo-img {
    width: 55%;
    max-width: 210px;
  }

  /* Tagline kompakter */
  .hero-tagline {
    font-size: 0.92rem;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
  }

  /* Buttons nebeneinander – überschreibt die 768px-Regel */
  .hero-ctas {
    flex-direction: row !important;
    gap: 0.6rem;
    justify-content: center;
  }

  .hero-ctas .btn {
    font-size: 0.6rem;
    padding: 0.75rem 1rem;
    flex: 1;
    max-width: 160px;
    text-align: center;
  }
}

/* Shader-Layer über Overlay, unter Inhalt */
.hero-overlay   { z-index: 0; }

.shader-hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
}

.shader-hero canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Border-Strips und Inhalt über Shader */
.s-hero > .mk-border-strip,
.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner {
  flex: 1;
  padding: 2rem var(--pad-x);
  display: flex;
  align-items: stretch;
}

/* Dekorativer Innenrahmen */
.hero-frame {
  flex: 1;
  position: relative;
  border: 1px solid rgba(200, 168, 112, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Eckakzente */
.corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(200, 168, 112, 0.55);
  border-style: solid;
}
.c-tl { top: -1px;    left: -1px;   border-width: 2px 0 0 2px; }
.c-tr { top: -1px;    right: -1px;  border-width: 2px 2px 0 0; }
.c-bl { bottom: -1px; left: -1px;   border-width: 0 0 2px 2px; }
.c-br { bottom: -1px; right: -1px;  border-width: 0 2px 2px 0; }

/* Hero-Inhalt Einblende-Animation */
.hero-content {
  text-align: center;
  padding: 2rem var(--pad-x);
  animation: heroEnter 1s ease 0.2s both;
}

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

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

/* ====================================================
   Hero-Logo (echtes PNG)
   ==================================================== */
.hero-logo-img {
  width: min(340px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto;
  /* Schwarzen Hintergrund des PNGs auf dem dunklen Hero wegblenden */
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 12px rgba(255, 210, 60, 0.6))
    drop-shadow(0 0 30px rgba(255, 160, 20, 0.35));
}

/* ====================================================
   Neon-Logo Assembly (Legacy – nicht mehr genutzt)
   ==================================================== */

.neon-logo {
  --plate: 190px;
  --utensil-h: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* SVG Gabel & Messer */
.neon-utensil {
  height: var(--utensil-h);
  width: auto;
  display: block;
  filter:
    drop-shadow(0 0 3px rgba(255, 248, 200, 0.95))
    drop-shadow(0 0 8px rgba(255, 210, 60, 0.85))
    drop-shadow(0 0 18px rgba(255, 170, 20, 0.65))
    drop-shadow(0 0 35px rgba(255, 140, 10, 0.40));
}

/* Teller-Kreis */
.neon-plate {
  width: var(--plate);
  height: var(--plate);
  border-radius: 50%;
  border: 2.5px solid rgba(255, 210, 80, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 8px  rgba(255, 220, 100, 0.85),
    0 0 22px rgba(255, 195, 50, 0.55),
    0 0 45px rgba(255, 165, 20, 0.35),
    inset 0 0 18px rgba(255, 180, 50, 0.10);
}

/* "Meze Bar" im Teller */
.neon-brand {
  font-family: var(--f-script);
  font-size: 1.55rem;
  font-weight: 400;
  color: #FFE8A0;
  line-height: 1;
  text-shadow:
    0 0 6px  rgba(255, 255, 210, 0.95),
    0 0 14px rgba(255, 215, 70, 0.85),
    0 0 30px rgba(255, 185, 30, 0.65),
    0 0 55px rgba(255, 150, 10, 0.45);
}

/* "Event." Schriftzug */
.neon-event {
  font-family: var(--f-script);
  font-size: clamp(2.8rem, 7vw, 4rem);
  color: #FFE8A0;
  margin-top: 0.6rem;
  line-height: 1;
  text-shadow:
    0 0 7px  rgba(255, 255, 210, 0.95),
    0 0 16px rgba(255, 215, 70, 0.85),
    0 0 34px rgba(255, 185, 30, 0.65),
    0 0 62px rgba(255, 150, 10, 0.45);
}

/* Tagline & CTAs unter dem Logo */
.ornament-gold {
  display: block;
  text-align: center;
  color: var(--c-gold);
  font-size: 0.9rem;
  margin: 1.5rem 0;
  letter-spacing: 0.6em;
  padding-left: 0.6em;
}

.hero-tagline {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 232, 196, 0.70);
  line-height: 1.6;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================
   Buttons
   ==================================================== */
.btn {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  display: inline-block;
  cursor: pointer;
  color: #fff7e6;
  border: 1px solid rgba(200, 168, 112, 0.4);
  background: linear-gradient(
    105deg,
    var(--c-border)  0%,
    var(--c-accent) 35%,
    var(--c-gold)   50%,
    var(--c-accent) 65%,
    var(--c-border) 100%
  );
  background-size: 200% auto;
  animation:
    navGoldPulse 2.4s ease-out infinite,
    navShimmer   3.5s linear   infinite;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.15);
  animation-play-state: paused;
  outline: none;
}

/* Variants – nur noch border-Feinheiten */
.btn-primary {
  border-color: var(--c-border);
}

.btn-outline {
  border-color: rgba(200, 168, 112, 0.45);
}

.btn-dark {
  border-color: var(--c-border);
}

.btn-lg {
  padding: 1.1rem 3rem;
  font-size: 0.76rem;
}

/* ====================================================
   Ornament (on light backgrounds)
   ==================================================== */
.ornament {
  display: block;
  text-align: center;
  color: var(--c-border);
  font-size: 0.9rem;
  margin: 1.5rem 0;
  letter-spacing: 0.6em;
  padding-left: 0.6em;
}

/* ====================================================
   Shared section layout
   ==================================================== */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-sec) var(--pad-x);
  text-align: center;
}

.section-head { margin-bottom: 2.75rem; }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 5.5vw, 3rem);
  font-weight: 900;
  color: var(--c-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.section-script {
  font-family: var(--f-script);
  font-size: 1.65rem;
  color: var(--c-accent);
  margin-top: 0.15rem;
}

.section-cta { margin-top: 2.75rem; }

/* ====================================================
   Google Bewertungen – Infinite Scroll Slider
   ==================================================== */
.s-reviews {
  background-color: var(--c-dark);
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}

/* Header: Google-Badge + Gesamtbewertung */
.reviews-head {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.reviews-rating-block {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.reviews-google-g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.reviews-score {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.reviews-stars-total {
  display: flex;
  gap: 1px;
}

.rstar {
  color: #FBBC05;
  font-size: 1.1rem;
  line-height: 1;
}

.rstar--half { opacity: 0.45; }

/* 70% gefüllter Stern für 4.7 */
.rstar--partial {
  background: linear-gradient(to right, #FBBC05 70%, rgba(251, 188, 5, 0.2) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-label {
  font-family: var(--f-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 232, 196, 0.45);
}

/* Viewport mit Fade-Masken */
.reviews-viewport {
  position: relative;
  overflow: hidden;
}

/* Seitliche Weich-Ausblendung */
.reviews-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.reviews-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--c-dark), transparent);
}

.reviews-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--c-dark), transparent);
}

/* Scroll-Animation */
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem var(--pad-x);
  animation: reviewsScroll 30s linear infinite;
  cursor: default;
}

/* Pause beim Hover über eine Karte */
.reviews-track:hover {
  animation-play-state: paused;
}

/* Einzelne Review-Karte */
.review-card {
  background-color: var(--c-bg);
  border-top: 3px solid var(--c-gold);
  width: 280px;
  flex-shrink: 0;
  padding: 1.25rem 1.4rem 1.4rem;
  transition: box-shadow 0.25s;
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

/* Avatar-Kreis mit Initial */
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--c-border);
  color: var(--c-bg);
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-heading);
  line-height: 1.3;
}

.review-date {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: rgba(43, 18, 8, 0.45);
  line-height: 1.2;
}

.review-stars {
  margin-left: auto;
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-text {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--c-text);
}

/* — Google-Bewertungslink — */
.reviews-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 2rem var(--pad-x) 2.5rem;
}

.reviews-cta-phrase {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 232, 196, 0.55);
  text-align: center;
}

.reviews-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  text-decoration: none;
  border: 1px solid rgba(200, 168, 112, 0.35);
  padding: 0.7rem 1.5rem;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.reviews-cta-link:hover,
.reviews-cta-link:focus-visible {
  border-color: var(--c-gold);
  background-color: rgba(200, 168, 112, 0.08);
  outline: none;
}

.reviews-cta-g  { width: 18px; height: 18px; flex-shrink: 0; }
.reviews-cta-arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ====================================================
   Essens-Banner (Spread aus unserer Küche)
   ==================================================== */
.s-feast {
  position: relative;
  overflow: hidden;
  padding: 3.5rem var(--pad-x) 3.25rem;
  text-align: center;
  background-color: var(--c-dark);
  background-image:
    radial-gradient(ellipse at top, rgba(155, 72, 32, 0.35), transparent 60%);
}

.feast-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 2.75rem;
}

.feast-script {
  font-family: var(--f-script);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1;
  color: var(--c-gold);
}

.feast-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.2rem, 5.8vw, 2.6rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-bg);
  line-height: 1.15;
  overflow-wrap: break-word;
  max-width: 100%;
}

.feast-divider {
  display: block;
  font-size: 1rem;
  color: var(--c-gold);
  opacity: 0.85;
}

.feast-sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(245, 232, 196, 0.82);
  max-width: 34rem;
}

.feast-btn {
  margin-top: 0.4rem;
}

/* Auto-Slider im Feast-Bereich: full-bleed, gleicht die seitliche Sektion-Padding aus */
.feast-slider {
  margin-inline: calc(-1 * var(--pad-x));
}

@media (min-width: 1200px) {
  .s-feast { padding-top: 4.5rem; }
}

/* ====================================================
   Auto-Slider (im Feast-Bereich)
   ==================================================== */
/* Viewport mit seitlicher Weich-Ausblendung */
.gallery-viewport {
  position: relative;
  overflow: hidden;
}

.gallery-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.gallery-fade--left  { left: 0;  background: linear-gradient(to right, var(--c-dark), transparent); }
.gallery-fade--right { right: 0; background: linear-gradient(to left,  var(--c-dark), transparent); }

/* Endlos-Scroll: Track ist doppelt befüllt → translateX(-50%) loopt nahtlos */
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.25rem var(--pad-x);
  animation: galleryScroll 90s linear infinite;
}

.gallery-track:hover { animation-play-state: paused; }

.gallery-slide {
  flex-shrink: 0;
  margin: 0;
  width: clamp(200px, 52vw, 300px);
  border-top: 3px solid var(--c-gold);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  line-height: 0;
}

.gallery-slide img,
.gallery-slide video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform 0.5s var(--ease, ease);
}

.gallery-slide:hover img,
.gallery-slide:hover video { transform: scale(1.05); }

/* Reduced motion: kein Auto-Scroll → statisches, scrollbares Band */
@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
    width: auto;
    max-width: var(--max-w);
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .gallery-slide { scroll-snap-align: center; }
  .gallery-slide[aria-hidden="true"] { display: none; }
  .gallery-fade { display: none; }
}

/* Reduced motion: kein Scroll, stattdessen Grid */
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  /* Duplikate verstecken */
  .review-card[aria-hidden="true"] { display: none; }
}

/* ====================================================
   About section
   ==================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3.5rem;
  text-align: left;
  align-items: stretch;
}

.about-p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 1.1rem;
}

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

/* Dark pull-quote box */
.pull-quote {
  background-color: var(--c-dark);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 100%;
}

.pull-quote-text {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-bg);
  line-height: 1.75;
}

/* ====================================================
   Dish cards
   ==================================================== */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dish-card {
  border: 1px solid var(--c-gold);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
  cursor: default;
}

.dish-card:hover {
  box-shadow: 0 6px 28px rgba(43, 18, 8, 0.13);
}

.dish-ornament {
  display: block;
  color: var(--c-border);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.25rem;
}

.dish-name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-heading);
  margin-bottom: 0.25rem;
}

.dish-subtitle {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--c-accent);
  margin-bottom: 0.9rem;
}

.dish-desc {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text);
  flex: 1;
  margin-bottom: 1.25rem;
}

.dish-price {
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-border);
  letter-spacing: 0.06em;
  border-top: 1px dotted var(--c-gold);
  padding-top: 0.85rem;
  margin-top: auto;
}

/* ====================================================
   Quote section – Shader-Animation als Hintergrund
   ==================================================== */
.s-quote {
  background-color: var(--c-dark);
  position: relative;
  overflow: hidden;
}

/* WebGL Canvas-Container füllt die Sektion */
.shader-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shader-bg canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Zitat-Inhalt über dem Canvas */
.s-quote .section-inner {
  position: relative;
  z-index: 1;
  padding: 8rem var(--pad-x);
}

.quote-large {
  font-family: var(--f-body);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: rgba(245, 232, 196, 0.9);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

/* ====================================================
   Wine section
   ==================================================== */
.wines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-gold);
  margin-top: 0.5rem;
}

.wine-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--c-gold);
}

.wine-item:last-child { border-right: none; }

.wine-name {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-heading);
  margin-bottom: 0.3rem;
}

.wine-desc {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--c-accent);
  margin-bottom: 0.6rem;
}

.wine-price {
  font-family: var(--f-display);
  font-size: 0.82rem;
  color: var(--c-text);
}

/* ====================================================
   Contact section
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.contact-label {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-border);
  margin-bottom: 0.65rem;
  display: block;
}

.contact-text {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
}

.contact-tel,
.contact-wa {
  color: var(--c-border);
  text-decoration: none;
  font-family: var(--f-body);
  transition: color 0.15s;
}

.contact-tel:hover,
.contact-wa:hover { color: var(--c-accent); }

/* Anreise-Button unter der Adresse */
.contact-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-family: var(--f-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-border);
  text-decoration: none;
  border: 1px solid var(--c-border);
  padding: 0.45rem 0.9rem;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}

.contact-directions svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.contact-directions:hover,
.contact-directions:focus-visible {
  background-color: var(--c-border);
  color: var(--c-bg);
  outline: none;
}

/* CTA-Button identisch zur Navbar (Shimmer + Puls) */
.btn-shimmer {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff7e6;
  text-decoration: none;
  padding: 1rem 2.8rem;
  cursor: pointer;
  border: 1px solid rgba(200, 168, 112, 0.4);
  background: linear-gradient(
    105deg,
    var(--c-border)  0%,
    var(--c-accent) 35%,
    var(--c-gold)   50%,
    var(--c-accent) 65%,
    var(--c-border) 100%
  );
  background-size: 200% auto;
  animation:
    navGoldPulse 2.4s ease-out infinite,
    navShimmer   3.5s linear   infinite;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn-shimmer:hover,
.btn-shimmer:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.15);
  animation-play-state: paused;
  outline: none;
}

.btn-shimmer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-shimmer,
  .footer-nl-btn {
    animation: none;
    background-size: 100% auto;
  }
}

/* ====================================================
   Footer – dunkle Erdtextur, Newsletter, Social
   ==================================================== */

/* Grainy-Textur via SVG-Noise auf Pseudo-Element */
.site-footer {
  position: relative;
  background-color: #0C0401;
  background-image:
    radial-gradient(ellipse 70% 50% at 10% 40%, rgba(107, 40, 16, 0.22) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(43, 18, 8, 0.4)   0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(90, 35, 12, 0.18)  0%, transparent 100%);
  overflow: hidden;
}

/* Grain-Overlay */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

/* Alle Footer-Kinder über dem Grain */
.site-footer > * { position: relative; z-index: 1; }

/* Gemeinsames breites Layout */
.footer-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Screenreader-only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* — Newsletter — */
.footer-nl {
  padding: 3.5rem 0 3rem;
}

.footer-nl .footer-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nl-heading {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.footer-nl-sub {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: rgba(245, 232, 196, 0.55);
  line-height: 1.5;
}

.footer-nl-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.footer-nl-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 168, 112, 0.3);
  border-right: none;
  color: #fff;
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 0.7rem 1.1rem;
  width: 240px;
  outline: none;
  transition: border-color 0.2s;
}

.footer-nl-input::placeholder { color: rgba(245, 232, 196, 0.35); }
.footer-nl-input:focus { border-color: var(--c-gold); }

.footer-nl-btn {
  color: #fff7e6;
  border: 1px solid rgba(200, 168, 112, 0.4);
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(
    105deg,
    var(--c-border)  0%,
    var(--c-accent) 35%,
    var(--c-gold)   50%,
    var(--c-accent) 65%,
    var(--c-border) 100%
  );
  background-size: 200% auto;
  animation:
    navGoldPulse 2.4s ease-out infinite,
    navShimmer   3.5s linear   infinite;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.footer-nl-btn:hover,
.footer-nl-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.15);
  animation-play-state: paused;
  outline: none;
}

/* — Rechtslinks — */
.footer-legal {
  padding: 1.5rem 0;
}

.footer-legal .footer-wide {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: rgba(245, 232, 196, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal-link:hover { color: var(--c-gold); }

/* — Trennlinie — */
.footer-rule {
  height: 1px;
  background: rgba(200, 168, 112, 0.2);
  margin: 0 var(--pad-x);
}

/* — Bottom: Copyright + Social — */
.footer-bottom {
  padding: 1.5rem 0 2rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy p {
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: rgba(245, 232, 196, 0.4);
  line-height: 1.6;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 168, 112, 0.3);
  color: rgba(245, 232, 196, 0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background-color: rgba(200, 168, 112, 0.08);
  outline: none;
}

/* — Footer Responsive — */
@media (max-width: 640px) {
  .footer-nl .footer-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nl-form { width: 100%; }

  .footer-nl-input { flex: 1; width: auto; min-width: 0; }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ====================================================
   Responsive – Tablet
   ==================================================== */
@media (max-width: 768px) {
  :root { --pad-sec: 4rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pull-quote { height: auto; }

  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wines-grid {
    grid-template-columns: 1fr;
  }

  .wine-item {
    border-right: none;
    border-bottom: 1px solid var(--c-gold);
  }
  .wine-item:last-child { border-bottom: none; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ====================================================
   Responsive – Mobile
   ==================================================== */
@media (max-width: 480px) {
  :root { --pad-sec: 3rem; }

  .header-inner {
    padding: 0 0.75rem;
    gap: 0.4rem;
    height: 56px;
  }

  .nav { justify-content: center; }

  .nav-link {
    font-size: 0.6rem;
    padding: 0.35rem 0.45rem;
  }

  .hero-content { padding: 2rem 0.75rem; }

  /* Verkleinertes Neon-Logo auf Mobile */
  .neon-logo {
    --plate: 130px;
    --utensil-h: 140px;
    gap: 6px;
  }

  .neon-brand { font-size: 1.1rem; }

  /* Rahmen und Ecken ausblenden auf sehr kleinen Screens */
  .hero-frame { border: none; }
  .corner { display: none; }
}
