/* =====================================================================
   Metro Kebab - "Family Trattoria"
   Fresh rebuild. Cream paper base, bottle-green accents, terracotta CTA,
   brass ornaments, Abril Fatface didone + Lora serif + Oswald uppercase.
   ===================================================================== */

:root{
  --cream:      #f4ebd8;
  --cream-2:    #ede1c7;
  --paper:      #faf2df;
  --bottle:     #213a28;   /* darkened from #2a4532 for AAA */
  --bottle-d:   #15221a;
  --terra:      #a8391c;   /* darkened from #c04923 - now AAA large on cream (5.40:1) */
  --terra-d:    #7a1e0b;   /* darkened from #a13b1c - now AAA normal on cream (8.72:1) */
  --brass:      #a07321;   /* darkened from #b8842c - large-text decorative */
  --brass-d:    #5e3e11;   /* darkened from #8a5f1a - AAA normal on cream (7.93:1) */
  --brass-hi:   #f0d488;   /* NEW - light brass for dark bgs, AAA-large on bottle */
  --ink:        #1a1810;
  --ink-80:     #2e2a1e;
  --ink-60:     #4a4437;   /* darkened from #5f594a - now AAA normal on cream (7.95:1) */
  --ink-40:     #7a7260;   /* large text only */
  --ink-15:     #c8bfa6;
  --ink-08:     #e1d7be;

  --display:    'Abril Fatface','Playfair Display','Bodoni Moda',Georgia,serif;
  --body:       'Lora','Source Serif 4','Georgia',serif;
  --caps:       'Oswald','Archivo Narrow','Arial Narrow',sans-serif;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 176px;

  --r-btn: 4px;
  --r-card: 3px;
  --r-pill: 999px;

  --rule: 1px solid var(--ink-15);
  --rule-brass: 1px solid var(--brass);
  --rule-bottle: 2px solid var(--bottle);

  --shadow: 0 18px 40px rgba(40,24,16,0.10);
  --shadow-sm: 0 8px 20px rgba(40,24,16,0.08);

  --dur: 220ms;
  --ease: cubic-bezier(.2,.6,.2,1);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* =====================================================================
   RESET
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--cream); }

/* Lenis smooth-scroll hooks */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
/* modal inner scroll must stay native even when Lenis is paused */
.modal, .modal__paper, .lightbox { overscroll-behavior: contain; }

[hidden] { display: none !important; }
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
dl, dd, p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
hr { border: 0; border-top: var(--rule); margin: var(--s-5) 0; }

/* abbr: no dotted underline (title attr still provides tooltip + AT exposure) */
abbr[title] { text-decoration: none; cursor: help; }

:focus { outline: none; }
/* AAA focus ring: double ring (ink + cream) so it reads on any bg */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--cream);
  border-radius: var(--r-btn);
}
/* Invert on dark sections so the cream ring is surrounded by something darker */
.foot :focus-visible,
.strip :focus-visible,
.section--story :focus-visible,
.section--inverse :focus-visible,
.lightbox :focus-visible {
  outline-color: var(--cream);
  box-shadow: 0 0 0 5px var(--ink);
}
.btn--primary:focus-visible { outline-color: var(--cream); box-shadow: 0 0 0 5px var(--ink); }

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

/* =====================================================================
   BASE
   ===================================================================== */
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
/* paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.28 0 0 0 0 0.16 0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 260px 260px;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.skiplink {
  position: absolute;
  left: -9999px;
  top: var(--s-3);
  background: var(--bottle);
  color: var(--cream);
  padding: var(--s-3) var(--s-4);
  z-index: 1000;
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
}
.skiplink:focus { left: var(--s-3); }

/* Visually-hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================================
   TYPE PRIMITIVES
   ===================================================================== */
.headline {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.4vw + 0.9rem, 3.25rem);
}
.headline em { font-family: var(--body); font-style: italic; font-weight: 500; color: var(--terra); letter-spacing: -0.01em; }

.sec-head {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.2vw + 1rem, 4.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--bottle);
  max-width: 22ch;
  margin: 0 auto var(--s-8);
  text-align: center;
}
.sec-head em { font-family: var(--body); font-style: italic; font-weight: 500; color: var(--terra); letter-spacing: -0.005em; }
.sec-head--inverse { color: var(--cream); }
.sec-head--inverse em { color: var(--brass-hi); }

