/* ============================================================
   The Red Roof — themed on VoltAgent Design System
   Keeps DS DNA: dark canvas, hairline elevation (no material
   shadows), Inter + JetBrains Mono, tight radii, 4px spacing.
   Swaps the single accent from electric-green to brand RED + GOLD.
   ============================================================ */

:root {
  /* Brand accents (override DS green) */
  --rr-red: #e21d2b;
  --rr-red-soft: #ff3b48;
  --rr-red-deep: #a8121c;
  --rr-gold: #f4b223;
  --rr-gold-soft: #ffcb52;
  --rr-gold-deep: #c4880a;

  /* Re-point DS accent aliases to the brand */
  --color-primary: var(--rr-red);
  --accent: var(--rr-red);
  --border-emphasis: var(--rr-gold);
  --link-color: var(--rr-gold-soft);

  /* Slightly warmer near-black than DS default */
  --rr-canvas: #0c0a0a;
  --rr-canvas-soft: #161311;
  --rr-canvas-card: #141110;
  --rr-hairline: #322b29;
  --rr-hairline-soft: #4a403c;

  --nav-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--rr-canvas);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-feature-settings: var(--font-features);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* warm ambient glow on the canvas */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(226, 29, 43, 0.16), transparent 60%),
    radial-gradient(900px 600px at 8% 108%, rgba(244, 178, 35, 0.07), transparent 60%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- Typography helpers ---------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--rr-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--rr-gold-deep);
  display: inline-block;
}
.display {
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -1.6px;
  font-weight: 700;
  margin: 0;
  color: var(--color-ink-strong);
  text-wrap: balance;
}
.display .accent { color: var(--rr-red-soft); }
.display .gold { color: var(--rr-gold); }
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -1px;
  font-weight: 700;
  margin: 0;
  color: var(--color-ink-strong);
  text-wrap: balance;
}
.lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--color-body);
  max-width: 56ch;
  margin: 0;
}
.muted { color: var(--color-mute); }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(12, 10, 10, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.nav.scrolled {
  background: rgba(10, 8, 8, 0.9);
  border-bottom: 1px solid var(--rr-hairline);
}
.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-right: auto;
  text-decoration: none;
}
.brand img {
  height: 44px;
  width: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1px solid var(--rr-hairline-soft);
}
.brand .bt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .bt b {
  font-size: 16px;
  letter-spacing: .2px;
  color: var(--color-ink-strong);
}
.brand .bt span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--rr-gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-body);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--color-ink-strong); }
.nav-link.active { color: var(--color-ink-strong); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--rr-red-soft);
}

/* ---------------- Buttons ---------------- */
.btn {
  appearance: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--rr-red);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}
.btn-primary:hover {
  background: var(--rr-red-soft);
  box-shadow: 0 8px 26px -12px rgba(226,29,43,.9);
}
.btn-gold {
  background: var(--rr-gold);
  color: #1a1208;
}
.btn-gold:hover { background: var(--rr-gold-soft); }
.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--rr-hairline-soft);
}
.btn-ghost:hover {
  border-color: var(--rr-gold);
  color: #fff;
}
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn .wa { width: 18px; height: 18px; }

/* ---------------- Pills / tags ---------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rr-hairline-soft);
  color: var(--rr-gold);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #41d17a;
  box-shadow: 0 0 8px #41d17a;
}

/* ---------------- Pages ----------------
   Each page is now a real URL rendered by PHP; the layout wraps
   page content in <main class="main-{page}">. */
main {
  display: block;
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
  max-width: 720px;
}

.dashed {
  border: 0;
  border-top: 1px dashed var(--color-dashed);
  margin: 0;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12,10,10,.92) 0%, rgba(12,10,10,.6) 42%, rgba(12,10,10,.15) 100%),
    linear-gradient(0deg, rgba(12,10,10,.95) 0%, transparent 40%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 60px 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hero-stat b {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-ink-strong);
  letter-spacing: -.5px;
}
.hero-stat span {
  display: block;
  font-size: 13px;
  color: var(--color-mute);
  margin-top: 3px;
}
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint .line {
  width: 1px; height: 30px;
  background: linear-gradient(var(--rr-gold), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------------- Feature strip ---------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  border: 1px solid var(--rr-hairline);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--rr-canvas-card), #100d0c);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s ease, transform .25s ease;
}
.feature:hover { border-color: var(--rr-hairline-soft); transform: translateY(-3px); }
.feature .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rr-hairline-soft);
  color: var(--rr-gold);
}
.feature h3 { margin: 0; font-size: 19px; font-weight: 600; color: var(--color-ink-strong); }
.feature p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--color-body); }

