/* ============================================================
   WOK N ROLL CHINESE RESTAURANT & BAR
   Shared stylesheet. Deep red, warm charcoal, ivory, muted gold,
   with restrained jade accents. Playfair Display + Work Sans.
   Author: Baha Connect IT Solutions
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Fonts */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Type scale */
  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.35rem;
  --text-2xl: 1.7rem;
  --text-3xl: 2.15rem;
  --text-4xl: 2.9rem;
  --text-5xl: 3.9rem;

  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.14;
  --leading-snug: 1.3;
  --leading-normal: 1.62;
  --leading-relaxed: 1.75;

  /* Weights */
  --w-regular: 400;
  --w-medium: 500;
  --w-semibold: 600;
  --w-bold: 700;
  --w-black: 800;

  /* Tracking */
  --track-tight: -0.02em;
  --track-normal: 0;
  --track-wide: 0.06em;
  --track-widest: 0.18em;

  /* Deep Chinese red scale (HSL) */
  --red-900: hsl(0 60% 15%);
  --red-800: hsl(0 63% 23%);
  --red-700: hsl(0 66% 32%);
  --red-600: hsl(0 68% 39%);
  --red-500: hsl(0 70% 45%);
  --red-400: hsl(3 66% 56%);
  --red-300: hsl(5 62% 70%);
  --red-100: hsl(6 52% 93%);

  /* Muted gold scale */
  --gold-700: hsl(40 52% 36%);
  --gold-600: hsl(41 56% 44%);
  --gold-500: hsl(42 60% 53%);
  --gold-400: hsl(43 66% 63%);
  --gold-300: hsl(44 70% 74%);
  --gold-100: hsl(45 62% 93%);

  /* Warm charcoal / ink scale (slightly saturated, never pure grey) */
  --ink-900: hsl(20 16% 6%);
  --ink-800: hsl(20 13% 9%);
  --ink-700: hsl(21 11% 13%);
  --ink-600: hsl(22 10% 19%);
  --ink-500: hsl(24 8% 28%);
  --ink-400: hsl(27 8% 42%);
  --ink-300: hsl(29 9% 58%);
  --ink-200: hsl(32 13% 78%);
  --ink-100: hsl(34 20% 89%);

  /* Ivory / cream surfaces */
  --ivory: hsl(38 44% 92%);
  --ivory-2: hsl(37 38% 87%);
  --cream: hsl(38 42% 96%);
  --cream-2: hsl(36 36% 93%);

  /* Jade accent (used sparingly) */
  --jade-600: hsl(158 32% 23%);
  --jade-500: hsl(158 30% 32%);
  --jade-300: hsl(156 26% 56%);

  /* Semantic text colours */
  --text-primary: var(--ink-900);
  --text-secondary: var(--ink-500);
  --text-tertiary: var(--ink-400);
  --on-dark-primary: var(--ivory);
  --on-dark-secondary: hsl(34 22% 75%);
  --on-dark-tertiary: hsl(33 15% 60%);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container: 1180px;
  --content: 680px;
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --gutter: clamp(1.15rem, 5vw, 2.5rem);

  /* Radius (elevation driven, one coherent scale) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 999px;

  /* Shadows (two-part, warm-tinted) */
  --shadow-xs: 0 1px 2px hsl(20 40% 4% / 0.10);
  --shadow-sm: 0 1px 4px hsl(20 40% 4% / 0.12), 0 1px 2px hsl(20 40% 4% / 0.10);
  --shadow-md: 0 6px 16px hsl(20 40% 4% / 0.14), 0 2px 5px hsl(20 40% 4% / 0.10);
  --shadow-lg: 0 16px 38px hsl(20 40% 4% / 0.20), 0 5px 10px hsl(20 40% 4% / 0.12);
  --shadow-xl: 0 28px 70px hsl(20 45% 3% / 0.32), 0 10px 20px hsl(20 40% 4% / 0.16);
  --shadow-gold: 0 0 0 1px hsl(42 60% 53% / 0.45);

  /* Header height */
  --header-h: 76px;
  --announce-h: 40px;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + var(--announce-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font-family: inherit; font-size: var(--text-base); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--track-tight);
  color: var(--text-primary);
}

p { line-height: var(--leading-normal); }

