
/* ───────────────────────── Tokens ───────────────────────── */
:root {
  --cream: #fff4e3;
  --paper: #fbf1de;
  --charcoal: #121412;
  --ink: #1b1a17;
  --tomato: #d82425;
  --tomato-deep: #b01c1d;
  --basil: #177044;
  --basil-deep: #0f5532;
  --saffron: #ee8a30;
  --muted-on-dark: #d9cdb8;
  --muted-on-light: #5b5347;

  --display: var(--font-display), "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: var(--font-body), system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 64px;
  --bar-h: 0px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --radius-lg: 22px;
  --radius-sm: 10px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 959px) {
  :root {
    --header-h: 56px;
    --bar-h: calc(62px + env(safe-area-inset-bottom, 0px));
  }
}

html {
  background: var(--charcoal);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--cream);
  background: var(--charcoal);
  padding-bottom: var(--bar-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
picture {
  display: block;
}
:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}
[id] {
  scroll-margin-top: var(--header-h);
}
.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: fixed;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--cream);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.skip:focus {
  top: 0.75rem;
}

/* ───────────────────────── Shared ───────────────────────── */
.section-title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.005em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease-out), background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--tomato {
  background: var(--tomato);
  color: var(--cream);
  box-shadow: 0 3px 0 var(--tomato-deep);
}
.btn--tomato:hover {
  background: #e3302f;
}
.btn--ghost {
  color: var(--cream);
  border-color: color-mix(in srgb, var(--cream) 70%, transparent);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: color-mix(in srgb, var(--cream) 10%, transparent);
}
.btn--ink {
  background: var(--charcoal);
  color: var(--cream);
}
.btn--cream {
  background: var(--cream);
  color: var(--ink);
}
.btn--small {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
}
.btn svg {
  flex: none;
}
.link {
  font-weight: 700;
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}
.link:hover {
  text-decoration-color: var(--saffron);
}
.round-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  border: 2px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
}
.round-btn:hover:not(:disabled) {
  background: color-mix(in srgb, currentColor 14%, transparent);
}
.round-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.icon {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.12em;
  margin-left: 0.3em;
  flex: none;
}

/* Indian veg / non-veg mark */
.diet {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  flex: none;
  border: 1.6px solid currentColor;
  border-radius: 2px;
  background: #fff;
  vertical-align: -0.1em;
}
.diet__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.diet--veg {
  color: #188a3e;
}
.diet--nonveg {
  color: #c21f1f;
}

/* ───────────────────────── Header ───────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--charcoal) 88%, transparent);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 10%, transparent);
}
.header__inner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  margin-right: auto;
}
.header__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.5vw, 1.5rem);
}
.header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0 0.35rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 2px solid transparent;
}
.header__nav a:hover {
  border-bottom-color: var(--saffron);
}
@media (max-width: 959px) {
  .header__call {
    display: none;
  }
  .header__ig-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .header__brand img {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 480px) {
  .header__brand span {
    display: none;
  }
  .header__nav a {
    font-size: 0.92rem;
    padding: 0 0.3rem;
  }
}

/* ───────────────────────── Mobile bar ───────────────────────── */
.mobilebar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 6px;
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom, 0px));
  background: var(--charcoal);
  border-top: 1px solid color-mix(in srgb, var(--cream) 12%, transparent);
}
.mobilebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  border-radius: 12px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  background: color-mix(in srgb, var(--cream) 8%, transparent);
}
.mobilebar__call {
  background: var(--tomato) !important;
}
@media (min-width: 960px) {
  .mobilebar {
    display: none;
  }
}

