/* =================================================================
   NOÉLIE — Café | Bar Bochum
   Concept: "Vom Morgen bis zum Abend" — the page descends from warm
   café daylight into candle-lit wine-bar night as you scroll.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --lemon:  #E8C84A;
  --lemon-deep: #cbb54a;
  --olive:  #7A8C6E;
  --olive-deep: #566451;
  --dark:   #0E0D0B;
  --dark-2: #16140F;
  --creme:  #F7F3EA;
  --beige:  #EDE5D5;
  --paper-mid: #d8d1bd;
  --radius: 8px;
  --error: #f0855f;

  --ink:    #2a2620;      /* body text on light */
  --ink-soft: #5b5443;
  --paper-text: #ece6d6;  /* body text on dark */
  --paper-soft: #b7b09c;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --z-grain: 50;
  --z-content: 10;
  --z-nav: 60;
  --z-menu: 70;
  --z-pre: 100;

  /* live theme tokens (driven per-section by JS) */
  --bg: var(--creme);
  --fg: var(--ink);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--lemon); color: var(--dark); padding: .7em 1.1em;
  border-radius: var(--radius); font-size: .85rem; font-weight: 500; letter-spacing: .03em;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--dark); outline-offset: 2px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--ink);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
::selection { background: var(--lemon); color: var(--dark); }

/* ---------- Typography primitives ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--olive-deep); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--ink-soft);
  opacity: 0.9;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lemon);
  box-shadow: 0 0 0 4px rgba(232,200,74,0.18);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--dark);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1.05em 1.7em;
  min-height: 44px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
  will-change: transform;
}
.btn--solid { background: var(--dark); color: var(--creme); }
.btn--solid:hover { background: var(--olive-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(42,38,32,0.25); }
.btn--ghost:hover { border-color: var(--dark); background: var(--dark); color: var(--creme); transform: translateY(-2px); }
.btn--pill { background: var(--lemon); color: var(--dark); }
.btn--pill:hover { background: var(--dark); color: var(--lemon); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; padding: 1.05em 1.7em; }

/* ===================================================================
   PRELOADER
   =================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-pre);
  background: var(--creme);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; padding: 1.5rem; }
.preloader__logo {
  width: clamp(220px, 42vw, 380px); height: auto; margin: 0 auto;
  opacity: 0; transform: translateY(10px) scale(.985);
  animation: plRise 1.1s var(--ease) .1s forwards;
}
.preloader__sub {
  display: block;
  font-family: var(--font-body); font-size: .66rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: 1.4rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .6s forwards;
}
@keyframes plRise { to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ===================================================================
   GRAIN + SCROLL PROGRESS
   =================================================================== */
.grain {
  position: fixed; inset: 0; z-index: var(--z-grain);
  pointer-events: none; opacity: 0.38; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain { opacity: .28; } }
@media (max-width: 640px) { .grain { opacity: .3; }
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--lemon); z-index: var(--z-nav);
}

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .4s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.5rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(247,243,234,0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: rgba(42,38,32,0.08);
}
.nav.is-scrolled .nav__inner { padding-top: .9rem; padding-bottom: .9rem; }
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo {
  height: 46px; width: auto; display: block;
  transition: filter .45s var(--ease), height .4s var(--ease);
}
/* over the dark hero: render the lockup in cream for legibility */
.nav:not(.is-scrolled) .nav__logo {
  filter: brightness(0) invert(1) drop-shadow(0 1px 14px rgba(14,13,11,.4));
}
/* once scrolled onto the light nav: bloom into full brand color */
.nav.is-scrolled .nav__logo { height: 38px; }
/* legibility over hero before the nav gains a background */
.nav:not(.is-scrolled) .nav__links a { text-shadow: 0 1px 16px rgba(14,13,11,.45); }
.nav.is-scrolled .nav__brand,
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: .82rem; letter-spacing: .04em; font-weight: 400;
  color: var(--nav-fg, var(--creme)); position: relative; padding: .2rem 0;
  transition: color .35s var(--ease), opacity .35s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: currentColor; transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:focus-visible,