::selection { background: var(--red-600); color: var(--ivory); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--ink-900);
  color: var(--ivory);
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- 3. LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--cream); }
.section--cream-2 { background: var(--cream-2); }
.section--ivory { background: var(--ivory); }
.section--ink {
  background:
    radial-gradient(120% 90% at 15% 0%, hsl(0 45% 16% / 0.55), transparent 55%),
    var(--ink-900);
  color: var(--on-dark-primary);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--ivory); }

/* Fine "screen lattice" divider inspired by Chinese screens */
.lattice {
  height: 3px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold-500) 0, var(--gold-500) 10px,
    transparent 10px, transparent 20px);
  opacity: 0.5;
}

/* Section heading block */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--gold-700);
}
.section--ink .eyebrow { color: var(--gold-400); }
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.section-head { max-width: 640px; margin-bottom: var(--space-12); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
}
.section-head h2 { font-size: var(--text-3xl); margin-top: var(--space-3); }
.section-head p {
  margin-top: var(--space-4);
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 60ch;
}
.section--ink .section-head p { color: var(--on-dark-secondary); }
.section-head--center p { margin-inline: auto; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  transition: transform 0.12s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--red-600);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--red-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

.btn--gold {
  background: var(--gold-500);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: hsl(42 60% 53% / 0.6);
}
.btn--ghost:hover { border-color: var(--gold-400); background: hsl(42 60% 53% / 0.12); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--red-700);
  border-color: var(--red-600);
}
.btn--outline:hover { background: var(--red-600); color: var(--ivory); transform: translateY(-2px); }

.btn--lg { padding: 1rem 2rem; font-size: var(--text-base); min-height: 54px; }
.btn--block { width: 100%; }

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

/* Text link with animated underline */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--red-700);
  position: relative;
}
.link-more::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--gold-600);
  transition: width 0.25s ease;
}
.link-more:hover::after { width: 100%; }
.link-more svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.link-more:hover svg { transform: translateX(3px); }
.section--ink .link-more { color: var(--gold-400); }

/* ---------- 5. MOTION: reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-group.visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-group.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-group.visible > *:nth-child(8) { transition-delay: 0.56s; }

/* ---------- 6. ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--ink-900);
  color: var(--gold-300);
  font-size: var(--text-xs);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  text-align: center;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-6);
  position: relative;
  z-index: 60;
}
.announce span { display: inline-block; }
.announce .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red-500); }

/* ---------- 7. HEADER / NAV ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(38 42% 96% / 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(24 20% 82% / 0.7);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.header.scrolled {
  background: hsl(38 42% 96% / 0.97);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--red-600);
  color: var(--gold-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: var(--text-xl);
  box-shadow: inset 0 0 0 1px hsl(42 60% 53% / 0.5);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: var(--w-bold);
  font-size: var(--text-lg);
  letter-spacing: var(--track-tight);
  color: var(--ink-900);
}
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: var(--w-semibold);
}

.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__links { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-600);
  padding: var(--space-2) 0;
  transition: color 0.2s ease;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--red-700); }
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold-600);
  transition: width 0.25s ease;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__cta { display: inline-flex; align-items: center; gap: var(--space-3); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  position: relative;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; transform: translateY(-7px); }
.nav-toggle span::after { position: absolute; transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0;
  background: hsl(20 30% 4% / 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 45;
}
.nav-scrim.open { opacity: 1; visibility: visible; }

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}
.hero__bg {
  position: absolute; inset: -20% 0 -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, hsl(20 40% 4% / 0.86) 0%, hsl(20 40% 4% / 0.55) 55%, hsl(20 40% 4% / 0.35) 100%),
    radial-gradient(90% 120% at 100% 100%, hsl(0 50% 20% / 0.5), transparent 60%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 660px; padding-block: var(--space-16); }
.hero__eyebrow { color: var(--gold-400); }
.hero h1 {
  color: var(--ivory);
  font-size: var(--text-5xl);
  line-height: 1.02;
  margin: var(--space-4) 0 var(--space-6);
  text-shadow: 0 2px 24px hsl(20 40% 4% / 0.5);
}
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero__lede {
  font-size: var(--text-xl);
  color: var(--on-dark-secondary);
  max-width: 48ch;
  margin-bottom: var(--space-8);
}
.hero .btn-row { margin-bottom: var(--space-8); }
.hero__services {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid hsl(42 50% 60% / 0.25);
}
.hero__service {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--on-dark-secondary);
  font-weight: var(--w-medium);
}
.hero__service::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
}

/* steam motif */
.steam { position: absolute; z-index: 2; right: clamp(1rem, 8vw, 7rem); bottom: 12%; opacity: 0.5; }
.steam span {
  display: block; width: 4px; height: 60px; margin: 0 10px;
  background: linear-gradient(to top, transparent, hsl(38 44% 92% / 0.55), transparent);
  border-radius: 4px;
  animation: steamRise 4.5s ease-in-out infinite;
}
.steam { display: flex; }
.steam span:nth-child(2) { animation-delay: 0.9s; height: 78px; }
.steam span:nth-child(3) { animation-delay: 1.8s; height: 52px; }
@keyframes steamRise {
  0% { transform: translateY(14px) scaleY(0.8); opacity: 0; }
  30% { opacity: 0.7; }
  100% { transform: translateY(-30px) scaleY(1.2); opacity: 0; }
}

