/* =========================================================
   SANTA LUCIA II — Grafenwöhr
   Aesthetic: Vintage Trattoria-Pergament × Military Heritage
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Farben — höherer Kontrast, sauberer */
  --cream:        #fbf6e9;
  --cream-deep:   #f0e4c4;
  --paper:        #ffffff;
  --paper-warm:   #fdf9ed;
  --charcoal:     #0d0b0a;
  --charcoal-2:   #1f1a16;
  --tomato:       #c8261f;
  --tomato-deep:  #9a1812;
  --olive:        #3e5023;
  --olive-deep:   #25301a;
  --gold:         #a47730;
  --gold-light:   #c89846;
  --army:         #2f3a1d;
  --ink:          #1a1410;
  --border-soft:  rgba(13, 11, 10, 0.12);
  --border-strong:rgba(13, 11, 10, 0.22);

  /* Typografie */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-script:  'Caveat', cursive;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max-w: 1280px;
  --pad:   clamp(1.25rem, 4vw, 3rem);

  /* Bewegung */
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--tomato); color: var(--cream); }

/* ---------- 3. FILMKORN-OVERLAY (überall) ---------- */
.grain-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Pergament-Textur als globaler Hintergrund */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top, rgba(255, 245, 215, 0.4), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(184, 146, 74, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(74, 93, 46, 0.05), transparent 50%);
  pointer-events: none;
}

/* =========================================================
   LANGUAGE GATE
   ========================================================= */

.lang-gate-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at center, #fbf3df 0%, #ead8ad 60%, #c9b07e 100%);
  position: relative;
  overflow: hidden;
  transition: opacity 0.6s var(--ease-out);
}

.lang-gate-body.is-leaving { opacity: 0; }

.lang-gate-body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 48, 42, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(74, 93, 46, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.lang-gate {
  position: relative;
  width: min(90vw, 720px);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
  background: var(--paper);
  box-shadow:
    0 0 0 1px rgba(184, 146, 74, 0.3),
    0 0 0 6px var(--paper),
    0 0 0 7px rgba(184, 146, 74, 0.4),
    0 30px 80px -20px rgba(40, 25, 10, 0.4),
    inset 0 0 60px rgba(184, 146, 74, 0.08);
  animation: gateEnter 1.1s var(--ease-out) both;
}

@keyframes gateEnter {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* Dekorative Ecken (wie ein Pass / Zertifikat) */
.corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  opacity: 0.7;
}
.corner-tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.corner-tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.corner-bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.corner-br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.lang-gate__crest {
  color: var(--tomato-deep);
  width: 80px;
  margin: 0 auto 1rem;
  animation: crestSpin 1.4s var(--ease-out) both;
  animation-delay: 0.2s;
}
@keyframes crestSpin {
  from { opacity: 0; transform: rotate(-15deg) scale(0.7); }
  to   { opacity: 1; transform: none; }
}

.lang-gate__overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-deep);
  opacity: 0.75;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.lang-gate__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 0.95;
  color: var(--charcoal);
  margin: 0.4rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.title-word {
  display: inline-block;
  animation: fadeUp 0.9s var(--ease-out) both;
}
.title-word:nth-child(1) { animation-delay: 0.5s; }
.title-word:nth-child(2) { animation-delay: 0.65s; }
.title-word:nth-child(3) { animation-delay: 0.8s; }

.title-word--script {
  font-family: var(--font-script);
  color: var(--tomato);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1em;
  margin: 0 0.2em;
  transform: translateY(0.05em) rotate(-2deg);
}

.lang-gate__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--charcoal-2);
  opacity: 0.85;
  animation: fadeUp 0.9s var(--ease-out) 0.95s both;
}

.lang-gate__divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  max-width: 280px;
  animation: fadeUp 0.9s var(--ease-out) 1.1s both;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider-ornament {
  color: var(--gold);
  font-size: 0.85rem;
}

.lang-gate__prompt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal-2);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s var(--ease-out) 1.25s both;
}

.lang-gate__choices {
  display: grid;
  gap: 0.9rem;
  max-width: 420px;
  margin: 0 auto;
}

.lang-choice {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: var(--cream);
  border: 1px solid rgba(184, 146, 74, 0.4);
  text-align: left;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.9s var(--ease-out) both;
}
.lang-choice--de { animation-delay: 1.4s; }
.lang-choice--en { animation-delay: 1.55s; }

.lang-choice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(184, 146, 74, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.lang-choice:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: -4px 6px 0 rgba(184, 146, 74, 0.25);
}
.lang-choice:hover::before { opacity: 1; }
.lang-choice:hover .lang-choice__arrow { transform: translateX(6px); color: var(--tomato); }

.lang-choice__flag {
  width: 36px;
  height: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.15);
  overflow: hidden;
  flex-shrink: 0;
}
.flag-stripe { flex: 1; }
.flag-stripe--black { background: #1a1614; }
.flag-stripe--red   { background: #c8302e; }
.flag-stripe--gold  { background: #ffce00; }

.flag-us {
  background: #b22234;
  position: relative;
  border: 1px solid rgba(0,0,0,0.15);
}
.flag-us__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0,
    #b22234 2px,
    #ffffff 2px,
    #ffffff 3.7px
  );
}
.flag-us__canton {
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 53%;
  background: #3c3b6e;
  background-image:
    radial-gradient(circle, #fff 0.5px, transparent 0.6px);
  background-size: 4px 3.5px;
  background-position: 1px 1px;
}

.lang-choice__label {
  display: flex;
  flex-direction: column;
}
.lang-choice__lang {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.1;
}
.lang-choice__greet {
  font-family: var(--font-script);
  color: var(--olive);
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 2px;
}

.lang-choice__arrow {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  opacity: 0.5;
  transition: all 0.4s var(--ease);
}

.lang-gate__footnote {
  font-family: var(--font-script);
  color: var(--tomato);
  font-size: 1.2rem;
  margin-top: 2rem;
  opacity: 0.8;
  animation: fadeUp 0.9s var(--ease-out) 1.7s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* =========================================================
   MAIN PAGES (DE / EN)
   ========================================================= */

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(244, 234, 213, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem var(--pad);
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.site-header.is-scrolled .brand { color: var(--charcoal); }

.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand__name em {
  font-family: var(--font-script);
  color: var(--tomato);
  font-style: italic;
  font-size: 1.1em;
  font-weight: 700;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.site-header.is-scrolled .nav { color: var(--charcoal); }

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__list a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s var(--ease);
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--tomato);
  transition: width 0.4s var(--ease);
}
.nav__list a:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.lang-switch a {
  padding: 4px 8px;
  border: 1px solid currentColor;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.lang-switch a:hover { opacity: 1; }
.lang-switch a.is-active { opacity: 1; background: var(--tomato); color: var(--cream); border-color: var(--tomato); }

.nav-toggle {
  display: none;
  width: 32px; height: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
  filter: contrast(1.05) saturate(0.85) sepia(0.15);
  transform: scale(1.05);
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero__slide.is-active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.15) translate(-2%, -1%); }
}

/* Platzhalter-Slides falls noch keine Fotos da sind */
.hero__slide--placeholder-1 {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184, 48, 42, 0.3), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(184, 146, 74, 0.35), transparent 60%),
    linear-gradient(135deg, #2a1410, #4a2820 50%, #1a0d08);
}
.hero__slide--placeholder-2 {
  background:
    radial-gradient(ellipse at 60% 30%, rgba(74, 93, 46, 0.35), transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(184, 48, 42, 0.25), transparent 60%),
    linear-gradient(45deg, #1a1410, #3a2418 50%, #0d0805);
}
.hero__slide--placeholder-3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184, 146, 74, 0.4), transparent 60%),
    linear-gradient(160deg, #2a1a10, #4a2818 60%, #1a100a);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0.2) 40%, rgba(20, 14, 10, 0.85) 100%);
}