.nav__brand:focus-visible { outline: 2px solid var(--lemon); outline-offset: 5px; border-radius: 2px; }
.nav.is-scrolled .nav__links a:focus-visible,
.nav.is-scrolled .nav__brand:focus-visible { outline-color: var(--olive-deep); }
.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.nav__cta { font-size: .8rem; padding: .85em 1.5em; }
.nav__burger { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--dark); color: var(--creme);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0); pointer-events: none;
  transition: clip-path .7s var(--ease);
}
.mobile-menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu__links { display: flex; flex-direction: column; gap: .2rem; }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: clamp(2.2rem, 11vw, 3.4rem);
  font-weight: 400; padding: .35rem 0; display: flex; align-items: baseline; gap: 1rem;
  opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.is-open .mobile-menu__links a { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(1) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: .17s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: .22s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: .27s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(6) { transition-delay: .37s; }
.mobile-menu__links a:focus-visible { outline: 2px solid var(--lemon); outline-offset: 6px; border-radius: 3px; }
.mobile-menu__links a span { font-family: var(--font-body); font-size: .8rem; color: var(--lemon); letter-spacing: .1em; }
.mobile-menu__cta { color: var(--lemon) !important; }
.mobile-menu__foot {
  margin-top: 2.5rem; display: flex; justify-content: space-between;
  font-size: .8rem; letter-spacing: .05em; color: var(--paper-soft);
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem;
}
.mobile-menu__foot a { color: var(--lemon); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* ===================================================================
   01 · HERO
   =================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem var(--gutter) 3rem;
  overflow: hidden; color: var(--creme);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 115%; object-fit: cover; object-position: center; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,11,.58) 0%, rgba(14,13,11,.34) 38%, rgba(14,13,11,.72) 100%),
    linear-gradient(90deg, rgba(14,13,11,.5) 0%, rgba(14,13,11,.12) 55%, transparent 100%),
    radial-gradient(120% 80% at 72% 8%, rgba(232,200,74,.16), transparent 55%);
}
.hero__content { position: relative; z-index: var(--z-content); max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow { color: var(--creme); margin-bottom: 1.6rem; }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 9rem); line-height: 0.88;
  letter-spacing: -0.015em; margin-bottom: 1.8rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { color: var(--lemon); font-weight: 300; }
.hero__sub {
  max-width: 30ch; font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55; color: rgba(247,243,234,.92); margin-bottom: 2.4rem;
  hyphens: auto;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .btn--ghost { color: var(--creme); border-color: rgba(247,243,234,.5); }
.hero .btn--ghost:hover { background: var(--creme); color: var(--dark); border-color: var(--creme); }

.hero__hours {
  position: relative; z-index: var(--z-content);
  max-width: var(--maxw); margin: 3.5rem auto 0; width: 100%;
  display: flex; align-items: center; gap: 1.2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(247,243,234,.18);
  font-size: .85rem; letter-spacing: .04em;
}
.hero__hours-label {
  text-transform: uppercase; letter-spacing: .2em; font-size: .7rem;
  color: var(--lemon); display: inline-flex; align-items: center; gap: .5em;
}
.hero__hours-label::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lemon);
  box-shadow: 0 0 0 4px rgba(232,200,74,.2); animation: pulse 2.4s var(--ease-soft) infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(232,200,74,.25);} 50% { box-shadow: 0 0 0 8px rgba(232,200,74,0);} }
.hero__hours-line { color: rgba(247,243,234,.85); }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 3rem; z-index: var(--z-content);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(247,243,234,.7);
}
.hero__scroll-line { width: 1px; height: 48px; background: rgba(247,243,234,.55); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--lemon); animation: scrolldown 1.8s var(--ease-soft) infinite; }
@keyframes scrolldown { 0% { top:-50%; opacity:1; } 85% { opacity:1; } 100% { top:100%; opacity:0; } }

/* ===================================================================
   Section frame
   =================================================================== */
