/* ==========================================================================
   RESTAURANT MANSOORAH — Design System
   "Night Fire on Colombo Road"
   Soorangal 05, Kinniya · Since 2017
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   Palette lifted from the storefront sign: charcoal night, ember orange
   flame, golden sign-letters, crimson badge, warm cream.
   -------------------------------------------------------------------------- */
:root {
  /* Ink — the night */
  --ink-000: #070605;
  --ink-100: #0b0a09;
  --ink-200: #121010;
  --ink-300: #1a1716;
  --ink-400: #242020;
  --ink-500: #332d2b;

  /* Fire — the sign */
  --ember: #ff5a1f;
  --ember-soft: #ff7a45;
  --flame: #ff8f00;
  --gold: #ffc93c;
  --gold-deep: #e8a417;
  --crimson: #c1121f;
  --crimson-deep: #8d0c17;

  /* Light */
  --cream: #f7f1e8;
  --cream-dim: #ded5c8;
  --muted: #9c928a;
  --muted-dim: #6e655f;

  /* Semantic */
  --bg: var(--ink-100);
  --surface: var(--ink-200);
  --surface-2: var(--ink-300);
  --line: rgba(247, 241, 232, 0.11);
  --line-strong: rgba(247, 241, 232, 0.2);
  --text: var(--cream);
  --text-2: var(--muted);

  /* Type */
  --font-display: "Instrument Serif", "Playfair Display", Georgia, serif;
  --font-sans: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* Fluid scale */
  --step--2: clamp(0.69rem, 0.67rem + 0.11vw, 0.75rem);
  --step--1: clamp(0.83rem, 0.79rem + 0.19vw, 0.94rem);
  --step-0: clamp(1rem, 0.95rem + 0.24vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.11rem + 0.43vw, 1.44rem);
  --step-2: clamp(1.44rem, 1.3rem + 0.7vw, 1.94rem);
  --step-3: clamp(1.73rem, 1.5rem + 1.13vw, 2.55rem);
  --step-4: clamp(2.07rem, 1.72rem + 1.76vw, 3.35rem);
  --step-5: clamp(2.49rem, 1.94rem + 2.71vw, 4.42rem);
  --step-6: clamp(2.99rem, 2.17rem + 4.09vw, 5.82rem);
  --step-7: clamp(3.58rem, 2.36rem + 6.1vw, 7.65rem);

  /* Space */
  --gap: clamp(1rem, 0.7rem + 1.5vw, 2rem);
  --pad-x: clamp(1.15rem, 0.4rem + 3.4vw, 4.5rem);
  --section-y: clamp(4rem, 2.4rem + 6.4vw, 8rem);
  --shell: 1360px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.6s;

  /* Radii */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 14px;

  --nav-h: 76px;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--ember);
  color: var(--ink-000);
}

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

/* Grain — the film-stock warmth of a night photograph */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY PRIMITIVES
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.display em {
  font-style: italic;
  color: var(--gold);
}

.d-1 { font-size: var(--step-7); }
.d-2 { font-size: var(--step-6); }
.d-3 { font-size: var(--step-5); }
.d-4 { font-size: var(--step-4); }
.d-5 { font-size: var(--step-3); }

/* Micro-label — the editorial tag that opens every block */
.tag {
  font-family: var(--font-sans);
  font-size: var(--step--2);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  line-height: 1;
}

.tag::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.tag--plain::before { display: none; }
.tag--gold { color: var(--gold); }
.tag--muted { color: var(--muted); }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 54ch;
  text-wrap: pretty;
}

.body-2 {
  color: var(--text-2);
  max-width: 62ch;
  text-wrap: pretty;
}

/* Editorial index numeral — 01 / 07 */
.numeral {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--ink-500);
  font-feature-settings: "tnum";
}

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.shell {
  width: min(100% - (var(--pad-x) * 2), var(--shell));
  margin-inline: auto;
}

.shell--wide {
  width: min(100% - (var(--pad-x) * 2), 1600px);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tight { padding-block: clamp(2.25rem, 1.1rem + 3.2vw, 3.75rem); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: end;
  }
}

.section-head__title { margin-top: 1rem; }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  width: 100%;
}

/* A rule with a live ember travelling along it */
.rule--ember {
  position: relative;
  overflow: hidden;
}