.hero__content {
  padding: 0 var(--pad);
  max-width: 900px;
  position: relative;
}

.hero__overline {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 1.2s var(--ease-out) 0.3s both;
}
.hero__overline::before, .hero__overline::after {
  content: '';
  width: 40px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  animation: fadeUp 1.2s var(--ease-out) 0.5s both;
}
.hero__title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-3deg);
  margin: 0 0.05em;
}

.hero__since {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  margin-top: 0.5rem;
  animation: fadeUp 1.2s var(--ease-out) 0.7s both;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  margin: 1.5rem auto 0;
  max-width: 600px;
  opacity: 0.92;
  animation: fadeUp 1.2s var(--ease-out) 0.9s both;
}

.hero__cta {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s var(--ease-out) 1.1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--tomato);
  color: var(--cream);
  border-color: var(--tomato);
}
.btn--primary::before { background: var(--tomato-deep); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost::before { background: var(--cream); }
.btn--ghost:hover { color: var(--charcoal); }

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn--whatsapp::before { background: #1da851; }

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold::before { background: var(--gold-light); }

.btn__arrow {
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: fadeUp 1.2s var(--ease-out) 1.4s both;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(184, 146, 74, 0.3);
  border-bottom: 1px solid rgba(184, 146, 74, 0.3);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee__track span::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
section { position: relative; }

.section {
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  position: relative;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 1rem;
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: currentColor;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  max-width: 18ch;
}
.section__title em {
  font-family: var(--font-script);
  color: var(--tomato);
  font-style: italic;
  font-weight: 700;
}

/* ---------- STORY (Kult-Section) ---------- */
.story {
  background: var(--paper);
  border-top: 1px solid rgba(184, 146, 74, 0.2);
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.story__text { max-width: 520px; }

.story__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--charcoal-2);
  margin: 1.5rem 0;
}
.story__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal-2);
  opacity: 0.88;
}
.story__body + .story__body { margin-top: 1rem; }

.story__quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.story__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--olive-deep);
  opacity: 0.75;
}

.story__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.story__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: sepia(0.2) contrast(1.05) saturate(0.9);
  box-shadow: 0 30px 60px -20px rgba(40, 25, 10, 0.4);
}
.story__photo--placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(184, 146, 74, 0.08) 0, rgba(184, 146, 74, 0.08) 2px, transparent 2px, transparent 12px),
    linear-gradient(135deg, var(--cream-deep), var(--gold) 60%, var(--olive));
}
.story__photo--placeholder::after {
  content: 'Restaurant-Foto';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--paper);
  opacity: 0.7;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.story__stamp {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--tomato);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  text-align: center;
  line-height: 1;
  transform: rotate(-12deg);
  box-shadow: 0 10px 30px rgba(184, 48, 42, 0.4);
  border: 2px dashed rgba(255,255,255,0.3);
}
.story__stamp strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
.story__stamp span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.95;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid rgba(184, 146, 74, 0.3);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--tomato);
  line-height: 1;
}
.stat__num em {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--gold);
  font-size: 0.6em;
  vertical-align: super;
}
.stat__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  opacity: 0.75;
  margin-top: 0.8rem;
}

/* ---------- DISHES PREVIEW ---------- */
.dishes {
  background: var(--cream);
  position: relative;
}

.dishes__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}
.dishes__cta-top {
  font-family: var(--font-script);
  color: var(--tomato);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.dishes__cta-top:hover { color: var(--tomato-deep); }
.dishes__cta-top::after {
  content: '→';
  transition: transform 0.4s var(--ease);
}
.dishes__cta-top:hover::after { transform: translateX(8px); }

.dishes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.dish {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  border: 1px solid rgba(184, 146, 74, 0.2);
}
.dish:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(40, 25, 10, 0.3);
  border-color: var(--gold);
}

.dish__media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.7s var(--ease);
}
.dish:hover .dish__media { transform: scale(1.06); }

.dish__media--placeholder-pizza {
  background:
    radial-gradient(circle at 50% 50%, #e8b76a 0%, #c8732e 60%, #6b3010 100%);
}
.dish__media--placeholder-pizza::before {
  content: '🍕';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  opacity: 0.5;
}
.dish__media--placeholder-pasta {
  background:
    radial-gradient(circle at 50% 50%, #f0d088 0%, #b8924a 60%, #5a3a1a 100%);
}
.dish__media--placeholder-pasta::before {
  content: '🍝';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  opacity: 0.5;
}
.dish__media--placeholder-meat {
  background:
    radial-gradient(circle at 50% 50%, #a85a3e 0%, #6b2818 60%, #2a0d05 100%);
}
.dish__media--placeholder-meat::before {
  content: '🥩';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  opacity: 0.5;
}
.dish__media--placeholder-dessert {
  background:
    radial-gradient(circle at 50% 50%, #d4a574 0%, #8a5a3a 60%, #3a1f10 100%);
}
.dish__media--placeholder-dessert::before {
  content: '🍰';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  opacity: 0.5;
}
.dish__media--placeholder-antipasti {
  background:
    radial-gradient(circle at 50% 50%, #e8c068 0%, #a87830 60%, #4a2a10 100%);
}
.dish__media--placeholder-antipasti::before {
  content: '🥗';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  opacity: 0.5;
}
.dish__media--placeholder-fish {
  background:
    radial-gradient(circle at 50% 50%, #88b8c8 0%, #3a6878 60%, #0d2a35 100%);
}
.dish__media--placeholder-fish::before {
  content: '🐟';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  opacity: 0.5;
}

.dish__body { padding: 1.5rem 1.5rem 1.7rem; }
.dish__cat {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 0.4rem;
}
.dish__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.dish__desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--charcoal-2);
  opacity: 0.78;
  line-height: 1.4;
}

/* ---------- HERITAGE (Army) ---------- */
.heritage {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.heritage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(184, 146, 74, 0.05) 1px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
}
.heritage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.4) 0%, transparent 30%, transparent 70%, rgba(20, 14, 10, 0.4) 100%);
  pointer-events: none;
}

.heritage .eyebrow { color: var(--gold-light); }
.heritage__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.heritage__title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
}

