:root {
  /* Semantic color tokens */
  --background: #1C1410;
  --background-2: #2B1F17;
  --foreground: #F5EFE6;
  --muted: #5A4A3A;
  --muted-foreground: #EDE3D2;
  --surface: #2B1F17;
  --surface-foreground: #F5EFE6;
  --primary: #C89B5A;
  --primary-foreground: #1C1410;
  --accent: #8C3B2E;
  --accent-foreground: #F5EFE6;
  --border: #5A4A3A;
  --ring: #C89B5A;

  /* Radius scale */
  --radius: 12px;
  --radius-sm: calc(var(--radius) - 6px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: calc(var(--radius) + 6px);
  --radius-xl: calc(var(--radius) + 16px);

  /* Type scale */
  --font-display: 'Noto Serif TC', serif;
  --font-body: 'Noto Sans TC', sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.75rem;
  --fs-4xl: 3.5rem;

  /* 4px spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  --measure: 68ch;
  --nav-h: 68px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
img { background: var(--background-2); }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--foreground);
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); letter-spacing: .01em; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
p { text-wrap: pretty; }

ul, ol { padding-left: 1.25em; }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 200;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: var(--sp-4); text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.section { padding-block: var(--sp-16); }
@media (min-width: 768px) {
  .section { padding-block: var(--sp-24); }
}
.section-lead {
  max-width: var(--measure);
  color: var(--muted-foreground);
  font-size: var(--fs-lg);
  margin-top: var(--sp-4);
}
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  margin-bottom: var(--sp-3);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--background) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--foreground);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  cursor: pointer;
}
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--sp-2) var(--sp-4);
  color: var(--muted-foreground);
  font-weight: 500;
  border-radius: var(--radius-md);
}
.nav-menu a:hover { color: var(--foreground); text-decoration: none; }
.nav-menu a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}
.nav-menu a[aria-current="page"]::after {
  content: "";
  display: block;
}

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: calc(var(--nav-h) + env(safe-area-inset-top)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-1);
    background: var(--background-2);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-4);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-menu a { min-height: 48px; }
  .nav-menu .nav-cta { justify-content: center; margin-top: var(--sp-2); }
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { min-height: 54px; padding: var(--sp-4) var(--sp-8); font-size: var(--fs-lg); }
.nav-cta { min-height: 44px; padding: var(--sp-2) var(--sp-5); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: var(--sp-16);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: var(--sp-10);
  align-items: center;
}
.hero-copy h1 { margin-bottom: var(--sp-5); }
.hero-copy .lead {
  font-size: var(--fs-lg);
  color: var(--muted-foreground);
  max-width: 54ch;
  margin-bottom: var(--sp-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  align-items: center;
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
}
.hero-trust .stars { color: var(--primary); letter-spacing: .1em; }

.hero-media {
  position: relative;
}
.tilt-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: transform .3s ease;
  will-change: transform;
}
.tilt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03) brightness(.96);
}
.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, color-mix(in srgb, var(--background) 55%, transparent));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  z-index: 2;
  background: color-mix(in srgb, var(--background) 82%, transparent);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--foreground);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-16);
  }
  .hero { padding-block: var(--sp-24); }
  h1 { font-size: var(--fs-4xl); }
}

/* ---------- Signature dishes (grid-break) ---------- */
.dish-grid {
  display: grid;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
}
.dish-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03) brightness(.96);
}
.dish-body { padding: var(--sp-5); }
.dish-body h3 { margin-bottom: var(--sp-2); }
.dish-body p { color: var(--muted-foreground); font-size: var(--fs-sm); }
.dish-price {
  display: inline-block;
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  font-size: var(--fs-lg);
}

/* Grid-break overlap on desktop */
@media (min-width: 1024px) {
  .grid-break .dish-card:nth-child(2) {
    transform: translateY(-32px);
  }
  .grid-break .dish-card:nth-child(2):hover {
    transform: translateY(-40px);
  }
}