.rule--ember::after {
  content: "";
  position: absolute;
  inset-block: -1px;
  width: 90px;
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  animation: travel 6s linear infinite;
}

@keyframes travel {
  from { left: -90px; }
  to { left: 100%; }
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 0.95em 1.7em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 100px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
  will-change: transform;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, var(--ember), var(--flame) 55%, var(--gold));
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  color: var(--ink-000);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before { transform: translateY(0); }

.btn__arrow {
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--fire {
  --btn-bg: linear-gradient(100deg, var(--ember), var(--flame) 60%, var(--gold));
  --btn-fg: var(--ink-000);
  --btn-bd: transparent;
  box-shadow: 0 12px 40px -14px rgba(255, 90, 31, 0.75);
}

.btn--fire::before {
  background: var(--cream);
}

.btn--fire:hover,
.btn--fire:focus-visible { color: var(--ink-000); }

.btn--ghost { --btn-fg: var(--cream-dim); }

.btn--sm { padding: 0.7em 1.25em; font-size: var(--step--2); }

/* Text link with an underline that draws in */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.45s var(--ease), color 0.3s var(--ease);
}

.tlink:hover,
.tlink:focus-visible {
  background-size: 100% 1px;
  color: var(--ember-soft);
}

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(11, 10, 9, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: min(100% - (var(--pad-x) * 2), 1600px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

/* Wordmark — rebuilt from the storefront badge */
.mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.mark__flame {
  width: 26px;
  height: 32px;
  flex: none;
  filter: drop-shadow(0 0 10px rgba(255, 90, 31, 0.55));
}

.mark__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.mark__top {
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.mark__name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  letter-spacing: 0.005em;
  color: var(--cream);
  line-height: 1.05;
}

.mark:hover .mark__name { color: var(--gold); }
.mark__name,
.mark__top { transition: color 0.3s var(--ease); }

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
}

@media (min-width: 1020px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-size: var(--step--2);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-block: 6px;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--ember);
  transition: width 0.4s var(--ease);
}

.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.nav__link[aria-current="page"] { color: var(--gold); }
.nav__link[aria-current="page"]::after {
  width: 100%;
  background: var(--gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Neon "open" pip — mirrors the sign that switches on at 11 AM */
.status {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step--2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  white-space: nowrap;
}

@media (min-width: 700px) { .status { display: inline-flex; } }

.status__pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-dim);
  flex: none;
}

.status.is-open { color: var(--cream); border-color: rgba(120, 220, 130, 0.3); }
.status.is-open .status__pip {
  background: #56d364;
  box-shadow: 0 0 0 0 rgba(86, 211, 100, 0.6);
  animation: pulse 2.4s infinite;
}

.status.is-closed .status__pip { background: var(--crimson); }

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(86, 211, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(86, 211, 100, 0); }
}

/* Burger */
.burger {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex: none;
}

@media (min-width: 1020px) { .burger { display: none; } }

.burger__box {
  width: 18px;
  height: 12px;
  position: relative;
}

.burger__box span {
  position: absolute;
  left: 0;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease);
}

.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 5px; }
.burger__box span:nth-child(3) { top: 10px; }

body.menu-open .burger__box span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .burger__box span:nth-child(2) { opacity: 0; }
body.menu-open .burger__box span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Narrow screens: the wordmark, CTA and burger stop fitting on one row.
   The drawer and the floating call button already carry the same actions. */
@media (max-width: 619px) {
  .nav__actions .btn { display: none; }
}

@media (max-width: 400px) {
  .mark__flame { width: 22px; height: 27px; }
  .mark__top { letter-spacing: 0.18em; font-size: 0.5rem; }
  .mark__name { font-size: 1.2rem; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--ink-000);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--pad-x) 2rem;
  clip-path: circle(0% at calc(100% - 46px) 38px);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
  overflow-y: auto;
}

body.menu-open .drawer {
  clip-path: circle(150% at calc(100% - 46px) 38px);
  visibility: visible;
}

.drawer__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 80% 20%,
    rgba(255, 90, 31, 0.16),
    transparent 70%
  );
  pointer-events: none;
}

.drawer__list { position: relative; }

.drawer__item {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(24px);
}

body.menu-open .drawer__item {
  animation: drawerIn 0.6s var(--ease) forwards;
  animation-delay: calc(0.18s + var(--i) * 0.06s);
}