.heritage__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  max-width: 720px;
  opacity: 0.88;
  margin-bottom: 1.5rem;
}
.heritage__body {
  font-size: 0.98rem;
  max-width: 680px;
  opacity: 0.8;
  line-height: 1.75;
}

.heritage__pullquote {
  margin: 4rem auto;
  max-width: 900px;
  text-align: center;
  position: relative;
  padding: 2rem 2rem;
}
.heritage__pullquote::before, .heritage__pullquote::after {
  content: '';
  position: absolute;
  width: 60px; height: 1px;
  background: var(--gold);
  left: 50%;
  transform: translateX(-50%);
}
.heritage__pullquote::before { top: 0; }
.heritage__pullquote::after { bottom: 0; }

.heritage__pullquote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.heritage__pullquote blockquote::before { content: '“'; font-size: 1.5em; line-height: 0; vertical-align: -0.3em; margin-right: 0.05em; color: var(--gold); }
.heritage__pullquote blockquote::after  { content: '”'; font-size: 1.5em; line-height: 0; vertical-align: -0.6em; margin-left: 0.05em; color: var(--gold); }

.heritage__pullquote cite {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  font-style: normal;
}

.awards {
  margin-top: 2rem;
}
.awards__label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}
.awards__label::before, .awards__label::after { content: '✦'; margin: 0 1rem; opacity: 0.6; }

.awards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.award {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper);
  padding: 1rem;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px var(--charcoal), 0 0 0 5px rgba(184, 146, 74, 0.3), 0 20px 50px -15px rgba(0,0,0,0.6);
  transition: all 0.5s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.award:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 0 0 4px var(--charcoal), 0 0 0 5px var(--gold), 0 30px 60px -10px rgba(0,0,0,0.7), 0 0 40px rgba(184, 146, 74, 0.3);
}

.award__inner {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(0deg, rgba(184, 146, 74, 0.05) 0, rgba(184, 146, 74, 0.05) 1px, transparent 1px, transparent 8px),
    radial-gradient(ellipse at center, var(--paper), var(--cream-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--charcoal);
  position: relative;
}

.award__inner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.15;
}
.award__inner::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}

.award__seal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--army);
  letter-spacing: 0.05em;
  z-index: 1;
}
.award__from {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  opacity: 0.7;
  margin-top: 0.6rem;
  z-index: 1;
}
.award__line {
  width: 30px; height: 1px;
  background: var(--gold);
  margin: 1rem 0;
  z-index: 1;
}
.award__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--charcoal-2);
  line-height: 1.4;
  z-index: 1;
}
.award__year {
  position: absolute;
  bottom: 1.5rem;
  font-family: var(--font-script);
  color: var(--tomato);
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 1;
}

.award__hint {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--tomato);
  color: var(--cream);
  padding: 3px 8px;
  z-index: 2;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--paper);
  border-top: 1px solid rgba(184, 146, 74, 0.2);
}
.services__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.services__header .section__title { margin: 0 auto; }
.services__header .eyebrow { justify-content: center; }
.services__header .eyebrow::before { display: none; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1px solid rgba(184, 146, 74, 0.3);
  text-align: center;
  position: relative;
  transition: all 0.5s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--tomato);
  box-shadow: 0 30px 50px -20px rgba(40, 25, 10, 0.25);
}
.service__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--tomato);
}
.service__icon svg { width: 30px; height: 30px; }
.service__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.service__text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--charcoal-2);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.service__cta {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tomato);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.3s, color 0.3s;
  display: inline-flex;
  gap: 0.5rem;
}
.service__cta:hover { color: var(--tomato-deep); gap: 0.9rem; }

/* ---------- ORDER CTA ---------- */
.order {
  background: var(--tomato);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.order::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 80, 0.15), transparent 50%);
  pointer-events: none;
}
.order__inner {
  text-align: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.order .eyebrow { color: var(--gold-light); justify-content: center; }
.order .eyebrow::before { display: none; }

.order__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.order__title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
}
.order__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
}

.order__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.order__num {
  padding: 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.order__num-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
.order__num-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
}

/* ---------- LOCATION ---------- */
.location { background: var(--cream); }

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.location__map {
  aspect-ratio: 4/5;
  background: var(--paper);
  border: 1px solid rgba(184, 146, 74, 0.3);
  position: relative;
  overflow: hidden;
}
.location__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: sepia(0.2) saturate(0.85);
}

.location__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184, 146, 74, 0.3);
}
.info-block:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }

.info-block__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 0.8rem;
}
.info-block__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.info-block__value strong { font-weight: 600; }

.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.hours dt { color: var(--charcoal-2); font-weight: 500; }
.hours dd { color: var(--charcoal); font-style: italic; }
.hours dt.closed, .hours dt.closed + dd { color: var(--tomato); opacity: 0.85; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem var(--pad) 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}
.footer__brand em {
  font-family: var(--font-script);
  color: var(--tomato);
  font-style: italic;
}
.footer__tag {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.footer__desc {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 360px;
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  font-size: 0.95rem;
  opacity: 0.8;
}
.footer__col li { margin-bottom: 0.5rem; }
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.footer__bottom a:hover { color: var(--gold-light); }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: waPulse 2.5s ease-out infinite;
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%   { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================================
   MENU PAGE
   ========================================================= */
.menu-page { padding-top: 90px; background: var(--cream); }

.menu-hero {
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: var(--paper);
  border-bottom: 1px solid rgba(184, 146, 74, 0.3);
  position: relative;
}
.menu-hero::before, .menu-hero::after {
  content: '✦';
  color: var(--gold);
  position: absolute;
  top: 50%;
  font-size: 1.2rem;
  opacity: 0.5;
}
.menu-hero::before { left: 10%; transform: translateY(-50%) rotate(-20deg); }
.menu-hero::after  { right: 10%; transform: translateY(-50%) rotate(20deg); }

.menu-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.menu-hero__title em {
  font-family: var(--font-script);
  color: var(--tomato);
  font-style: italic;
}
.menu-hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal-2);
  opacity: 0.8;
}

