/* ──────────────────────────────────────────────────────────────
   LA VOGLIA RISTORANTE · stylesheet
   ────────────────────────────────────────────────────────────── */

:root {
  /* palette */
  --bg:        #f4eedf;
  --bg-soft:   #faf6ea;
  --bg-deep:   #ecdfc4;
  --ink:       #1a1410;
  --ink-soft:  #3a2f24;
  --muted:     #786a55;
  --hair:      #c9b88f;
  --gold:      #a8843a;
  --gold-soft: #cfa15b;

  /* italian flag */
  --flag-green: #1e8c4a;
  --flag-white: #f4eedf;
  --flag-red:   #c0392b;

  /* type */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  /* spacing */
  --container: 1240px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  /* motion */
  --ease:  cubic-bezier(.22,.7,.18,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-slow: 1100ms;
  --t-med:  600ms;
  --t-fast: 280ms;
}

/* ──────────  reset & base  ────────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* very subtle parchment grain (pure CSS, no asset) */
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(212,183,127,.18), transparent 60%),
    radial-gradient(900px 500px at 110% 20%, rgba(212,183,127,.12), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(168,132,58,.05), transparent 50%);
}

img,svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; }
ul,ol { list-style: none; padding: 0; margin: 0; }

.container { width: 100%; max-width: var(--container); padding-inline: var(--gutter); margin-inline: auto; }

::selection { background: var(--gold); color: var(--bg); }

/* ──────────  shared typography  ────────── */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 0;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  display: inline-flex; align-items: center; gap: .75rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .55;
}
em { font-style: italic; color: var(--ink-soft); }

/* italian flag thin rule */
.flag-rule {
  display: inline-block;
  margin-top: 1.5rem;
  width: 92px; height: 2px;
  background: linear-gradient(to right,
    var(--flag-green) 0 33.33%,
    var(--flag-white) 33.33% 66.66%,
    var(--flag-red)   66.66% 100%);
  border-radius: 1px;
}
.hair-rule {
  display: block;
  width: 64px; height: 1px;
  background: var(--hair);
  margin-top: 1rem;
}

/* ──────────  buttons  ────────── */
.btn {
  --pad-y: .95rem;
  --pad-x: 1.75rem;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform var(--t-med) var(--ease-out);
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateY(0); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid::before { background: var(--gold); }
.btn--solid:hover { color: var(--ink); border-color: var(--gold); }
.btn--ghost { background: transparent; }
.btn--small { --pad-y: .7rem; --pad-x: 1.2rem; font-size: .72rem; letter-spacing: .2em; }
.btn--lg    { --pad-y: 1.05rem; --pad-x: 2.5rem; font-size: .82rem; }

/* ──────────  HEADER / NAV  ────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: clamp(.75rem, 1.5vw, 1.5rem);
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease),
              padding var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(244,238,223,.86);
  backdrop-filter: blur(14px) saturate(120%);
  padding-block: .65rem;
  box-shadow: 0 1px 0 rgba(26,20,16,.06);
}

.brand {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand__mark {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 3px;
  gap: 1px;
}
.brand__bar { display:block; width: 4px; height: 14px; border-radius: 1px; }
.brand__bar--g { background: var(--flag-green); }
.brand__bar--w { background: var(--flag-white); border: 1px solid rgba(26,20,16,.15); }
.brand__bar--r { background: var(--flag-red); }

/* Uploaded logo in header */
.brand__logo-img {
  height: 54px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: opacity .25s, height .35s var(--ease);
}
.brand__logo-img:hover { opacity: .82; }
.site-header.is-scrolled .brand__logo-img { height: 44px; }

@media (max-width: 720px) {
  .brand__logo-img { height: 54px; max-width: 190px; }
  .site-header.is-scrolled .brand__logo-img { height: 44px; }
}

.nav {
  justify-self: center;
  display: flex; gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: nowrap;
}
.nav a {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: .25rem 0;
  background: linear-gradient(to right, var(--ink), var(--ink)) no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: color var(--t-fast) var(--ease), background-size var(--t-med) var(--ease-out);
}
.nav a:hover { color: var(--ink); background-size: 100% 1px; }

.nav__cta { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 1200px) {
  .nav__cta { font-size: .7rem; --pad-x: 1rem; }
}
.nav__burger {
  display: none;
  background: transparent; border: 0; padding: .5rem;
  width: 44px; height: 44px;
  justify-self: end;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  margin: 5px auto; transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 70px 0 0 0; z-index: 90;
  background: var(--bg);
  padding: 2.5rem var(--gutter);
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .nav, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .mobile-nav.is-open { display: flex; }
}

/* ──────────  LOGO MARK (multi-size CSS recreation of crest)  ────────── */
.logo-mark {
  --m: 1;
  display: flex; flex-direction: column; align-items: center;
}
.logo-mark--lg { --m: 1.2; }
.logo-mark--xl { --m: 1.6; }

.logo-mark__crest {
  position: relative;
  width: calc(96px * var(--m));
  height: calc(40px * var(--m));
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 2px;
  padding: 6px;
}
.logo-mark__crest::before,
.logo-mark__crest::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 70%; height: 1.5px;
  background: var(--ink);
}
.logo-mark__crest::before { top: -10px; }
.logo-mark__crest::after  { bottom: -10px; }
.logo-mark__bar { width: calc(10px * var(--m)); height: 100%; border-radius: 1px; }
.logo-mark__bar--g { background: var(--flag-green); }
.logo-mark__bar--w { background: var(--flag-white); border: 1px solid rgba(26,20,16,.12); }
.logo-mark__bar--r { background: var(--flag-red); }

