/* ==========================================================================
   Kuza Urban Japanese Food, redesign mockup
   Implements 03-design/design-system.md exactly.
   Dark warm base, one vermilion accent, gold highlight, noren motif,
   border-radius:0 on every element, no shadows, no blur, no gradients.
   ========================================================================== */

/* --- 18. Full :root token block -------------------------------------------- */
:root {
  /* type families */
  --font-display: "Shippori Mincho", Georgia, "Times New Roman", serif;
  --font-body: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* type scale (desktop) */
  --fs-display: 4rem;       /* 64 */
  --fs-h1: 3rem;            /* 48 */
  --fs-h2: 2.25rem;         /* 36 */
  --fs-h3: 1.625rem;        /* 26 */
  --fs-h4: 1.25rem;         /* 20 */
  --fs-h5: 1.0625rem;       /* 17 */
  --fs-h6: 0.9375rem;       /* 15 */
  --fs-lead: 1.3125rem;     /* 21 */
  --fs-body: 1.0625rem;     /* 17 */
  --fs-small: 0.9375rem;    /* 15 */
  --fs-xs: 0.8125rem;       /* 13 */
  --fs-overline: 0.75rem;   /* 12 */

  /* colour: core */
  --bg: #16110F;
  --surface: #211A17;
  --surface-2: #2B2320;
  --line: #3A302B;
  --ink: #F3ECDF;
  --muted: #B9AE9C;
  --faint: #7C7264;
  --accent: #E0453A;
  --accent-press: #B5362D;
  --accent-text: #F08379;
  --gold: #E6B864;
  --gold-deep: #C9923B;

  /* colour: inverted / light block */
  --bg-light: #F3ECDF;
  --surface-light: #FBF6EC;
  --ink-light: #1B1512;
  --line-light: #D8CDB9;

  /* spacing (8px base) */
  --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 */
  --maxw: 1280px; --maxw-narrow: 760px; --measure: 68ch;
  --gutter: 24px; --gutter-sm: 16px;
  --header-h: 72px; --header-h-sm: 60px;

  /* radius / borders */
  --radius: 0;
  --border: 1px solid var(--line);
  --border-2: 2px solid var(--line);

  /* motion */
  --ease: cubic-bezier(0.2, 0.0, 0.2, 1);
  --dur-fast: 140ms;
  --dur: 200ms;
}

/* universal sharp corners + box model */
*, *::before, *::after {
  box-sizing: border-box;
  border-radius: var(--radius) !important;
}

html { color-scheme: dark; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --- base typography ------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  text-wrap: balance;
  margin: 0 0 var(--space-4);
}
h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -0.005em; }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-family: var(--font-body); font-size: var(--fs-h4); font-weight: 700; margin: 0 0 var(--space-2); }
h5 { font-family: var(--font-body); font-size: var(--fs-h5); font-weight: 700; letter-spacing: 0.01em; margin: 0 0 var(--space-2); }

p  { max-width: var(--measure); text-wrap: pretty; }

a  { color: var(--accent-text); }
a:hover { color: var(--gold); }

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

img { max-width: 100%; display: block; }

.overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}

/* --- skip link (5.3) ------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--ink-light);
  padding: var(--space-3) var(--space-4); font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: var(--space-4); top: var(--space-3); }

/* --- layout helpers -------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-5); }
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-8) 0; }
.section--surface { background: var(--surface); }

.lede { max-width: var(--measure); color: var(--muted); font-size: var(--fs-lead); }

/* --- section head + noren mark (9) ----------------------------------------- */
.section-head { margin-bottom: var(--space-6); max-width: var(--measure); }
.section-head .overline { display: block; margin-bottom: var(--space-2); color: var(--gold); }
.section-head .noren-mark {
  width: 64px; height: 8px; margin-bottom: var(--space-3);
  background-image: repeating-linear-gradient(90deg,
    var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 14px);
  background-repeat: repeat-x;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-h2); color: var(--ink); margin-bottom: var(--space-3);
}
.section-head p { color: var(--muted); }