/* Sticky menu nav */
.menu-nav {
  position: sticky;
  top: 68px;
  background: var(--cream);
  border-bottom: 1px solid rgba(184, 146, 74, 0.3);
  z-index: 50;
  padding: 1rem var(--pad);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav__list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  min-width: max-content;
  margin: 0 auto;
  max-width: var(--max-w);
}
.menu-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  color: var(--charcoal-2);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-nav a:hover { color: var(--tomato); }
.menu-nav a.is-active { color: var(--tomato); }
.menu-nav a.is-active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0; right: 0;
  height: 2px;
  background: var(--tomato);
}

/* Menu categories */
.menu-cat {
  padding: clamp(3rem, 7vw, 6rem) var(--pad) clamp(2rem, 5vw, 4rem);
  max-width: 980px;
  margin: 0 auto;
  scroll-margin-top: 120px;
}
.menu-cat__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.menu-cat__icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.menu-cat__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1;
}
.menu-cat__title em {
  font-family: var(--font-script);
  color: var(--tomato);
  font-style: italic;
}
.menu-cat__sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--charcoal-2);
  opacity: 0.7;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.menu-list {
  display: grid;
  gap: 1.3rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding-bottom: 1.3rem;
  border-bottom: 1px dashed rgba(184, 146, 74, 0.35);
}
.menu-item:last-child { border-bottom: 0; }

.menu-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.menu-item__no {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--tomato);
  background: rgba(184, 48, 42, 0.08);
  padding: 2px 8px;
  border: 1px solid rgba(184, 48, 42, 0.25);
  letter-spacing: 0.05em;
}
.menu-item__desc {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--charcoal-2);
  opacity: 0.78;
  font-size: 0.95rem;
  line-height: 1.4;
}
.menu-item__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item__badges {
  display: inline-flex;
  gap: 0.3rem;
  margin-left: 0.3rem;
}
.menu-badge {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 1px 6px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  font-weight: 500;
}
.menu-badge--v { color: var(--olive); }
.menu-badge--spicy { color: var(--tomato); }
.menu-badge--check { color: #999; font-style: italic; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .story__grid,
  .location__grid,
  .heritage__grid,
  .services__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .services__grid { gap: 1rem; }
  .stats { gap: 1rem; }
  .stat__num { font-size: 2.2rem; }
  .dishes__header { grid-template-columns: 1fr; gap: 1rem; align-items: start; }

  .nav-toggle { display: flex; color: var(--cream); }
  .site-header.is-scrolled .nav-toggle { color: var(--charcoal); }
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 320px);
    height: 100vh;
    background: var(--charcoal);
    color: var(--cream) !important;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    z-index: 200;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 1.5rem; }
  .nav__list a { font-size: 1rem; }

  .marquee__track { font-size: 1.05rem; gap: 1.5rem; }
  .marquee__track span { gap: 1.5rem; }

  .story__stamp {
    width: 100px; height: 100px;
    bottom: -20px; right: -10px;
  }
  .story__stamp strong { font-size: 1.5rem; }

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

@media (max-width: 540px) {
  .lang-choice { grid-template-columns: 40px 1fr auto; padding: 0.85rem 1.1rem; }
  .lang-choice__lang { font-size: 1.1rem; }
  .stats { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .menu-item__price { font-size: 1.1rem; }
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__slide { animation: none; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15, 10, 8, 0.92);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox.is-visible { opacity: 1; }
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: var(--cream);
  font-size: 2rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background 0.3s;
}
.lightbox__close:hover { background: var(--tomato); border-color: var(--tomato); }
.lightbox__fig {
  max-width: min(90vw, 800px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__fig img {
  max-width: 100%;
  max-height: 80vh;
  border: 4px solid var(--paper);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__fig figcaption {
  margin-top: 1rem;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}

/* =========================================================
   REVIEWS / SOCIAL PROOF SECTION
   ========================================================= */
.reviews {
  background: var(--paper);
  border-top: 1px solid rgba(184, 146, 74, 0.2);
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '"';
  position: absolute;
  top: -120px;
  left: 5%;
  font-family: var(--font-display);
  font-size: 30rem;
  color: var(--gold);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

.reviews__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.reviews__header .eyebrow { justify-content: center; }
.reviews__header .eyebrow::before { display: none; }

.reviews__rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 1.5rem 0 1rem;
}
.reviews__stars {
  display: inline-flex;
  gap: 4px;
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 4px;
  filter: drop-shadow(0 2px 4px rgba(184, 146, 74, 0.3));
}
.reviews__score {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-display);
}
.reviews__score-num {
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.reviews__score-num em {
  font-family: var(--font-script);
  color: var(--tomato);
  font-size: 0.6em;
  font-style: italic;
  vertical-align: super;
}
.reviews__score-of {
  font-style: italic;
  color: var(--charcoal-2);
  opacity: 0.7;
  font-size: 1.4rem;
}
.reviews__count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  opacity: 0.75;
  margin-top: 0.5rem;
}
.reviews__platforms {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  opacity: 0.8;
  padding: 0.5rem 1.2rem;
  background: var(--cream);
  border: 1px solid rgba(184, 146, 74, 0.3);
}
.reviews__platforms .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.6; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.review-card {
  background: var(--cream);
  border: 1px solid rgba(184, 146, 74, 0.3);
  padding: 2rem 1.8rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -15px rgba(40, 25, 10, 0.25);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--tomato);
  line-height: 1;
  font-weight: 700;
}
.review-card__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.review-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--charcoal-2);
  flex: 1;
  margin-bottom: 1.5rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(184, 146, 74, 0.4);
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tomato);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.review-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.review-card__source {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  opacity: 0.7;
  margin-top: 2px;
}

.reviews__cta {
  text-align: center;
  margin-top: 3rem;
}
.reviews__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tomato);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.reviews__cta a:hover { gap: 0.9rem; }

/* =========================================================
   DIRECTIONS / ANFAHRT MINI-SECTION
   ========================================================= */