.logo-mark__title {
  font-family: var(--serif); font-weight: 600;
  margin: 1.25rem 0 .25rem;
  letter-spacing: .18em; text-transform: uppercase;
}
.logo-mark__sub {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .25em;
  color: var(--muted);
  margin: 0;
  font-size: .82rem;
}

/* ──────────  HERO BACKGROUND IMAGE  ────────── */
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.18); }
  to   { transform: scale(1.05); }
}
/* Strong overlay so text stays legible */
.hero { isolation: isolate; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(244,238,223,.55) 0%,
      rgba(244,238,223,.30) 35%,
      rgba(244,238,223,.55) 70%,
      rgba(244,238,223,.92) 100%);
  z-index: 0;
}
.hero__veil, .hero__grain, .hero__inner { position: relative; z-index: 1; }

/* Uploaded logo in hero */
.hero__logo-img {
  max-height: clamp(160px, 22vw, 260px);
  max-width: clamp(280px, 38vw, 480px);
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) .4s forwards;
  filter: drop-shadow(0 6px 30px rgba(26,20,16,.22));
}

/* ──────────  HERO  ────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid; place-items: center;
  padding: clamp(7rem, 14vh, 11rem) var(--gutter) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 50% 110%, rgba(168,132,58,.12), transparent 60%),
    linear-gradient(180deg, #f7f0db 0%, var(--bg) 60%, #efe5cb 100%);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(255,255,255,.35), transparent 70%),
    radial-gradient(70% 60% at 80% 70%, rgba(255,255,255,.25), transparent 70%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(26,20,16,.014) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(26,20,16,.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .72rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .2s forwards;
}
.hero__eyebrow .dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
  display: inline-block;
}

.hero__logo {
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) .4s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  line-height: 1;
  letter-spacing: .04em;
  margin: 2rem 0 .5rem;
  text-transform: uppercase;
}
.hero__title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: heroLine 1.4s var(--ease-out) .65s forwards;
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: .92rem;
  color: var(--muted);
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.hero__cta {
  display: inline-flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.45s forwards;
}
.hero__scroll {
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  width: 28px; height: 46px;
  border: 1px solid var(--ink-soft);
  border-radius: 14px;
  display: block;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.7s forwards;
  transition: border-color .25s var(--ease), transform .3s var(--ease);
}
.hero__scroll:hover {
  border-color: var(--gold);
  transform: translateY(3px);
}
.hero__scroll span {
  display: block;
  width: 2px; height: 6px; border-radius: 1px;
  background: var(--ink);
  margin: 8px auto 0;
  animation: scrollDot 1.8s var(--ease) infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLine {
  0%   { opacity: 0; transform: translateY(28px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ──────────  generic section  ────────── */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--about     { background: var(--bg-soft); }
.section--signature {
  background:
    linear-gradient(180deg, var(--bg-soft), var(--bg) 60%);
}
.section--menu      { background: var(--bg); }
.section--drinks    {
  background:
    linear-gradient(180deg, var(--bg), var(--bg-deep));
}
.section--reserve   { background: var(--ink); color: var(--bg); }
.section--reserve .display,
.section--reserve .eyebrow { color: var(--bg); }
.section--reserve .eyebrow { color: var(--gold-soft); }
.section--reserve .eyebrow::before,
.section--reserve .eyebrow::after { background: var(--gold-soft); }

.section__head {
  text-align: center;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  max-width: 700px;
}
.section__lead {
  margin: 1.5rem auto 0;
  max-width: 540px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}
.section--reserve .section__lead { color: rgba(244,238,223,.7); }

