/* =====================================================================
   The Little Lebanon Joondanna - redesign mockup
   styles.css - implements design-system.md (Phase 3) exactly.
   Charcoal-and-Olive palette. Newsreader + Schibsted Grotesk.
   Sharp corners (border-radius:0) everywhere. Skewer Rule motif.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Tokens (:root) - copied from design-system.md section 9
   --------------------------------------------------------------------- */
:root {
  /* Type families */
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Schibsted Grotesk", "Helvetica Neue", Arial, system-ui, sans-serif;

  /* Type scale (desktop) */
  --fs-display: 4.5rem;
  --fs-h1: 3rem;
  --fs-h2: 2.25rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-h5: 1.0625rem;
  --fs-h6: 0.9375rem;
  --fs-lead: 1.375rem;
  --fs-body: 1.125rem;
  --fs-small: 1rem;
  --fs-xs: 0.875rem;
  --fs-overline: 0.8125rem;
  --fs-price: 1.125rem;

  /* Measure */
  --measure: 68ch;
  --measure-lead: 60ch;

  /* Surfaces */
  --bg: #F8F2E6;
  --bg-alt: #F3ECDD;
  --surface: #F3ECDD;
  --surface-raised: #FCF8EF;
  --bg-dark: #221F1B;

  /* Ink */
  --ink: #221F1B;
  --ink-2: #4A443C;
  --muted: #766D60;
  --ink-on-dark: #F8F2E6;
  --muted-on-dark: #B8AE9C;

  /* Accent (olive) */
  --accent: #4B5320;
  --accent-hover: #3B411A;
  --accent-tint: #A7AE84;
  --accent-text: #3E4419;
  --accent-on-dark: #C6CC9E;

  /* Ember (spark) */
  --ember: #A8421F;
  --ember-text: #8F3417;

  /* Lines */
  --line: #DED5C4;
  --line-strong: #C9BEA8;
  --line-on-dark: #3D372F;

  /* Spacing */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  /* Layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: 24px;

  /* Radius + borders */
  --radius: 0;
  --border: 1px solid var(--line);
  --border-strong: 1px solid var(--line-strong);
  --border-accent: 2px solid var(--accent);
  --header-shadow: 0 1px 0 0 var(--line);

  /* Motion */
  --dur-fast: 120ms;
  --dur: 160ms;
  --ease: cubic-bezier(0.2, 0, 0.2, 1);
}

/* Responsive type drop */
@media (max-width: 767px) {
  :root {
    --fs-display: 2.5rem;
    --fs-h1: 2.125rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.3125rem;
    --fs-h4: 1.125rem;
    --fs-h5: 1rem;
    --fs-lead: 1.1875rem;
    --fs-body: 1.0625rem;
    --fs-small: 0.9375rem;
    --fs-xs: 0.8125rem;
    --fs-overline: 0.75rem;
    --fs-price: 1.0625rem;
    --gutter: 16px;
  }
}

/* ---------------------------------------------------------------------
   2. Global resets - enforce the hard constraints
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-text); }
ul { margin: 0; padding: 0; }

/* ---------------------------------------------------------------------
   3. Typography
   --------------------------------------------------------------------- */
h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--ink);
  text-wrap: balance;
  margin: 0 0 var(--space-4);
}
h4, h5, h6, .h4, .h5, .h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 var(--space-3);
}
.display { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -0.02em; }
h1, .h1 { font-size: var(--fs-h1); line-height: 1.08; letter-spacing: -0.015em; }
h2, .h2 { font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -0.01em; }
h3, .h3 { font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -0.005em; }
h4, .h4 { font-size: var(--fs-h4); line-height: 1.3; }
h5, .h5 { font-size: var(--fs-h5); line-height: 1.35; letter-spacing: 0.005em; }
h6, .h6 { font-size: var(--fs-h6); line-height: 1.4; letter-spacing: 0.01em; }
p { margin: 0 0 var(--space-5); }
p, li, dd, .body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: var(--measure-lead);
}
.small { font-size: var(--fs-small); }
.xs { font-size: var(--fs-xs); }
.measure { max-width: var(--measure); }
.measure-lead { max-width: var(--measure-lead); }
em, i { font-family: var(--font-display); font-style: italic; }