/* ---------------- Food cards (popular) ---------------- */
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.food-card {
  border: 1px solid var(--rr-hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--rr-canvas-card);
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.food-card:hover { border-color: var(--rr-gold-deep); transform: translateY(-4px); }
.food-card .ph {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.food-card .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.food-card:hover .ph img { transform: scale(1.06); }
.food-card .ph .tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--rr-red);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}
.food-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.food-card .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.food-card h3 { margin: 0; font-size: 19px; font-weight: 600; color: var(--color-ink-strong); }
.food-card .price { font-family: var(--font-mono); font-size: 17px; font-weight: 700; color: var(--rr-gold); white-space: nowrap; }
.food-card p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--color-body); flex: 1; }

/* ---------------- Promo band ---------------- */
.promo {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--rr-hairline-soft);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(168,18,28,.5), rgba(12,10,10,.2)),
    var(--rr-canvas-soft);
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.promo::after {
  content: "";
  position: absolute;
  right: -40px; top: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(244,178,35,.18), transparent 65%);
  pointer-events: none;
}
.promo .big {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
  color: #fff;
  line-height: 1.05;
}
.promo .big em { font-style: normal; color: var(--rr-gold); }

/* ---------------- Menu page ---------------- */
.menu-layout { display: grid; grid-template-columns: 1fr; gap: 0; }
.cat-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px 0;
  background: rgba(12,10,10,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rr-hairline);
  margin-bottom: 40px;
}
.cat-chip {
  appearance: none;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--rr-hairline-soft);
  color: var(--color-body);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
}
.cat-chip:hover { color: #fff; border-color: var(--rr-gold); }
.cat-chip.active { background: var(--rr-gold); color: #1a1208; border-color: var(--rr-gold); }

.menu-cat { margin-bottom: 56px; scroll-margin-top: 150px; }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.menu-cat-head h2 { margin: 0; font-size: 26px; font-weight: 700; letter-spacing: -.5px; color: var(--color-ink-strong); }
.menu-cat-head .line { flex: 1; height: 1px; background: var(--rr-hairline); }
.menu-cat-head .count { font-family: var(--font-mono); font-size: 12px; color: var(--color-mute); }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.menu-item {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--rr-hairline);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--rr-canvas-card);
  transition: border-color .2s ease, background .2s ease;
}
.menu-item:hover { border-color: var(--rr-hairline-soft); background: #181412; }
.menu-item .thumb {
  width: 78px; height: 78px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--rr-hairline);
}
.menu-item .thumb.noimg {
  display: grid; place-items: center;
  background: linear-gradient(135deg, #1d1715, #120f0e);
  color: var(--rr-gold-deep);
}
.menu-item .mi-main { flex: 1; min-width: 0; }
.menu-item .mi-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.menu-item h4 { margin: 0; font-size: 16px; font-weight: 600; color: var(--color-ink-strong); }
.menu-item .mi-price { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--rr-gold); white-space: nowrap; }
.menu-item p { margin: 5px 0 0; font-size: 13px; line-height: 1.45; color: var(--color-mute); }
.menu-item .add {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rr-hairline-soft);
  background: transparent;
  color: var(--rr-gold);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .15s ease;
}
.menu-item .add:hover { background: var(--rr-red); border-color: var(--rr-red); color: #fff; }

/* ---------------- Order tray ---------------- */
.tray {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #15110f;
  border: 1px solid var(--rr-hairline-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px -20px rgba(0,0,0,.85);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  overflow: hidden;
}
.tray.open { transform: none; opacity: 1; }
.tray-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--rr-hairline);
}
.tray-head b { font-size: 15px; color: #fff; }
.tray-head .x { background: none; border: 0; color: var(--color-mute); cursor: pointer; font-size: 20px; line-height: 1; }
.tray-items { max-height: 38vh; overflow-y: auto; padding: 8px; }
.tray-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; }
.tray-row .nm { flex: 1; font-size: 14px; color: var(--color-ink); }
.tray-row .qty { display: flex; align-items: center; gap: 8px; }
.tray-row .qty button {
  width: 24px; height: 24px; border-radius: 5px;
  border: 1px solid var(--rr-hairline-soft);
  background: transparent; color: var(--color-ink); cursor: pointer; font-size: 14px;
}
.tray-row .qty span { font-family: var(--font-mono); font-size: 13px; min-width: 16px; text-align: center; }
.tray-foot { padding: 14px 18px 18px; border-top: 1px solid var(--rr-hairline); }
.tray-total { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.tray-total b { font-family: var(--font-mono); color: var(--rr-gold); font-size: 16px; }
.tray-empty { padding: 30px 18px; text-align: center; color: var(--color-mute); font-size: 13.5px; }

.tray-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 80;
  display: flex; align-items: center; gap: 10px;
  background: var(--rr-red);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 40px -12px rgba(226,29,43,.8);
  transition: transform .15s ease, background .2s ease;
}
.tray-fab:hover { background: var(--rr-red-soft); transform: translateY(-2px); }
.tray-fab .badge {
  background: var(--rr-gold); color: #1a1208;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
}