@keyframes drawerIn {
  to { opacity: 1; transform: none; }
}

.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: clamp(0.7rem, 2.2vw, 1.15rem);
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--cream);
  transition: color 0.3s var(--ease), padding-left 0.4s var(--ease);
}

.drawer__link:hover,
.drawer__link[aria-current="page"] { color: var(--gold); padding-left: 0.5rem; }

.drawer__num {
  font-family: var(--font-sans);
  font-size: var(--step--2);
  letter-spacing: 0.2em;
  color: var(--ember);
}

.drawer__foot {
  position: relative;
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  opacity: 0;
}

body.menu-open .drawer__foot {
  animation: drawerIn 0.6s var(--ease) 0.55s forwards;
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroDrift 26s var(--ease-in-out) infinite alternate;
}

@keyframes heroDrift {
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 72% 45%, rgba(255, 90, 31, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.86) 0%, rgba(7, 6, 5, 0.42) 32%, rgba(7, 6, 5, 0.9) 78%, var(--ink-100) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.92) 0%, rgba(7, 6, 5, 0.35) 62%, transparent 100%);
}

/* Ember particle canvas */
.hero__embers {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 1020px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    align-items: end;
  }
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
  margin-bottom: clamp(1.1rem, 3vw, 1.9rem);
}

.hero__title {
  font-size: var(--step-7);
  margin-bottom: clamp(1.2rem, 3vw, 1.9rem);
  max-width: 15ch;
}

.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }

.hero__lede { max-width: 46ch; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.7rem, 3.5vw, 2.6rem);
}

/* Right-hand facts panel — the "reception card" */
.hero__card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(11, 10, 9, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: grid;
  gap: 1rem;
}

.hero__card dl {
  display: grid;
  gap: 0.85rem;
}

.hero__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.hero__row:last-of-type { border-bottom: 0; padding-bottom: 0; }

.hero__row dt {
  font-size: var(--step--2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
  white-space: nowrap;
}

.hero__row dd {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--cream);
  text-align: right;
}

.hero__row dd .accent { color: var(--gold); }

/* Scroll cue */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--2);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

@media (min-width: 1240px) { .hero__cue { display: flex; } }

.hero__cue span {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--ember), transparent);
}

/* Compact page hero for interior pages */
.phero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(4rem, 9vw, 8rem));
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.phero__media { position: absolute; inset: 0; z-index: -2; }

.phero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.phero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 90% at 85% 10%, rgba(255, 90, 31, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.9), rgba(7, 6, 5, 0.72) 45%, var(--ink-100) 100%);
}

.phero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }

@media (min-width: 980px) {
  .phero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
  }
}

.phero__title { margin-block: 1rem 0; }

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--muted-dim); }

/* --------------------------------------------------------------------------
   9. STAT BAR
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}

@media (min-width: 860px) {
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
}

.stat:hover { background: var(--surface-2); }

@media (min-width: 860px) {
  .stat { border-bottom: 0; }
  .stat:last-child { border-right: 0; }
}

@media (max-width: 859px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n + 3) { border-bottom: 0; }
}

.stat__value {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}

.stat__value sup {
  font-family: var(--font-sans);
  font-size: 0.36em;
  color: var(--ember);
  font-weight: 600;
  top: -0.9em;
}

.stat__label {
  margin-top: 0.7rem;
  font-size: var(--step--2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

/* --------------------------------------------------------------------------
   10. SIGNATURE GRID
   Was a horizontal scroll rail. Everything now stacks downward — the first
   card is featured across two columns so seven cards fill two clean rows.
   -------------------------------------------------------------------------- */
.dishes {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 680px) {
  .dishes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dishes > :first-child { grid-column: span 2; }
  .dishes > :first-child .dish__media { aspect-ratio: 2.2 / 1; }
}

@media (min-width: 1100px) {
  .dishes { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  /* The feature is two columns plus one gap wide, so this ratio lands its
     image exactly as tall as the 4:3 images beside it and the whole row of
     titles sits on one line. */
  .dishes > :first-child .dish__media { aspect-ratio: 2.8 / 1; }
  .dishes > :first-child .dish__name { font-size: var(--step-3); }
}

/* Dish card */
.dish {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dish:hover { border-color: rgba(255, 90, 31, 0.45); }

.dish__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: calc(var(--r-lg) - 1px) calc(var(--r-lg) - 1px) 0 0;
  background: var(--ink-300);
}

.dish__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
  filter: saturate(1.02);
}