/* Page hero (interior pages) */
.pagehero {
  position: relative;
  color: var(--ivory);
  padding-block: clamp(3.5rem, 9vw, 6rem);
  background:
    linear-gradient(90deg, hsl(20 40% 5% / 0.9), hsl(20 40% 5% / 0.6)),
    var(--ink-800);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.pagehero .container { position: relative; z-index: 2; }
.pagehero h1 { color: var(--ivory); font-size: var(--text-4xl); margin-top: var(--space-3); }
.pagehero p { color: var(--on-dark-secondary); font-size: var(--text-lg); max-width: 58ch; margin-top: var(--space-4); }
.breadcrumb { font-size: var(--text-xs); letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--on-dark-tertiary); margin-bottom: var(--space-2); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- 9. FEATURED DISHES ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.dish-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
  border: 1px solid hsl(24 20% 84%);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-card__media img { transform: scale(1.06); }
.dish-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(20 40% 4% / 0.35), transparent 45%);
}
.dish-card__body { padding: var(--space-4) var(--space-4) var(--space-6); flex: 1; display: flex; flex-direction: column; }
.dish-card__name { font-size: var(--text-lg); font-family: var(--font-display); font-weight: var(--w-bold); }
.dish-card__desc { font-size: var(--text-sm); color: var(--text-secondary); margin-top: var(--space-2); flex: 1; }
.dish-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-4); }

/* spice + diet chips */
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.7rem; font-weight: var(--w-semibold);
  letter-spacing: var(--track-wide); text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-full);
}
.chip--spice { background: var(--red-100); color: var(--red-700); }
.chip--veg { background: hsl(156 40% 92%); color: var(--jade-600); }
.chip--chef { background: var(--gold-100); color: var(--gold-700); }
.chip--confirm { background: hsl(24 24% 90%); color: var(--ink-500); }
.chip--price { background: transparent; color: var(--red-700); font-family: var(--font-display); font-size: var(--text-base); padding: 0; letter-spacing: 0; text-transform: none; }
.spice-dots { display: inline-flex; gap: 2px; }
.spice-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--red-500); display: inline-block; }