.overline, .eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-text);
}
/* Eyebrow with skewer mark (three squares threaded on a 2px rule) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 7px;
  flex: none;
  background:
    linear-gradient(var(--accent), var(--accent)) 0 100% / 28px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 0 / 7px 7px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 12px 0 / 7px 7px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 24px 0 / 7px 7px no-repeat;
}
/* Eyebrow on a charcoal band */
.band-dark .eyebrow { color: var(--accent-on-dark); }
.band-dark .eyebrow::before {
  background:
    linear-gradient(var(--accent-on-dark), var(--accent-on-dark)) 0 100% / 28px 2px no-repeat,
    linear-gradient(var(--accent-on-dark), var(--accent-on-dark)) 0 0 / 7px 7px no-repeat,
    linear-gradient(var(--accent-on-dark), var(--accent-on-dark)) 12px 0 / 7px 7px no-repeat,
    linear-gradient(var(--accent-on-dark), var(--accent-on-dark)) 24px 0 / 7px 7px no-repeat;
}

/* H2 heading mark - a 40px Skewer Rule directly above section H2s */
.h2-mark::before {
  content: "";
  display: block;
  width: 40px;
  height: 7px;
  margin-bottom: var(--space-4);
  background:
    linear-gradient(var(--accent), var(--accent)) 0 100% / 40px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 0 / 7px 7px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 12px 0 / 7px 7px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 24px 0 / 7px 7px no-repeat;
}

/* ---------------------------------------------------------------------
   4. Layout helpers
   --------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--space-9); padding-bottom: var(--space-9); }
.section--tight { padding-top: var(--space-7); padding-bottom: var(--space-7); }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 46rem; margin-bottom: var(--space-7); }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
@media (max-width: 767px) {
  .section { padding-top: var(--space-7); padding-bottom: var(--space-7); }
  .section__head { margin-bottom: var(--space-6); }
}

.grid { display: grid; gap: var(--space-5); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.dish-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.cat-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
@media (max-width: 767px) {
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: var(--space-4); }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.cta-row--mt { margin-top: var(--space-6); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Section divider with skewer segment */
.divider {
  border: 0;
  border-top: 1px solid var(--line);
  height: 0;
  margin: var(--space-9) 0;
  position: relative;
}
.divider::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
}
.divider--center::after { left: 50%; transform: translateX(-28px); }

/* Square list bullet (one piece on the skewer) */
.list-skewer { list-style: none; padding-left: 0; }
.list-skewer li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--ink-2);
}
.list-skewer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

/* ---------------------------------------------------------------------
   5. Skip link + global focus
   --------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  background: var(--accent);
  color: var(--ink-on-dark);
  padding: var(--space-3) var(--space-5);
  z-index: 100;
  text-decoration: none;
  font: 700 var(--fs-small)/1 var(--font-body);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-4); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--accent-tint);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   6. Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: var(--space-3) var(--space-6);
  font: 700 var(--fs-small)/1 var(--font-body);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn--primary { background: var(--accent); color: var(--ink-on-dark); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--secondary { background: transparent; color: var(--accent-text); border-color: var(--accent); }
.btn--secondary:hover { background: var(--accent); color: var(--ink-on-dark); }
.btn--ghost { background: transparent; color: var(--ink); padding-inline: 0; }
.btn--ghost:hover { color: var(--accent-text); text-decoration: underline; text-underline-offset: 4px; }
.btn--ondark { background: transparent; color: var(--ink-on-dark); border-color: var(--ink-on-dark); }
.btn--ondark:hover { background: var(--ink-on-dark); color: var(--ink); }
.btn:focus-visible { outline: 3px solid var(--accent-tint); outline-offset: 3px; }

/* ---------------------------------------------------------------------
   7. Utility strip
   --------------------------------------------------------------------- */