.dish:hover .dish__media img { transform: scale(1.07); filter: saturate(1.15); }

.dish__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 6, 5, 0.85));
}

.dish__index {
  position: absolute;
  top: 0.9rem;
  left: 1.1rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.dish__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4em 0.75em;
  border-radius: 100px;
  background: var(--crimson);
  color: var(--cream);
}

.dish__badge--gold { background: var(--gold); color: var(--ink-000); }
.dish__badge--ember { background: var(--ember); color: var(--ink-000); }

.dish__body {
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  transform-style: preserve-3d;
}

.dish__name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.08;
  color: var(--cream);
}

.dish__desc {
  font-size: var(--step--1);
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

.dish__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.dish__price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--gold);
  white-space: nowrap;
}

.dish__price small {
  font-family: var(--font-sans);
  font-size: 0.58em;
  color: var(--muted-dim);
  letter-spacing: 0.1em;
  margin-right: 0.35em;
}

/* Heat meter — the "HOT & SPICY" mark, quantified */
.heat {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.heat__pip {
  width: 5px;
  height: 14px;
  border-radius: 2px;
  background: var(--ink-500);
  transition: background 0.3s var(--ease);
}

.heat__pip.is-on {
  background: linear-gradient(var(--gold), var(--ember));
  box-shadow: 0 0 8px -1px rgba(255, 90, 31, 0.7);
}

.heat__label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-left: 0.4rem;
}

/* --------------------------------------------------------------------------
   11. EDITORIAL SPLIT (image + text)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 980px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--reverse .split__media { order: 2; }
  .split--wide-media { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}

.split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(7, 6, 5, 0.55));
  pointer-events: none;
}

/* Floating caption plate over media */
.plate {
  position: absolute;
  z-index: 2;
  bottom: 1.1rem;
  left: 1.1rem;
  right: 1.1rem;
  padding: 0.9rem 1.15rem;
  background: rgba(7, 6, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.plate__k {
  font-size: var(--step--2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.plate__v {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--gold);
  line-height: 1;
}

.split__body { display: grid; gap: 1.4rem; }

/* Marker list */
.marks { display: grid; gap: 1.15rem; margin-top: 0.5rem; }

.mark-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.mark-row:last-child { border-bottom: 0; padding-bottom: 0; }

.mark-row__ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 31, 0.35);
  display: grid;
  place-items: center;
  color: var(--ember);
  flex: none;
  background: rgba(255, 90, 31, 0.07);
}

.mark-row__t {
  font-weight: 600;
  color: var(--cream);
  font-size: var(--step-0);
  margin-bottom: 0.15rem;
}

.mark-row__d { font-size: var(--step--1); color: var(--text-2); line-height: 1.6; }

/* --------------------------------------------------------------------------
   12. THREE FIRES — feature triptych
   -------------------------------------------------------------------------- */
.triptych {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (min-width: 900px) {
  .triptych { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.fire {
  position: relative;
  background: var(--ink-100);
  min-height: clamp(360px, 46vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  overflow: hidden;
  isolation: isolate;
}

.fire__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fire__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.fire:hover .fire__bg img { transform: scale(1.08); }

.fire::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.45) 0%, rgba(7, 6, 5, 0.62) 40%, rgba(7, 6, 5, 0.95) 100%);
  transition: background 0.5s var(--ease);
}

.fire:hover::before {
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.3) 0%, rgba(140, 45, 10, 0.35) 40%, rgba(7, 6, 5, 0.95) 100%);
}

.fire__num {
  font-family: var(--font-sans);
  font-size: var(--step--2);
  letter-spacing: 0.24em;
  color: var(--ember);
  margin-bottom: auto;
  font-weight: 600;
}

.fire__title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  margin-bottom: 0.7rem;
  color: var(--cream);
}

.fire__desc {
  font-size: var(--step--1);
  color: var(--cream-dim);
  line-height: 1.6;
  max-width: 34ch;
}

