/* ───────── Tokens ───────── */
:root {
  /* Palette — warm Mediterranean */
  --cream:        #F5EBDD;
  --cream-2:      #EFE3D1;
  --paper:        #FBF6EE;
  --terracotta:   #B6492A;
  --terracotta-d: #963A1F;
  --coffee:       #241813;
  --coffee-2:     #3A2A22;
  --olive:        #5C6A3A;
  --mustard:      #D4A24C;
  --line:         #2418131A;
  --line-strong:  #24181333;
  --muted:        #6B574B;

  /* Type */
  --serif: "DM Serif Display", "Cormorant Garamond", "Georgia", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Spacing & radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-1: 0 1px 0 rgba(36,24,19,.04), 0 6px 20px rgba(36,24,19,.06);
  --shadow-2: 0 12px 40px rgba(36,24,19,.12);

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ───────── Reset ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--coffee);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; line-height: 1.08; margin: 0; }
p { margin: 0; text-wrap: pretty; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--coffee); color: var(--cream); padding: 10px 14px;
  border-radius: var(--r-sm);
}
.skip-link:focus { left: 12px; top: 12px; z-index: 1000; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7;
}

/* Anchor scroll offset so sticky header doesn't hide section titles */
section[id] { scroll-margin-top: 84px; }

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-title {
  font-size: clamp(34px, 4.6vw, 60px);
  max-width: 22ch;
  margin-top: 14px;
}
.section-lede {
  margin-top: 18px; max-width: 56ch; color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
}
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-title { margin-left: auto; margin-right: auto; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terracotta); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta-d); }
.btn-ghost {
  background: transparent; color: var(--coffee);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--coffee); color: var(--cream); border-color: var(--coffee); }
.btn-outline {
  background: transparent; color: var(--coffee);
  border-color: var(--coffee);
}
.btn-outline:hover { background: var(--coffee); color: var(--cream); }

/* ───────── Header ───────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in oklab, var(--cream) 96%, transparent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 14px; color: var(--coffee); min-width: 0;
  padding: 6px 0;
}
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.brand-sub {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
  max-width: 16ch;
  line-height: 1.4;
}

.primary-nav ul { display: flex; gap: 6px; }
.primary-nav a {
  display: inline-block; padding: 10px 14px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--coffee-2);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.primary-nav a:hover { background: var(--cream-2); color: var(--coffee); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
}
.lang-btn {
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px;
  color: var(--muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-btn.is-active { background: var(--coffee); color: var(--cream); }
.lang-sep { color: var(--line-strong); font-size: 12px; }

.nav-toggle { display: none; width: 38px; height: 38px; position: relative; }
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--coffee);
  transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 23px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex; align-items: flex-end;
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-photo {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 70% at 90% 10%, #C8702F 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 100%, #5C6A3A 0%, transparent 55%),
    linear-gradient(180deg, #2B1B12 0%, #4B2A1B 60%, #2B1B12 100%);
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(120deg, rgba(245,235,221,.04) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(60deg, rgba(245,235,221,.04) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(36,24,19,.55) 0%, rgba(36,24,19,.25) 35%, rgba(36,24,19,.78) 100%);
}
.placeholder-tag {
  position: absolute; top: 14px; right: 14px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .04em;
  padding: 5px 9px;
  color: rgba(245,235,221,.65);
  border: 1px dashed rgba(245,235,221,.35);
  border-radius: 4px;
}

.hero-overlay { pointer-events: none; }

/* Hero quick-link chips (replaces the old placeholder tag) */
.hero-chips {
  position: absolute;
  top: clamp(88px, 11vw, 108px);
  right: var(--pad);
  display: flex; gap: 6px;
  z-index: 2;
}
.hero-chip {
  display: inline-flex; align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(245,235,221,.75);
  border: 1px dashed rgba(245,235,221,.35);
  background: rgba(20,12,8,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.hero-chip:hover {
  color: var(--cream);
  border-color: var(--cream);
  background: rgba(20,12,8,.4);
}
.hero-chip:active { transform: scale(.97); }

.hero-inner { position: relative; color: var(--cream); width: 100%; }
.hero .eyebrow { color: var(--mustard); }
.hero-title {
  font-size: clamp(56px, 11vw, 168px);
  line-height: .92;
  letter-spacing: -.02em;
  margin-top: 20px;
}
.hero-title .line { display: block; }
.hero-title .line-2 em {
  font-style: italic;
  color: var(--mustard);
  padding-left: clamp(40px, 9vw, 140px);
  display: inline-block;
}
.hero-lede {
  margin-top: 28px;
  max-width: 52ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(245,235,221,.86);
}
.hero-ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-ctas .btn-ghost { color: var(--cream); border-color: rgba(245,235,221,.4); }
.hero-ctas .btn-ghost:hover { background: var(--cream); color: var(--coffee); border-color: var(--cream); }
.hero-ctas .btn-outline { color: var(--cream); border-color: rgba(245,235,221,.6); }
.hero-ctas .btn-outline:hover { background: var(--cream); color: var(--coffee); }

.hero-strip {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(245,235,221,.2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.hero-strip li { display: flex; flex-direction: column; gap: 6px; }
.hs-k { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,235,221,.55); }
.hs-v { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); color: var(--cream); }

.scroll-cue {
  position: absolute; left: var(--pad); bottom: 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  color: rgba(245,235,221,.65);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(245,235,221,.6), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(.2); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(.2); transform-origin: bottom; opacity: 0; }
}

/* ───────── About ───────── */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-body { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; max-width: 56ch; }
.about-body em { font-style: italic; color: var(--terracotta); }

.about-pillars {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px;
}
.about-pillars li {
  padding: 22px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
}
.pillar-num {
  font-family: var(--serif); font-size: 26px; color: var(--terracotta); line-height: 1;
}
.about-pillars h3 { margin-top: 10px; font-size: 19px; }
.about-pillars p { margin-top: 6px; font-size: 14px; color: var(--muted); }

.about-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 280px 200px;
  gap: 16px;
}
.about-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
}
.about-photo-a { grid-row: 1 / span 2; }
.about-photo-b { background-color: #3A2A22; }

.about-quote {
  grid-column: 2;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--coffee);
  color: var(--cream);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.about-quote .quote-mark {
  font-family: var(--serif); font-size: 64px; line-height: .6; color: var(--mustard);
}
.about-quote p { font-family: var(--serif); font-size: 19px; line-height: 1.3; }
.about-quote cite { font-style: normal; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,235,221,.6); }