section { position: relative; z-index: var(--z-content); }
.concept, .menu, .atmo, .about, .reserve { padding: clamp(5rem, 11vw, 10rem) var(--gutter); }
.section-head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4.5rem); }
.section-head .eyebrow { margin-bottom: 1.3rem; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ===================================================================
   02 · KONZEPT — duality
   =================================================================== */
.concept { background: var(--beige); }
.duality {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.2vw, 1.8rem);
}
.duality__panel {
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.duality__panel:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -30px rgba(14,13,11,.5); }
.duality__panel--day { background: var(--creme); color: var(--ink); }
.duality__panel--night { background: var(--dark); color: var(--paper-text); }
.duality__media { position: relative; overflow: hidden; aspect-ratio: 4/3.4; }
.duality__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.duality__panel:hover .duality__media img { transform: scale(1.05); }
.duality__chip {
  position: absolute; top: 1.1rem; left: 1.1rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  padding: .5em 1.1em; border-radius: 100px; backdrop-filter: blur(6px);
  background: rgba(14,13,11,.5); color: var(--creme);
}
.duality__panel--day .duality__chip { background: rgba(247,243,234,.88); color: var(--dark); border: 1px solid rgba(42,38,32,.12); }
.duality__body { padding: clamp(1.6rem, 3vw, 2.8rem); }
.duality__body h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.05; margin-bottom: 1rem;
}
.duality__panel--night h3 { color: var(--lemon); }
.duality__body p { max-width: 42ch; }
.duality__panel--night p { color: var(--paper-soft); }

.taglist { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.taglist li {
  font-size: .76rem; letter-spacing: .03em; padding: .5em 1em;
  border: 1px solid currentColor; border-radius: 100px; opacity: .8;
}
.duality__panel--day .taglist li { border-color: rgba(42,38,32,.25); }
.duality__panel--night .taglist li { border-color: rgba(232,200,74,.4); color: var(--lemon); }

/* ===================================================================
   03 · KARTE
   =================================================================== */
.menu { background: var(--creme); }
.menu__motto {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--olive-deep); margin-top: 1rem;
}

/* Tabs */
.menu-tabs {
  max-width: var(--maxw); margin: 0 auto clamp(2rem, 4vw, 3.2rem);
  display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem;
}
.menu-tab {
  font-family: var(--font-body); font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-soft); background: transparent; border: 1px solid rgba(42,38,32,.18);
  padding: .8em 1.5em; border-radius: 100px; cursor: pointer; min-height: 44px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.menu-tab:hover { border-color: var(--dark); color: var(--dark); }
.menu-tab.is-active { background: var(--dark); color: var(--creme); border-color: var(--dark); }
.menu-tab:focus-visible { outline: 2px solid var(--lemon); outline-offset: 3px; }

/* Panels */
.menu-panel { max-width: var(--maxw); margin: 0 auto; }
.menu-panel[hidden] { display: none; }
.menu-panel.is-active { animation: panelIn .55s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu-panel--night {
  background: var(--dark); color: var(--paper-text);
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3.2rem);
}

.menu-cols {
  columns: 2; column-gap: clamp(2rem, 5vw, 4.5rem);
}
.menu-group { break-inside: avoid; margin-bottom: clamp(1.8rem, 3vw, 2.6rem); }
.menu-group__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1; margin-bottom: 1rem; padding-bottom: .7rem;
  border-bottom: 1px solid rgba(42,38,32,.15); display: flex; align-items: baseline; gap: .6rem;
}
.menu-panel--night .menu-group__title { color: var(--lemon); border-bottom-color: rgba(232,200,74,.28); }
.menu-group__price { font-family: var(--font-body); font-size: .82rem; letter-spacing: .04em; color: var(--olive-deep); }
.menu-panel--night .menu-group__price { color: var(--paper-soft); }
.menu-group__note {
  font-size: .82rem; color: var(--ink-soft); margin-top: .8rem; font-style: italic;
}