.fire__meta {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-strong);
  font-size: var(--step--2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   13. MENU PAGE
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.chip {
  padding: 0.6em 1.15em;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.chip:hover { color: var(--cream); border-color: var(--cream-dim); }

.chip[aria-pressed="true"] {
  background: linear-gradient(100deg, var(--ember), var(--flame));
  border-color: transparent;
  color: var(--ink-000);
  box-shadow: 0 8px 26px -12px rgba(255, 90, 31, 0.9);
}

.chip__n {
  font-size: 0.85em;
  opacity: 0.6;
  margin-left: 0.45em;
}

/* Menu group */
.mgroup { margin-bottom: clamp(3rem, 6vw, 5.5rem); }

.mgroup__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.mgroup__title {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--cream);
}

.mgroup__note {
  font-size: var(--step--1);
  color: var(--muted-dim);
  max-width: 40ch;
}

.mlist {
  display: grid;
  border-top: 1px solid var(--line);
}

@media (min-width: 900px) {
  .mlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* Centre rule drawn as a background so it survives filtering and never
       leaves an orphan cell on an odd-numbered course. */
    background-image: linear-gradient(var(--line), var(--line));
    background-size: 1px 100%;
    background-position: 50% 0;
    background-repeat: no-repeat;
  }
}

.mitem {
  border-bottom: 1px solid var(--line);
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  align-items: start;
  transition: background 0.4s var(--ease);
  position: relative;
}

.mitem:hover { background: var(--ink-200); }

.mitem__thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-300);
  flex: none;
  position: relative;
}

.mitem__thumb {
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.mitem:hover .mitem__thumb {
  transform: perspective(620px) rotateY(-17deg) rotateX(5deg) scale(1.07);
  box-shadow: -12px 14px 28px -14px rgba(0, 0, 0, 0.9);
}

.mitem__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mitem:hover .mitem__thumb img { transform: scale(1.08); }

/* Thumbless items get a small ember monogram instead */
.mitem__thumb--glyph {
  display: grid;
  place-items: center;
  transition: transform 0.6s var(--ease), color 0.6s var(--ease),
    border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--ink-200), var(--ink-300));
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.mitem:hover .mitem__thumb--glyph {
  color: var(--ember);
  border-color: rgba(255, 90, 31, 0.4);
}

.mitem__main { min-width: 0; }

.mitem__top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.mitem__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.15;
  color: var(--cream);
}

.mitem__dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(247, 241, 232, 0.22);
  transform: translateY(-4px);
  min-width: 12px;
}

.mitem__price {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--gold);
  white-space: nowrap;
}

.mitem__desc {
  font-size: var(--step--1);
  color: var(--text-2);
  line-height: 1.55;
}

.mitem__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.pill {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}

.pill--signature { border-color: rgba(255, 201, 60, 0.45); color: var(--gold); }
.pill--sharing { border-color: rgba(255, 90, 31, 0.45); color: var(--ember-soft); }
.pill--veg { border-color: rgba(110, 200, 120, 0.4); color: #7fd68d; }

.mitem.is-hidden { display: none; }

/* Empty state */
.empty {
  padding: clamp(3rem, 8vw, 6rem) 1rem;
  text-align: center;
  color: var(--muted-dim);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
}

/* Menu note strip */
.note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(255, 201, 60, 0.28);
  border-radius: var(--r-lg);
  background: rgba(255, 201, 60, 0.05);
}

.note__ico { color: var(--gold); flex: none; margin-top: 2px; }
.note__t { font-weight: 600; color: var(--cream); margin-bottom: 0.25rem; }
.note__d { font-size: var(--step--1); color: var(--text-2); }