.subhead, .lede {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.45rem);
  line-height: 1.5;
  color: var(--ink-80);
  max-width: 48ch;
  margin-top: var(--s-6);
}

.eyebrow {
  font-family: var(--caps);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-d);
}

.section__label {
  font-family: var(--caps);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-d);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.section__label--inverse { color: var(--brass-hi); justify-content: flex-start; }
.section__label .ornament { color: var(--brass); font-size: 12px; }
.section--inverse .section__label,
.section--inverse .section__label .ornament { color: var(--brass-hi); }

.section__tail {
  display: flex;
  justify-content: center;
  margin-top: var(--s-8);
}

.prose {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-80);
  max-width: 54ch;
}
.prose + .prose { margin-top: var(--s-4); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose--invert { color: var(--cream); }
.prose--invert strong { color: var(--brass-hi); }
.dropcap {
  font-family: var(--display);
  float: left;
  font-size: 4.6em;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--terra);
}
.section--inverse .dropcap { color: var(--brass-hi); }

.pullquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2.2rem);
  line-height: 1.3;
  color: var(--brass-hi);
  max-width: 32ch;
  margin-top: var(--s-7);
  border-top: var(--rule-brass);
  padding-top: var(--s-5);
  font-style: normal;
}
.pullquote em { font-style: italic; font-family: var(--body); font-weight: 500; }

.link {
  color: var(--terra-d);
  border-bottom: 1px solid rgba(192,73,35,0.35);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.link-btn {
  color: var(--terra-d);
  border-bottom: 1px solid rgba(192,73,35,0.35);
  font: inherit;
  cursor: pointer;
}
.link-btn:hover { color: var(--ink); border-bottom-color: var(--ink); }

.ghost-link {
  font-family: var(--caps);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bottle);
  border-bottom: 1px solid var(--bottle);
  padding-bottom: 2px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ghost-link:hover { color: var(--terra); border-bottom-color: var(--terra); }

.tel {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem);
  color: var(--terra);
  line-height: 1;
}
.tel:hover { color: var(--terra-d); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 28px;
  border-radius: var(--r-btn);
  font-family: var(--caps);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--terra-d); color: var(--cream); }
.btn--primary:hover { background: var(--terra); color: var(--cream); }
.btn--outline { background: transparent; color: var(--bottle); border: 1.5px solid var(--bottle); padding: 12.5px 26px; }
.btn--outline:hover { background: var(--bottle); color: var(--cream); }
.btn--link {
  background: transparent;
  color: var(--bottle);
  padding: 14px 4px;
  border-bottom: 1px solid var(--bottle);
  border-radius: 0;
}
.btn--link:hover { color: var(--terra); border-bottom-color: var(--terra); transform: none; }
.btn--link .btn__arrow { transition: transform var(--dur) var(--ease); font-size: 18px; }
.btn--link:hover .btn__arrow { transform: translateX(4px); }
.btn .ti { font-size: 16px; }
.btn--primary .ti { font-size: 17px; }
.btn--sm { padding: 10px 18px; font-size: 12px; }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--cream);
  border-bottom: var(--rule);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-3) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-3);
  color: var(--ink);
}
.brand__mark { color: var(--terra); flex: 0 0 40px; align-self: center; }
.brand__name {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--bottle);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.nav__links {
  display: flex;
  gap: var(--s-5);
  font-family: var(--caps);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-80);
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 8px;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--terra-d); border-bottom-color: var(--terra-d); }

.nav__actions { display: flex; align-items: center; gap: var(--s-4); }
.langswitch {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.langswitch__globe {
  font-size: 18px;
  color: var(--brass-d);
  transition: transform 360ms var(--ease), color 220ms var(--ease);
}
.langswitch:hover .langswitch__globe { transform: rotate(-14deg); color: var(--terra); }

.langswitch__track {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--cream-2);
  border: 1px solid var(--ink-15);
  border-radius: var(--r-pill);
  isolation: isolate;
  box-shadow: inset 0 1px 2px rgba(40,24,16,0.06);
}
.langswitch__btn {
  position: relative;
  z-index: 2;
  min-width: 44px;
  min-height: 38px;
  padding: 10px 12px;
  font-family: var(--caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-align: center;
  color: var(--ink-60);
  background: transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: color 320ms var(--ease);
}
.langswitch__btn:hover:not(.is-active) { color: var(--ink); }
.langswitch__btn.is-active { color: var(--cream); }
.langswitch__thumb {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--bottle);
  border-radius: var(--r-pill);
  box-shadow: 0 2px 6px rgba(42,69,50,0.35);
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(.45, 1.55, .45, 1);
}
.langswitch__track[data-lang="en"] .langswitch__thumb {
  transform: translateX(100%);
}