.utility {
  background: var(--surface-raised);
  border-bottom: 1px solid var(--line);
  font: 500 var(--fs-xs)/1 var(--font-body);
  color: var(--ink-2);
}
.utility .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-3) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  min-height: 44px;
}
.utility a { color: var(--accent-text); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.utility a:hover { text-decoration: underline; text-underline-offset: 3px; }
.utility__left, .utility__right { display: inline-flex; align-items: center; gap: var(--space-5); }
.utility .open-late { display: inline-flex; align-items: center; color: var(--ink-2); }
.utility .open-late::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: var(--space-2);
  background: var(--ember);
}
@media (max-width: 767px) {
  .utility .inner { min-height: 40px; }
  .utility .open-late, .utility .utility__app { display: none; }
}

/* ---------------------------------------------------------------------
   8. Header / nav
   --------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: padding var(--dur) var(--ease);
}
.header.is-scrolled { box-shadow: var(--header-shadow); }
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-4) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  transition: padding var(--dur) var(--ease);
}
.header.is-scrolled .nav { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.nav__brand { display: inline-flex; align-items: center; gap: var(--space-3); text-decoration: none; min-height: 44px; }
.nav__logo { height: 44px; width: 44px; display: block; }
.nav__wordmark {
  font: 600 1.25rem/1 var(--font-display);
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__wordmark span { display: block; font-size: 0.7rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
  font: 500 var(--fs-small)/1 var(--font-body);
  color: var(--ink);
  text-decoration: none;
  padding: var(--space-3) 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.nav__link:hover { color: var(--accent-text); }
.nav__link[aria-current="page"]::after,
.nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 7px;
  background:
    linear-gradient(var(--accent), var(--accent)) 0 100% / 100% 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 0 / 7px 7px no-repeat;
}
.nav__cta { margin-left: var(--space-2); }

.nav__actions { display: inline-flex; align-items: center; gap: var(--space-3); }
.nav__order-mobile { display: none; }
.nav__toggle { display: none; }

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__order-mobile {
    display: inline-flex;
    min-height: 44px;
    padding: var(--space-2) var(--space-4);
    font: 700 var(--fs-xs)/1 var(--font-body);
  }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ink);
    cursor: pointer;
  }
  .nav__toggle svg { width: 22px; height: 22px; display: block; }
  .nav__wordmark span { display: none; }
}

/* Mobile slide panel + backdrop */
.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34, 31, 27, 0.45);
  z-index: 70;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.nav__backdrop.is-open { display: block; opacity: 1; }
.nav__panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: var(--bg);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  padding: var(--space-7) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow-y: auto;
  z-index: 80;
}
.nav__panel.is-open { transform: translateX(0); }
.nav__panel .nav__link { font-size: var(--fs-h4); min-height: 48px; }
.nav__panel .nav__link::after { bottom: 8px; }
.nav__panel .btn { width: 100%; }
.nav__panel-close {
  align-self: flex-end;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  margin-bottom: var(--space-2);
}
.nav__panel-close svg { width: 20px; height: 20px; }
.nav__panel-foot { margin-top: auto; padding-top: var(--space-5); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: var(--space-3); }
.nav__panel-foot a { color: var(--accent-text); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }

@media (min-width: 768px) {
  .nav__panel, .nav__backdrop { display: none !important; }
}

/* ---------------------------------------------------------------------
   9. Hero
   --------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-9) var(--gutter);
}
.hero__content { max-width: 34rem; }
.hero__title { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -0.02em; }
.hero__sub { margin-top: var(--space-5); }
.hero__actions { margin-top: var(--space-6); display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Compact hero for inner pages (no big media) */
.hero--page {
  display: block;
  padding-bottom: var(--space-7);
}
.hero--page .hero__content { max-width: 46rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: var(--space-6); padding: var(--space-7) var(--gutter); }
  .hero__media { aspect-ratio: 16 / 10; order: -1; }
  .hero--page .hero__media { order: 0; margin-top: var(--space-6); }
}

/* ---------------------------------------------------------------------
   10. Trust strip
   --------------------------------------------------------------------- */