/* ---------- 10. STORY SPLIT ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); width: 100%; }
.split__media .frame {
  position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  z-index: -1;
}
.split__body h2 { font-size: var(--text-3xl); margin: var(--space-3) 0 var(--space-4); }
.split__body p { color: var(--text-secondary); font-size: var(--text-lg); margin-bottom: var(--space-4); max-width: 56ch; }
.split--reverse .split__body p, .split--reverse .split__body h2 { }
.section--ink .split__body p { color: var(--on-dark-secondary); }
.feature-list { display: grid; gap: var(--space-3); margin: var(--space-6) 0 var(--space-8); }
.feature-list li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-base); }
.feature-list svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }

/* ---------- 11. MENU CATEGORY TILES ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.cat-tile {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-6);
  background: var(--ivory);
  border: 1px solid hsl(24 20% 84%);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 120px;
  justify-content: space-between;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.cat-tile__icon { width: 30px; height: 30px; color: var(--red-600); }
.cat-tile__name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--w-bold); }
.cat-tile__meta { font-size: var(--text-xs); letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--gold-700); }

/* ---------- 12. HAPPY HOUR ---------- */
.happy {
  background:
    linear-gradient(90deg, hsl(20 40% 5% / 0.94), hsl(20 40% 5% / 0.7)),
    var(--ink-800);
  background-size: cover; background-position: center;
  color: var(--ivory);
}
.happy__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.happy h2 { color: var(--ivory); font-size: var(--text-4xl); }
.happy__note { color: var(--on-dark-secondary); font-size: var(--text-lg); margin: var(--space-4) 0 var(--space-6); }
.specials { display: grid; gap: var(--space-4); }
.special-card {
  border: 1px solid hsl(42 50% 60% / 0.3);
  background: hsl(0 40% 10% / 0.35);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.special-card h3 { color: var(--gold-400); font-size: var(--text-xl); margin-bottom: var(--space-2); }
.special-card p { color: var(--on-dark-secondary); font-size: var(--text-sm); }
.tbc {
  display: inline-block; margin-top: var(--space-3);
  font-size: 0.68rem; letter-spacing: var(--track-wide); text-transform: uppercase;
  color: var(--gold-300); border: 1px dashed hsl(42 60% 60% / 0.5);
  padding: 3px 8px; border-radius: var(--radius-full);
}

/* ---------- 13. CATERING PROMO ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-8); }
.promo-item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--cream);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  font-weight: var(--w-medium);
}
.promo-item svg { width: 22px; height: 22px; color: var(--red-600); flex-shrink: 0; }

/* ---------- 14. GALLERY ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-8); }
.filter-btn {
  font-size: var(--text-sm); font-weight: var(--w-semibold);
  letter-spacing: var(--track-wide); text-transform: uppercase;
  padding: 0.6rem 1.2rem; min-height: 44px;
  border-radius: var(--radius-full);
  border: 1.5px solid hsl(24 20% 80%);
  color: var(--ink-600);
  background: var(--ivory);
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold-500); color: var(--red-700); }
.filter-btn[aria-pressed="true"] { background: var(--red-600); color: var(--ivory); border-color: var(--red-600); }

.masonry { columns: 3; column-gap: var(--space-4); }
.masonry__item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}
.masonry__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.masonry__item img { width: 100%; transition: transform 0.5s ease; }
.masonry__item:hover img { transform: scale(1.05); }
.masonry__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-6) var(--space-4) var(--space-3);
  background: linear-gradient(to top, hsl(20 40% 4% / 0.82), transparent);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: var(--text-base);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.masonry__item:hover .masonry__cap { opacity: 1; transform: translateY(0); }
.masonry__item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: hsl(20 40% 3% / 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-6);
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: min(92vw, 1000px); max-height: 82vh; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); }
.lightbox__cap { position: absolute; bottom: var(--space-8); left: 0; right: 0; text-align: center; color: var(--ivory); font-family: var(--font-display); font-size: var(--text-lg); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: hsl(42 60% 53% / 0.15); color: var(--ivory);
  display: grid; place-items: center;
  border: 1px solid hsl(42 60% 53% / 0.4);
  transition: background 0.2s ease;
}
.lightbox__btn:hover { background: hsl(42 60% 53% / 0.35); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__prev { left: var(--space-6); }
.lightbox__next { right: var(--space-6); }
.lightbox__close { top: var(--space-6); right: var(--space-6); transform: none; }

/* ---------- 15. LOCATION / CONTACT INFO ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.info-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(24 20% 84%);
}
.info-list { display: grid; gap: var(--space-6); }
.info-row { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-row__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-100); color: var(--red-700);
  border-radius: var(--radius-sm);
}
.info-row__icon svg { width: 22px; height: 22px; }
.info-row__label { font-size: var(--text-xs); letter-spacing: var(--track-widest); text-transform: uppercase; color: var(--text-tertiary); font-weight: var(--w-semibold); }
.info-row__value { font-size: var(--text-lg); font-weight: var(--w-medium); color: var(--text-primary); margin-top: 2px; }
.info-row__value a:hover { color: var(--red-700); }
.hours-line { display: flex; justify-content: space-between; gap: var(--space-6); padding: 6px 0; border-bottom: 1px dashed hsl(24 18% 82%); font-size: var(--text-base); }
.hours-line:last-child { border-bottom: none; }
.hours-line span:first-child { color: var(--text-secondary); }
.hours-line span:last-child { font-weight: var(--w-medium); }
.hours-line.closed span:last-child { color: var(--red-600); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(24 20% 84%);
  min-height: 380px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.9); }

/* ---------- 16. FORMS ---------- */
.form-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(24 20% 84%);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-6); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--text-sm); font-weight: var(--w-semibold); color: var(--ink-700); letter-spacing: var(--track-normal); }
.field .req { color: var(--red-600); }
.field input, .field textarea, .field select {
  padding: 0.8rem 1rem;
  border: 1.5px solid hsl(24 18% 80%);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px hsl(0 70% 45% / 0.14);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--red-500); }