/* ──────────  ABOUT  ────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem) clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about__lead .display { font-size: clamp(2.5rem, 5vw, 4.2rem); }
.about__text p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 52ch;
}
.about__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--hair);
}
.about__stats li { display: flex; flex-direction: column; gap: .25rem; }
.about__stats .num {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
}
.about__stats .lbl {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}

@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ──────────  SIGNATURE  ────────── */
.signature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.signature__card {
  background: var(--bg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: .85rem;
  position: relative;
  transition: background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.signature__card:hover { background: var(--bg-soft); }
.signature__cat {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin: 0;
}
.signature__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  margin: 0; line-height: 1.15;
}
.signature__desc { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.55; }
.signature__price {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: .02em;
}

/* ──────────  MENU  ────────── */
/* Wrapper for fade-edges */
.menu-rail-wrap {
  position: sticky; top: 70px; z-index: 5;
  margin-inline: calc(var(--gutter) * -1);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.menu-rail-wrap::before,
.menu-rail-wrap::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: clamp(28px, 6vw, 56px);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.menu-rail-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(244,238,223,.95), rgba(244,238,223,0));
}
.menu-rail-wrap::after {
  right: 0;
  background: linear-gradient(to left,  rgba(244,238,223,.95), rgba(244,238,223,0));
}
.menu-rail-wrap.has-overflow-start::before,
.menu-rail-wrap.has-overflow-end::after { opacity: 1; }

/* Tiny arrow hint on the right edge */
.menu-rail-hint {
  position: absolute;
  top: 50%; right: 6px;
  transform: translateY(-50%);
  z-index: 3;
  display: none;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  pointer-events: none;
  animation: railHint 1.8s ease-in-out infinite;
}
.menu-rail-hint svg { width: 14px; height: 14px; }
.menu-rail-wrap.has-overflow-end .menu-rail-hint { display: inline-flex; }
.menu-rail-wrap.interacted .menu-rail-hint { display: none !important; }
@keyframes railHint {
  0%,100% { transform: translateY(-50%) translateX(0);   opacity: .8; }
  50%      { transform: translateY(-50%) translateX(4px); opacity: 1; }
}

.menu-rail {
  background: rgba(244,238,223,.92);
  backdrop-filter: blur(12px);
  padding: 1rem var(--gutter);
  border-block: 1px solid var(--hair);
  display: flex; gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.menu-rail::-webkit-scrollbar { display: none; }
.menu-rail a {
  flex-shrink: 0;
  scroll-snap-align: center;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .5rem .95rem;
  border-radius: 999px;
  position: relative;
  transition: color var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
/* Italian-flag underline for active item */
.menu-rail a::after {
  content: "";
  position: absolute; left: 20%; right: 20%; bottom: 2px;
  height: 2px;
  background: linear-gradient(to right,
    var(--flag-green) 0 33.33%,
    var(--ink) 33.33% 66.66%,
    var(--flag-red)   66.66% 100%);
  transform: scaleX(0); transform-origin: center;
  border-radius: 2px;
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .25s var(--ease);
}
.menu-rail a:hover { color: var(--ink); }

/* ACTIVE — prominent pill */
.menu-rail a.is-active {
  color: var(--bg);
  background: var(--ink);
  transform: scale(1.02);
}
.menu-rail a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
  bottom: -8px;
  background: linear-gradient(to right,
    var(--flag-green) 0 33.33%,
    var(--gold-soft)  33.33% 66.66%,
    var(--flag-red)   66.66% 100%);
}

/* Mobile: tighter spacing, smaller text, more cats visible */
@media (max-width: 720px) {
  .menu-rail {
    gap: 1.1rem;
    padding: .75rem var(--gutter);
  }
  .menu-rail a {
    font-size: .68rem;
    letter-spacing: .2em;
  }
}
@media (max-width: 480px) {
  .menu-rail { gap: .9rem; padding-block: .7rem; }
  .menu-rail a { font-size: .65rem; letter-spacing: .16em; }
}

.menu-cat {
  scroll-margin-top: 130px;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.menu-cat + .menu-cat { border-top: 1px solid var(--hair); }

.menu-cat__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.menu-cat__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
  letter-spacing: .01em;
}
.menu-cat__intro {
  font-family: var(--serif); font-style: italic;
  color: var(--muted);
  margin: .65rem 0 0;
  font-size: 1.05rem;
}
.menu-cat__head .hair-rule { margin-inline: auto; margin-top: 1.25rem; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 4vw, 2.75rem) clamp(2rem, 5vw, 4rem);
}
@media (max-width: 720px) {
  .menu-list { grid-template-columns: 1fr; }
}

