/* ============================================================
   EAST & WEST by Route 66 — Kassel
   Design system · Dark & Gold · dezenter Neon-Türkis Akzent
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:        #08080a;
  --bg-2:      #0e0e11;
  --surface:   #141418;
  --surface-2: #1b1b21;
  --line:      rgba(201,162,74,.18);
  --line-soft: rgba(255,255,255,.07);

  --gold:      #c9a24b;
  --gold-2:    #e7cf95;
  --cream:     #f3e8cd;
  --cyan:      #79e7e0;

  --text:      #ece7dd;
  --muted:     #a49d90;
  --muted-2:   #746e64;

  --maxw: 1200px;
  --pad: clamp(1.15rem, 5vw, 4rem);
  --radius: 4px;

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

  --shadow: 0 30px 80px -30px rgba(0,0,0,.85);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
/* Logo is gold-on-black JPEG — screen blend drops the black onto the dark UI */
.logo-blend { mix-blend-mode: screen; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Ambient grain / vignette layer */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201,162,74,.10), transparent 60%),
    radial-gradient(90% 60% at 100% 100%, rgba(121,231,224,.05), transparent 55%);
}

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.05; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .74rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow--cyan { color: var(--cyan); text-shadow: 0 0 18px rgba(121,231,224,.45); }

.display {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: .01em;
}
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--muted);
  font-weight: 300;
}
.gold-text { color: var(--gold-2); }
em, .italic { font-style: italic; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); position: relative; z-index: 1; }
.section { padding-block: clamp(4.5rem, 10vw, 8rem); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.15rem; }
.divider-line {
  width: 64px; height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.4rem auto;
}

/* Decorative gold ornament divider (echoes menu) */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: var(--gold); margin: 1.5rem auto; max-width: 320px;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,.6));
}
.ornament::after { background: linear-gradient(90deg, rgba(201,162,74,.6), transparent); }
.ornament span { font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --pv: .95rem; --ph: 2.1rem;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: var(--pv) var(--ph);
  font-family: var(--sans); font-weight: 400;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .5s var(--ease);
  position: relative; overflow: hidden;
}
.btn--primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #14100a;
  box-shadow: 0 10px 40px -12px rgba(201,162,74,.6);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px -12px rgba(201,162,74,.75); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255,255,255,.015);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(201,162,74,.06); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  transition: background .5s var(--ease), border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(6,6,9,.6), transparent);
}
/* Mobile menu open: keep header (and its ✕ toggle) above the overlay */
body.menu-open .site-header { background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
.site-header.scrolled {
  background: rgba(8,8,10,.82);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
}
.nav__logo img { height: 42px; width: auto; transition: height .4s var(--ease); }
.scrolled .nav__logo img { height: 36px; }
.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; position: relative; padding: .3rem 0;
  transition: color .35s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: .6rem; }

.nav__mobile { display: none; }
.nav__toggle { display: none; background: none; border: none; width: 30px; height: 22px; position: relative; z-index: 110; }
.nav__toggle span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--cream);
  border-radius: 2px; transition: all .4s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 20px; }
body.menu-open .nav__toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  position: relative; overflow: hidden;
  padding-top: 82px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: saturate(105%) contrast(102%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.35) 40%, rgba(8,8,10,.92) 100%),
    radial-gradient(80% 60% at 50% 40%, transparent, rgba(8,8,10,.5));
}
.hero__inner { position: relative; z-index: 2; padding: 2rem 0; }
.hero__logo {
  width: min(460px, 74vw); margin: 0 auto 1.9rem;
  padding: 1.5rem 2.2rem; background: #08080a; border-radius: 6px;
  box-shadow: 0 26px 70px -22px rgba(0,0,0,.85), inset 0 0 0 1px rgba(201,162,74,.18);
}
.hero__tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem); color: var(--cream);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero__sub { color: var(--muted); max-width: 40ch; margin: 0 auto 2.4rem; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--muted); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.4s var(--ease) infinite;
}
@keyframes scrollpulse { 0%,100% { opacity:.3; transform: scaleY(.6);} 50% { opacity:1; transform: scaleY(1);} }