/* --- noren motif (3) ------------------------------------------------------- */
.noren {
  height: 16px;
  background-image: repeating-linear-gradient(90deg,
    var(--gold) 0, var(--gold) 10px,
    transparent 10px, transparent 16px,
    var(--gold) 16px, var(--gold) 38px,
    transparent 38px, transparent 44px);
  background-repeat: repeat-x;
  border-bottom: 2px solid var(--line);
}
.noren--accent {
  background-image: repeating-linear-gradient(90deg,
    var(--accent) 0, var(--accent) 10px,
    transparent 10px, transparent 16px,
    var(--accent) 16px, var(--accent) 38px,
    transparent 38px, transparent 44px);
  border-bottom-color: var(--accent);
}
.divider-noren { height: 16px; margin: var(--space-9) auto;
  max-width: var(--maxw); background-image: inherit; }
.divider-line { border: 0; border-top: 1px solid var(--line); margin: var(--space-7) 0; }

/* ==========================================================================
   5. Navigation, header (sticky, condenses on scroll)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  transition: height var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-header__inner {
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
}
.site-header.is-condensed { height: 60px; background: rgba(22,17,15,0.98); }

.site-header__brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem; letter-spacing: 0.04em;
  color: var(--ink); text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px;
}
.site-header__brand:hover { color: var(--gold); }
.site-header__brand:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.nav { display: flex; align-items: center; gap: var(--space-5); }
.nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none;
  padding: var(--space-2) 0; position: relative;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color var(--dur-fast) var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 3px;
  background-image: repeating-linear-gradient(90deg,
    var(--accent) 0, var(--accent) 4px, transparent 4px, transparent 8px);
}
.nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-phone {
  font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color var(--dur-fast) var(--ease);
}
.header-phone:hover { color: var(--gold); }
.header-phone:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* mobile-only controls hidden on desktop */
.nav-toggle, .header-call-icon { display: none; }

/* ==========================================================================
   7. Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 var(--space-5);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: 0;
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent); color: var(--ink-light); }
.btn--primary:hover { background: var(--accent-press); color: var(--ink-light); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold); color: var(--ink-light); }

.btn--text {
  min-height: 44px; padding: 0; color: var(--accent-text);
  background: none; border: none; font-weight: 600;
  border-bottom: 2px solid var(--accent-text);
  display: inline-flex; align-items: center;
}
.btn--text:hover { color: var(--gold); border-bottom-color: var(--gold); }

.btn-row { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-5); }

/* ==========================================================================
   6. Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--bg);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__scrim { position: absolute; inset: 0; background: rgba(22,17,15,0.58); }
.hero__inner {
  position: relative; z-index: 1; max-width: var(--maxw);
  margin: 0 auto; width: 100%; padding: var(--space-9) var(--space-5);
}
.hero .overline { color: var(--gold); }
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-display); line-height: 1.04; letter-spacing: -0.01em;
  color: var(--ink); max-width: 18ch; text-wrap: balance; margin: var(--space-3) 0;
}
.hero .lead { color: var(--ink); max-width: 52ch; opacity: 0.94; }
.hero__cta { display: flex; gap: var(--space-3); margin-top: var(--space-5); flex-wrap: wrap; }

/* compact hero used on inner pages */
.page-hero { position: relative; border-bottom: 1px solid var(--line);
  padding: var(--space-9) 0 var(--space-7); overflow: hidden; }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.32); }
.page-hero__scrim { position: absolute; inset: 0; background: rgba(22,17,15,0.55); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .overline { color: var(--gold); display: block; margin-bottom: var(--space-3); }
.page-hero h1 { margin-bottom: var(--space-4); }
.page-hero p { color: var(--ink); opacity: 0.94; max-width: 60ch; }
.page-hero .btn-row { margin-top: var(--space-6); }

/* ==========================================================================
   10. Cards
   ========================================================================== */
.card-grid {
  display: grid; gap: var(--gutter);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}
.card__top {
  height: 6px;
  background-image: repeating-linear-gradient(90deg,
    var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 14px);
  background-repeat: repeat-x;
  transition: background-image var(--dur-fast) var(--ease);
}
.card__body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.card__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-h3); color: var(--ink); margin-bottom: var(--space-3);
}
.card__text { color: var(--muted); font-size: var(--fs-body); margin: 0 0 var(--space-4); }
.card__text:last-child { margin-bottom: 0; }
.card .btn--text { margin-top: auto; }
.card:hover, .card:focus-within { background: var(--surface-2); border-color: var(--gold); }
.card:hover .card__top, .card:focus-within .card__top {
  background-image: repeating-linear-gradient(90deg,
    var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 14px);
}