/* =====================================================================
   LANGUAGE FADE TRANSITION
   ===================================================================== */
main, .foot, .nav__links, .modal__paper, .hero__cap {
  transition: opacity 300ms var(--ease);
}
body.lang-transitioning main,
body.lang-transitioning .foot,
body.lang-transitioning .nav__links,
body.lang-transitioning .modal__paper,
body.lang-transitioning .hero__cap {
  opacity: 0;
}

@media (max-width: 900px){
  .nav__links { display: none; }
  .nav__inner { flex-wrap: wrap; gap: var(--s-3); }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-9) var(--gutter) var(--s-8);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 900px){
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-9); }
}

.hero__copy .eyebrow { margin-bottom: var(--s-5); display: inline-block; }
.hero__copy .headline { margin-top: 0; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-5);
  align-items: center;
  margin-top: var(--s-7);
}

.hero__photo {
  margin: 0;
  position: relative;
}
.hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  background: var(--cream-2);
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 700ms var(--ease), transform 6s linear;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__photo img:not(.hero__slide) {
  /* fallback (legacy single img pattern) */
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
}

.hero__dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  background: rgba(26,24,16,0.55);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  z-index: 3;
  backdrop-filter: blur(4px);
}
.hero__dot {
  width: 10px;
  height: 10px;
  min-width: 24px;
  min-height: 24px;
  padding: 7px;
  background: transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  position: relative;
}
.hero__dot::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: var(--r-pill);
  background: rgba(244,235,216,0.45);
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.hero__dot.is-active::before { background: var(--cream); transform: scale(1.25); }
.hero__dot:hover::before { background: var(--cream); }
.hero__cap {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: var(--cream);
  border-radius: var(--r-btn);
  box-shadow: var(--shadow-sm);
  font-family: var(--body);
  font-size: 14px;
}
.hero__cap em { font-family: var(--display); font-style: normal; color: var(--bottle); font-size: 20px; line-height: 1; }
.hero__cap span { color: var(--ink-60); font-style: italic; }

/* =====================================================================
   INFO STRIP
   ===================================================================== */
.strip {
  background: var(--bottle);
  color: var(--cream);
  padding: var(--s-4) var(--gutter);
}
.strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4) var(--s-6);
  justify-content: center;
  text-align: center;
}
.strip__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--s-3);
  line-height: 1.2;
}
.strip__item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strip__icon {
  font-size: 24px;
  color: var(--brass-hi);
  flex: 0 0 auto;
}
.strip__label {
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-hi);
}
.strip__val {
  font-family: var(--body);
  font-size: 15px;
  color: var(--cream);
}
.strip__val strong { font-family: var(--display); font-weight: 400; font-size: 18px; color: var(--cream); margin-right: 4px; }
.strip__dot { color: var(--brass-hi); font-size: 14px; }
@media (max-width: 640px){
  .strip__dot { display: none; }
  .strip__inner { flex-direction: column; gap: var(--s-3); }
  .strip__item { flex-direction: row; align-items: baseline; gap: var(--s-3); }
}

/* =====================================================================
   SECTIONS
   ===================================================================== */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-11) var(--gutter);
}
.section--gallery { padding-bottom: var(--s-10); }