.menu-item { line-height: 1.55; }
.menu-item__head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: .5rem;
}
.menu-item__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: .005em;
  color: var(--ink);
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: .55rem;
}
.menu-item__num {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--gold);
  padding: .15rem .45rem;
  border: 1px solid var(--gold);
  border-radius: 3px;
}
.menu-item__leader {
  flex: 1;
  align-self: end;
  margin-bottom: .35rem;
  border-bottom: 1px dotted var(--hair);
}
.menu-item__price {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex; flex-direction: column; align-items: flex-end;
  gap: .15rem;
}
.menu-item__price .price-sub {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.menu-item__desc {
  color: var(--muted);
  margin: .5rem 0 0;
  font-size: .94rem;
  line-height: 1.6;
  max-width: 56ch;
}

.tag {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .15rem .4rem;
  border-radius: 99px;
  background: var(--bg-deep);
  color: var(--ink-soft);
  line-height: 1;
}
.tag--sig   { background: var(--ink); color: var(--gold-soft); }
.tag--veg   { background: var(--flag-green); color: #fff; }
.tag--spicy { background: var(--flag-red); color: #fff; }
.tag--sold  { background: transparent; color: var(--muted); border: 1px solid var(--hair); letter-spacing: .14em; }

.menu-item.is-sold-out .menu-item__name,
.menu-item.is-sold-out .menu-item__desc,
.menu-item.is-sold-out .menu-item__price { opacity: .55; }
.menu-item.is-sold-out .menu-item__leader { border-bottom-style: solid; opacity: .3; }

/* ──────────  DRINKS  ────────── */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 4vw, 3.25rem);
}
.drinks-cat {
  background: var(--bg-soft);
  border: 1px solid var(--hair);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), background var(--t-med);
}
.drinks-cat:hover {
  background: #fff8e6;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -20px rgba(26,20,16,.25);
}
.drinks-cat__head h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: .01em;
}
.drinks-cat__hint {
  display: inline-block;
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  margin-top: .5rem;
}
.drinks-cat__head .hair-rule { margin-top: 1.1rem; }

.drinks-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
.drinks-item__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: .5rem;
}
.drinks-item__name {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
}
.drinks-item__leader {
  flex: 1;
  border-bottom: 1px dotted var(--hair);
  margin-bottom: .35rem;
  align-self: end;
}
.drinks-item__price {
  font-family: var(--serif);
  font-size: 1.05rem;
  white-space: nowrap;
  display: inline-flex; flex-direction: column; align-items: flex-end;
  gap: .1rem;
}
.drinks-item__price span { font-size: .85rem; color: var(--muted); }
.drinks-item__desc {
  margin: .35rem 0 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ──────────  RESERVE  ────────── */
.section--reserve {
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(168,132,58,.12), transparent 70%),
    radial-gradient(800px 500px at 80% 80%, rgba(168,132,58,.08), transparent 70%),
    var(--ink);
}
.reserve__wrap { max-width: 920px; }

.reserve-form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem 1.75rem;
  margin-top: 3rem;
}
.field { display: flex; flex-direction: column; gap: .5rem; grid-column: span 3; position: relative; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.field .opt { color: rgba(244,238,223,.45); letter-spacing: .12em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(244,238,223,.25);
  border-radius: 0;
  padding: .9rem 0;
  color: var(--bg);
  font: inherit; font-size: 1.05rem;
  letter-spacing: .02em;
  transition: border-color var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(244,238,223,.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-soft);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%), linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%); background-position: calc(100% - 14px) center, calc(100% - 8px) center; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 28px; }
.field select option { background: var(--ink); color: var(--bg); }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: var(--flag-red); }
.field .err {
  font-size: .78rem;
  color: #f3a594;
  letter-spacing: .04em;
}