.form-actions { margin-top: var(--space-8); display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.form-note { font-size: var(--text-sm); color: var(--text-tertiary); margin-top: var(--space-4); }
.form-success {
  display: none;
  align-items: flex-start; gap: var(--space-3);
  background: hsl(156 40% 94%);
  border: 1px solid var(--jade-300);
  color: var(--jade-600);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-top: var(--space-6);
}
.form-success.show { display: flex; }
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }
.form-success strong { display: block; font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: 2px; }

/* ---------- 17. MENU PAGE ---------- */
.menu-notice {
  display: flex; gap: var(--space-3); align-items: flex-start;
  background: var(--gold-100);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  color: var(--gold-700);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}
.menu-notice svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold-600); }

.menu-toolbar {
  position: sticky;
  top: calc(var(--header-h) + var(--announce-h));
  z-index: 30;
  background: hsl(38 42% 96% / 0.97);
  backdrop-filter: blur(8px);
  padding: var(--space-4) 0;
  border-bottom: 1px solid hsl(24 20% 84%);
  margin-bottom: var(--space-8);
}
.menu-search { position: relative; max-width: 460px; margin-inline: auto var(--space-4); margin-bottom: var(--space-4); }
.menu-search input { width: 100%; padding: 0.85rem 1rem 0.85rem 2.75rem; border-radius: var(--radius-full); border: 1.5px solid hsl(24 18% 80%); background: var(--ivory); }
.menu-search input:focus { outline: none; border-color: var(--red-500); box-shadow: 0 0 0 3px hsl(0 70% 45% / 0.14); }
.menu-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-400); }

.cat-nav { display: flex; gap: var(--space-2); overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.cat-nav::-webkit-scrollbar { height: 5px; }
.cat-nav::-webkit-scrollbar-thumb { background: hsl(24 18% 78%); border-radius: 4px; }
.cat-nav button {
  white-space: nowrap;
  font-size: var(--text-sm); font-weight: var(--w-semibold);
  letter-spacing: var(--track-wide); text-transform: uppercase;
  padding: 0.55rem 1rem; min-height: 42px;
  border-radius: var(--radius-full);
  color: var(--ink-600);
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  flex-shrink: 0;
}
.cat-nav button:hover { color: var(--red-700); }
.cat-nav button.active { background: var(--red-600); color: var(--ivory); }

.menu-category { margin-bottom: var(--space-16); scroll-margin-top: calc(var(--header-h) + var(--announce-h) + 130px); }
.menu-category__head { display: flex; align-items: baseline; gap: var(--space-4); margin-bottom: var(--space-6); padding-bottom: var(--space-3); border-bottom: 2px solid var(--gold-500); }
.menu-category__head h2 { font-size: var(--text-3xl); }
.menu-category__head .count { font-size: var(--text-sm); color: var(--text-tertiary); }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-12); }
.menu-item {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding-bottom: var(--space-4);
  border-bottom: 1px dashed hsl(24 18% 84%);
}
.menu-item__body { flex: 1; }
.menu-item__top { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); }
.menu-item__name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--w-bold); }
.menu-item__leader { flex: 1; border-bottom: 1px dotted hsl(24 18% 72%); transform: translateY(-4px); min-width: 20px; }
.menu-item__desc { font-size: var(--text-sm); color: var(--text-secondary); margin-top: 4px; max-width: 52ch; }
.menu-item__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--space-2); }
.menu-item.is-hidden { display: none; }
.menu-empty { text-align: center; color: var(--text-tertiary); padding: var(--space-16) 0; font-size: var(--text-lg); }

.menu-disclaimer {
  text-align: center; max-width: 60ch; margin: var(--space-16) auto 0;
  color: var(--text-tertiary); font-size: var(--text-sm);
  padding-top: var(--space-8); border-top: 1px solid hsl(24 18% 84%);
}