.rule {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.rule span {
  display: inline-block;
  padding: 0 var(--s-4);
  color: var(--brass-d);
  font-size: 14px;
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.rule {
  position: relative;
}
.rule::before {
  content: '';
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: 50%;
  height: 1px;
  background: var(--brass);
  opacity: 0.45;
}

/* =====================================================================
   LOCATIONS
   ===================================================================== */
.locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
}
@media (min-width: 900px){ .locations { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }

.loc-card {
  background: var(--paper);
  border: var(--rule);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.loc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--brass); }
.loc-card__photo {
  position: relative;
  overflow: hidden;
  background: var(--bottle);
}
.loc-card__photo img {
  width: 100%;
  aspect-ratio: 24/7;
  object-fit: cover;
  border-radius: 0;
  filter: contrast(1.05) saturate(1.05) brightness(0.95);
}
.loc-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(180deg, transparent 55%, rgba(26,24,16,0.35) 100%);
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.loc-card__body { padding: var(--s-6); }
.loc-card__kicker {
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-d);
  margin-bottom: var(--s-2);
}
.loc-card__name {
  font-family: var(--display);
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  line-height: 1;
  color: var(--bottle);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-1);
}
.loc-card__addr {
  color: var(--ink-60);
  font-style: italic;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.loc-card__addr .ti { color: var(--terra); font-size: 18px; font-style: normal; }

.hours {
  margin: var(--s-4) 0 var(--s-5);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px var(--s-5);
  font-family: var(--body);
  font-size: 15px;
}
.hours dt {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  align-self: center;
}
.hours dd { margin: 0; color: var(--ink); }

.loc-card__actions {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding-top: var(--s-4);
  border-top: var(--rule);
}
.loc-card__rule {
  border: 0;
  border-top: var(--rule);
  margin: var(--s-5) 0;
}
.tel.tel--row {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.tel.tel--row .ti { color: var(--terra); font-size: 22px; }

.loc-card__map {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--cream-2);
  border: var(--rule);
  margin-bottom: var(--s-4);
}
.loc-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85);
}

.ghost-link--icon {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.ghost-link--icon .ti { font-size: 16px; transition: transform var(--dur) var(--ease); }
.ghost-link--icon:hover .ti { transform: translate(2px, -2px); }

/* =====================================================================
   DISHES
   ===================================================================== */
.dishes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 720px){ .dishes { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px){ .dishes { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); } }

.dish {
  display: flex;
  flex-direction: column;
}
.dish__photo { margin: 0; overflow: hidden; border-radius: var(--r-card); }
.dish__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.dish:hover .dish__photo img { transform: scale(1.04); }
.dish__body { padding-top: var(--s-4); }
.dish__cat {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-d);
  margin-bottom: 6px;
}
.dish__name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.5vw + 0.8rem, 2.2rem);
  line-height: 1;
  color: var(--bottle);
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
}
.dish__desc { color: var(--ink-60); font-style: italic; font-size: 15px; line-height: 1.5; margin-bottom: var(--s-3); }
.dish__price {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--terra);
  padding-top: var(--s-3);
  border-top: var(--rule);
}
.dish__price span { font-family: var(--body); font-style: italic; color: var(--ink-60); font-size: 0.85rem; margin: 0 4px; }

/* =====================================================================
   STORY (inverse)
   ===================================================================== */
.section--inverse {
  max-width: none;
  background: var(--bottle);
  color: var(--cream);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  overflow: hidden;
}
.section--inverse::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 600px at 100% 0%, rgba(184,132,44,0.12), transparent 60%),
    radial-gradient(circle 500px at 0% 100%, rgba(192,73,35,0.1), transparent 60%);
  pointer-events: none;
}
.section--inverse > * { position: relative; z-index: 1; }

.story {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 900px){ .story { grid-template-columns: 0.9fr 1.1fr; gap: var(--s-9); } }

.story__photo { position: relative; margin: 0; }
.story__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
}

.story__copy .section__label { justify-content: flex-start; }
.story__copy .sec-head { text-align: left; margin-left: 0; margin-right: auto; }

.section--inverse .prose { margin-bottom: var(--s-4); }
.section--inverse .ghost-link { color: var(--brass-hi); border-bottom-color: var(--brass-hi); }
.section--inverse .ghost-link:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* =====================================================================
   DELIVERY
   ===================================================================== */
.delivery {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: center;
}
@media (min-width: 900px){ .delivery { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-9); } }

.delivery__copy .section__label { justify-content: flex-start; }
.delivery__copy .sec-head { text-align: left; margin-left: 0; margin-right: auto; }