/* East meets West split badges */
.duality {
  display: inline-flex; align-items: center; gap: 1.1rem;
  margin-bottom: 1.6rem; color: var(--muted);
  font-size: .8rem; letter-spacing: .24em; text-transform: uppercase;
}
.duality b { font-weight: 500; }
.duality .east { color: var(--gold-2); }
.duality .west { color: var(--cyan); text-shadow: 0 0 16px rgba(121,231,224,.4); }
.duality .amp { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-style: italic; }

/* ---------- Concept / two-culture ---------- */
.concept { position: relative; }
.concept__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: stretch;
}
.culture-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  position: relative; overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s;
}
.culture-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.culture-card__ico { color: var(--gold); margin-bottom: 1.2rem; }
.culture-card.west .culture-card__ico { color: var(--cyan); }
.culture-card h3 { font-size: 2rem; margin-bottom: .5rem; }
.culture-card p { color: var(--muted); font-size: .98rem; }
.culture-card__list { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .8rem; border: 1px solid var(--line-soft); border-radius: 40px; color: var(--muted);
}
.culture-card.west .chip { border-color: rgba(121,231,224,.2); }

/* ---------- Feature / image-text rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.feature--rev .feature__media { order: 2; }
.feature__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
  box-shadow: var(--shadow);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--line); border-radius: var(--radius); pointer-events: none;
}
.feature__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(8,8,10,.7); backdrop-filter: blur(6px);
  color: var(--gold-2); padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 40px;
}

/* ---------- Signature dishes ---------- */
.dishes { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.dish {
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); transition: transform .5s var(--ease), border-color .5s;
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-6px); border-color: var(--gold); }
.dish__img { aspect-ratio: 3/2; overflow: hidden; background: linear-gradient(135deg,var(--surface-2),var(--bg)); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.06); }
.dish__body { padding: 1.3rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.dish__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__name { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); }
.dish__price { color: var(--gold-2); font-weight: 400; white-space: nowrap; }
.dish__desc { color: var(--muted); font-size: .9rem; margin-top: .4rem; }
.dish__tag { margin-top: auto; padding-top: 1rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Hours strip ---------- */
.hours-strip {
  border-block: 1px solid var(--line); background: var(--bg-2);
}
.hours-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-soft); }
.hours-cell { background: var(--bg-2); padding: 1.6rem 1.2rem; text-align: center; }
.hours-cell .d { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hours-cell .h { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-top: .4rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.2rem); color: var(--gold-2); }
.stat .l { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: rgba(8,8,10,.82); }
.cta-band .wrap { position: relative; z-index: 1; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-nav {
  position: sticky; top: 82px; z-index: 50;
  background: rgba(8,8,10,.9); backdrop-filter: blur(12px);
  border-block: 1px solid var(--line);
}
.menu-nav__inner { display: flex; gap: .4rem; overflow-x: auto; padding: .8rem var(--pad); scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: 0 0 auto; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); padding: .5rem 1rem; border-radius: 40px; border: 1px solid transparent;
  transition: all .35s; white-space: nowrap;
}
.menu-nav a:hover { color: var(--cream); }
.menu-nav a.active { color: var(--gold-2); border-color: var(--line); background: rgba(201,162,74,.06); }