/* ───────── Menu ───────── */
.menu { background: var(--cream); }
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.mt-btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--coffee-2);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.mt-btn:hover { background: var(--cream-2); }
.mt-btn.is-active { background: var(--coffee); color: var(--cream); }

.menu-cat[hidden] { display: none; }
.menu-cat { animation: fadeUp .4s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.cat-head { margin-bottom: 28px; }
.cat-head h3 { font-size: clamp(28px, 3vw, 40px); }
.cat-note { margin-top: 8px; color: var(--muted); font-size: 15px; max-width: 60ch; }

.dish-list { display: grid; gap: 22px; }
.dish-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 56px; }
.dish-list.dense { gap: 16px; }
.dish-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; margin-bottom: 36px; }
.col-h { font-family: var(--serif); font-size: 22px; color: var(--coffee); margin-bottom: 14px; }

.dish-row {
  display: flex; align-items: baseline; gap: 12px;
}
.dish-name { font-family: var(--serif); font-size: 19px; color: var(--coffee); }
.dish-dots {
  flex: 1; min-width: 14px;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-4px);
}
.dish-price { font-weight: 600; color: var(--terracotta); font-variant-numeric: tabular-nums; font-size: 15.5px; }
.dish-desc { margin-top: 4px; font-size: 13.5px; color: var(--muted); max-width: 52ch; }

.promo-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--coffee) 0%, var(--coffee-2) 100%);
  color: var(--cream);
}
.promo-tag {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
  background: var(--mustard); color: var(--coffee); font-weight: 700;
}
.promo-title { font-family: var(--serif); font-size: 22px; }
.promo-sub { color: rgba(245,235,221,.7); font-size: 14px; margin-top: 2px; }
.promo-price { font-family: var(--serif); font-size: 36px; color: var(--mustard); }

.allergens-note {
  margin-top: 56px;
  padding: 18px 22px;
  background: var(--paper);
  border-left: 3px solid var(--terracotta);
  border-radius: var(--r-sm);
  font-size: 14px; color: var(--muted);
}
.allergens-note strong { color: var(--coffee); }

/* ───────── Gallery ───────── */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.g-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  cursor: zoom-in;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  aspect-ratio: 4 / 3;
}
.g-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.g-item figure { margin: 0; height: 100%; position: relative; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease), filter .35s var(--ease);
}
.g-item:hover img { transform: scale(1.04); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 16px 14px;
  display: flex; flex-direction: column; gap: 2px;
  color: var(--cream);
  background: linear-gradient(to top, rgba(20,12,8,.78) 0%, rgba(20,12,8,.5) 50%, rgba(20,12,8,0) 100%);
  pointer-events: none;
}
.g-name { font-family: var(--serif); font-size: clamp(15px, 1.4vw, 19px); line-height: 1.1; }
.g-sub { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,235,221,.78); }
.gallery-note {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 12, 8, 0.92);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  animation: lbIn .25s var(--ease);
}
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lb-figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-img { max-width: 100%; max-height: 80vh; border-radius: var(--r-md); display: block; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-cap { color: var(--cream); font-family: var(--serif); font-size: clamp(16px, 1.6vw, 22px); text-align: center; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(245,235,221,.1);
  color: var(--cream);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), transform .15s var(--ease);
  border: 1px solid rgba(245,235,221,.18);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(245,235,221,.2); }