.reserve-form__submit {
  display: flex; align-items: center; gap: 2rem; justify-content: space-between; flex-wrap: wrap;
  margin-top: 1rem;
}
.reserve-form__submit .btn--solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.reserve-form__submit .btn--solid::before { background: var(--bg); }
.reserve-form__submit .btn--solid:hover { color: var(--ink); border-color: var(--bg); }
.reserve-form__hint {
  margin: 0;
  font-size: .85rem;
  color: rgba(244,238,223,.65);
  letter-spacing: .04em;
}
.reserve-form__hint a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(207,161,91,.5);
  padding-bottom: 1px;
}
.reserve-form__hint a:hover { color: #fff; }

@media (max-width: 720px) {
  .reserve-form { grid-template-columns: 1fr 1fr; }
  .field { grid-column: span 2; }
}
@media (max-width: 480px) {
  .reserve-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
}

.alert {
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  border-radius: 4px;
  font-size: .95rem;
  border: 1px solid;
}
.alert--ok  { background: rgba(30,140,74,.15); color: #c8eecd; border-color: rgba(30,140,74,.4); }
.alert--err { background: rgba(192,57,43,.15); color: #f3c2bd; border-color: rgba(192,57,43,.45); }

/* ──────────  FOOTER  ────────── */
.site-footer {
  background: #14100c;
  color: #cdbf9c;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter) 2.5rem;
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer__brand .logo-mark__title { color: var(--bg); margin-top: 1rem; font-size: 1.4rem; }
.footer__brand .logo-mark__sub { color: var(--gold-soft); }
.footer__brand .logo-mark__crest { border-color: var(--gold-soft); }
.footer__brand .logo-mark__crest::before,
.footer__brand .logo-mark__crest::after { background: var(--gold-soft); }

.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.footer__col h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--bg);
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
  letter-spacing: .04em;
}
.footer__col p { margin: 0 0 .85rem; line-height: 1.6; }
.footer__col a { color: var(--gold-soft); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.footer__col a:hover { color: var(--bg); border-bottom-color: var(--gold-soft); }

.hours { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours th, .hours td { padding: .35rem 0; text-align: left; font-weight: 400; vertical-align: top; }
.hours th { color: var(--bg); width: 6.5rem; font-family: var(--serif); }
.hours em { color: var(--gold-soft); font-style: italic; }

.footer__small { font-size: .8rem; opacity: .75; line-height: 1.55; }

/* Map — row 2, spans brand + address columns */
.footer__map {
  grid-column: 1 / 3;
  grid-row: 2;
  border-radius: 10px;
  overflow: hidden;
  margin-top: .5rem;
  border: 1px solid rgba(207,161,91,.15);
  line-height: 0;
}
.footer__map iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: 0;
  filter: grayscale(18%) brightness(.88) contrast(1.05);
}
@media (max-width: 800px) {
  .footer__map { grid-column: 1 / -1; grid-row: auto; }
  .footer__map iframe { height: 220px; }
}
@media (max-width: 520px) {
  .footer__map iframe { height: 200px; }
}

.footer__base {
  max-width: var(--container);
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(207,161,91,.18);
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(207,161,91,.7);
  letter-spacing: .03em;
}
.footer__base .flag-rule { margin: 0; }

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ──────────  SCROLL REVEALS  (only hidden when JS confirmed) ────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

.js .reveal--stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js .reveal--stagger.is-visible > * { opacity: 1; transform: none; }

/* ──────────────────────────────────────────────────────────────
   ABOUT  —  split copy + 3-image collage
   ────────────────────────────────────────────────────────────── */
.about__split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__copy { min-width: 0; }

.about__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  aspect-ratio: 5/6;
}
.about__photo {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: var(--bg-deep);
  box-shadow:
    0 1px 0 rgba(26,20,16,.05),
    0 20px 50px -20px rgba(26,20,16,.25);
  transform-origin: center;
  transition: transform .8s var(--ease-out), box-shadow .6s var(--ease);
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-out), filter .6s var(--ease);
}
.about__photo:hover {
  box-shadow:
    0 1px 0 rgba(26,20,16,.08),
    0 30px 70px -25px rgba(26,20,16,.4);
}
.about__photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

/* Asymmetric mosaic — large left tall, small top-right, medium bottom-right */
.about__photo--lg { grid-row: 1 / 3; grid-column: 1 / 2; }
.about__photo--sm { grid-row: 1 / 2; grid-column: 2 / 3; aspect-ratio: 1/1; }
.about__photo--md { grid-row: 2 / 3; grid-column: 2 / 3; }

/* Stagger entry */
.js .about__collage.is-visible .about__photo {
  animation: photoIn 1.1s var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 140ms + 100ms);
}
@keyframes photoIn {
  from { opacity: 0; transform: translateY(40px) scale(.94); clip-path: inset(8% 0 8% 0); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   clip-path: inset(0); }
}

@media (max-width: 880px) {
  .about__split { grid-template-columns: 1fr; }
  .about__collage { max-width: 480px; margin: 1rem auto 0; aspect-ratio: 5/6; }
}

/* ──────────────────────────────────────────────────────────────
   LA STORIA  —  full-bleed split with clip-path reveal
   ────────────────────────────────────────────────────────────── */
.section--storia {
  padding: 0;
  background: var(--bg-soft);
  overflow: hidden;
}
.storia {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: clamp(420px, 70vh, 640px);
}
.storia__image {
  position: relative;
  overflow: hidden;
}
.storia__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
  filter: saturate(.95);
  transition: transform 14s linear;
}
.js .storia__image.is-visible img {
  transform: scale(1);
}
.storia__image-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(26,20,16,.15), rgba(26,20,16,0) 50%),
    radial-gradient(60% 80% at 50% 50%, transparent 30%, rgba(26,20,16,.25) 100%);
  pointer-events: none;
}