/* ───────────────────────── Hero ───────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(120% 70% at 70% 100%, #3a2415 0%, transparent 60%),
    linear-gradient(180deg, #1b2230 0%, #221d1f 55%, var(--charcoal) 100%);
}
.hero__stage {
  position: relative;
  overflow: hidden;
}
.hero__label {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.9rem;
}
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.3rem, 8.4vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: 0.002em;
  text-shadow: 0.045em 0.045em 0 var(--tomato);
  text-wrap: balance;
}
.hero__lede {
  margin-top: 1.3rem;
  max-width: 30rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted-on-dark);
}
.hero__ctas {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* 3D mode: tall scroll track with a sticky stage */
.hero--3d {
  height: 360vh;
}
.hero--3d .hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.hero.is-ready .hero__canvas {
  opacity: 1;
}
.hero--3d .hero__poster {
  position: absolute;
  right: 7vw;
  top: calc(var(--header-h) + 5vh);
  bottom: 6vh;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity 0.8s ease, transform 1.2s var(--ease-out);
}
.hero--3d.is-ready .hero__poster {
  opacity: 0;
  transform: scale(0.96);
}
.hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--3d .hero__copy {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-44%);
  max-width: min(40rem, 46vw);
}
.hero__beat {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  bottom: 12vh;
  max-width: 25rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--charcoal) 82%, transparent);
  border-left: 5px solid var(--basil);
  color: var(--muted-on-dark);
  opacity: 0;
  visibility: hidden;
}
.hero__beat--two {
  left: auto;
  right: var(--gutter);
  border-left-color: var(--tomato);
}
.hero__beat-title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2.3rem;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 0.45rem;
}
.hero__handoff {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: radial-gradient(60% 55% at 50% 45%, #ffd9a0 0%, var(--saffron) 38%, #6a3413 70%, var(--charcoal) 100%);
}
.hero__cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 3.2vh;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-on-dark);
  padding-bottom: 1.6rem;
}
.hero__cue::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2px;
  height: 1.1rem;
  background: var(--saffron);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, -4px);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, 4px);
    opacity: 1;
  }
}
.hero__loading {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 3vh;
  font-size: 0.85rem;
  color: var(--muted-on-dark);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--charcoal) 70%, transparent);
}

/* Static mode: phones, reduced motion, no WebGL */
.hero--static .hero__stage {
  min-height: calc(100svh - var(--bar-h));
  display: grid;
}
.hero--static .hero__poster,
.hero--static .hero__copy {
  grid-area: 1 / 1;
}
.hero--static .hero__poster {
  position: relative;
}
.hero--static .hero__poster img {
  position: absolute;
  inset: 0;
  object-position: 50% 30%;
}
.hero--static .hero__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 20, 18, 0.6) 0%, rgba(18, 20, 18, 0.15) 18%, rgba(18, 20, 18, 0.72) 40%, var(--charcoal) 78%);
}
.hero--static .hero__copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2.2rem;
}
@media (min-width: 960px) {
  .hero--static .hero__stage {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: calc(var(--header-h) + 3rem) var(--gutter) 4rem;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .hero--static .hero__copy {
    grid-area: 1 / 1;
    padding: 0;
    align-self: center;
  }
  .hero--static .hero__poster {
    grid-area: 1 / 2;
    aspect-ratio: 9 / 13;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .hero--static .hero__poster::after {
    display: none;
  }
}

/* ───────────────────────── Crunch moment ───────────────────────── */
.crunch {
  position: relative;
  background: radial-gradient(90% 50% at 50% 0%, #6a3413 0%, transparent 70%), var(--charcoal);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 9vw, 7rem);
}
.crunch__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 2.5rem;
}
.crunch__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  line-height: 0.85;
  color: var(--saffron);
}
.crunch__text p {
  margin: 1.2rem 0 1.3rem;
  max-width: 30rem;
  color: var(--muted-on-dark);
}
.crunch__frames {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0.5rem var(--gutter) 1rem;
  scrollbar-width: none;
}
.crunch__frames::-webkit-scrollbar {
  display: none;
}
.crunch__frame {
  flex: 0 0 min(64vw, 300px);
  scroll-snap-align: center;
}
.crunch__frame video,
.crunch__frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--cream);
  background: #2a2420;
}
.crunch__frame--c img {
  aspect-ratio: 4 / 5;
}
@media (min-width: 960px) {
  .crunch__inner {
    grid-template-columns: 5fr 7fr;
    align-items: center;
  }
  .crunch__frames {
    position: relative;
    display: block;
    height: min(78vh, 760px);
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .crunch__frames > .crunch__frame {
    position: absolute;
    width: 42%;
  }
  .crunch__frames > .crunch__frame--a {
    left: 0;
    top: 2%;
    transform: rotate(-3deg);
  }
  .crunch__frames > .crunch__frame--b {
    left: 36%;
    top: 24%;
    width: 36%;
    z-index: 2;
  }
  .crunch__frames > .crunch__frame--c {
    right: 0;
    top: 6%;
    width: 32%;
  }
}

/* Video tiles */
.clip {
  position: relative;
}
.clip__toggle {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: color-mix(in srgb, var(--charcoal) 70%, transparent);
  color: var(--cream);
  cursor: pointer;
}
.clip__toggle svg {
  width: 18px;
  height: 18px;
}
figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted-on-dark);
}