/* category card with photo */
.cat-grid {
  display: grid; gap: var(--gutter);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.cat-card {
  position: relative; display: block; background: var(--surface);
  border: 1px solid var(--line); overflow: hidden; min-height: 240px;
  color: var(--ink); text-decoration: none;
}
.cat-card__img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  filter: brightness(0.62);
  transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cat-card__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-4); background: rgba(22,17,15,0.74);
}
.cat-card__label h3 {
  font-family: var(--font-display); font-size: var(--fs-h3);
  color: var(--ink); margin: 0 0 var(--space-1);
}
.cat-card__label p { color: var(--muted); font-size: var(--fs-small); margin: 0; }
.cat-card:hover .cat-card__img, .cat-card:focus-visible .cat-card__img {
  filter: brightness(0.78); transform: scale(1.03);
}
.cat-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ==========================================================================
   Split feature row (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 img {
  width: 100%; height: 100%; max-height: 520px; object-fit: cover;
  border: 1px solid var(--line);
}
.feature__body .overline { display: block; margin-bottom: var(--space-3); color: var(--gold); }

/* ==========================================================================
   8. Menu component
   ========================================================================== */
.menu-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--line);
  overflow-x: auto; margin-bottom: var(--space-7);
  -webkit-overflow-scrolling: touch;
}
.menu-tab {
  min-height: 48px; padding: 0 var(--space-4);
  background: transparent; border: none; color: var(--muted);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  white-space: nowrap; cursor: pointer; border-bottom: 3px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.menu-tab:hover { color: var(--ink); }
.menu-tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--accent); }
.menu-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.menu-panel[hidden] { display: none; }

.menu-notes {
  color: var(--muted); font-size: var(--fs-small);
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  padding: var(--space-3) var(--space-4); margin: 0 0 var(--space-7);
  max-width: none;
}

.menu-cols { column-gap: var(--space-8); }
@media (min-width: 1080px) { .menu-cols { columns: 2; } .menu-cols .menu-group { break-inside: avoid; } }

.menu-group { margin-bottom: var(--space-7); }
.menu-group__title {
  font-family: var(--font-body); font-weight: 800;
  font-size: var(--fs-h4); color: var(--ink); text-transform: uppercase;
  letter-spacing: 0.06em; padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--line); margin: 0 0 var(--space-4);
}
.menu-item {
  display: grid; grid-template-columns: 1fr auto; column-gap: var(--space-4);
  padding: var(--space-3) 0; border-bottom: 1px solid var(--line);
}
.menu-item__name { font-weight: 700; color: var(--ink); font-size: 1.0625rem; }
.menu-item__desc {
  grid-column: 1 / 2; color: var(--muted);
  font-size: var(--fs-small); line-height: 1.5; margin: var(--space-1) 0 0; max-width: 60ch;
}
.menu-item__price {
  font-weight: 600; color: var(--gold);
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1;
  text-align: right; white-space: nowrap; align-self: start; font-size: 1.0625rem;
}
.menu-item__price--ask { color: var(--muted); font-weight: 400; font-size: var(--fs-small); }
.menu-tag {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.04em;
  color: var(--gold-deep); border: 1px solid var(--line); padding: 1px 6px;
  margin-left: var(--space-2); white-space: nowrap;
}
.menu-min { color: var(--faint); font-size: var(--fs-xs); font-weight: 600; }

.surcharge {
  color: var(--muted); font-size: var(--fs-xs); line-height: 1.5;
  border-top: 1px solid var(--line); padding-top: var(--space-4); margin-top: var(--space-6);
}
.surcharge strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   11. Credentials band
   ========================================================================== */