/* --------------------------------------------------------------------------
   14. TIMELINE (story page)
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--ember), var(--crimson), transparent);
}

@media (min-width: 780px) {
  .timeline::before { left: 50%; }
}

.tnode {
  position: relative;
  padding-left: 44px;
}

@media (min-width: 780px) {
  .tnode {
    width: 50%;
    padding-left: 0;
    padding-right: clamp(2rem, 4vw, 3.5rem);
    text-align: right;
  }
  .tnode:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: clamp(2rem, 4vw, 3.5rem);
    text-align: left;
  }
}

.tnode__dot {
  position: absolute;
  left: 4px;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink-100);
  border: 2px solid var(--ember);
  box-shadow: 0 0 16px -2px var(--ember);
}

@media (min-width: 780px) {
  .tnode__dot { left: auto; right: -8px; }
  .tnode:nth-child(even) .tnode__dot { right: auto; left: -8px; }
}

.tnode__year {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.tnode__t {
  font-weight: 600;
  font-size: var(--step-1);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.tnode__d { color: var(--text-2); font-size: var(--step--1); line-height: 1.65; }

/* --------------------------------------------------------------------------
   15. GALLERY
   -------------------------------------------------------------------------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(122px, 26vw, 210px);
  gap: clamp(0.5rem, 1.4vw, 1rem);
  grid-auto-flow: dense;
}

@media (min-width: 760px) {
  .mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 11.5vw, 205px);
  }
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink-300);
  cursor: zoom-in;
  display: block;
  width: 100%;
  height: 100%;
  grid-column: span 1;
  grid-row: span 1;
  padding: 0;
  border: 0;
}

.tile--w2 { grid-column: span 2; }
.tile--h2 { grid-row: span 2; }
.tile--big { grid-column: span 2; grid-row: span 2; }

/* On two columns a "big" tile would swallow the row, so cap it */
@media (max-width: 759px) {
  .tile--big { grid-row: span 2; }
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.92) brightness(0.9);
}

.tile:hover img { transform: scale(1.07); filter: saturate(1.1) brightness(1); }

.tile__cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(7, 6, 5, 0.9));
  font-size: var(--step--2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.45s var(--ease);
  text-align: left;
}

.tile:hover .tile__cap { transform: none; opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(4, 3, 3, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__fig {
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: grid;
  gap: 1rem;
  transform: scale(0.96);
  transition: transform 0.5s var(--ease);
}

.lightbox.is-open .lightbox__fig { transform: none; }

.lightbox__fig img {
  max-height: 78svh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--r-md);
  object-fit: contain;
}

.lightbox__cap {
  text-align: center;
  font-size: var(--step--1);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox__x,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(11, 10, 9, 0.7);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.lightbox__x:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--ember); color: var(--ink-000); }