/* ───────────────────────── Favourites ───────────────────────── */
.fav {
  --fav-bg: var(--tomato);
  --fav-fg: var(--cream);
  position: relative;
  background: var(--fav-bg);
  color: var(--fav-fg);
  transition: background-color 0.7s ease, color 0.7s ease;
}
.fav--pinned {
  height: calc(var(--fav-count) * 70vh + 100vh);
}
.fav__stage {
  display: grid;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5rem) var(--gutter) 3rem;
}
.fav--pinned .fav__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  grid-template-rows: auto 1fr auto;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 2.5rem;
}
.fav__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.fav__title {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 0.95;
}
.fav__count {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fav__body {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  touch-action: pan-y;
  min-height: 0;
}
.fav__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(78vw, 360px);
  margin: 0 auto;
  aspect-ratio: 1;
  animation: fav-in 0.65s var(--ease-out);
}
.fav__disc {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--fav-fg) 16%, transparent);
  border: 3px dashed color-mix(in srgb, var(--fav-fg) 45%, transparent);
}
.fav__art,
.fav__photo {
  position: relative;
  width: 88%;
  height: auto;
}
.fav__details {
  animation: fav-text 0.55s var(--ease-out);
}
.fav__cat {
  font-weight: 700;
  opacity: 0.85;
}
.fav__name {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.88;
  margin: 0.3rem 0 1rem;
  text-wrap: balance;
}
.fav__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.2rem;
}
.fav__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
}
.fav__diet {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fav-fg) 14%, transparent);
}
.fav__diet .icon {
  margin: 0;
}
.fav__desc {
  margin-top: 1rem;
  max-width: 28rem;
}
.fav__more {
  display: inline-block;
  margin-top: 1.2rem;
}
.fav__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fav__tabs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(var(--fav-count), 1fr);
  gap: 0.6rem;
}
.fav__tab {
  display: grid;
  gap: 0.5rem;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0.6rem 0;
  min-height: 44px;
}
.fav__tab-bar {
  height: 4px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--fav-fg) 30%, transparent);
}
.fav__tab[aria-current="true"] .fav__tab-bar {
  background: var(--fav-fg);
}
.fav__tab-label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.75;
}
.fav__tab[aria-current="true"] .fav__tab-label {
  opacity: 1;
}
@media (max-width: 719px) {
  .fav__tab-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}
@media (min-width: 960px) {
  .fav__body {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .fav__visual {
    width: min(40vw, 58vh, 520px);
  }
}
@keyframes fav-in {
  from {
    opacity: 0;
    transform: scale(0.84) rotate(-9deg);
  }
}
@keyframes fav-text {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* ───────────────────────── Menu ───────────────────────── */
.menu {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}
.menu__head,
.menu__grid,
.menu__foot {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.menu__head .section-title {
  color: var(--basil);
}
.menu__intro {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--muted-on-light);
}
.menu__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.menu__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.menu__legend .icon {
  margin: 0;
}
.menunav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  margin-top: 2rem;
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e8d9bf;
}
.menunav ul {
  display: flex;
  gap: 0.45rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.65rem var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
}
.menunav ul::-webkit-scrollbar {
  display: none;
}
.menunav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 2px solid var(--tomato);
  color: var(--tomato-deep);
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.menunav a:hover {
  background: #fde3d4;
}
.menunav a[aria-current="true"] {
  background: var(--tomato);
  color: var(--cream);
}
.menu__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.6rem;
}
@media (min-width: 860px) {
  .menu__grid {
    display: block;
    columns: 2;
    column-gap: 4.5rem;
  }
  .menu-cat {
    break-inside: avoid;
    margin-bottom: 2.8rem;
  }
}
.menu-cat {
  scroll-margin-top: calc(var(--header-h) + 76px);
}
.menu-cat__title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.2rem 1.3rem 0.1rem;
  border: 3px solid var(--tomato);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--basil);
  margin-bottom: 0.9rem;
}
.menu-cat__title .icon {
  margin: 0;
  color: var(--basil);
}
.menu-cat__note {
  font-size: 0.93rem;
  color: var(--muted-on-light);
  margin-bottom: 0.9rem;
  max-width: 34rem;
}
.menu-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid #ecdfc7;
}
.menu-item:last-child {
  border-bottom: 0;
}
.menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.menu-item__mark {
  width: 15px;
  flex: none;
  align-self: center;
}
.menu-item__name {
  font-weight: 650;
  font-size: 1.05rem;
}
.menu-item__leader {
  flex: 1;
  min-width: 1rem;
  border-bottom: 2px dotted #d8c6a6;
  transform: translateY(-0.3em);
}
.menu-item__price {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--tomato-deep);
}
.menu-item__desc {
  display: block;
  margin: 0.25rem 0 0 1.55rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted-on-light);
  max-width: 30rem;
}
.menu-table {
  width: 100%;
  border-collapse: collapse;
}
.menu-table thead th {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--basil);
  text-align: right;
  padding: 0 0 0.4rem 0.8rem;
}
.menu-table tbody th {
  text-align: left;
  font-weight: inherit;
  padding: 0.6rem 0;
}
.menu-table td {
  text-align: right;
  vertical-align: top;
  padding: 0.6rem 0 0.6rem 0.8rem;
}
.menu-table tbody tr {
  border-bottom: 1px solid #ecdfc7;
}
.menu-table tbody tr:last-child {
  border-bottom: 0;
}
@media (max-width: 599px) {
  .menu-table thead th {
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    padding-left: 0.5rem;
  }
  .menu-table td {
    padding-left: 0.6rem;
  }
  .menu-table .menu-item__desc {
    margin-left: 1.55rem;
    margin-right: -7.5rem;
    padding-right: 0.5rem;
  }
  .menu-table tbody th {
    padding-bottom: 0.9rem;
  }
}
.menu__foot {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 2rem;
  font-weight: 600;
}

