/* ============================================================
   MES FRITES — LUXURY RESTAURANT
   Brand Colors: Forest Green #0d3428 · Gold #c9ab6a
   Fonts: Blinka Script · Beautique Display · Montserrat
   ============================================================ */

/* ============================================================
   CUSTOM FONTS
   ============================================================ */

/* Blinka Script */
@font-face {
  font-family: 'Blinka Script';
  src: url('../assets/fonts/Blinka Script.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Beautique Display — alle Schnitte */
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beautique Display';
  src: url('../assets/fonts/BeautiqueDisplay-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* ── Brand Greens (matched to logo) ── */
  --g-950: #060e0a;
  --g-900: #091710;
  --g-800: #0d2b1e;   /* primary dark background */
  --g-750: #0f3325;   /* logo green */
  --g-700: #123d2c;
  --g-600: #184f38;
  --g-500: #206446;
  --g-400: #2e7d5a;

  /* ── Brand Gold (matched to logo) ── */
  --gold:       #c9ab6a;   /* primary gold */
  --gold-light: #dbbf80;
  --gold-dim:   #8c7548;
  --gold-muted: rgba(201,171,106,0.15);

  /* ── Beige / Cream ── */
  --b-50:  #faf8f3;
  --b-100: #f4eed8;
  --b-200: #ece2c8;
  --b-300: #d8caa8;
  --b-400: #bfaa84;
  --b-500: #a08e68;

  /* ── Typography ── */
  --script:  'Blinka Script',    'Great Vibes',        cursive;
  --display: 'Beautique Display','Playfair Display',    Georgia, serif;
  --sans:    'Montserrat',        -apple-system,        sans-serif;

  /* ── Easing ── */
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-circ:    cubic-bezier(0.76, 0, 0.24, 1);

  /* ── Layout ── */
  --pad-x:       clamp(1.5rem, 5vw, 5rem);
  --section-pad: clamp(6rem, 12vw, 11rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  background: var(--g-800);
  color: var(--b-200);
  overflow-x: hidden;
  cursor: none;
}

body.is-loading { overflow: hidden; touch-action: none; }

img { display: block; max-width: 100%; width: 100%; }
a   { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }


/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--b-100);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  position: absolute;
  width: 38px; height: 38px;
  border: 1px solid var(--b-100);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-expo), height .35s var(--ease-expo),
              border-color .35s ease, opacity .35s ease;
}

body.cursor-hovered .cursor-outline {
  width: 64px; height: 64px;
  border-color: var(--gold);
  opacity: 0.7;
}

body.cursor-hidden .cursor-outline,
body.cursor-hidden .cursor-dot { opacity: 0; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height — accounts for mobile browser chrome */
  background: var(--g-750);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.preloader-logo-img {
  width: clamp(200px, 38vw, 340px);
  opacity: 0;
  transform: scale(0.88);
}

.preloader-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.preloader-counter {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(201, 171, 106, 0.6);
  white-space: nowrap;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.5rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding .5s var(--ease-expo), background .5s ease,
              transform .45s var(--ease-expo);
}

.nav.is-hidden {
  transform: translateY(-100%);
}

.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,23,16,.7), transparent);
  pointer-events: none;
  transition: opacity .5s ease;
}

.nav.is-scrolled {
  padding: 0.9rem var(--pad-x);
  background: rgba(9, 23, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav.is-scrolled::before { opacity: 0; }

.nav-logo a {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nav-logo img {
  width: auto;
  height: 88px;
  object-fit: contain;
  transition: height 0.4s var(--ease-expo);
}

.nav.is-scrolled .nav-logo img {
  height: 68px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative; z-index: 1;
}

.nav-link {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--b-300);
  position: relative;
  transition: color .3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-expo);
}

.nav-link:hover { color: var(--b-50); }
.nav-link:hover::after { width: 100%; }

.nav-cta { position: relative; z-index: 1; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 30px; height: 30px;
  background: none; border: none;
  cursor: none; z-index: 1; position: relative;
}

.nav-hamburger span {
  display: block;
  width: 100%; height: 1px;
  background: var(--b-200);
  transition: all .4s var(--ease-expo);
  transform-origin: center;
}

.nav-hamburger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-hamburger.is-open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--g-750);
  z-index: 800;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  pointer-events: none; opacity: 0;
  transition: opacity .4s ease;
}