.lb-close:active, .lb-prev:active, .lb-next:active { transform: scale(.96); }
.lb-close { top: 18px; right: 18px; }
.lb-prev  { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev:active { transform: translateY(-50%) scale(.96); }
.lb-next:active { transform: translateY(-50%) scale(.96); }

/* ───────── Location ───────── */
.location { background: var(--paper); }
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.loc-address { font-style: normal; margin-top: 28px; }
.loc-line { display: block; font-family: var(--serif); font-size: clamp(22px, 2vw, 28px); color: var(--coffee); }
.loc-line + .loc-line { color: var(--muted); font-family: var(--sans); font-size: 17px; }

.loc-actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }

.loc-meta { margin-top: 40px; display: grid; gap: 14px; }
.loc-meta > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: baseline; padding-top: 12px; border-top: 1px solid var(--line); }
.loc-meta dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.loc-meta dd { margin: 0; font-size: 15px; color: var(--coffee); }

.loc-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--cream-2);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line);
}
.loc-map iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; filter: saturate(.85) contrast(.96); }
.map-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coffee); color: var(--cream);
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-2);
  pointer-events: auto;
  z-index: 2;
}
.pin-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--mustard);
  box-shadow: 0 0 0 4px rgba(212,162,76,.25);
}

/* ───────── Hours ───────── */
.hours { background: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.placeholder-pill {
  display: inline-block; margin-top: 22px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12.5px; color: var(--muted);
  border: 1px dashed var(--line-strong);
  background: var(--paper);
}
.hours-table { width: 100%; border-collapse: collapse; background: var(--paper); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.hours-table tr + tr th, .hours-table tr + tr td { border-top: 1px solid var(--line); }
.hours-table th, .hours-table td { padding: 18px 24px; text-align: left; font-weight: 500; }
.hours-table th { font-family: var(--serif); font-weight: 400; font-size: 18px; }
.hours-table td { font-variant-numeric: tabular-nums; color: var(--muted); text-align: right; }
.hours-table tr.is-today { background: color-mix(in oklab, var(--mustard) 18%, transparent); }
.hours-table tr.is-today td { color: var(--coffee); font-weight: 600; }

/* ───────── Contact ───────── */
.contact { background: var(--coffee); color: var(--cream); }
.contact .eyebrow { color: var(--mustard); }
.contact .section-title { color: var(--cream); }
.contact .section-lede { color: rgba(245,235,221,.7); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.contact-grid.contact-grid-2 {
  grid-template-columns: repeat(2, minmax(0,1fr));
  max-width: 720px;
  margin: 0 auto;
}
.contact-card {
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 22px 24px;
  background: rgba(245,235,221,.04);
  border: 1px solid rgba(245,235,221,.12);
  border-radius: var(--r-lg);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-card:hover {
  background: rgba(245,235,221,.08); border-color: rgba(245,235,221,.25); transform: translateY(-2px);
}
.cc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--terracotta); color: var(--cream);
  margin-bottom: 8px;
}
.cc-k { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,235,221,.55); }
.cc-v { font-family: var(--serif); font-size: 20px; color: var(--cream); }
.cc-tag {
  position: absolute; top: 14px; right: 14px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px; letter-spacing: .04em;
  padding: 3px 7px;
  color: rgba(245,235,221,.55);
  border: 1px dashed rgba(245,235,221,.25);
  border-radius: 4px;
}

.reserve-cta {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--terracotta) 0%, #8C2F18 100%);
  flex-wrap: wrap;
}
.rc-eye { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,235,221,.75); }
.rc-title { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); color: var(--cream); margin-top: 4px; }
.rc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.reserve-cta .btn-primary { background: var(--cream); color: var(--terracotta); }
.reserve-cta .btn-primary:hover { background: white; color: var(--terracotta-d); }
.reserve-cta .btn-ghost { color: var(--cream); border-color: rgba(245,235,221,.5); }
.reserve-cta .btn-ghost:hover { background: var(--cream); color: var(--terracotta); border-color: var(--cream); }

/* ───────── Footer ───────── */
.site-footer { background: var(--coffee-2); color: rgba(245,235,221,.8); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.f-brand .f-logo {
  display: block;
  height: 110px;
  width: auto;
}
.f-desc { font-size: 14.5px; margin-top: 16px; max-width: 42ch; }
.f-col h4 {
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cream);
  margin-bottom: 14px;
}
.f-col p { font-size: 14.5px; line-height: 1.85; }
.f-col a:hover { color: var(--mustard); }
.f-lang { background: rgba(245,235,221,.06); border-color: rgba(245,235,221,.18); }
.f-lang .lang-btn { color: rgba(245,235,221,.65); padding: 6px 14px; }
.f-lang .lang-btn.is-active { background: var(--cream); color: var(--coffee); }