.m-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.m-item { display: flex; flex-direction: column; gap: .2rem; }
.m-item__row { display: flex; align-items: baseline; gap: .5rem; }
.m-item__name { font-size: 1rem; font-weight: 400; color: var(--ink); white-space: normal; }
.menu-panel--night .m-item__name { color: var(--creme); }
.m-item__name em { font-style: normal; font-size: .76rem; letter-spacing: .03em; color: var(--ink-soft); margin-left: .15em; }
.menu-panel--night .m-item__name em { color: var(--paper-soft); }
.m-item__lead { flex: 1; border-bottom: 1px dotted rgba(42,38,32,.3); transform: translateY(-.28em); min-width: 1.5rem; }
.menu-panel--night .m-item__lead { border-bottom-color: rgba(247,243,234,.25); }
.m-item__price { font-family: var(--font-body); font-size: .95rem; font-weight: 500; color: var(--olive-deep); white-space: nowrap; }
.menu-panel--night .m-item__price { color: var(--lemon); }
.m-item__desc { font-size: .85rem; line-height: 1.45; color: var(--ink-soft); max-width: 46ch; }
.menu-panel--night .m-item__desc { color: var(--paper-soft); }
/* paninis group: name without price row still aligns */
.m-item > .m-item__name { padding-bottom: .1rem; }

.menu__legal {
  max-width: var(--maxw); margin: clamp(2.5rem, 5vw, 4rem) auto 0; text-align: center;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); opacity: .8;
}

/* ===================================================================
   04 · ATMOSPHÄRE
   =================================================================== */
.atmo { background: var(--beige); }
.gallery {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(180px, 23vw, 320px);
  gap: clamp(.7rem, 1.4vw, 1.2rem);
}
.gallery__item {
  overflow: hidden; border-radius: var(--radius); position: relative;
  box-shadow: inset 0 0 0 1px rgba(42,38,32,.08);
  background: var(--creme);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
/* Clean 3-over-2 editorial mosaic — no holes */
.g1 { grid-column: 1 / 3; }
.g2 { grid-column: 3 / 5; }
.g3 { grid-column: 5 / 7; }
.g4 { grid-column: 1 / 4; }
.g5 { grid-column: 4 / 7; }
.atmo__insta {
  display: inline-flex; align-items: center; gap: .7rem;
  margin: clamp(2.5rem,5vw,4rem) auto 0; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  width: 100%; color: var(--olive-deep); transition: color .3s var(--ease), gap .3s var(--ease);
}
.atmo__insta:hover { color: var(--dark); gap: 1.1rem; }
.taglist li { transition: background .3s var(--ease), border-color .3s var(--ease); }
.duality__panel--day .taglist li:hover { background: rgba(42,38,32,.06); border-color: rgba(42,38,32,.4); }
.duality__panel--night .taglist li:hover { background: rgba(232,200,74,.1); }

/* ===================================================================
   05 · ÜBER UNS — night begins
   =================================================================== */
.about { background: var(--dark); color: var(--paper-text); }
.about .eyebrow { color: var(--paper-soft); }
.about .section-title em { color: var(--lemon); }
.about__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.about__media img { width: 100%; height: 110%; object-fit: cover; }
.about__text .section-title { margin-bottom: 1.8rem; }
.about__text p { color: var(--paper-mid); margin-bottom: 1.2rem; max-width: 52ch; }
.values { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; margin-top: 2rem; }
.values li { display: flex; align-items: center; gap: .85rem; font-size: .95rem; color: var(--paper-text); }
.values li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lemon); box-shadow: 0 0 0 3px rgba(232,200,74,.16); flex: 0 0 auto; }

.quote {
  max-width: 1000px; margin: clamp(4rem, 8vw, 7rem) auto 0; text-align: center; position: relative;
}
.quote__mark { font-family: var(--font-display); font-size: 4.8rem; color: var(--olive); line-height: .5; display: block; margin-bottom: 1.2rem; }
.quote p {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem); line-height: 1.3; color: var(--creme);
}

/* ===================================================================
   06 · RESERVIERUNG — deep night
   =================================================================== */