.mobile-menu.is-open { pointer-events: auto; opacity: 1; }

.mobile-link {
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: var(--b-100);
  letter-spacing: 0.05em;
  transition: color .3s ease;
}

.mobile-link:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 0.9rem 2.25rem;
  font-size: 0.63rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: color .5s var(--ease-expo), border-color .5s var(--ease-expo);
  cursor: none; white-space: nowrap;
}

.btn-fill {
  position: absolute; inset: 0;
  transform: translateY(101%);
  transition: transform .5s var(--ease-expo);
  z-index: 0;
}

.btn > *:not(.btn-fill) { position: relative; z-index: 1; }
.btn:hover .btn-fill    { transform: translateY(0); }

.btn-primary { color: var(--gold); border-color: var(--gold); }
.btn-primary .btn-fill { background: var(--gold); }
.btn-primary:hover { color: var(--g-950); }

.btn-outline { color: var(--b-300); border-color: rgba(237,226,200,.3); }
.btn-outline .btn-fill { background: var(--b-100); }
.btn-outline:hover { color: var(--g-950); border-color: var(--b-100); }

.btn-beige { color: var(--g-900); background: var(--b-100); border-color: var(--b-100); }
.btn-beige .btn-fill { background: var(--gold); }
.btn-beige:hover { color: var(--g-950); border-color: var(--gold); }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: flex; align-items: center;
  gap: 1rem; margin-bottom: 1.75rem;
  overflow: hidden;
}

.section-num {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.25em; color: var(--gold);
}

.section-label > span:last-child {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--b-400);
}

.section-label > span:last-child::before { content: '— '; }

.section-label.light .section-num { color: var(--gold-dim); }
.section-label.light > span:last-child { color: rgba(244,238,216,.45); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh; min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

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

.hero-img {
  width: 100%; height: 115%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(9,23,16,.85) 0%, rgba(9,23,16,.5) 55%, rgba(9,23,16,.2) 100%),
    linear-gradient(to top, rgba(9,23,16,.75) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 1;
  padding: 0 var(--pad-x) clamp(4rem, 8vh, 7rem);
  width: 100%;
}

.hero-tag {
  display: flex; align-items: center;
  gap: 0.8rem; margin-bottom: 1.25rem;
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--b-400);
  opacity: 0; transform: translateY(10px);
}

.dot { color: var(--gold); }

.hero-title {
  display: flex;
  flex-direction: column;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 1.5rem;
  gap: 0;
}

.hero-title-line {
  display: block;
  /* No overflow:hidden — Blinka Script swashes need room */
  overflow: visible;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

/* Script "Mes" */
.hero-word-script {
  font-family: var(--script);
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--gold);
  line-height: 1.05;
  /* Blinka Script hat große Zierbögen über der Textbox — viel Platz oben lassen */
  padding-top: 1.4em;
  padding-bottom: 0.05em;
  margin-bottom: -0.6em; /* Negativer Abstand damit "Frites" eng dran bleibt */
}

/* Display "Frites" */
.hero-word-display {
  font-family: var(--display);
  font-size: clamp(4rem, 10.5vw, 9.5rem);
  font-weight: 700;
  color: var(--b-50);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.9;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(16px);
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(2.5rem, 5vh, 4rem);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
}

.hero-scroll span {
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--b-400); writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite 1.5s;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

.hero-footer {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(2.5rem, 5vh, 4rem);
  z-index: 2;
  display: flex; flex-direction: column;
  gap: 0.3rem;
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--b-400);
  opacity: 0;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  background: var(--b-100);
  border-top: 1px solid var(--b-300);
  border-bottom: 1px solid var(--b-300);
  padding: 1rem 0;
  user-select: none;
}

.marquee-track { display: flex; width: max-content; }

.marquee-inner {
  display: flex; align-items: center;
  gap: 2.5rem; padding-right: 2.5rem;
  animation: marqueeScroll 24s linear infinite;
  white-space: nowrap;
}

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

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-inner span {
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--g-700);
  letter-spacing: 0.06em;
}