.creds {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gutter); margin: 0;
}
.creds__item { border-left: 3px solid var(--gold); padding-left: var(--space-4); }
.creds__item dt { font-family: var(--font-body); font-weight: 700; color: var(--ink); margin-bottom: var(--space-1); }
.creds__item dd { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* quote card (markup ready, used only with a real source) */
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--accent); padding: var(--space-6);
}
.quote__text {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-h3); color: var(--ink); line-height: 1.4; margin: 0;
}
.quote__cite {
  display: block; margin-top: var(--space-4); color: var(--muted);
  font-family: var(--font-body); font-size: var(--fs-small); font-style: normal;
}

/* ==========================================================================
   Gallery (home, real resized photos)
   ========================================================================== */
.gallery {
  display: grid; gap: var(--gutter);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery img {
  width: 100%; height: 100%; min-height: 260px; object-fit: cover;
  border: 1px solid var(--line); filter: brightness(0.86);
  transition: filter var(--dur) var(--ease);
}
.gallery a { display: block; overflow: hidden; }
.gallery a:hover img, .gallery a:focus-visible img { filter: brightness(1); }
.gallery a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.gallery .tall { grid-row: span 2; }

/* ==========================================================================
   Visit / info blocks
   ========================================================================== */
.info-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-8); align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: var(--space-3) 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .label { display: block; font-weight: 700; color: var(--ink); font-size: var(--fs-small); margin-bottom: 2px; }
.info-list .value { color: var(--muted); }
.info-list a { color: var(--accent-text); }
.info-list a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; max-width: 460px; }
.hours-table th, .hours-table td {
  text-align: left; padding: var(--space-3) 0; border-bottom: 1px solid var(--line);
  font-size: var(--fs-body);
}
.hours-table th { color: var(--ink); font-weight: 700; }
.hours-table td { color: var(--muted); font-variant-numeric: tabular-nums; }

.map-frame {
  width: 100%; height: 420px; border: 1px solid var(--line); display: block;
  background: var(--surface);
}

.note-box {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); padding: var(--space-5);
}
.note-box h4 { color: var(--ink); }
.note-box ul { color: var(--muted); margin: 0; }
.note-box li { margin-bottom: var(--space-2); }

/* ==========================================================================
   13. Forms
   ========================================================================== */
.form { max-width: 640px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { margin-bottom: var(--space-5); }
.field label {
  display: block; font-family: var(--font-body); font-weight: 600;
  color: var(--ink); margin-bottom: var(--space-2); font-size: var(--fs-small);
}
.field .req { color: var(--accent-text); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: var(--space-3) var(--space-4);
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-radius: 0;
  font-family: var(--font-body); font-size: 1rem;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold);
}
.field__help { color: var(--muted); font-size: var(--fs-xs); margin: var(--space-1) 0 0; }

/* ==========================================================================
   Pricing / set-menu lists
   ========================================================================== */