.terms {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin: var(--s-7) 0 var(--s-7);
  max-width: 48ch;
}
@media (min-width: 600px){ .terms { grid-template-columns: 1fr 1fr; } }
.terms dt {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-d);
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.terms dt .ti { font-size: 16px; color: var(--terra); }
.terms dd {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink-80);
  line-height: 1.45;
}
.terms strong { font-family: var(--display); font-weight: 400; font-size: 1.4rem; color: var(--bottle); letter-spacing: -0.01em; }

.delivery__cta { display: flex; flex-wrap: wrap; gap: var(--s-4); }

.delivery__photo { margin: 0; }
.delivery__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
}

/* =====================================================================
   GALLERY TEASER - editorial "photo wall" with captions
   ===================================================================== */
.gallery-teaser {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px){
  .gallery-teaser {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: var(--s-4);
  }
  /* asymmetric magazine-style: big hero + smaller companions */
  .gallery-teaser > li:nth-child(1) { grid-column: span 7; grid-row: span 2; }
  .gallery-teaser > li:nth-child(2) { grid-column: span 5; grid-row: span 1; }
  .gallery-teaser > li:nth-child(3) { grid-column: span 5; grid-row: span 1; }
  .gallery-teaser > li:nth-child(4) { grid-column: span 4; grid-row: span 1; }
  .gallery-teaser > li:nth-child(5) { grid-column: span 4; grid-row: span 1; }
  .gallery-teaser > li:nth-child(6) { grid-column: span 4; grid-row: span 1; }
}
@media (min-width: 1100px){ .gallery-teaser { grid-auto-rows: 220px; } }

.gthumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--cream-2);
  border-radius: var(--r-card);
  width: 100%;
  height: 100%;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gthumb:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter var(--dur) var(--ease);
  filter: saturate(0.9);
}
.gthumb:hover img { transform: scale(1.04); filter: saturate(1); }
.gthumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,24,16,0.55) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.gthumb:hover::after { opacity: 1; }
.gthumb__cap {
  position: absolute;
  left: var(--s-4);
  right: var(--s-4);
  bottom: var(--s-3);
  color: var(--cream);
  font-family: var(--body);
  font-style: italic;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.gthumb:hover .gthumb__cap,
.gthumb:focus-visible .gthumb__cap { opacity: 1; transform: translateY(0); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.foot {
  background: var(--bottle);
  color: var(--cream);
  padding: var(--s-9) var(--gutter) var(--s-5);
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 500px at 80% 0%, rgba(184,132,44,0.12), transparent 60%);
  pointer-events: none;
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  position: relative;
  z-index: 1;
}
@media (min-width: 720px){ .foot__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .foot__inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-8); } }

.foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-1); }
.foot__mark {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--cream);
  line-height: 1;
}
.foot__sub {
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-hi);
}
.foot__slogan {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  margin-top: var(--s-3);
  max-width: 32ch;
}
.foot__col { }
.foot__heading {
  font-family: var(--caps);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-hi);
  margin-bottom: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.foot__heading .ti { font-size: 18px; color: var(--brass-hi); }