.storia__copy {
  display: flex; align-items: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(168,132,58,.06), transparent 60%),
    var(--bg-soft);
}
.storia__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 1.5rem 0 2rem;
  max-width: 38ch;
}
.storia__cta { margin-top: 1rem; }

@media (max-width: 880px) {
  .storia { grid-template-columns: 1fr; }
  .storia__image { aspect-ratio: 16/10; min-height: 260px; }
}

/* ──────────────────────────────────────────────────────────────
   SECTION BANNERS  (Speisekarte + Getränke headers)
   ────────────────────────────────────────────────────────────── */
.section__banner {
  position: relative;
  min-height: clamp(280px, 38vh, 440px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  isolation: isolate;
}
.section__banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: inherit;
  background-size: cover; background-position: center;
  z-index: 0;
  transform: scale(1.08);
  transition: transform 20s linear;
}
.js .section__banner.is-visible::before { transform: scale(1); }

.section__banner-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,20,16,.45) 0%, rgba(26,20,16,.35) 50%, rgba(26,20,16,.65) 100%),
    radial-gradient(70% 70% at 50% 50%, transparent 30%, rgba(26,20,16,.35) 100%);
}
.section__banner-content {
  position: relative; z-index: 2;
  padding: 2rem clamp(1rem, 4vw, 2rem);
  max-width: 720px;
}
.eyebrow--light       { color: var(--gold-soft); }
.eyebrow--light::before,
.eyebrow--light::after { background: var(--gold-soft); }
.display--light       { color: var(--bg); }
.section__banner-lead {
  margin: 1.5rem auto 0;
  max-width: 540px;
  color: rgba(244,238,223,.85);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section__head--inline { margin-bottom: 1.5rem; }
.section__lead-sm {
  text-align: center;
  font-size: .75rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
  margin: 0;
}

/* Drinks section uses banner — push deep bg further down */
.section--drinks { padding-top: 0; }
.section--menu   { padding-top: 0; }

/* Hide the OLD section__head inside drinks/menu (now replaced by banner) */
.section--menu   .section__head:not(.section__head--inline),
.section--drinks .section__head:not(.section__head--inline) { display: none; }

/* ──────────────────────────────────────────────────────────────
   GALLERY  —  responsive masonry with hover lift
   ────────────────────────────────────────────────────────────── */
.section--gallery {
  background: var(--bg-soft);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery__cell {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-deep);
  cursor: zoom-in;
  box-shadow: 0 1px 0 rgba(26,20,16,.06), 0 14px 40px -22px rgba(26,20,16,.3);
  transition: transform .55s var(--ease-out), box-shadow .5s var(--ease);
  display: block;
}
.gallery__cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,20,16,.18) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery__cell img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .9s var(--ease-out), filter .5s var(--ease);
}
.gallery__cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(26,20,16,.08), 0 24px 60px -25px rgba(26,20,16,.5);
}
.gallery__cell:hover img    { transform: scale(1.07); filter: saturate(1.1); }
.gallery__cell:hover::after { opacity: 1; }

.gallery__cell--wide { grid-column: span 2; }
.gallery__cell--tall { grid-row: span 2; }

/* Stagger entry override (image clip-path reveal) */
.js .gallery.is-visible .gallery__cell {
  animation: galleryIn 1s var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}
@keyframes galleryIn {
  from { opacity: 0; clip-path: inset(0 0 100% 0); transform: scale(.96); }
  to   { opacity: 1; clip-path: inset(0);          transform: scale(1); }
}

@media (max-width: 960px) {
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .gallery__cell--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 10px; }
  .gallery__cell--wide { grid-column: span 2; }
  .gallery__cell--tall { grid-row: span 2; }
}

/* ──────────────────────────────────────────────────────────────
   FOOTER LOGO  (placed on a parchment card so a dark-ink logo
   stays visible on the dark footer background)
   ────────────────────────────────────────────────────────────── */
.footer__logo-img {
  max-width: 260px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  padding: 1.2rem 1.5rem;
  background: var(--bg);                 /* parchment card */
  border-radius: 6px;
  margin-bottom: 1.5rem;
  box-shadow:
    0 1px 0 rgba(168,132,58,.3) inset,
    0 16px 40px -16px rgba(0,0,0,.6),
    0 0 0 1px rgba(168,132,58,.18);
  transition: transform .4s var(--ease-out),
              box-shadow .4s var(--ease);
}
.footer__logo-img:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(168,132,58,.45) inset,
    0 22px 50px -16px rgba(0,0,0,.7),
    0 0 0 1px rgba(168,132,58,.35);
}