.marquee-star { color: var(--gold) !important; font-size: 0.7rem !important; font-family: var(--sans) !important; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--g-800);
  padding: var(--section-pad) var(--pad-x);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  max-width: 1380px; margin: 0 auto;
}

.about-img-main { position: relative; }

.about-img-clip {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  clip-path: inset(100% 0 0 0);
}

.about-img {
  width: 100%; height: 120%;
  object-fit: cover;
  transform-origin: center bottom;
}

.about-img-accent {
  position: absolute;
  right: -12%; bottom: -10%;
  width: 46%; aspect-ratio: 1;
  overflow: hidden;
  outline: 5px solid var(--g-800);
  opacity: 0; transform: translateY(20px);
}

.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-since {
  display: flex; align-items: center;
  gap: 1rem; margin-top: 2rem;
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--b-400); opacity: 0;
}

.about-since-line {
  display: block; width: 2.5rem; height: 1px;
  background: var(--gold);
}

.about-heading {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--b-50);
  margin-bottom: 2rem;
}

.about-heading em { font-style: italic; color: var(--gold); }

.about-body { margin-bottom: 2.75rem; }

.about-body p {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.85; color: var(--b-400);
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px);
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote-section {
  background: var(--b-100);
  padding: var(--section-pad) var(--pad-x);
}

.quote-inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 2.5rem;
}

.quote-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

.quote-text {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--g-750);
  line-height: 1.45;
}

.quote-cite {
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--g-500);
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background: var(--g-900);
  padding: var(--section-pad) var(--pad-x);
}

.menu-header {
  display: flex; flex-direction: column;
  max-width: 1380px; margin: 0 auto 4.5rem;
}

.menu-heading {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--b-100); line-height: 1;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1380px; margin: 0 auto 4rem;
}

.menu-card {
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(40px);
}

.menu-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
}

.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-expo);
}

.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-hover {
  position: absolute; inset: 0;
  background: rgba(9,23,16,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s ease;
}

.menu-card:hover .menu-card-hover { opacity: 1; }

.menu-card-hover span {
  font-family: var(--display);
  font-size: 1.4rem; font-style: italic;
  color: var(--gold);
  transform: translateY(8px);
  transition: transform .4s var(--ease-expo);
}

.menu-card:hover .menu-card-hover span { transform: translateY(0); }

.menu-card-body {
  flex: 1;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--g-800);
  border-top: 1px solid rgba(201,171,106,.2);
}

.menu-card-meta {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 0.9rem;
}

.menu-card-num {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.22em; color: var(--gold);
}

.menu-card-tag {
  font-size: 0.56rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--b-400);
  border: 1px solid rgba(191,170,132,.35);
  padding: 0.2rem 0.65rem;
}

.menu-card-name {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--b-50);
  margin-bottom: 0.65rem; line-height: 1.2;
}

.menu-card-desc {
  font-size: 0.75rem; font-weight: 300;
  line-height: 1.75; color: var(--b-400);
  margin-bottom: 1.4rem;
}

.menu-card-price {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.03em;
}

.menu-cta { text-align: center; max-width: 1380px; margin: 0 auto; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--g-800);
  padding: var(--section-pad) var(--pad-x);
}

.gallery-header { max-width: 1380px; margin: 0 auto 3.5rem; }

.gallery-heading {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--b-100); line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 380px 280px;
  gap: 6px;
  max-width: 1380px; margin: 0 auto;
}

.gallery-item { position: relative; overflow: hidden; cursor: none; }
.gallery-item-a { grid-row: 1 / 3; }

.gallery-img-wrap { width: 100%; height: 100%; overflow: hidden; }

.gallery-img-wrap img {
  width: 100%; height: 120%; object-fit: cover;
  will-change: transform;
  transition: transform .9s var(--ease-expo);
}

.gallery-item:hover .gallery-img-wrap img { transform: scale(1.04) translateY(-3%); }

.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(9,23,16,.7), transparent);
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--b-300);
  transform: translateY(100%);
  transition: transform .4s var(--ease-expo);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  background: var(--b-100);
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
}

.numbers-inner {
  display: flex; align-items: center;
  justify-content: center;
  max-width: 1100px; margin: 0 auto;
}

.numbers-item { flex: 1; text-align: center; padding: 1.5rem; }