/* ───────────────────────── The truck ───────────────────────── */
.truck {
  position: relative;
  isolation: isolate;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  border-top: 10px solid var(--basil);
}
.truck::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/brand/doodle-tile.svg") 0 0 / 260px repeat;
  opacity: 0.09;
}
.truck__intro,
.truck__gallery,
.truck__ig {
  max-width: 1240px;
  margin: 0 auto;
}
.truck__intro .section-title {
  color: var(--basil);
}
.truck__intro > p:first-of-type {
  margin-top: 1rem;
  max-width: 36rem;
}
.truck__slogan {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.35rem 1.1rem 0.25rem;
  background: var(--tomato);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.4vw, 2.3rem);
  line-height: 1.05;
  transform: rotate(-1.5deg);
}
.truck__slogan-note {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted-on-light);
}
.truck__gallery {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.truck__tile video,
.truck__tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: #e7d8bd;
}
.truck__tile--tall video {
  aspect-ratio: 9 / 16;
}
@media (max-width: 959px) {
  .truck__tile:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}
.truck figcaption {
  color: var(--muted-on-light);
}
@media (min-width: 960px) {
  .truck__gallery {
    grid-template-columns: 1fr 1.25fr 1fr;
    align-items: start;
    gap: 1.4rem;
  }
  .truck__tile:nth-child(2) {
    margin-top: 6rem;
  }
}
.truck__ig {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.truck__ig p {
  max-width: 30rem;
  font-weight: 600;
}

/* ───────────────────────── Find us ───────────────────────── */
.find {
  background: var(--basil);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  display: grid;
  gap: 2.5rem;
  max-width: none;
}
.find__card,
.find__photo {
  max-width: 640px;
}
.find__address {
  font-style: normal;
  display: grid;
  gap: 0.15rem;
  margin-top: 1.3rem;
  font-size: 1.2rem;
}
.find__line1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}
.find__landmark {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: #cfe6d6;
}
.find__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}
.find__contacts {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.find__contacts li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.find__contacts a {
  color: var(--cream);
  font-weight: 600;
  text-underline-offset: 0.2em;
  word-break: break-word;
}
.find__note,
.find__hours {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--basil-deep);
  font-size: 0.95rem;
  max-width: 34rem;
}
.find__hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.find__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: var(--radius-lg);
  border: 6px solid var(--cream);
}
.find__photo figcaption {
  color: #cfe6d6;
}
@media (min-width: 960px) {
  .find {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    column-gap: 5rem;
    padding-left: max(var(--gutter), calc((100vw - 1240px) / 2));
    padding-right: max(var(--gutter), calc((100vw - 1240px) / 2));
  }
}

/* ───────────────────────── Footer ───────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--muted-on-dark);
  padding-top: 3.5rem;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter) 2.5rem;
  display: grid;
  gap: 2rem;
}
.footer__brand img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--cream);
}
.footer__tagline {
  margin-top: 0.8rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--cream);
}
.footer__links {
  display: grid;
  gap: 0.2rem;
}
.footer a {
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
}
.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.footer__contact {
  font-style: normal;
  display: grid;
  align-content: start;
}
.footer__stripe {
  background: var(--tomato);
  color: var(--cream);
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 5vw, 3.4rem);
  line-height: 1.1;
  padding: 0.5rem var(--gutter) 0.35rem;
  border-top: 6px solid var(--basil);
}
.footer__legal {
  text-align: center;
  font-size: 0.85rem;
  padding: 1rem var(--gutter) 1.3rem;
}
@media (min-width: 760px) {
  .footer__inner {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

/* ───────────────────────── Reduced motion ───────────────────────── */
@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;
  }
}