.reserve { background: var(--dark-2); color: var(--paper-text); }
.reserve__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start;
}
.reserve .eyebrow { color: var(--paper-soft); }
.reserve .section-title { color: var(--creme); }
.reserve .section-title em { color: var(--lemon); }
.reserve__hours { display: flex; flex-wrap: wrap; gap: clamp(1.1rem, 2.4vw, 2.4rem); margin: 2.5rem 0 1.5rem; }
.reserve__hours div { display: flex; flex-direction: column; gap: .3rem; }
.reserve__day { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--lemon); }
.reserve__time { font-family: var(--font-display); font-size: 1.8rem; color: var(--creme); }
.reserve__note { color: var(--paper-soft); max-width: 38ch; }
.reserve__addr {
  font-style: normal; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(247,243,234,.12); font-family: var(--font-display);
  font-size: 1.4rem; color: var(--creme); line-height: 1.3;
}

.reserve__form { background: rgba(247,243,234,.04); border: 1px solid rgba(247,243,234,.1); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem); }
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.reserve__form { color-scheme: dark; }
.field label {
  display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper-mid); margin-bottom: .6rem;
}
.field label .req { color: var(--lemon); margin-left: .15em; }
.field input, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--creme);
  background: transparent; border: 0; border-bottom: 1px solid rgba(247,243,234,.52);
  padding: .9rem 0; min-height: 44px; transition: border-color .3s var(--ease); border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.field select { -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e8c84a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .2rem center; padding-right: 1.6rem; cursor: pointer;
}
.field input::placeholder { color: var(--paper-soft); }
.field input:hover, .field select:hover { border-bottom-color: rgba(247,243,234,.55); }
.field input:focus, .field select:focus { outline: none; border-bottom-color: var(--lemon); }
.field select option { background: var(--dark-2); color: var(--creme); }
.field input:focus-visible, .field select:focus-visible { outline: 2px solid var(--lemon); outline-offset: 4px; }
/* native date/time picker icons -> light */
.field input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.7); cursor: pointer; }
.field input::-webkit-calendar-picker-indicator:hover { filter: invert(1) opacity(1); }
.field input::-webkit-datetime-edit { color: var(--creme); }
.field input:not(:focus):placeholder-shown,
.field input[value=""]:not(:focus) { color: var(--creme); }
.field input::-webkit-datetime-edit-fields-wrapper { color: var(--creme); }
.reserve__form .btn--solid { background: var(--lemon); color: var(--dark); margin-top: 1.1rem; }
.reserve__form .btn--solid:hover { background: var(--creme); }
.reserve__formnote { margin-top: 1rem; font-size: .85rem; color: var(--lemon); min-height: 1.2em; }
/* error state only AFTER user interaction, never on pristine empty fields */
.field input:user-invalid, .field select:user-invalid { border-bottom-color: var(--error); border-bottom-width: 2px; }

/* ===================================================================
   07 · FOOTER
   =================================================================== */