.set-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-3);
  border-bottom: 1px solid var(--line); padding-bottom: var(--space-3); margin-bottom: var(--space-5);
}
.set-head h3 { margin: 0; }
.set-price {
  font-family: var(--font-body); font-weight: 700; color: var(--gold);
  font-variant-numeric: tabular-nums; font-size: var(--fs-h4);
}
.set-meta { color: var(--muted); font-size: var(--fs-small); }
.plate-list { list-style: none; padding: 0; margin: 0; }
.plate-list li { padding: var(--space-3) 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.plate-list li strong { color: var(--ink); font-weight: 700; display: inline; }
.rules-list { color: var(--muted); }
.rules-list li { margin-bottom: var(--space-2); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: var(--space-5); }
.cta-band .btn-row { justify-content: center; }
.cta-band .or-call { color: var(--muted); margin-top: var(--space-4); }
.cta-band .or-call a { color: var(--accent-text); }
.cta-band .or-call a:hover { color: var(--gold); }

/* ==========================================================================
   12. Footer
   ========================================================================== */
.site-footer { background: var(--bg); color: var(--muted); margin-top: var(--space-9); }
.site-footer__noren {
  height: 16px;
  background-image: repeating-linear-gradient(90deg,
    var(--accent) 0, var(--accent) 10px, transparent 10px, transparent 16px,
    var(--accent) 16px, var(--accent) 38px, transparent 38px, transparent 44px);
  background-repeat: repeat-x;
}
.site-footer__cols {
  max-width: var(--maxw); margin: 0 auto;
  padding: var(--space-8) var(--space-5);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-7);
}
.site-footer__brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
  margin-bottom: var(--space-3);
}
.site-footer p { color: var(--muted); font-size: var(--fs-small); max-width: 36ch; }
.site-footer h4 { font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: var(--fs-h4); margin-bottom: var(--space-3); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a {
  color: var(--muted); text-decoration: none; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: color var(--dur-fast) var(--ease);
}
.site-footer a:hover { color: var(--gold); }
.site-footer a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.site-footer .addr { color: var(--muted); font-size: var(--fs-small); font-style: normal; line-height: 1.7; }
.site-footer__bottom {
  border-top: 1px solid var(--line); padding: var(--space-4) var(--space-5);
  text-align: center; color: var(--faint); font-size: var(--fs-xs);
}

/* ==========================================================================
   12.2 Sticky mobile action bar
   ========================================================================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; grid-template-columns: 1fr 1fr;
  background: var(--bg); border-top: 1px solid var(--line);
}
.mobile-bar a {
  min-height: 52px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; text-decoration: none;
  letter-spacing: 0.02em;
}
.mobile-bar .call { color: var(--ink); border-right: 1px solid var(--line); }
.mobile-bar .reserve { background: var(--accent); color: var(--ink-light); }

/* ==========================================================================
   Mobile nav panel
   ========================================================================== */
.mobile-nav {
  position: fixed; inset: var(--header-h-sm) 0 0 0; z-index: 90;
  background: var(--bg); border-top: 1px solid var(--line);
  display: flex; flex-direction: column; padding: var(--space-4);
  transform: translateY(-8px); opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { transform: none; opacity: 1; }
.mobile-nav a, .mobile-nav .btn {
  min-height: 48px; display: flex; align-items: center;
  font-size: 1.125rem; font-weight: 600; color: var(--ink);
  text-decoration: none;
}
.mobile-nav > a {
  border-bottom: 1px solid var(--line);
}
.mobile-nav .mobile-nav__cta { margin-top: var(--space-4); }
.mobile-nav .btn { width: 100%; }
.mobile-nav .btn + .btn { margin-top: var(--space-3); }

/* ==========================================================================
   Scroll-reveal (one effect, JS-driven, fully off under reduced motion)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(8px);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   16. Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  :root { --fs-display: 3.25rem; --fs-h1: 2.5rem; --fs-h2: 2rem; --fs-h3: 1.5rem; --fs-lead: 1.25rem; }
  .feature { gap: var(--space-6); }
  .info-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}

@media (max-width: 900px) {
  /* switch to mobile nav */
  .nav, .header-phone { display: none; }
  .nav-toggle, .header-call-icon { display: inline-flex; }
  .feature { grid-template-columns: 1fr; gap: var(--space-5); }
  .feature--reverse .feature__media { order: 0; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  :root {
    --fs-display: 2.5rem; --fs-h1: 2.125rem; --fs-h2: 1.75rem; --fs-h3: 1.375rem;
    --fs-h4: 1.125rem; --fs-body: 1rem; --fs-lead: 1.1875rem;
    --space-9: 48px; --header-h: 60px;
  }
  .site-footer__cols { grid-template-columns: 1fr; gap: var(--space-6); }
  .mobile-bar { display: grid; }
  body { padding-bottom: 52px; } /* clear the sticky mobile bar */
  .hero { min-height: 70vh; }
  .hero__inner { padding: var(--space-7) var(--space-4); }
  .menu-cols { columns: 1; }
}

@media (max-width: 480px) {
  :root { --fs-display: 2.125rem; --fs-h1: 1.875rem; --fs-h2: 1.5rem; --fs-h3: 1.25rem; --fs-h4: 1.0625rem; --fs-lead: 1.125rem; }
  .wrap { padding: 0 var(--space-4); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .tall { grid-row: span 1; }
  .creds { grid-template-columns: 1fr; }
}

/* ==========================================================================
   14. Motion, reduced-motion override
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cat-card:hover .cat-card__img, .cat-card:focus-visible .cat-card__img { transform: none; }
}