.directions-mini {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.directions-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(184, 146, 74, 0.06) 1px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.6;
}

.directions-mini__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

.directions-mini__text .eyebrow { color: var(--gold-light); }
.directions-mini__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.directions-mini__title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
}

.directions-mini__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 1.8rem;
}

.routes {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.route {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 146, 74, 0.25);
  transition: all 0.3s var(--ease);
}
.route:hover {
  border-color: var(--gold);
  background: rgba(184, 146, 74, 0.08);
}
.route__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.route__icon svg { width: 22px; height: 22px; }
.route__main {
  display: flex;
  flex-direction: column;
}
.route__from {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.2;
}
.route__note {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 2px;
}
.route__distance {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  text-align: right;
  white-space: nowrap;
}
.route__distance strong {
  font-style: normal;
  font-weight: 600;
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
}

.directions-mini__map {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184, 146, 74, 0.3);
  overflow: hidden;
}
.directions-mini__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.95) contrast(0.95);
}
.directions-mini__map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0) 60%, rgba(20, 14, 10, 0.4) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .directions-mini__inner { grid-template-columns: 1fr; }
  .route { grid-template-columns: 44px 1fr auto; gap: 0.8rem; padding: 0.8rem; }
  .route__icon { width: 36px; height: 36px; }
  .route__icon svg { width: 18px; height: 18px; }
}

/* =========================================================
   MOBILE OPTIMIZATIONS — gründlich überarbeitet
   ========================================================= */

/* Touch-targets mindestens 44×44 px für iOS Standards */
@media (max-width: 768px) {
  .btn { min-height: 48px; padding: 0.9rem 1.4rem; font-size: 0.78rem; }
  .nav__list a, .menu-nav a, .service__cta, .info-block__value a { min-height: 44px; display: inline-flex; align-items: center; }
  a[href^="tel:"], a[href^="https://wa.me"] { padding: 2px 0; }
}