.trust {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.trust .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-5) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-6);
  justify-content: center;
  align-items: center;
}
.trust__item { display: inline-flex; align-items: center; gap: var(--space-3); font: 500 var(--fs-small)/1.3 var(--font-body); color: var(--ink-2); }
.trust__item .star { color: var(--ember); letter-spacing: 0.06em; }
.trust__sep { width: 7px; height: 7px; background: var(--accent); flex: none; }
@media (max-width: 767px) { .trust__sep { display: none; } }

/* ---------------------------------------------------------------------
   11. Dish card
   --------------------------------------------------------------------- */
.dish {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), border-top-width var(--dur) var(--ease);
}
.dish:hover, .dish:focus-within {
  transform: translateY(-2px);
  border-top: 3px solid var(--accent);
}
.dish__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-alt); }
.dish__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur) var(--ease); }
.dish:hover .dish__media img { transform: scale(1.03); }
.dish__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.dish__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-4); }
.dish__name { font: 700 var(--fs-h4)/1.3 var(--font-body); color: var(--ink); margin: 0; }
.dish__price { font: 700 var(--fs-price)/1.2 var(--font-body); font-variant-numeric: tabular-nums; color: var(--accent-text); white-space: nowrap; }
.dish__desc { font-size: var(--fs-small); color: var(--ink-2); margin: 0; }
.dish__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: auto; padding-top: var(--space-2); }
.dish__tag {
  display: inline-block;
  font: 700 var(--fs-xs)/1 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

/* ---------------------------------------------------------------------
   12. Menu price row
   --------------------------------------------------------------------- */
.price-list { margin: 0; padding: 0; list-style: none; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
}
.price-row__name { font: 600 var(--fs-body)/1.3 var(--font-body); color: var(--ink); }
.price-row__desc { font-size: var(--fs-small); color: var(--muted); margin-top: var(--space-1); }
.price-row__price { font: 700 var(--fs-price)/1.2 var(--font-body); font-variant-numeric: tabular-nums; color: var(--accent-text); }

/* Menu category nav (in-page anchors) */
.menu-nav {
  position: sticky;
  top: 73px;
  z-index: 30;
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.menu-nav .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-3) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  align-items: center;
}
.menu-nav a {
  font: 700 var(--fs-xs)/1 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.menu-nav a:hover { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
.menu-cat { scroll-margin-top: 140px; }
.menu-cat h2 { margin-bottom: var(--space-2); }
.menu-cat__intro { color: var(--muted); margin-bottom: var(--space-5); max-width: var(--measure); }

/* ---------------------------------------------------------------------
   13. Category card + package card
   --------------------------------------------------------------------- */
.cat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 44px;
  transition: background var(--dur) var(--ease);
}
.cat:hover { background: var(--bg-alt); }
.cat__title { font: 600 var(--fs-h3)/1.2 var(--font-display); color: var(--ink); margin: 0; }
.cat__desc { font-size: var(--fs-small); color: var(--ink-2); margin: 0; }
.cat__more { font: 700 var(--fs-small)/1 var(--font-body); color: var(--accent-text); text-decoration: none; margin-top: var(--space-2); display: inline-flex; align-items: center; gap: var(--space-2); min-height: 44px; }
.cat__link::after { content: ""; position: absolute; inset: 0; }
.cat:focus-within { outline: 3px solid var(--accent-tint); outline-offset: 2px; }

.pkg { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); }
.pkg__media { aspect-ratio: 16 / 9; overflow: hidden; margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) 0; border-bottom: 1px solid var(--line); }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; }
.pkg__name { font: 600 var(--fs-h3)/1.2 var(--font-display); color: var(--ink); margin: 0; }
.pkg__from { font: 700 var(--fs-price)/1.2 var(--font-body); font-variant-numeric: tabular-nums; color: var(--accent-text); }
.pkg__from small { font: 500 var(--fs-xs)/1 var(--font-body); color: var(--muted); }
.pkg .btn { margin-top: auto; }