.link--icon, .link-btn--icon {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.link--icon .ti, .link-btn--icon .ti { font-size: 16px; color: var(--brass-hi); }
.tel--foot { display: inline-flex; align-items: center; gap: var(--s-2); color: var(--cream); }
.tel--foot:hover { color: var(--brass-hi); }
.tel--foot .ti { font-size: 18px; }
.foot p { color: var(--cream); font-size: 15px; margin-top: var(--s-1); }
.foot .link { color: var(--cream); border-bottom-color: rgba(244,235,216,0.4); }
.foot .link:hover { color: var(--brass-hi); border-bottom-color: var(--brass-hi); }
.foot .link-btn { color: var(--cream); border-bottom-color: rgba(244,235,216,0.4); }
.foot .link-btn:hover { color: var(--brass-hi); border-bottom-color: var(--brass-hi); }

.foot__legal {
  max-width: var(--container);
  margin: var(--s-8) auto 0;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(244,235,216,0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

/* =====================================================================
   MODAL
   ===================================================================== */
.modal {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--ink);
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: hidden;
}
.modal::backdrop { background: rgba(26,24,16,0.72); }
.modal[open] { display: block; }

.modal__paper {
  position: relative;
  background: var(--paper);
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.modal--gallery .modal__paper { max-width: 1400px; }
@media (min-width: 900px){
  .modal { padding: var(--s-7) var(--gutter); }
  .modal__paper {
    height: auto;
    min-height: 0;
    max-height: calc(100vh - var(--s-7) * 2);
    border-radius: var(--r-card);
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  }
}

.modal__head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: var(--s-6) var(--s-7) var(--s-4);
  background: var(--paper);
  border-bottom: var(--rule);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
}
.modal__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
  line-height: 1;
  color: var(--bottle);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.modal__close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--bottle);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.modal__close .ti { font-size: 22px; }
.modal__close:hover { background: var(--terra); transform: translateY(-1px); }

@media (prefers-reduced-motion: no-preference){
  .modal[open] { animation: modalIn 220ms var(--ease); }
  @keyframes modalIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
  .modal[open]::backdrop { animation: fadeIn 220ms var(--ease); }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
}

/* MENU INSIDE MODAL */
.menu-nav {
  background: var(--paper);
  padding: var(--s-3) var(--s-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  border-bottom: var(--rule);
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.menu-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 6px;
  color: var(--ink-60);
  border-bottom: 1.5px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.menu-nav a:hover { color: var(--terra-d); border-bottom-color: var(--terra-d); }

.menu-body {
  padding: var(--s-7) var(--s-7) var(--s-10);
}
.menu-body section { scroll-margin-top: 160px; }
.menu-body section + section { margin-top: var(--s-9); }

.callout {
  background: var(--cream);
  border: var(--rule);
  border-left: 4px solid var(--terra);
  padding: var(--s-5) var(--s-6);
  margin-bottom: var(--s-8);
  color: var(--ink-80);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 72ch;
}
.callout p { font-family: var(--body); font-size: 15px; line-height: 1.55; }
.callout strong { color: var(--terra-d); }

.menu-cat {
  font-family: var(--display);
  font-size: clamp(2rem, 2.2vw + 1rem, 3.2rem);
  line-height: 1;
  color: var(--bottle);
  letter-spacing: -0.01em;
  padding-bottom: var(--s-3);
  border-bottom: var(--rule-bottle);
  margin-bottom: var(--s-5);
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}
.menu-cat small {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-60);
  font-weight: 400;
}
.menu-note-inline {
  font-family: var(--body);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-60);
  margin: 0 0 var(--s-5);
  max-width: 75ch;
}

.menu-list { counter-reset: mi 0; }
.menu-list[start="0"] { counter-reset: mi -1; }
.menu-list li {
  counter-increment: mi;
  display: grid;
  grid-template-columns: 2em 1fr auto auto;
  align-items: baseline;
  gap: 0 var(--s-3);
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-08);
}
.menu-list li::before {
  content: counter(mi, decimal-leading-zero) ".";
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-60);
  align-self: baseline;
  padding-top: 3px;
}
.mi-name {
  font-family: var(--body);
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
}
.mi-name em {
  display: block;
  margin-top: 2px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-60);
  font-size: 14px;
}
.mi-dots {
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dotted var(--ink-15);
  transform: translateY(-3px);
  margin: 0 var(--s-2);
}
.mi-price {
  font-family: var(--display);
  font-size: 18px;
  color: var(--terra);
  white-space: nowrap;
  align-self: baseline;
  padding-top: 2px;
}
.mi-price .eur {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  margin-left: 2px;
  color: var(--terra-d);
}

/* GALLERY INSIDE MODAL - masonry photo album */
.gallery-grid {
  padding: var(--s-6) var(--s-7) var(--s-9);
  column-count: 1;
  column-gap: var(--s-5);
}
@media (min-width: 600px){ .gallery-grid { column-count: 2; } }
@media (min-width: 900px){ .gallery-grid { column-count: 3; } }
@media (min-width: 1300px){ .gallery-grid { column-count: 4; } }

.gallery-grid figure {
  break-inside: avoid;
  margin: 0 0 var(--s-5);
  display: block;
}
.gallery-grid button {
  display: block;
  padding: 0;
  background: var(--cream-2);
  border-radius: var(--r-card);
  overflow: hidden;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-grid button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter var(--dur) var(--ease);
  filter: saturate(0.92);
}
.gallery-grid button:hover img { filter: saturate(1.05); }
.gallery-grid figcaption {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-60);
  padding: var(--s-2) var(--s-1) 0;
  line-height: 1.4;
}