.numbers-value-wrap {
  display: flex; align-items: baseline;
  justify-content: center; gap: 0.3rem;
}

.numbers-value {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400; color: var(--g-750); line-height: 1;
}

.numbers-unit {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-style: italic; color: var(--gold-dim);
}

.numbers-label {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--g-500); margin-top: 0.6rem;
}

.numbers-divider {
  width: 1px; height: 70px;
  background: var(--b-300); flex-shrink: 0;
}

/* ============================================================
   RESERVATION
   ============================================================ */
.reservation {
  position: relative;
  padding: var(--section-pad) var(--pad-x);
  overflow: hidden;
}

.reservation-bg { position: absolute; inset: 0; }

.reservation-img {
  width: 100%; height: 120%; object-fit: cover;
}

.reservation-overlay {
  position: absolute; inset: 0;
  background: rgba(9, 23, 16, 0.9);
}

.reservation-inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
}

.reservation-heading {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--b-50);
  line-height: 1.05; margin-bottom: 3.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex; flex-direction: column;
  gap: 0.5rem;
  opacity: 0; transform: translateY(18px);
}

.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--b-400);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(244,238,216,.05);
  border: 1px solid rgba(244,238,216,.15);
  color: var(--b-200);
  padding: 0.9rem 1.1rem;
  font-size: 0.84rem; font-weight: 300;
  transition: border-color .3s ease, background .3s ease;
  outline: none; width: 100%;
  cursor: none; -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(244,238,216,.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(236,226,200,.3); }

.form-group textarea { height: 110px; resize: none; }

.form-group select option { background: var(--g-800); color: var(--b-200); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--g-950);
  padding: 5rem var(--pad-x) 2.5rem;
}

.footer-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem; gap: 2rem;
}

.footer-logo img {
  width: auto;
  height: 90px;
  object-fit: contain;
}

.footer-nav { display: flex; gap: 2.5rem; flex-wrap: wrap; }

.footer-nav a {
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--b-400); transition: color .3s ease;
}

.footer-nav a:hover { color: var(--b-100); }

.footer-divider {
  height: 1px;
  background: rgba(244,238,216,.08);
  margin-bottom: 2.5rem;
}

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem; flex-wrap: wrap;
}

.footer-address p,
.footer-copy p {
  font-size: 0.66rem; font-weight: 300;
  letter-spacing: 0.1em; color: var(--b-500);
  line-height: 1.85;
}

.footer-social { display: flex; gap: 1.5rem; }

.footer-social a {
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--b-500); transition: color .3s ease;
}

.footer-social a:hover { color: var(--b-100); }

/* ============================================================
   GRAIN TEXTURE
   ============================================================ */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 99998;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   GSAP SPLIT TEXT HELPERS
   ============================================================ */