/* ──────────────────────────────────────────────────────────────
   LIGHTBOX
   ────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 14, 8, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .28s var(--ease);
}
.lightbox.is-visible { opacity: 1; }
.lightbox[hidden]    { display: none; }

.lightbox__stage {
  margin: 0;
  max-width: min(96vw, 1400px);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  transform: scale(.96);
  transition: transform .35s var(--ease-out);
}
.lightbox.is-visible .lightbox__stage { transform: scale(1); }

.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
  background: #0a0a0a;
}
.lightbox__counter {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,238,223,.55);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(244,238,223,.08);
  border: 1px solid rgba(244,238,223,.18);
  color: var(--bg);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(244,238,223,.18);
  border-color: rgba(244,238,223,.4);
}
.lightbox__close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__nav   { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left:  clamp(.5rem, 2vw, 2rem); }
.lightbox__nav--next { right: clamp(.5rem, 2vw, 2rem); }

@media (max-width: 720px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__close { width: 40px; height: 40px; }
}

/* ──────────────────────────────────────────────────────────────
   MOBILE FLOATING GROUP (Anrufen + Tisch reservieren)
   ────────────────────────────────────────────────────────────── */
.mobile-float-group {
  position: fixed;
  bottom: 1rem; right: 1rem;
  z-index: 80;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}
@media (max-width: 900px) {
  .mobile-float-group { display: flex; }
}
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-float-group { bottom: calc(1rem + env(safe-area-inset-bottom)); }
}