/* ---------------- About ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rr-hairline-soft);
  position: relative;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { display: flex; flex-direction: column; gap: 22px; }
.about-copy p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--color-body); }
.value-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.value {
  border: 1px solid var(--rr-hairline);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.value b { display: block; font-size: 15px; color: #fff; margin-bottom: 5px; }
.value span { font-size: 13px; color: var(--color-mute); line-height: 1.45; }

/* ---------------- Gallery ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gtile {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rr-hairline);
  position: relative;
}
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gtile:hover img { transform: scale(1.07); }
.gtile.tall { grid-row: span 2; }
.gtile.wide { grid-column: span 2; }
.gtile .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(8,6,6,.9), transparent);
  font-size: 13px; font-weight: 600; color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: all .3s ease;
}
.gtile:hover .cap { opacity: 1; transform: none; }

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  border: 1px solid var(--rr-hairline);
  border-radius: var(--radius-md);
  padding: 30px;
  background: var(--rr-canvas-card);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rr-hairline-soft);
  display: grid; place-items: center;
  color: var(--rr-gold);
}
.contact-row .ct b { display: block; font-size: 15px; color: #fff; margin-bottom: 3px; }
.contact-row .ct span, .contact-row .ct a { font-size: 14px; color: var(--color-body); line-height: 1.5; }
.contact-row .ct a:hover { color: var(--rr-gold); }

.hours-table { display: flex; flex-direction: column; gap: 2px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 11px 4px;
  border-bottom: 1px dashed var(--color-dashed);
  font-size: 14.5px;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: var(--color-ink); font-weight: 500; }
.hours-row .hrs { font-family: var(--font-mono); font-size: 13px; color: var(--color-body); }
.hours-row.closed .hrs { color: var(--rr-red-soft); }
.hours-row.today { background: rgba(244,178,35,.06); border-radius: 4px; padding-left: 10px; padding-right: 10px; }
.hours-row.today .day::after { content: " · Today"; color: var(--rr-gold); font-size: 11px; font-weight: 600; }

/* ---------------- Footer ---------------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--rr-hairline);
  background: #0a0808;
  padding: 56px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand { max-width: 320px; display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 56px; width: 56px; border-radius: 50%; border: 1px solid var(--rr-hairline-soft); }
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--color-mute); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--rr-gold);
}
.footer-col button, .footer-col a {
  display: block; background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  font-size: 14px; color: var(--color-body); padding: 6px 0;
  transition: color .15s ease;
}
.footer-col button:hover, .footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--rr-hairline);
  font-size: 13px; color: var(--color-mute);
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce), print {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: #fff; padding: 8px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 940px) {
  .feature-grid, .food-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gtile.wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .container, .nav-inner { padding: 0 20px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(10,8,8,.97);
    border-bottom: 1px solid var(--rr-hairline);
    padding: 12px 16px 18px;
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: none; }
  .nav-link { padding: 13px 12px; font-size: 16px; }
  .nav-link.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav .btn-primary.nav-order { display: none; }
  .section { padding: 60px 0; }
  .hero-content { padding: 36px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .promo { padding: 32px 26px; }
}