.menu-section { scroll-margin-top: 150px; }
.menu-section__head { text-align: center; margin-bottom: 2.5rem; }
.menu-section__head h2 { font-size: clamp(1.9rem,4vw,3rem); }
.menu-section__note { color: var(--muted); font-size: .9rem; margin-top: .6rem; font-style: italic; }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 3.5rem; }
.menu-list--single { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
.mi {
  display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem;
  padding: 1.05rem 0; border-bottom: 1px dashed var(--line-soft); align-items: baseline;
}
.mi__name { font-family: var(--serif); font-size: 1.32rem; color: var(--cream); letter-spacing: .01em; }
.mi__price { color: var(--gold-2); font-weight: 400; white-space: nowrap; font-size: 1.02rem; }
.mi__desc { grid-column: 1 / -1; color: var(--muted); font-size: .88rem; margin-top: .1rem; max-width: 52ch; }
.mi__meta { grid-column: 1/-1; color: var(--muted-2); font-size: .8rem; font-style: italic; margin-top: .15rem; }
.mi--sub .mi__name { font-size: 1.05rem; color: var(--text); font-family: var(--sans); font-weight: 400; }

.menu-hint {
  text-align: center; color: var(--muted); font-size: .86rem;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.5rem;
  max-width: 640px; margin: 2.5rem auto 0; background: var(--bg-2);
}

/* Build-your-own burger */
.builder { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.builder__col { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.4rem 1.5rem; background: var(--surface); }
.builder__col h4 { font-family: var(--sans); font-weight: 500; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.builder__col .free { font-size: .72rem; color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; }
.builder__col ul { margin-top: .9rem; }
.builder__col li { padding: .35rem 0; color: var(--text); font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.04); }
.builder__col .extra { margin-top: .8rem; font-size: .8rem; color: var(--muted); font-style: italic; }

/* ============================================================
   FORMS (Reservierung / Kontakt)
   ============================================================ */
.form-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg,var(--surface),var(--bg-2));
  padding: clamp(1.6rem,4vw,3rem); box-shadow: var(--shadow);
}
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius);
  color: var(--text); padding: .85rem 1rem; font-family: var(--sans); font-size: .98rem; font-weight: 300;
  transition: border-color .35s, box-shadow .35s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,74,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-note { font-size: .82rem; color: var(--muted-2); margin-top: 1rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius); font-size: .9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(121,231,224,.08); border: 1px solid rgba(121,231,224,.3); color: var(--cyan); }

/* Info cards (contact) */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.info-card { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.8rem; background: var(--surface); }
.info-card .ico { color: var(--gold); margin-bottom: 1rem; }
.info-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.info-card p, .info-card a { color: var(--muted); font-size: .95rem; }
.info-card a:hover { color: var(--gold-2); }

.map-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.4) invert(.9) contrast(.9) hue-rotate(180deg); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding-top: calc(82px + clamp(3rem,8vw,6rem)); padding-bottom: clamp(2.5rem,6vw,4rem);
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; opacity: .28; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,8,10,.6), var(--bg)); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem,6vw,4.2rem); margin-top: .8rem; }

/* ---------- Prose (about / legal) ---------- */
.prose { max-width: 720px; margin-inline: auto; }
.prose p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
.prose h2 { font-size: 1.9rem; margin: 2.5rem 0 1rem; color: var(--cream); }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 .6rem; color: var(--gold-2); font-family: var(--sans); font-weight: 500; letter-spacing: .02em; }
.prose a { color: var(--gold-2); border-bottom: 1px solid var(--line); }
.prose strong { color: var(--text); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(3rem,6vw,4.5rem) 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { width: 190px; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: .92rem; margin-bottom: .6rem; transition: color .3s; }
.footer-col a:hover { color: var(--gold-2); }
.footer-social { display: flex; gap: .8rem; margin-top: .3rem; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--muted); transition: all .4s var(--ease);
}
.footer-social a:hover { color: var(--gold-2); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile {
    position: fixed; inset: 0; z-index: 105;
    background: rgba(8,8,10,.97); backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
    opacity: 0; pointer-events: none; transition: opacity .45s var(--ease);
  }
  body.menu-open .nav__mobile { opacity: 1; pointer-events: auto; }
  .nav__mobile a { font-family: var(--serif); font-size: 1.9rem; color: var(--cream); }
  .nav__mobile a:hover { color: var(--gold-2); }
  .nav__mobile a.btn { margin-top: 1rem; font-family: var(--sans); font-size: .82rem; }
  .nav__mobile a.btn--primary { color: #14100a; }

  .concept__grid, .feature, .dishes, .stats, .info-grid, .builder,
  .footer-grid, .menu-list, .menu-cols { grid-template-columns: 1fr !important; }
  .feature--rev .feature__media { order: 0; }
  .hours-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { gap: 2rem; }
  .field-row { grid-template-columns: 1fr; }

  /* On mobile the hero content can be tall — let the scroll cue flow
     BELOW the CTA instead of overlapping it (absolute bottom). */
  .hero { padding-bottom: 2rem; }
  .hero__scroll { position: static; transform: none; margin-top: 2.2rem; }
}
@media (max-width: 560px) {
  .dishes { gap: 1.1rem; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .duality { flex-wrap: wrap; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