/* ---------- Story (PAS) ---------- */
.story-grid {
  display: grid;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
}
.story-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  filter: saturate(1.04) brightness(.97);
}
.story-copy p { max-width: var(--measure); color: var(--muted-foreground); margin-top: var(--sp-4); }
.story-copy p + p { margin-top: var(--sp-4); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.testi-card .stars { color: var(--primary); letter-spacing: .1em; margin-bottom: var(--sp-3); }
.testi-card blockquote {
  font-size: var(--fs-base);
  color: var(--foreground);
  margin-bottom: var(--sp-4);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--muted-foreground);
}
.testi-author .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-foreground);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.testi-author strong { color: var(--foreground); }

/* ---------- Info / NAP ---------- */
.info-grid {
  display: grid;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
}
.info-card .icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  color: var(--primary);
  border-radius: var(--radius-md);
}
.info-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-1); }
.info-card p, .info-card address {
  font-style: normal;
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
}
.info-card a { color: var(--primary); }

/* ---------- FAQ disclosure ---------- */
.faq-list {
  margin-top: var(--sp-10);
  max-width: var(--measure);
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary,
.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--foreground);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  flex: none;
  transition: transform .25s ease;
  color: var(--primary);
}
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-answer {
  padding: 0 var(--sp-1) var(--sp-5);
  color: var(--muted-foreground);
  max-width: var(--measure);
}

/* ---------- Menu page ---------- */
.menu-anchors {
  position: sticky;
  top: calc(var(--nav-h) + env(safe-area-inset-top));
  z-index: 50;
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding: var(--sp-3) var(--sp-1);
  background: color-mix(in srgb, var(--background) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}
.menu-anchors a {
  flex: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-5);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-foreground);
  font-weight: 500;
  white-space: nowrap;
}
.menu-anchors a:hover,
.menu-anchors a:focus-visible { color: var(--primary); border-color: var(--primary); text-decoration: none; }
.menu-anchors a[aria-current="true"] {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.menu-category { margin-top: var(--sp-16); scroll-margin-top: calc(var(--nav-h) + 72px); }
.menu-category h2 {
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.menu-items {
  list-style: none;
  padding: 0;
  margin-top: var(--sp-8);
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .menu-items { grid-template-columns: repeat(2, 1fr); }
}
.menu-item {
  display: flex;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  transition: border-color .2s ease, transform .2s ease;
}
.menu-item:hover { border-color: var(--primary); transform: translateY(-3px); }
.menu-item-thumb {
  flex: none;
  width: 96px; height: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--background-2);
  cursor: zoom-in;
}
.menu-item-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(.96);
}
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
}
.menu-item-head h3 { font-size: var(--fs-lg); }
.menu-item .price {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
.menu-item p { color: var(--muted-foreground); font-size: var(--fs-sm); margin-top: var(--sp-1); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  background: color-mix(in srgb, var(--background) 88%, transparent);
  backdrop-filter: blur(8px);
}
.l.lightbox.is-open { display: flex; }
.lightbox-figure {
  max-width: min(92vw, 1000px);
  max-height: 88vh;
  margin: 0;
  text-align: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-inline: auto;
}
.lightbox-figure figcaption {
  margin-top: var(--sp-4);
  color: var(--foreground);
  font-size: var(--fs-sm);
}
.lightbox-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--foreground);
  cursor: pointer;
}
.lightbox-close:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- Forms ---------- */
.form-wrap {
  display: grid;
  gap: var(--sp-10);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .form-wrap { grid-template-columns: 1.1fr 1fr; gap: var(--sp-16); }
}
.reserve-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .reserve-form { padding: var(--sp-10); }
}
.field { margin-bottom: var(--sp-5); }
.field-row {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-2);
  color: var(--foreground);
}
.field .req { color: var(--primary); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--foreground);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: color-mix(in srgb, var(--muted-foreground) 60%, transparent); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 45%, transparent);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 40%, transparent);
}
.field-error {
  display: block;
  margin-top: var(--sp-2);
  color: color-mix(in srgb, var(--accent) 60%, var(--foreground));
  font-size: var(--fs-sm);
  min-height: 1.2em;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  display: none;
}
.form-status.is-success {
  display: block;
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  border: 1px solid var(--primary);
  color: var(--foreground);
}
.form-status.is-error {
  display: block;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid var(--accent);
  color: var(--foreground);
}