/* ---------- 18. ABOUT extras ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-top: var(--space-12); }
.stat { text-align: center; padding: var(--space-6); }
.stat__num { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: var(--w-bold); color: var(--red-700); line-height: 1; }
.section--ink .stat__num { color: var(--gold-400); }
.stat__label { font-size: var(--text-sm); letter-spacing: var(--track-wide); text-transform: uppercase; color: var(--text-secondary); margin-top: var(--space-2); }
.section--ink .stat__label { color: var(--on-dark-secondary); }

/* ---------- 19. FOOTER ---------- */
.footer { background: var(--ink-900); color: var(--on-dark-secondary); padding-top: var(--space-24); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-12); padding-bottom: var(--space-16); }
.footer__brand .brand__name { color: var(--ivory); }
.footer__desc { margin-top: var(--space-4); font-size: var(--text-sm); max-width: 34ch; color: var(--on-dark-tertiary); }
.footer h4 { color: var(--gold-400); font-size: var(--text-sm); letter-spacing: var(--track-wide); text-transform: uppercase; margin-bottom: var(--space-4); font-family: var(--font-body); }
.footer__links { display: grid; gap: var(--space-3); }
.footer__links a { font-size: var(--text-sm); color: var(--on-dark-secondary); transition: color 0.2s ease; }
.footer__links a:hover { color: var(--gold-400); }
.footer__contact { display: grid; gap: var(--space-3); font-size: var(--text-sm); }
.footer__contact a:hover { color: var(--gold-400); }
.social { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-4); }
.social a { width: 40px; height: 40px; border-radius: var(--radius-sm); display: grid; place-items: center; background: hsl(0 0% 100% / 0.06); transition: background 0.2s ease; }
.social a:hover { background: var(--red-600); color: var(--ivory); }
.social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid hsl(0 0% 100% / 0.1); padding: var(--space-6) 0; display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between; font-size: var(--text-xs); color: var(--on-dark-tertiary); }
.footer__bottom a:hover { color: var(--gold-400); }

/* ---------- 20. MOBILE ACTION BAR ---------- */
.action-bar { display: none; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --text-5xl: 2.9rem; --text-4xl: 2.3rem; --text-3xl: 1.85rem; }

  .nav__links, .nav__cta .btn--gold { display: none; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(84vw, 340px);
    background: var(--cream);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 1.5rem) var(--space-8) var(--space-8);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 55;
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__link { padding: var(--space-4) 0; font-size: var(--text-lg); border-bottom: 1px solid hsl(24 18% 85%); }
  .nav__link::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; width: 100%; margin-top: var(--space-6); }
  .nav__cta .btn { display: inline-flex; }

  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .split--reverse .split__media { order: 0; }
  .split__media .frame { inset: 10px -10px -10px 10px; }
  .happy__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .location-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; gap: var(--space-4); }
  .masonry { columns: 2; }
  .stat-row { grid-template-columns: 1fr; gap: var(--space-3); }
  .menu-search { margin-right: 0; }

  /* Mobile fixed action bar */
  .action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 40;
    background: var(--ink-900);
    border-top: 1px solid hsl(42 50% 50% / 0.3);
    box-shadow: 0 -6px 20px hsl(20 40% 4% / 0.3);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .action-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: var(--space-3) var(--space-2);
    color: var(--ivory);
    font-size: 0.68rem; letter-spacing: var(--track-wide); text-transform: uppercase; font-weight: var(--w-semibold);
    min-height: 58px;
    transition: background 0.2s ease;
  }
  .action-bar a:active { background: hsl(0 0% 100% / 0.08); }
  .action-bar a + a { border-left: 1px solid hsl(42 50% 50% / 0.2); }
  .action-bar a.primary { background: var(--red-600); }
  .action-bar svg { width: 20px; height: 20px; color: var(--gold-400); }
  .action-bar a.primary svg { color: var(--ivory); }

  body.has-action-bar { padding-bottom: 66px; }
  .footer { margin-bottom: 66px; }
}

@media (max-width: 520px) {
  .dish-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero__content { padding-block: var(--space-12); }
  .btn-row .btn { width: 100%; }
}

/* ---------- 22. PARALLAX / REDUCED MOTION ---------- */
@media (max-width: 860px) {
  .hero__bg { transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  * , *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .hero__bg { transform: none !important; }
  .steam { display: none; }
}

/* Utility */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.hidden { display: none !important; }
.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;
}