@media (max-width: 768px) {
  /* Globales: weniger Padding, klarere Hierarchie */
  :root {
    --pad: 1.1rem;
  }
  body { font-size: 15px; }

  /* HEADER */
  .site-header { padding: 0.7rem var(--pad); }
  .site-header.is-scrolled { padding: 0.5rem var(--pad); }
  .brand__mark { width: 34px; height: 34px; font-size: 0.95rem; }
  .brand__name { font-size: 1.05rem; }
  .brand__tag { font-size: 0.55rem; letter-spacing: 0.2em; }

  /* MOBILE NAV - cleaner, sicherer overlay */
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 340px);
    background: var(--charcoal);
    color: var(--cream) !important;
    padding: 5rem 1.8rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: -20px 0 50px rgba(0,0,0,0.3);
    overflow-y: auto;
    z-index: 200;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__list a {
    width: 100%;
    padding: 1rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }
  .nav__list a::after { display: none; }
  .lang-switch {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    gap: 0.6rem;
  }
  .lang-switch a {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
  }

  /* Backdrop wenn Nav offen */
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 95;
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* HERO — kompakter, lesbarer auf Handy */
  .hero { min-height: 60vh; padding-top: 80px; }
  .hero__content { padding: 0 1.1rem; }
  .hero__overline { font-size: 0.62rem; letter-spacing: 0.3em; margin-bottom: 1rem; }
  .hero__overline::before, .hero__overline::after { width: 24px; }
  .hero__title { font-size: 3.2rem; line-height: 0.95; }
  .hero__since { font-size: 1.2rem; }
  .hero__tagline { font-size: 0.95rem; margin-top: 1rem; padding: 0 0.5rem; }
  .hero__cta { margin-top: 1.8rem; flex-direction: column; gap: 0.7rem; align-items: stretch; padding: 0 0.5rem; }
  .hero__cta .btn { justify-content: center; width: 100%; }
  .hero__scroll { bottom: 1rem; font-size: 0.55rem; }
  .hero__scroll::after { height: 28px; }

  /* MARQUEE leiser */
  .marquee { padding: 0.7rem 0; }
  .marquee__track { font-size: 0.95rem; gap: 1.2rem; }
  .marquee__track span { gap: 1.2rem; }
  .marquee__track span::after { margin: 0 0.6rem; }

  /* SECTIONS - kompakter */
  .section { padding: 3rem 1.1rem; }
  .eyebrow { font-size: 0.62rem; letter-spacing: 0.28em; margin-bottom: 0.8rem; }
  .eyebrow::before { width: 20px; }
  .section__title { font-size: 1.9rem; line-height: 1.05; }

  /* STORY */
  .story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .story__lead { font-size: 1.05rem; margin: 1rem 0; }
  .story__body { font-size: 0.95rem; }
  .story__quote { padding-left: 1rem; font-size: 0.95rem; margin-top: 1.5rem; }
  .story__visual { max-width: 380px; margin: 0 auto; aspect-ratio: 4/4.5; }
  .story__stamp {
    width: 85px; height: 85px;
    bottom: -15px; right: -8px;
  }
  .story__stamp strong { font-size: 1.3rem; }
  .story__stamp span { font-size: 0.5rem; letter-spacing: 0.2em; }

  /* STATS */
  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  .stat__num { font-size: 2.4rem; }
  .stat__label { font-size: 0.62rem; letter-spacing: 0.22em; margin-top: 0.4rem; }

  /* DISHES */
  .dishes__header {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 2rem;
  }
  .dishes__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dish__body { padding: 1.2rem 1.2rem 1.4rem; }
  .dish__name { font-size: 1.25rem; }
  .dish__desc { font-size: 0.88rem; }
  .dish__media { aspect-ratio: 16/10; }

  /* REVIEWS */
  .reviews__grid { grid-template-columns: 1fr; gap: 1rem; }
  .reviews__header { margin-bottom: 2.5rem; }
  .reviews__score-num { font-size: 3.2rem; }
  .reviews__score-of { font-size: 1.1rem; }
  .reviews__count { font-size: 0.62rem; letter-spacing: 0.18em; }
  .reviews__platforms { gap: 0.7rem; padding: 0.4rem 0.9rem; font-size: 0.6rem; letter-spacing: 0.15em; flex-wrap: wrap; justify-content: center; }
  .review-card { padding: 1.6rem 1.4rem 1.4rem; }
  .review-card::before { font-size: 4rem; top: -8px; left: 1.1rem; }
  .review-card__text { font-size: 1rem; }

  /* DIRECTIONS MINI */
  .directions-mini { padding: 3rem 1.1rem; }
  .directions-mini__inner { grid-template-columns: 1fr; gap: 2rem; }
  .directions-mini__title { font-size: 1.7rem; }
  .directions-mini__intro { font-size: 0.95rem; }
  .route {
    grid-template-columns: 42px 1fr auto;
    gap: 0.7rem;
    padding: 0.8rem 0.85rem;
  }
  .route__icon { width: 36px; height: 36px; }
  .route__icon svg { width: 17px; height: 17px; }
  .route__from { font-size: 0.98rem; }
  .route__note { font-size: 0.72rem; }
  .route__distance { font-size: 0.95rem; }
  .route__distance strong { font-size: 0.82rem; }
  .directions-mini__map { aspect-ratio: 4/3; }

  /* HERITAGE */
  .heritage__title { font-size: 1.95rem; }
  .heritage__lead { font-size: 1rem; }
  .heritage__body { font-size: 0.93rem; }
  .heritage__pullquote { margin: 2.5rem auto; padding: 1.5rem 0.5rem; }
  .heritage__pullquote blockquote { font-size: 1.25rem; line-height: 1.4; }
  .heritage__pullquote cite { font-size: 0.6rem; letter-spacing: 0.22em; }
  .awards__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .award { max-width: 320px; margin: 0 auto; aspect-ratio: 5/6; }

  /* SERVICES */
  .services__grid { grid-template-columns: 1fr; gap: 1rem; }
  .service { padding: 2rem 1.5rem; }
  .service__icon { width: 56px; height: 56px; margin-bottom: 1rem; }
  .service__icon svg { width: 26px; height: 26px; }
  .service__title { font-size: 1.3rem; }
  .service__text { font-size: 0.95rem; margin-bottom: 1.2rem; }
  .service__cta { font-size: 0.65rem; letter-spacing: 0.2em; }

  /* ORDER */
  .order__title { font-size: 2rem; }
  .order__sub { font-size: 1.05rem; margin-bottom: 1.8rem; }
  .order__numbers { grid-template-columns: 1fr; gap: 0.8rem; margin-top: 2rem; }
  .order__num { padding: 1rem; }
  .order__num-label { font-size: 0.58rem; letter-spacing: 0.25em; }
  .order__num-value { font-size: 1.1rem; }

  /* LOCATION */
  .location__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .location__map { aspect-ratio: 4/3; }
  .info-block { margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
  .info-block__label { font-size: 0.62rem; letter-spacing: 0.25em; }
  .info-block__value { font-size: 1.15rem; }
  .hours { grid-template-columns: auto 1fr; gap: 0.4rem 1rem; font-size: 0.92rem; }

  /* FOOTER */
  .footer { padding: 2.5rem 1.1rem 1.5rem; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .footer__brand { font-size: 1.5rem; }
  .footer__tag { font-size: 1.05rem; }
  .footer__desc { font-size: 0.88rem; max-width: none; }
  .footer__col h4 { font-size: 0.6rem; letter-spacing: 0.22em; }
  .footer__col ul { font-size: 0.88rem; }
  .footer__bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    font-size: 0.7rem;
  }

  /* WHATSAPP FLOAT */
  .wa-float {
    width: 56px; height: 56px;
    bottom: 18px; right: 18px;
  }
  .wa-float svg { width: 28px; height: 28px; }

  /* MENU PAGE */
  .menu-page { padding-top: 70px; }
  .menu-hero { padding: 2.5rem 1.1rem 2rem; }
  .menu-hero::before, .menu-hero::after { display: none; }
  .menu-hero__title { font-size: 2.3rem; }
  .menu-hero__sub { font-size: 0.98rem; }
  .menu-nav { top: 58px; padding: 0.7rem 1.1rem; }
  .menu-nav__list { gap: 1.2rem; justify-content: flex-start; }
  .menu-nav a { font-size: 0.65rem; letter-spacing: 0.15em; padding: 4px 0; }
  .menu-cat { padding: 2.5rem 1.1rem 2rem; }
  .menu-cat__header { margin-bottom: 2rem; }
  .menu-cat__icon { font-size: 2rem; margin-bottom: 0.6rem; }
  .menu-cat__title { font-size: 1.6rem; }
  .menu-cat__sub { font-size: 0.9rem; margin-top: 0.3rem; }
  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding-bottom: 1.1rem;
  }
  .menu-list { gap: 1.1rem; }
  .menu-item__name { font-size: 1.1rem; }
  .menu-item__desc { font-size: 0.88rem; }
  .menu-item__price { font-size: 1.05rem; align-self: flex-start; margin-top: 0.2rem; }

  /* LANG GATE */
  .lang-gate { padding: 2rem 1.3rem; width: calc(100% - 24px); }
  .corner { width: 24px; height: 24px; }
  .corner-tl, .corner-tr { top: 10px; }
  .corner-bl, .corner-br { bottom: 10px; }
  .corner-tl, .corner-bl { left: 10px; }
  .corner-tr, .corner-br { right: 10px; }
  .lang-gate__crest { width: 60px; }
  .lang-gate__title { font-size: 2.3rem; }
  .lang-gate__overline { font-size: 0.6rem; letter-spacing: 0.25em; }
  .lang-gate__sub { font-size: 0.92rem; }
  .lang-gate__divider { margin: 1.5rem auto 1rem; max-width: 220px; }
  .lang-gate__prompt { font-size: 0.85rem; margin-bottom: 1.2rem; }
  .lang-gate__footnote { font-size: 1.05rem; margin-top: 1.5rem; }
  .lang-choice {
    grid-template-columns: 36px 1fr 20px;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    min-height: 64px;
  }
  .lang-choice__flag { width: 30px; height: 20px; }
  .lang-choice__lang { font-size: 1.05rem; }
  .lang-choice__greet { font-size: 1rem; }
  .lang-choice__arrow { font-size: 1.3rem; }

  /* PREVENT iOS BOUNCE OVERLAY ARTIFACTS */
  html { -webkit-text-size-adjust: 100%; }
}