/* LIGHTBOX */
/* Lightbox is a <dialog> using the browser's top-layer so it always sits above modals */
.lightbox {
  border: 0;
  padding: var(--s-5);
  background: rgba(26,24,16,0.96);
  color: var(--cream);
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  margin: 0;
  inset: 0;
  overflow: hidden;
}
.lightbox:not([open]) { display: none; }
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox::backdrop { background: rgba(26,24,16,0.92); }
@media (prefers-reduced-motion: no-preference) {
  .lightbox[open] { animation: lbFadeIn 220ms var(--ease); }
  .lightbox[open]::backdrop { animation: lbFadeIn 220ms var(--ease); }
  @keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
}
.lightbox__stage {
  max-width: min(1200px, 92vw);
  max-height: 85vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: center;
}
.lightbox__stage img {
  max-height: 78vh;
  max-width: 92vw;
  width: auto;
  background: var(--ink);
  object-fit: contain;
  border-radius: var(--r-card);
  opacity: 1;
  transform: scale(1);
  transition: opacity 260ms var(--ease), transform 320ms var(--ease);
}
.lightbox__stage img.is-changing {
  opacity: 0;
  transform: scale(0.98);
}
.lightbox__stage figcaption {
  transition: opacity 220ms var(--ease);
}
.lightbox.is-changing .lightbox__stage figcaption { opacity: 0; }
.lightbox__stage figcaption {
  color: rgba(244,235,216,0.7);
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  text-align: center;
  max-width: 70ch;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink-15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lightbox__close .ti, .lightbox__prev .ti, .lightbox__next .ti { font-size: 24px; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--terra); color: var(--cream); border-color: var(--terra); }
.lightbox__close { top: var(--s-4); right: var(--s-4); }
.lightbox__prev { left: var(--s-4); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--s-4); top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(calc(-50% - 1px)); }

/* =====================================================================
   MARQUEE TICKER (cosy restaurant bar)
   ===================================================================== */
.marquee {
  overflow: hidden;
  background: var(--cream-2);
  border-top: 1px dashed var(--brass);
  border-bottom: 1px dashed var(--brass);
  padding: var(--s-4) 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--cream-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--cream-2), transparent); }

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: var(--s-5);
  white-space: nowrap;
  animation: marquee-slide 45s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.4vw + .6rem, 1.6rem);
  color: var(--bottle);
  letter-spacing: -0.005em;
}
.marquee__item .ti { font-size: 22px; color: var(--terra); }
.marquee__star {
  font-size: 14px;
  color: var(--brass-d);
  display: inline-block;
  animation: spin-slow 18s linear infinite;
}
.marquee__dot {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 2px solid var(--brass-d);
  flex: 0 0 auto;
  box-shadow: var(--shadow-sm);
}
.marquee__dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =====================================================================
   STEAM ON HERO PHOTO
   ===================================================================== */
.hero__photo { position: relative; }
.steam {
  position: absolute;
  top: 22%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(244, 235, 216, 0.55);
  filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}
.steam--1 { left: 34%; animation: steam-rise 5.5s ease-in-out infinite; }
.steam--2 { left: 46%; animation: steam-rise 6s ease-in-out infinite 1.4s; }
.steam--3 { left: 58%; animation: steam-rise 5.2s ease-in-out infinite 2.8s; }

@keyframes steam-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0.6); }
  25%  { opacity: 0.8; }
  60%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-140px) scale(1.9); }
}

.hero__badge {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: var(--terra);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  animation: badge-wobble 6s ease-in-out infinite;
}
.hero__badge .ti { color: var(--cream); font-size: 14px; }
@keyframes badge-wobble {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}