/* Call button */
.mobile-call {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.1rem;
  border-radius: 100px;
  border: none;
  background: var(--flag-green);
  color: #fff;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px -4px rgba(30,140,74,.55), 0 2px 6px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(14px) scale(.92);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out),
              background .22s, box-shadow .22s;
  pointer-events: none;
}
.mobile-call svg { stroke: #fff; flex-shrink: 0; }
.mobile-call.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mobile-call:hover,
.mobile-call:focus-visible {
  background: #17703b;
  box-shadow: 0 6px 22px -4px rgba(30,140,74,.7), 0 2px 8px rgba(0,0,0,.22);
  outline: none;
}

/* ── CALL MODAL ── */
.call-modal {
  position: fixed; inset: 0;
  z-index: 9990;
  align-items: flex-end; justify-content: center;
  /* display controlled by [hidden] / JS — never override here */
}
.call-modal:not([hidden]) { display: flex; }
.call-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(26,20,16,.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .32s var(--ease);
}
.call-modal__card {
  position: relative;
  width: 100%; max-width: 480px;
  background: var(--bg-soft);
  border-radius: 20px 20px 0 0;
  padding: 2rem 1.75rem calc(2rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform .32s var(--ease-out);
  box-shadow: 0 -8px 40px rgba(26,20,16,.18);
}
.call-modal.is-open .call-modal__backdrop { opacity: 1; }
.call-modal.is-open .call-modal__card    { transform: translateY(0); }

.call-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border: none; border-radius: 50%;
  background: var(--bg-deep);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.call-modal__close:hover { background: var(--hair); }

.call-modal__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .5rem;
}
.call-modal__title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.call-modal__numbers {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.call-modal__num {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .18s var(--ease);
}
.call-modal__num:hover,
.call-modal__num:focus-visible {
  border-color: var(--gold);
  background: var(--bg-deep);
  transform: translateY(-2px);
  outline: none;
}
.call-modal__num-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 42px;
}
.call-modal__num-value {
  flex: 1;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .02em;
}
.call-modal__num-icon { stroke: var(--gold); flex-shrink: 0; }

.call-modal__hours {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────
   MOBILE FLOATING CTA (Tisch reservieren)
   ────────────────────────────────────────────────────────────── */
.mobile-cta {
  position: static;
  z-index: auto;
  display: none;
  align-items: center; gap: .6rem;
  padding: .85rem 1.2rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 10px 30px -8px rgba(26,20,16,.5),
    0 0 0 1px rgba(168,132,58,.4);
  opacity: 0;
  transform: translateY(20px) scale(.92);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background .25s;
  pointer-events: none;
}
.mobile-cta svg { stroke: var(--gold-soft); flex-shrink: 0; }
.mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mobile-cta:hover,
.mobile-cta:focus-visible {
  background: var(--gold);
  color: var(--ink);
  outline: none;
}
.mobile-cta:hover svg { stroke: var(--ink); }

/* Show only on mobile / tablet (parent group handles display) */
@media (max-width: 900px) {
  .mobile-cta { display: inline-flex; }
}

/* ──────────────────────────────────────────────────────────────
   LANGUAGE SWITCHER  (custom — hides Google's UI completely)
   ────────────────────────────────────────────────────────────── */
.lang-switch {
  display: inline-flex; align-items: center;
  gap: .25rem;
  padding: .25rem .4rem;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(244,238,223,.55);
  backdrop-filter: blur(8px);
  transition: border-color .25s var(--ease), background .25s;
  flex-shrink: 0;
}
.lang-switch:hover { border-color: var(--gold); }

.lang-switch__btn {
  background: transparent; border: 0;
  padding: .35rem .45rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 0;
  opacity: .55;
  filter: saturate(.7);
  transition: opacity .25s var(--ease), filter .25s var(--ease),
              background .2s var(--ease), transform .2s var(--ease);
}
.lang-switch__btn:hover {
  opacity: .85;
  filter: saturate(1);
}
.lang-switch__btn.is-active {
  opacity: 1;
  filter: saturate(1.1);
  background: rgba(26,20,16,.06);
}
.lang-switch__btn.is-active .flag {
  box-shadow: 0 0 0 1px var(--ink), 0 2px 6px -2px rgba(26,20,16,.3);
}

.lang-switch__btn .flag {
  width: 22px; height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(26,20,16,.18);
  overflow: hidden;
  display: block;
  transition: box-shadow .25s var(--ease), transform .2s var(--ease);
}
.lang-switch__btn:hover .flag { transform: translateY(-1px); }

.lang-switch__sep {
  width: 1px; height: 14px; background: var(--hair);
  margin: 0 .15rem;
}

/* Mobile placement — sit beside burger */
@media (max-width: 900px) {
  .lang-switch {
    order: 2;
    margin-right: .5rem;
    padding: .2rem .4rem;
    gap: .25rem;
  }
  .lang-switch__btn { padding: .3rem .35rem; }
  .lang-switch__btn .flag { width: 20px; height: 14px; }
}

/* When sticky/scrolled, blend with header */
.site-header.is-scrolled .lang-switch {
  background: transparent;
}

/* ── Hidden Google Translate widget container ── */
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  visibility: hidden !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ── HIDE ALL Google Translate UI elements ── */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-te-gadget,
.goog-te-gadget-icon,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
iframe.goog-te-banner-frame,
.skiptranslate > iframe { display: none !important; visibility: hidden !important; }

/* Google pushes body down — undo it */
body { top: 0 !important; position: static !important; }
html { overflow-x: hidden; }

/* Kill the yellow background it adds to translated text */
font[style*="background-color"],
font[style*="background"] {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ──────────  LEGAL PAGES  ────────── */
.legal-page {
  padding-block: clamp(5rem, 10vw, 8rem);
}
.legal-page__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.legal-page__header .display {
  margin-top: .75rem;
}
.legal-page__body {
  max-width: 760px;
  margin-inline: auto;
}
.legal-page__body h2 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--ink);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--hair);
}
.legal-page__body h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 1.5rem 0 .4rem;
}
.legal-page__body p,
.legal-page__body ul,
.legal-page__body li {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.75;
}
.legal-page__body ul {
  padding-left: 1.25rem;
  list-style: disc;
}
.legal-page__body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page__body a:hover { color: var(--gold-soft); }
.legal-page__updated {
  margin-top: 2.5rem;
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
}
.legal-page__back {
  max-width: 760px;
  margin: 2.5rem auto 0;
}

/* ──────────  FOOTER LEGAL LINKS  ────────── */
.footer__legal {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
}
.footer__legal a {
  color: var(--muted);
  transition: color var(--t-fast) var(--ease);
}
.footer__legal a:hover { color: var(--ink); }

/* ──────────  COOKIE BANNER  ────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1rem var(--gutter);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}
.cookie-banner.cb--in  { transform: translateY(0); }
.cookie-banner.cb--out { transform: translateY(100%); }

.cookie-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-banner__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  color: var(--bg);
}
.cookie-banner__text {
  flex: 1;
  font-size: .82rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(244,238,223,.75);
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}
.cookie-banner .btn--ghost {
  border-color: rgba(244,238,223,.3);
  color: rgba(244,238,223,.8);
}
.cookie-banner .btn--ghost:hover {
  border-color: rgba(244,238,223,.6);
  color: var(--bg);
}

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: .85rem; }
  .cookie-banner__title { font-size: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ──────────  REDUCED MOTION  ────────── */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal--stagger > * { opacity: 1; transform: none; }
}