/* Tablet zwischenstufe */
@media (min-width: 769px) and (max-width: 1024px) {
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .awards__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid .review-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* Sehr kleine Screens (iPhone SE etc.) */
@media (max-width: 380px) {
  .hero__title { font-size: 2.7rem; }
  .section__title { font-size: 1.7rem; }
  .reviews__score-num { font-size: 2.8rem; }
  .menu-nav__list { gap: 0.9rem; }
  .menu-nav a { font-size: 0.6rem; }
  .stat__num { font-size: 2.1rem; }
}

/* Catering-page styles (siehe catering.html / catering-en.html) */
.catering-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  padding: 6rem var(--pad) 4rem;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200, 38, 31, 0.35), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(164, 119, 48, 0.4), transparent 60%),
    linear-gradient(135deg, #2a1410, #4a2820 50%, #1a0d08);
  overflow: hidden;
}
.catering-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 11, 10, 0.5) 0%, transparent 30%, rgba(13, 11, 10, 0.7) 100%);
}
.catering-hero__content { position: relative; max-width: 760px; }
.catering-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0.5rem 0;
}
.catering-hero__title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-3deg);
}
.catering-hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 1.2rem auto 0;
  max-width: 580px;
  opacity: 0.95;
}

.packages {
  background: var(--paper-warm);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 3rem auto 0;
}
.package {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  padding: 2.2rem 1.8rem 2rem;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.package:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 50px -20px rgba(13, 11, 10, 0.2);
}
.package--featured {
  border: 2px solid var(--tomato);
  position: relative;
}
.package--featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tomato);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 5px 14px;
  font-weight: 500;
}
.package--featured.is-en::before { content: 'Popular'; }

.package__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.package__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.package__title em {
  font-family: var(--font-script);
  color: var(--tomato);
  font-style: italic;
}
.package__people {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--charcoal-2);
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.package__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--border-soft);
}
.package__price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--tomato);
  line-height: 1;
}
.package__price-unit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal-2);
  opacity: 0.7;
}
.package__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.94rem;
  flex: 1;
}
.package__features li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: var(--charcoal-2);
}
.package__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}
.package__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.3rem;
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.package__cta:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.package--featured .package__cta {
  background: var(--tomato);
  border-color: var(--tomato);
  color: var(--cream);
}
.package--featured .package__cta:hover {
  background: var(--tomato-deep);
  border-color: var(--tomato-deep);
}

.cat-events {
  background: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
}
.cat-events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: var(--max-w);
  margin: 3rem auto 0;
}
.event-tile {
  text-align: center;
  padding: 2rem 1.3rem;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  transition: all 0.4s var(--ease);
}
.event-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.event-tile__icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.event-tile__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.event-tile__desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--charcoal-2);
  opacity: 0.75;
  line-height: 1.4;
}

.cat-process {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.cat-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200, 152, 70, 0.06) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.cat-process .eyebrow { color: var(--gold-light); }
.cat-process__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1rem;
  max-width: 18ch;
}
.cat-process__title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 3.5rem auto 0;
  position: relative;
}
.process-step {
  position: relative;
  padding: 1.5rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 152, 70, 0.25);
}
.process-step__num {
  position: absolute;
  top: -16px; left: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 1rem 0 0.5rem;
}
.process-step__text {
  font-size: 0.92rem;
  opacity: 0.82;
  line-height: 1.55;
}

.cat-faq {
  background: var(--paper-warm);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
}
.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 1.2rem 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  list-style: none;
  padding: 0.5rem 0;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--tomato);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__answer {
  padding: 0.8rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal-2);
  max-width: 65ch;
}

.cat-cta-final {
  background: var(--tomato);
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 200, 80, 0.15), transparent 50%);
}
.cat-cta-final__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cat-cta-final__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cat-cta-final__title em {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-style: italic;
  font-weight: 700;
}
.cat-cta-final__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .catering-hero { min-height: 60vh; padding: 5rem 1.1rem 3rem; }
  .packages__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .package { padding: 1.8rem 1.5rem 1.6rem; }
  .package__title { font-size: 1.4rem; }
  .package__price-amount { font-size: 2.1rem; }
  .cat-events__grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .event-tile { padding: 1.5rem 1rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
  .cat-process__title { font-size: 1.85rem; }
  .faq-item summary { font-size: 1rem; }
  .faq-item__answer { font-size: 0.92rem; }
  .cat-cta-final__title { font-size: 1.85rem; }
  .cat-cta-final__sub { font-size: 1rem; }
}

/* ============ LOGO BRAND STYLES ============ */
.brand--logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
  /* On dark hero (transparent header): keep vivid */
  filter: brightness(1);
}
/* On scrolled header (light bg): keep normal */
.site-header.is-scrolled .brand__logo {
  filter: brightness(1);
}
/* On dark heritage / charcoal sections if needed */
.footer__logo {
  height: 52px;
  width: auto;
  display: block;
  /* footer is charcoal — invert to white-ish */
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 0.6rem;
}
@media (max-width: 768px) {
  .brand__logo { height: 36px; }
  .footer__logo { height: 42px; }
}

/* =========================================================
   WHATSAPP PICKUP ORDER SECTION — KRASS
   ========================================================= */
.pickup-order {
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
}
.pickup-order::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(37, 211, 102, 0.18), transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(200, 38, 31, 0.18), transparent 55%);
  pointer-events: none;
}
.pickup-order::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}

.pickup-order__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pickup-order__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.8rem;
}
.pickup-order__badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25d366;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

.pickup-order__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.pickup-order__title em {
  font-family: var(--font-script);
  color: #25d366;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
}