/* =====================================================================
   HERO ENTRANCE
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > * { opacity: 0; animation: rise-in 700ms var(--ease) forwards; }
  .hero__copy > *:nth-child(1) { animation-delay: 120ms; }
  .hero__copy > *:nth-child(2) { animation-delay: 220ms; }
  .hero__copy > *:nth-child(3) { animation-delay: 340ms; }
  .hero__copy > *:nth-child(4) { animation-delay: 460ms; }
  .hero__copy > *:nth-child(5) { animation-delay: 560ms; }

  .hero__photo {
    opacity: 0;
    animation: rise-in 900ms var(--ease) 300ms forwards;
  }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   DISH CARD MICRO-TILT + PRICE POP
   ===================================================================== */
.dish {
  transition: transform 400ms var(--ease);
  transform-origin: 50% 90%;
}
.dish:hover {
  transform: translateY(-6px) rotate(-0.4deg);
}
.dish:nth-child(even):hover {
  transform: translateY(-6px) rotate(0.4deg);
}
.dish__price {
  transition: color 280ms var(--ease), letter-spacing 280ms var(--ease);
}
.dish:hover .dish__price {
  color: var(--terra-d);
  letter-spacing: 0.02em;
}

/* =====================================================================
   NAV LINKS - center-out underline
   ===================================================================== */
.nav__links a {
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2px;
  height: 1.5px;
  background: var(--terra);
  transition: left 280ms var(--ease), right 280ms var(--ease);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  left: 2px;
  right: 2px;
}
.nav__links a:hover { border-bottom-color: transparent; }

/* =====================================================================
   ORNAMENT SPIN ON LABEL HOVER
   ===================================================================== */
.section__label .ornament {
  display: inline-block;
  transition: transform 500ms var(--ease);
}
.section__label:hover .ornament:first-child {
  transform: rotate(-90deg);
}
.section__label:hover .ornament:last-child {
  transform: rotate(90deg);
}

/* =====================================================================
   TILES - warm hover sweep
   ===================================================================== */
/* (unchanged tile-grid but add flourish) */

/* =====================================================================
   BUTTON PRESS FEEL
   ===================================================================== */
.btn { position: relative; }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 120%, rgba(255,210,150,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
}
.btn--primary:hover::before { opacity: 1; }
.btn .ti { transition: transform 220ms var(--ease); }
.btn:hover .ti { transform: rotate(-6deg) scale(1.1); }
.btn--link:hover .ti { transform: translateX(4px) rotate(0); }

/* =====================================================================
   LOC CARD - breathing warm glow on hover
   ===================================================================== */
.loc-card {
  position: relative;
}
.loc-card::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: var(--r-card);
  background: radial-gradient(ellipse at center, rgba(192,73,35,0.18), transparent 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
}
.loc-card:hover::after { opacity: 1; }

/* =====================================================================
   RULE ORNAMENT - slow spin
   ===================================================================== */
.rule span {
  animation: spin-slow 30s linear infinite;
}

/* =====================================================================
   HEART PULSE in marquee
   ===================================================================== */
.marquee__item .ti-heart {
  animation: heart-pulse 1.8s ease-in-out infinite;
  color: var(--terra);
}
@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  25%      { transform: scale(1.2); }
  50%      { transform: scale(1); }
  75%      { transform: scale(1.15); }
}

/* =====================================================================
   GALLERY THUMB - slight rotate on hover
   ===================================================================== */
.gthumb { transition: transform 400ms var(--ease), box-shadow var(--dur) var(--ease); }
.gthumb:nth-child(odd):hover  { transform: translateY(-4px) rotate(-0.6deg); }
.gthumb:nth-child(even):hover { transform: translateY(-4px) rotate(0.6deg); }

/* (previous langswitch bubble animation removed - replaced by sliding thumb above) */

/* =====================================================================
   FEAT count-up wrapper
   ===================================================================== */
[data-count] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  }
  .js-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   SMALL SCREENS
   ===================================================================== */
@media (max-width: 640px){
  .section { padding: var(--s-10) var(--gutter); }
  .hero { padding: var(--s-7) var(--gutter); }
  .menu-nav { top: 0; padding: var(--s-3) var(--s-4); overflow-x: auto; flex-wrap: nowrap; white-space: nowrap; }
  .menu-nav a { flex: 0 0 auto; }
  .menu-body { padding: var(--s-6) var(--s-4) var(--s-9); }
  .modal__head { padding: var(--s-5); }
  .foot__legal { flex-direction: column; align-items: flex-start; }
}