/* ---------- Contact aside ---------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}
.contact-block h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.contact-block h3 .icon { color: var(--primary); }
.contact-block address {
  font-style: normal;
  color: var(--muted-foreground);
  line-height: 1.8;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  font-weight: 500;
}
.contact-links a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn-whatsapp {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent) !important;
}
.btn-whatsapp:hover { color: var(--accent-foreground) !important; filter: brightness(1.1); }

/* ---------- Hours table ---------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: var(--sp-2) var(--sp-1);
  border-bottom: 1px solid var(--border);
}
.hours-table th {
  font-weight: 500;
  color: var(--muted-foreground);
}
.hours-table td { color: var(--foreground); text-align: right; }
.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--primary);
  font-weight: 700;
}

/* ---------- Map poster (click-to-load) ---------- */
.map-wrap {
  margin-top: var(--sp-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-poster {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  text-align: center;
  background:
    linear-gradient(color-mix(in srgb, var(--background) 55%, transparent), color-mix(in srgb, var(--background) 55%, transparent)),
    repeating-linear-gradient(45deg, var(--background-2), var(--background-2) 12px, var(--surface) 12px, var(--surface) 24px);
  color: var(--foreground);
  cursor: pointer;
  border: 0;
  font: inherit;
}
.map-poster .map-address {
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
  max-width: 40ch;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--background-2), var(--surface));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band .container { padding-block: var(--sp-16); }
.cta-band h2 { font-size: var(--fs-2xl); }
.cta-band p { color: var(--muted-foreground); max-width: 54ch; margin: var(--sp-4) auto var(--sp-8); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--background);
  border-top: 1px solid var(--border);
  padding-block: var(--sp-16) var(--sp-10);
  padding-bottom: calc(var(--sp-10) + env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  gap: var(--sp-10);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand p {
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
  margin-top: var(--sp-4);
  max-width: 40ch;
}
.footer-col h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--sp-4);
  color: var(--foreground);
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: var(--sp-2); }
.footer-col a { color: var(--muted-foreground); }
.footer-col a:hover { color: var(--primary); }
.footer-col address {
  font-style: normal;
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
  line-height: 1.9;
}
.footer-bottom {
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  align-items: center;
  color: var(--muted-foreground);
  font-size: var(--fs-xs);
}

/* ---------- Reveal animations ---------- */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
}
.reveal.is-visible {
  animation: reveal-up .7s cubic-bezier(.22,.61,.36,1) both;
}
.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
.reveal-delay-3 { animation-delay: .24s; }

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.text-center{ text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.icon { flex: none; }

.breadcrumb {
  font-size: var(--fs-sm);
  color: var(--muted-foreground);
  padding-block: var(--sp-5);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: var(--sp-2); }
.breadcrumb li + li::before {
  content: "/";
  color: var(--border);
}
.breadcrumb a { color: var(--muted-foreground); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--foreground); }

.page-header {
  padding-block: var(--sp-12) var(--sp-6);
}
.page-header h1 { margin-bottom: var(--sp-4); }
.page-header p { color: var(--muted-foreground); max-width: var(--measure); font-size: var(--fs-lg); }

/* ---------- Reduced motion global downgrade ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; animation: none; }
  .tilt-card,
  .dish-card,
  .menu-item,
  .btn { transform: none !important; }
}

/* ---------- 200% zoom / small viewport friendliness ---------- */
@media (max-width: 480px) {
  :root {
    --fs-3xl: 2.15rem;
    --fs-4xl: 2.5rem;
    --fs-2xl: 1.6rem;
  }
  .container { padding-inline: var(--sp-4); }
  .menu-item { flex-direction: column; }
  .menu-item-thumb { width: 100%; height: 160px; }
}

/* ---------- Print ---------- */
@media print {
  :root {
    --background: #fff;
    --foreground: #1C1410;
    --muted-foreground: #333;
    --surface: #fff;
    --border: #ccc;
  }
  body { color: #000; background: #fff; }
  .site-header,
  .nav-toggle,
  .menu-anchors,
  .cta-band,
  .map-wrap,
  .hero-actions,
  .lightbox,
  .btn { display: none !important; }
  a { color: #000; text-decoration: underline; }
  .section { padding-block: var(--sp-8); }
  .dish-card,
  .menu-item,
  .testi-card,
  .info-card {
    border: 1px solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }
  .grid-break .dish-card:nth-child(2) { transform: none; }
}