.pickup-order__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.pickup-order__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.pickup-step {
  padding: 1.2rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  position: relative;
}
.pickup-step__num {
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #25d366;
  color: #111;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.pickup-step__text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.pickup-step__text strong {
  display: block;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.pickup-order__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn--wa-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.3rem 2.8rem;
  background: #25d366;
  color: #0d0d0d;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-width: 320px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: waBigPulse 2.5s ease-out infinite;
}
@keyframes waBigPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  60%     { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
}
.btn--wa-big:hover {
  background: #1da851;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}
.btn--wa-big svg { width: 28px; height: 28px; flex-shrink: 0; }
.btn--wa-big__text { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.btn--wa-big__label { font-size: 1.1rem; font-weight: 700; }
.btn--wa-big__sub { font-size: 0.7rem; letter-spacing: 0.15em; opacity: 0.75; font-weight: 400; }

.pickup-order__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  transition: color 0.3s;
}
.pickup-order__tel strong { color: #fff; font-style: normal; }
.pickup-order__tel:hover { color: rgba(255,255,255,0.9); }

.pickup-order__hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.pickup-order__hours span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pickup-order__hours strong { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .pickup-order__steps { grid-template-columns: 1fr; gap: 0.8rem; max-width: 360px; }
  .btn--wa-big { min-width: 0; width: 100%; max-width: 400px; padding: 1.2rem 1.8rem; }
  .btn--wa-big svg { width: 24px; height: 24px; }
  .btn--wa-big__label { font-size: 1rem; }
  .pickup-order__hours { gap: 1rem; font-size: 0.82rem; flex-direction: column; }
}

/* =========================================================
   FINAL MOBILE POLISH — comprehensive fixes
   ========================================================= */

/* 1. Fix very small text — bump up any sub-0.65rem to readable size on mobile */
@media (max-width: 768px) {
  .eyebrow, .brand__tag, .menu-nav a,
  .footer__bottom, .reviews__count,
  .award__from, .award__text,
  .info-block__label, .route__note,
  .package__people, .package__price-unit {
    font-size: 0.72rem;
  }

  /* 2. Prevent hero text overflow on small screens */
  .hero__title { letter-spacing: -0.03em; }
  .hero__content { padding: 0 1rem; }

  /* 3. Make ALL links/buttons finger-friendly */
  .footer__col a, .nav__list a {
    display: inline-block;
    padding: 6px 0;
    min-height: 40px;
    line-height: 1.4;
  }

  /* 4. Awards grid — single column, don't overflow */
  .awards__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .award {
    max-width: none;
    aspect-ratio: 3/4;
  }
  .award__seal { font-size: 1.1rem; }
  .award__text { font-size: 0.82rem; }

  /* 5. Heritage pullquote readable on mobile */
  .heritage__pullquote { margin: 2rem 0; padding: 1.2rem 0.3rem; }
  .heritage__pullquote blockquote { font-size: 1.15rem; }

  /* 6. Pickup section mobile refinements */
  .pickup-order__title { font-size: 2.2rem; letter-spacing: -0.03em; }
  .pickup-order__badge { font-size: 0.65rem; letter-spacing: 0.2em; }

  /* 7. Stats — horizontal on small, keep numbers visible */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
  .stat__num { font-size: 1.8rem; }
  .stat__label { font-size: 0.6rem; letter-spacing: 0.18em; margin-top: 0.4rem; }

  /* 8. Service cards: ensure text doesn't overflow */
  .service__title { font-size: 1.2rem; }
  .service__text { font-size: 0.9rem; line-height: 1.5; }

  /* 9. Location map takes full width */
  .location__map { aspect-ratio: 16/10; }

  /* 10. Marquee readable */
  .marquee__track { font-size: 0.9rem; }

  /* 11. Catering packages readable */
  .package__features { font-size: 0.88rem; }
  .package__features li { padding: 0.35rem 0 0.35rem 1.2rem; }

  /* 12. Review cards — slightly less padding */
  .review-card { padding: 1.4rem 1.2rem 1.2rem; }
  .review-card__text { font-size: 0.97rem; line-height: 1.5; }

  /* 13. Menu items — cleaner mobile layout */
  .menu-item__name { font-size: 1.05rem; line-height: 1.3; }
  .menu-badge { font-size: 0.58rem; padding: 1px 5px; }
}

/* Very small screens (≤380px) — everything compacted */
@media (max-width: 380px) {
  .hero__title { font-size: 2.5rem; }
  .pickup-order__title { font-size: 1.9rem; }
  .awards__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3,1fr); }
  .stat__num { font-size: 1.6rem; }
  .btn--wa-big__label { font-size: 0.9rem; }
  .lang-gate__title { font-size: 2rem; }
  .section__title { font-size: 1.65rem; }
  .package__price-amount { font-size: 1.8rem; }
  .cat-events__grid { grid-template-columns: repeat(2,1fr); gap: 0.7rem; }
  .event-tile { padding: 1.2rem 0.8rem; }
  .event-tile__name { font-size: 0.9rem; }
}

/* Safe area for phones with notch / home indicator */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wa-float { bottom: calc(18px + env(safe-area-inset-bottom)); }
  .footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}

/* Improve tap highlight */
a, button { -webkit-tap-highlight-color: rgba(200, 38, 31, 0.15); }

/* Smooth scroll on iOS */
html { -webkit-overflow-scrolling: touch; }

/* Prevent zoom on input focus (iOS) */
input, select, textarea { font-size: 16px !important; }

/* =========================================================
   LANGUAGE GATE — MODAL OVERLAY (index.html)
   ========================================================= */
.lang-gate-page {
  min-height: 100vh;
  overflow: hidden;
}

.lang-gate-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.lang-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
}

.lang-gate-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  padding: 1rem;
}

.lang-gate-modal > .lang-gate__inner,
.lang-gate-modal {
  /* inherits .lang-gate styles via inner wrapper */
}

.lang-gate-modal .corner { z-index: 3; }

/* reuse .lang-gate card styles on the modal's inner box */
.lang-gate-modal > .corner { position: fixed; }

/* The actual card inside the modal */
.lang-gate-modal .lang-gate__inner {
  position: relative;
  width: min(90vw, 720px);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
  background: var(--paper);
  box-shadow:
    0 0 0 1px rgba(184, 146, 74, 0.3),
    0 0 0 6px var(--paper),
    0 0 0 7px rgba(184, 146, 74, 0.4),
    0 30px 80px -20px rgba(40, 25, 10, 0.6),
    inset 0 0 60px rgba(184, 146, 74, 0.08);
  animation: gateEnter 0.9s var(--ease-out) both;
}

.lang-gate-modal .corner {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  opacity: 0.7;
}
.lang-gate-modal .corner-tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.lang-gate-modal .corner-tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.lang-gate-modal .corner-bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.lang-gate-modal .corner-br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.lang-gate-modal.is-leaving .lang-gate__inner {
  animation: gateleave 0.4s var(--ease) forwards;
}
@keyframes gateleave {
  to { opacity: 0; transform: scale(0.96) translateY(-10px); }
}

/* =========================================================
   AWARD — PHOTO CARD (replaces text-only design)
   ========================================================= */
.award--photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.award__photo-img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 0;
  transition: transform 0.5s var(--ease);
}

.award--photo:hover .award__photo-img {
  transform: scale(1.04);
}

.award__photo-caption {
  background: var(--charcoal);
  padding: 0.7rem 1rem;
  text-align: center;
  flex-shrink: 0;
}

.award__photo-caption .award__from {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 1;
  margin: 0;
}

.award__photo-caption .award__year-label {
  font-family: var(--font-script);
  color: var(--cream);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  flex-wrap: wrap;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.9;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-banner__btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.cookie-btn--accept:hover { background: var(--gold-light); border-color: var(--gold-light); }

.cookie-btn--decline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.3);
}
.cookie-btn--decline:hover { border-color: var(--cream); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 1rem 1.2rem; }
  .cookie-banner__btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