.lightbox__x { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__prev { left: clamp(0.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(0.5rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   16. REVIEWS
   -------------------------------------------------------------------------- */
.quotes {
  display: grid;
  gap: var(--gap);
}

@media (min-width: 860px) {
  .quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.quote {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.quote:hover { border-color: rgba(255, 201, 60, 0.35); transform: translateY(-4px); }

.quote::before {
  content: "\201C";
  position: absolute;
  top: -0.35em;
  right: 0.15em;
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  color: var(--ink-400);
  pointer-events: none;
}

.quote__stars { display: flex; gap: 2px; color: var(--gold); }

.quote__text {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.4;
  color: var(--cream);
  flex: 1;
  position: relative;
}

.quote__by {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.quote__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--crimson), var(--ember));
  color: var(--ink-000);
  font-weight: 700;
  font-size: var(--step--1);
  flex: none;
}

.quote__name { font-size: var(--step--1); font-weight: 600; color: var(--cream); }
.quote__src { font-size: var(--step--2); color: var(--muted-dim); letter-spacing: 0.08em; }

/* --------------------------------------------------------------------------
   17. CONTACT / VISIT
   -------------------------------------------------------------------------- */
.info-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (min-width: 760px) {
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .info-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.info {
  background: var(--ink-100);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  display: grid;
  gap: 0.85rem;
  align-content: start;
  transition: background 0.4s var(--ease);
}

.info:hover { background: var(--ink-200); }

.info__ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: rgba(255, 90, 31, 0.1);
  border: 1px solid rgba(255, 90, 31, 0.28);
  color: var(--ember);
}

.info__k {
  font-size: var(--step--2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.info__v {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.15;
  color: var(--cream);
}

.info__v a { transition: color 0.3s var(--ease); }
.info__v a:hover { color: var(--gold); }

.info__note { font-size: var(--step--1); color: var(--text-2); }

/* Hours table */
.hours { display: grid; gap: 0; }

.hours__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--step--1);
}

.hours__row:last-child { border-bottom: 0; }

.hours__row.is-today {
  color: var(--gold);
  font-weight: 600;
}

.hours__row.is-today .hours__day::after {
  content: "Today";
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-left: 0.6em;
  padding: 0.25em 0.6em;
  border-radius: 100px;
  background: rgba(255, 201, 60, 0.15);
  border: 1px solid rgba(255, 201, 60, 0.35);
  vertical-align: middle;
}

.hours__day { color: inherit; }
.hours__time { color: inherit; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* Map frame */
.map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-200);
  min-height: 340px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.55) invert(0.92) hue-rotate(180deg) contrast(0.88) brightness(0.92);
}

.map__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 0.9rem 1.15rem;
  background: rgba(7, 6, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  pointer-events: none;
}

.map__badge > * { pointer-events: auto; }

/* Form */
.form {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
}

.field { display: grid; gap: 0.5rem; }

.field label {
  font-size: var(--step--2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  background: var(--ink-200);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.9rem 1rem;
  color: var(--cream);
  font-size: var(--step-0);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--muted-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
  background: var(--ink-300);
}

.field textarea { resize: vertical; min-height: 120px; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239c928a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__msg {
  padding: 1rem 1.15rem;
  border-radius: var(--r-md);
  font-size: var(--step--1);
  display: none;
  gap: 0.7rem;
  align-items: flex-start;
}

.form__msg.is-shown { display: flex; }

.form__msg--ok {
  background: rgba(86, 211, 100, 0.08);
  border: 1px solid rgba(86, 211, 100, 0.3);
  color: #8ee39a;
}

/* --------------------------------------------------------------------------
   18. CTA BAND
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid var(--line);
}

.band__bg { position: absolute; inset: 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 90, 31, 0.3), transparent 65%),
    rgba(7, 6, 5, 0.82);
}

.band__title { margin-block: 1rem 1.25rem; }
.band__lede { margin-inline: auto; }
.band__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.foot {
  background: var(--ink-000);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.foot__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .foot__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  }
}

.foot__brand { display: grid; gap: 1.15rem; align-content: start; }
.foot__blurb { color: var(--text-2); font-size: var(--step--1); max-width: 36ch; }

.foot__h {
  font-size: var(--step--2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.15rem;
}

.foot__list { display: grid; gap: 0.7rem; }

.foot__list a,
.foot__list li {
  font-size: var(--step--1);
  color: var(--text-2);
  transition: color 0.3s var(--ease);
}

.foot__list a:hover { color: var(--gold); }

.socials { display: flex; gap: 0.6rem; }

.social {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream-dim);
  transition: all 0.35s var(--ease);
}

.social:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--ink-000);
  transform: translateY(-3px);
}

.foot__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--step--2);
  color: var(--muted-dim);
  letter-spacing: 0.06em;
}

/* Giant watermark wordmark */
.foot__watermark {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 15vw, 15rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-400);
  text-align: center;
  user-select: none;
  padding-bottom: 0.1em;
  letter-spacing: -0.02em;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   20. FLOATING CALL BUTTON (mobile)
   -------------------------------------------------------------------------- */
.callfab {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.35rem;
  border-radius: 100px;
  background: linear-gradient(100deg, var(--ember), var(--flame));
  color: var(--ink-000);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px -12px rgba(255, 90, 31, 0.85);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
}

.callfab.is-shown { transform: none; }
.callfab:hover { color: var(--ink-000); }

/* --------------------------------------------------------------------------
   21. SCROLL REVEAL  +  3D DEPTH
   Entrances use the independent `translate` / `rotate` / `scale` properties
   rather than `transform`. That leaves `transform` free for the pointer-tilt
   below, so one element can both fly in and tilt without the two fighting
   over a single property.

   Every hidden-then-revealed state is scoped to `html.js`, which an inline
   script in <head> sets before first paint. Without JavaScript the page
   renders fully — no invisible headlines, no empty hero.
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.9s var(--ease), translate 0.9s var(--ease),
    rotate 0.9s var(--ease), scale 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.js [data-reveal="fade"] { translate: none; }
.js [data-reveal="left"] { translate: -28px 0; }
.js [data-reveal="right"] { translate: 28px 0; }
.js [data-reveal="scale"] { translate: none; scale: 0.96; }

/* Dimensional entrance — the block hinges up from below and forward */
.js [data-reveal="3d"] {
  translate: 0 52px;
  rotate: x 14deg;
}

.js [data-reveal].is-in {
  opacity: 1;
  translate: none;
  rotate: none;
  scale: none;
}

/* Hero headline mask-reveal */
.js .hero__title .line > span {
  translate: 0 105%;
  transition: translate 1.05s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .is-loaded .hero__title .line > span,
.is-loaded .hero__title .line > span { translate: none; }

.js .hero__fade {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 0.9s var(--ease), translate 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .is-loaded .hero__fade,
.is-loaded .hero__fade { opacity: 1; translate: none; }

/* ---- 3D stage ------------------------------------------------------------
   `.scene` establishes one shared vanishing point so a grid of cards tilts
   toward a consistent horizon instead of each card having its own. */
.scene {
  perspective: 1600px;
  perspective-origin: 50% 42%;
}

.scene--near { perspective: 1000px; }

/* ---- Pointer tilt --------------------------------------------------------
   JS writes --rx / --ry (degrees) and --mx / --my (the pointer position, used
   by the glare). Values fall back to flat, so the card is correct before any
   pointer arrives and on touch devices where the tilt never activates. */
[data-tilt] {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  --lift: 0px;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translate3d(0, var(--lift), 0);
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease), box-shadow 0.8s var(--ease),
    border-color 0.5s var(--ease);
  will-change: transform;
}

/* While the pointer is inside, track it almost immediately; on exit, glide
   back over the slower default duration above. */
[data-tilt].is-live {
  transition: transform 0.14s ease-out, box-shadow 0.4s var(--ease),
    border-color 0.5s var(--ease);
}

[data-tilt]:hover {
  --lift: -8px;
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 90, 31, 0.16);
}

/* Layers that float above the card face as it turns */
.lift-1 { transform: translateZ(14px); }
.lift-2 { transform: translateZ(30px); }
.lift-3 { transform: translateZ(52px); }

/* Specular sheen that follows the pointer across the card */
.glare {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  background: radial-gradient(
    460px circle at var(--mx) var(--my),
    rgba(255, 196, 120, 0.15),
    rgba(255, 138, 60, 0.05) 32%,
    transparent 55%
  );
}

[data-tilt]:hover .glare { opacity: 1; }

/* --------------------------------------------------------------------------
   22. UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 999;
  padding: 0.8rem 1.2rem;
  background: var(--gold);
  color: var(--ink-000);
  border-radius: var(--r-md);
  font-weight: 600;
  transition: top 0.3s var(--ease);
}

.skip:focus { top: 1rem; }

.stack { display: grid; }
.stack-sm { gap: 0.75rem; }
.stack-md { gap: 1.25rem; }
.stack-lg { gap: 2rem; }

.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mx-auto { margin-inline: auto; }

.text-gold { color: var(--gold); }
.text-ember { color: var(--ember); }
.text-muted { color: var(--text-2); }

.flow > * + * { margin-top: 1.1rem; }

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.cluster--between { justify-content: space-between; }

/* Kottu-rhythm divider — the blade beat, drawn */
.beat {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
}

.beat i {
  width: 3px;
  background: var(--ember);
  border-radius: 2px;
  animation: beat 1.1s var(--ease-in-out) infinite alternate;
  opacity: 0.75;
}

.beat i:nth-child(1) { height: 30%; animation-delay: 0s; }
.beat i:nth-child(2) { height: 70%; animation-delay: 0.09s; }
.beat i:nth-child(3) { height: 45%; animation-delay: 0.18s; }
.beat i:nth-child(4) { height: 100%; animation-delay: 0.27s; background: var(--gold); }
.beat i:nth-child(5) { height: 55%; animation-delay: 0.36s; }
.beat i:nth-child(6) { height: 80%; animation-delay: 0.45s; }
.beat i:nth-child(7) { height: 35%; animation-delay: 0.54s; }

@keyframes beat {
  to { transform: scaleY(0.35); }
}

/* --------------------------------------------------------------------------
   23. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Reveals and tilt both resolve to their resting state */
  [data-reveal],
  .hero__fade,
  .hero__title .line > span {
    opacity: 1 !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
  }

  [data-tilt] {
    transform: none !important;
    box-shadow: none !important;
  }

  .lift-1, .lift-2, .lift-3 { transform: none !important; }
  .glare { display: none; }
  .hero__media img { animation: none; transform: scale(1.02); }
  .hero__embers { display: none; }
}

/* --------------------------------------------------------------------------
   24. PRINT
   -------------------------------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; }
  .nav, .drawer, .callfab, .hero__embers, .glare, .lightbox, .foot__watermark { display: none !important; }
  .mitem, .dish { break-inside: avoid; }
  [data-tilt] { transform: none !important; box-shadow: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; }
}