/* spec table */
.spec-table { width: 100%; border-collapse: collapse; font: 400 var(--fs-small)/1.4 var(--font-body); }
.spec-table caption { text-align: left; font: 700 var(--fs-h5)/1.3 var(--font-body); color: var(--ink); padding-bottom: var(--space-4); }
.spec-table th, .spec-table td { text-align: left; padding: var(--space-4); border-bottom: 1px solid var(--line); }
.spec-table thead th { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--line-strong); }
.spec-table tbody th { color: var(--ink); font-weight: 700; }
.spec-table td.num { text-align: right; font-variant-numeric: tabular-nums; color: var(--accent-text); font-weight: 700; }

/* hours table reuses spec-table look */
.hours-table { width: 100%; border-collapse: collapse; font: 400 var(--fs-body)/1.4 var(--font-body); max-width: 28rem; }
.hours-table th, .hours-table td { text-align: left; padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--line); }
.hours-table th { color: var(--ink); font-weight: 600; }
.hours-table td { color: var(--ink-2); font-variant-numeric: tabular-nums; text-align: right; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--accent-text); font-weight: 700; }

/* ---------------------------------------------------------------------
   14. Quote / reviews
   --------------------------------------------------------------------- */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.quote__text { font: 400 var(--fs-h3)/1.4 var(--font-display); color: var(--ink); font-style: italic; margin: 0; }
.quote__meta { font: 600 var(--fs-small)/1.3 var(--font-body); color: var(--muted); margin: 0; }
.quote__source { color: var(--accent-text); text-decoration: none; }
.quote__source:hover { text-decoration: underline; text-underline-offset: 3px; }

.rating { display: inline-flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.rating__stars { color: var(--ember); letter-spacing: 0.1em; font-size: 1.25rem; }
.rating__value { font: 700 var(--fs-h4)/1 var(--font-body); color: var(--ink); }
.rating__count { font-size: var(--fs-small); color: var(--muted); }

/* ---------------------------------------------------------------------
   15. App promo band (charcoal)
   --------------------------------------------------------------------- */
.band-dark { background: var(--bg-dark); color: var(--ink-on-dark); }
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--ink-on-dark); }
.band-dark p { color: var(--muted-on-dark); }
.app { padding: var(--space-9) 0; }
.app .inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr auto; gap: var(--space-8); align-items: center; }
.app__copy { max-width: 36rem; }
.app__badges { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.app__badges a { display: inline-flex; min-height: 44px; align-items: center; }
.app__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 56px;
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--line-on-dark);
  background: #1A1714;
  color: var(--ink-on-dark);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.app__badge:hover { border-color: var(--accent-on-dark); background: #221F1B; }
.app__badge svg { width: 26px; height: 26px; flex: none; fill: var(--ink-on-dark); }
.app__badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.app__badge-text small { font: 500 0.6875rem/1.2 var(--font-body); color: var(--muted-on-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.app__badge-text strong { font: 700 1rem/1.2 var(--font-body); color: var(--ink-on-dark); }
@media (max-width: 767px) { .app .inner { grid-template-columns: 1fr; gap: var(--space-6); } .app { padding: var(--space-7) 0; } }

/* ---------------------------------------------------------------------
   16. Feature split (two-up image + copy)
   --------------------------------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body { max-width: 34rem; }
@media (max-width: 900px) {
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: var(--space-6); }
  .feature--reverse .feature__media { order: 0; }
}

/* Info two-col (visit) */
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-8); align-items: start; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; gap: var(--space-6); } }
.map-embed { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); }
.address-block { font-style: normal; }
.address-block strong { color: var(--ink); font: 700 var(--fs-h4)/1.3 var(--font-body); display: block; margin-bottom: var(--space-3); }
.address-block p { margin: 0 0 var(--space-2); }

/* ---------------------------------------------------------------------
   17. Forms
   --------------------------------------------------------------------- */