.f-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(245,235,221,.12);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-size: 13px;
  flex-wrap: wrap;
}
.f-credits { color: rgba(245,235,221,.5); }

/* ───────── Responsive ───────── */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }

  .primary-nav.is-open {
    display: block;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 20px;
    box-shadow: 0 12px 24px rgba(36,24,19,.08);
  }
  .primary-nav.is-open ul { flex-direction: column; gap: 2px; }
  .primary-nav.is-open a { display: block; padding: 14px 16px; font-size: 16px; border-radius: 10px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { grid-template-rows: 220px 180px; }

  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 360px; }

  .hours-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .dish-list.two-col { grid-template-columns: 1fr; column-gap: 0; }
  .dish-split { grid-template-columns: 1fr; gap: 28px; }

  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid.contact-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .g-item figcaption { padding: 28px 12px 12px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  body { font-size: 16px; }

  .header-inner { min-height: 64px; gap: 12px; }
  .brand-logo { height: 42px; }
  .brand-sub { display: none; }
  .lang-switch { padding: 4px 6px; }
  .lang-btn { padding: 8px 10px; font-size: 12px; min-height: 32px; }
  .lang-sep { display: none; }

  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .hero-chips { display: none; }
  .hero-title { font-size: clamp(52px, 16vw, 88px); }
  .hero-title .line-2 em { padding-left: 14px; }
  .hero-lede { font-size: 16px; margin-top: 22px; }
  .hero-strip { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; margin-top: 36px; }
  .hs-v { font-size: 19px; }
  .hero-ctas { gap: 8px; margin-top: 28px; }
  .hero-ctas .btn { flex: 1 1 calc(50% - 4px); min-width: 0; padding: 14px 12px; font-size: 14px; }
  .hero-ctas .btn-outline { flex: 1 1 100%; }
  .scroll-cue { display: none; }

  .section { padding: 64px 0; }
  .section-title { font-size: clamp(30px, 8.5vw, 40px); margin-top: 12px; }
  .section-lede { font-size: 15px; }
  .section-head { margin-bottom: 32px; }

  .about-pillars { grid-template-columns: 1fr; gap: 12px; }
  .about-pillars li { padding: 18px 16px; }
  .about-media {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 160px auto;
  }
  .about-photo-a { grid-row: auto; grid-column: 1; }
  .about-quote { grid-column: 1; padding: 20px; }
  .about-quote p { font-size: 17px; }

  .menu-tabs {
    padding: 6px;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .mt-btn { padding: 10px 14px; font-size: 13px; flex-shrink: 0; scroll-snap-align: start; }
  .cat-head h3 { font-size: 26px; }
  .dish-name { font-size: 17px; }
  .dish-price { font-size: 15px; }
  .dish-desc { font-size: 13px; }

  .promo-card { grid-template-columns: 1fr; text-align: left; padding: 20px; gap: 14px; }
  .promo-tag { justify-self: start; }
  .promo-price { font-size: 28px; }

  .gallery-grid { gap: 10px; }
  .g-item figcaption { padding: 24px 10px 10px; }
  .g-name { font-size: 14px; }
  .g-sub { font-size: 10px; }

  .lb-close, .lb-prev, .lb-next { width: 44px; height: 44px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-prev  { left: 10px; }
  .lb-next  { right: 10px; }

  .loc-meta > div { grid-template-columns: 1fr; gap: 4px; }
  .loc-meta dt { font-size: 11px; }
  .loc-map { min-height: 320px; }
  .map-pin { font-size: 12px; padding: 7px 11px 7px 7px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid.contact-grid-2 { grid-template-columns: 1fr; }
  .contact-card { padding: 18px 18px 20px; min-height: 56px; }
  .cc-v { font-size: 18px; }

  .reserve-cta { flex-direction: column; align-items: flex-start; padding: 22px; }
  .rc-actions { width: 100%; }
  .rc-actions .btn { flex: 1; }

  .hours-table th, .hours-table td { padding: 14px 16px; font-size: 15px; }

  .f-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 52px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .brand-logo { height: 38px; }
  .lang-btn { padding: 8px 9px; font-size: 11px; }
  .hero-chips { display: none; }
}

/* iOS Safari safe-area + 100vh fixes */
@supports (padding: max(0px)) {
  .site-header { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
  .site-footer { padding-bottom: max(28px, env(safe-area-inset-bottom)); }
}

@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;
  }
}