.footer { background: var(--dark); color: var(--paper-soft); padding: clamp(4rem,8vw,6rem) var(--gutter) 2.5rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1.3fr; gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(247,243,234,.1);
}
.footer__logo {
  width: clamp(190px, 27vw, 290px); display: block; margin-bottom: 1.8rem;
  background: var(--creme); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: 0 20px 48px -22px rgba(0,0,0,.75);
}
.footer__tag { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); font-style: italic; color: var(--creme); line-height: 1.3; max-width: 27ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer__col h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--lemon); margin-bottom: .9rem; font-weight: 500; }
.footer__col a, .footer__col p, .footer__col address { display: block; font-style: normal; line-height: 1.9; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--creme); }
.footer__col:last-child a:hover { color: var(--lemon); }
.footer__handle { color: var(--paper-soft); }
.footer__bottom {
  max-width: var(--maxw); margin: 2rem auto 0; display: flex; justify-content: space-between;
  align-items: center; font-size: .8rem; letter-spacing: .03em; flex-wrap: wrap; gap: 1rem;
}
.footer__legal { display: flex; gap: 1.6rem; }
.footer__legal a:hover { color: var(--lemon); }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-line] { display: block; transform: translateY(102%); transition: transform .9s var(--ease); }
.is-lines-in [data-reveal-line] { transform: none; }
[data-reveal-line]:nth-child(2) { transition-delay: .1s; }
[data-reveal-line]:nth-child(3) { transition-delay: .2s; }
[data-parallax] { will-change: transform; backface-visibility: hidden; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; background: none; border: 0; cursor: pointer; padding: 10px;
    min-width: 44px; min-height: 44px; z-index: calc(var(--z-menu) + 1); position: relative;
  }
  .nav__burger:focus-visible { outline: 2px solid var(--lemon); outline-offset: 2px; border-radius: var(--radius); }
  .nav__burger span { display: block; width: 26px; height: 2px; background: var(--creme); transition: transform .4s var(--ease), opacity .4s var(--ease); }
  .nav.is-scrolled .nav__burger span { background: var(--ink); }
  .nav__burger.is-active span { background: var(--creme); }
  .nav__burger.is-active span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__burger.is-active span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .duality { grid-template-columns: 1fr; }
  .menu-cols { columns: 1; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16/11; order: -1; }
  .values { grid-template-columns: 1fr 1fr; }
  .reserve__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(150px, 42vw, 240px); }
  .g1 { grid-column: 1 / 3; }
  .g2, .g3, .g4, .g5 { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .section-title { line-height: 1.04; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: max(6.5rem, 12vh) var(--gutter) 2.5rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: .8rem; }
  .hero__actions .btn { justify-content: center; }
  .hero__scroll { display: none; }
  .values { grid-template-columns: 1fr; }
}

/* ===================================================================
   MOBILE REFINEMENTS (mobile review pass)
   =================================================================== */
/* Touch devices: neutralise hover-only transforms so a tap doesn't
   leave cards/buttons "stuck" in the lifted state. Colour cues remain. */
@media (hover: none) {
  .menu-card:hover, .menu-card--accent:hover, .menu-card--soon:hover,
  .duality__panel:hover { transform: none; box-shadow: none; }
  .gallery__item:hover img,
  .duality__panel:hover .duality__media img { transform: none; }
  .btn--solid:hover, .btn--ghost:hover, .btn--pill:hover { transform: none; }
}
.btn:active { transform: scale(.985); }

@media (max-width: 640px) {
  /* Karte tabs → single-row segmented control (no 2-row wrap) */
  .menu-tabs { flex-wrap: nowrap; gap: .4rem; }
  .menu-tab {
    flex: 1 1 0; padding: .85em .5em; font-size: .76rem; letter-spacing: .02em;
    white-space: nowrap; justify-content: center; text-align: center;
  }
  .menu-group { margin-bottom: clamp(2rem, 5vw, 2.6rem); }
  .m-item__desc { max-width: 42ch; }
  .menu-panel--night { padding: clamp(1.5rem, 5vw, 2.8rem); }
  .field label { font-size: .8rem; letter-spacing: .1em; }
  .hero__hours { flex-direction: column; align-items: flex-start; gap: .55rem; }
  .gallery { gap: clamp(.85rem, 2.2vw, 1.2rem); }
  .footer__cols { gap: 1.3rem; }
  .footer__tag { max-width: 22ch; }
  .footer__logo { padding: 1.3rem; }
}

@media (max-width: 480px) {
  .concept, .menu, .atmo, .about, .reserve {
    padding-top: clamp(3rem, 9vw, 6rem); padding-bottom: clamp(3rem, 9vw, 6rem);
  }
  .hero__title { line-height: .96; font-size: clamp(2.9rem, 11vw, 9rem); }
  .section-title { line-height: 1.08; }
  .duality { gap: clamp(1.4rem, 4vw, 1.8rem); }
  .about__text p { max-width: 46ch; }
  .menu-tab { font-size: .72rem; padding: .85em .35em; }
}

@media (max-width: 380px) {
  .footer__bottom { gap: .7rem; }
  .footer__legal { gap: 1.1rem; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal], [data-reveal-line] { opacity: 1 !important; transform: none !important; }
  .preloader { display: none; }
}