.form-panel { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); padding: var(--space-7); }
@media (max-width: 480px) { .form-panel { padding: var(--space-6) var(--space-5); } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-5); }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.field label { font: 700 var(--fs-small)/1.3 var(--font-body); color: var(--ink); }
.field .req { color: var(--ember-text); }
.input, .textarea, .select {
  font: 400 var(--fs-body)/1.4 var(--font-body);
  color: var(--ink);
  background: var(--surface-raised);
  border: 1px solid var(--line-strong);
  padding: var(--space-3) var(--space-4);
  min-height: 44px;
  width: 100%;
}
.textarea { min-height: 120px; resize: vertical; }
.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  outline: 3px solid var(--accent-tint);
  outline-offset: 0;
  border-color: var(--accent);
}
.field__hint { font: 400 var(--fs-xs)/1.4 var(--font-body); color: var(--muted); }
.form-note { font: 400 var(--fs-xs)/1.5 var(--font-body); color: var(--muted); margin-top: var(--space-4); }
.form-note a { color: var(--accent-text); }

/* ---------------------------------------------------------------------
   18. Steps (how it works)
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); counter-reset: step; }
@media (max-width: 767px) { .steps { grid-template-columns: 1fr; } }
.step { display: flex; flex-direction: column; gap: var(--space-3); padding-top: var(--space-5); border-top: 2px solid var(--accent); }
.step__num { font: 700 var(--fs-overline)/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); }
.step h3 { margin: 0; }
.step p { margin: 0; }

/* ---------------------------------------------------------------------
   19. Note / callout
   --------------------------------------------------------------------- */
.note {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-tint);
  padding: var(--space-5) var(--space-6);
  font-size: var(--fs-small);
  color: var(--muted);
}
.note strong { color: var(--ink-2); }

/* ---------------------------------------------------------------------
   20. Footer
   --------------------------------------------------------------------- */
.footer { background: var(--bg-dark); color: var(--ink-on-dark); padding: var(--space-9) var(--gutter) var(--space-6); }
.footer .inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-7); }
.footer h3 { font: 700 var(--fs-h6)/1.3 var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-on-dark); margin-bottom: var(--space-4); }
.footer p { color: var(--muted-on-dark); }
.footer a { color: var(--accent-on-dark); text-decoration: none; min-height: 28px; display: inline-flex; align-items: center; }
.footer a:hover { color: var(--ink-on-dark); text-decoration: underline; text-underline-offset: 3px; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer__brand-line { color: var(--muted-on-dark); margin: var(--space-2) 0 var(--space-5); max-width: 22rem; }
.footer__badges { display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start; }
.footer__badges .app__badge { min-height: 48px; }
.footer__legal { border-top: 1px solid var(--line-on-dark); margin-top: var(--space-7); padding-top: var(--space-5); display: flex; justify-content: space-between; gap: var(--space-4); font: 400 var(--fs-xs)/1.5 var(--font-body); color: var(--muted-on-dark); flex-wrap: wrap; }
.footer__legal a { color: var(--muted-on-dark); min-height: 0; display: inline; }
.footer__legal a:hover { color: var(--ink-on-dark); }
@media (max-width: 900px) { .footer .inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer .inner { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   21. Sticky mobile action bar
   --------------------------------------------------------------------- */
.mbar { display: none; }
@media (max-width: 767px) {
  .mbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    border-top: 1px solid var(--line-on-dark);
  }
  .mbar a { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); font: 700 var(--fs-small)/1 var(--font-body); text-decoration: none; }
  .mbar .call { background: var(--bg-dark); color: var(--ink-on-dark); }
  .mbar .order { background: var(--accent); color: var(--ink-on-dark); }
  body { padding-bottom: 56px; }
}

/* ---------------------------------------------------------------------
   22. Scroll reveal (IntersectionObserver, disabled under reduced motion)
   --------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------------------------------------------------------------------
   24. Print
   --------------------------------------------------------------------- */
@media print {
  .header, .utility, .menu-nav, .nav__panel, .nav__backdrop, .mbar, .app, .hero__media, .footer__legal, form, .map-embed { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; padding-bottom: 0; }
  .dish, .price-row, .pkg, .spec-table, .cat { break-inside: avoid; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .footer { background: #fff; color: #000; }
  .footer h3, .footer a, .footer p { color: #000; }
}