.js-split .word-outer {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.js-split .word-inner {
  display: inline-block;
  transform: translateY(105%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-main { max-width: 480px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card:last-child { grid-column: 1 / -1; }
  .menu-card:last-child .menu-card-img { aspect-ratio: 16 / 7; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:last-child { grid-column: auto; }
  .menu-card:last-child .menu-card-img { aspect-ratio: 3 / 4; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 4px; }
  .gallery-item-a { grid-row: auto; aspect-ratio: 4 / 3; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .numbers-inner { flex-wrap: wrap; gap: 0; }
  .numbers-item { flex: 0 0 50%; padding: 2rem 1rem; }
  .numbers-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cursor { display: none; }
  body { cursor: auto; }
  input, select, textarea, button, a { cursor: auto; }
}

@media (max-width: 480px) {
  .about-img-accent { display: none; }
  .numbers-item { flex: 0 0 100%; }
}

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */
::selection { background: var(--gold); color: var(--g-950); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--g-900); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ============================================================
   MENU LIST (echte Karte)
   ============================================================ */
.menu-list {
  max-width: 1100px;
  margin: 0 auto 4.5rem;
}

.menu-cat {
  margin-bottom: 5rem;
}

.menu-cat-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-cat-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--b-50);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.menu-cat-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.25rem;
}

.menu-cat-sub {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--b-400);
  line-height: 2;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(3rem, 6vw, 6rem);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(244,238,216,.07);
  gap: 1.5rem;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.menu-item-name {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--b-100);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-star {
  color: var(--gold);
  font-size: 0.6rem;
  font-family: var(--sans);
}

.menu-item-desc {
  font-size: 0.7rem;
  font-weight: 300;
  font-style: italic;
  color: var(--b-400);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.menu-item-price {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.05em;
  padding-top: 0.1rem;
}

/* Menü-Upgrade Highlight */
.menu-item--highlight {
  border: 1px solid rgba(201,171,106,.25);
  border-bottom: 1px solid rgba(201,171,106,.25);
  padding: 1.1rem 1.25rem;
  background: rgba(201,171,106,.04);
  margin-top: 0.5rem;
}

.menu-item--highlight .menu-item-name {
  color: var(--gold);
}

/* Trennlinie zwischen Kategorien */
.menu-section-divider {
  height: 1px;
  background: rgba(244,238,216,.08);
  margin: 0 0 5rem;
}

/* Pommes 2-Spalten Layout */
.menu-pommes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.menu-pommes-grid .menu-items {
  grid-template-columns: 1fr;
}

/* Saucen & Extras Box */
.menu-extras-box {
  border: 1px solid rgba(244,238,216,.12);
  padding: 0 1.5rem;
  background: rgba(244,238,216,.02);
  align-self: start;
}

.menu-extras-box .menu-item {
  padding: 1.1rem 0;
}

.menu-extras-box .menu-item--last {
  border-bottom: none;
}

@media (max-width: 768px) {
  .menu-items         { grid-template-columns: 1fr; gap: 0; }
  .menu-pommes-grid   { grid-template-columns: 1fr; gap: 2rem 0; }
  .menu-item--highlight { margin-top: 0; }
}

/* ============================================================
   ABOUT — FLIP VARIANT (Steak section)
   ============================================================ */
.about--flip {
  background: var(--g-900);
}

.about--flip .about-left { order: 2; }
.about--flip .about-right { order: 1; }

/* Accent moves to left side when image column is on the right */
.about--flip .about-img-accent {
  right: auto;
  left: -12%;
}

@media (max-width: 1100px) {
  .about--flip .about-left  { order: 0; }
  .about--flip .about-right { order: 0; }
  .about--flip .about-img-accent {
    right: -12%;
    left: auto;
  }
}

/* ============================================================
   LOCATION (Standort — Google Maps)
   ============================================================ */
.location {
  background: var(--g-800);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}

.location-content {
  padding: var(--section-pad) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  background: var(--g-900);
}

.location-heading {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--b-50);
  line-height: 1.05;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-place {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.location-address p:not(.location-place),
.location-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1.5rem;
  margin-top: 0.2rem;
}

.location-hours-grid span {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--b-400);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.location-hours-grid span:nth-child(even) {
  color: var(--b-300);
}

.hours-closed {
  opacity: 0.45;
  font-style: italic;
}

.location-hours-label {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.location-map {
  position: relative;
  min-height: 500px;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(10%) contrast(1.05) brightness(0.92);
}

@media (max-width: 900px) {
  .location-inner {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .location-content {
    padding: clamp(4rem, 10vw, 6rem) var(--pad-x);
  }
}

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-900);
  z-index: 1;
}

.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
  max-width: 320px;
}

.map-placeholder-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.map-placeholder-title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--b-100);
  letter-spacing: 0.02em;
}

.map-placeholder-text {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--b-400);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99000;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  background: var(--g-950);
  border-top: 1px solid rgba(201, 171, 106, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.cookie-banner-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--b-400);
}

.cookie-banner-desc em {
  font-style: normal;
  color: var(--b-200);
}

.cookie-banner-desc a {
  color: var(--gold-dim);
  border-bottom: 1px solid rgba(201,171,106,0.3);
  transition: color 0.2s ease;
}

.cookie-banner-desc a:hover { color: var(--gold); }

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-btn-decline,
.cookie-btn-accept {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s var(--ease-expo);
  white-space: nowrap;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--b-400);
  border: 1px solid rgba(255,255,255,0.12);
}

.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--b-100);
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--g-900);
}

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

@media (max-width: 720px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn-decline,
  .cookie-btn-accept {
    flex: 1;
    text-align: center;
  }
}
