/* ==========================================================================
   NYC EXPRESS DELI — design system
   Concept: NYC storefront. Bodega awning, subway station signs, route bullets,
   menu-board dot leaders, LED ticker. Photography leads. Built by BakrKode LLC.
   ========================================================================== */

:root {
  /* palette — orange sampled from the restaurant logo */
  --ink: #101010;
  --paper: #fafaf8;
  --card: #ffffff;
  --cab: #f5b301;          /* taxi / cart-menu yellow */
  --orange: #e07a23;       /* logo orange */
  --orange-deep: #dc571b;  /* logo orange, shadow tone */
  --red: #cc2b24;
  --led: #ff5a3c;          /* LED ticker */
  --steel: #55555a;
  --line: #e3e1da;

  /* route-bullet colors (menu categories) */
  --bl-green: #00933c;
  --bl-orange: #ff6319;
  --bl-blue: #0039a6;
  --bl-red: #ee352e;
  --bl-purple: #b933ad;
  --bl-lgreen: #6cbe45;
  --bl-brown: #996633;

  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-soft: 4px 4px 0 var(--ink);
  --container: 1140px;
}

/* ---------- reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;      /* nothing may scroll the page sideways */
  -webkit-font-smoothing: antialiased;
}

/* height:auto keeps the HTML height attribute from beating aspect-ratio */
img { max-width: 100%; height: auto; display: block; }

/* Images are wrapped in <picture> for WebP. display:contents drops the wrapper
   out of layout so the img stays the flex/grid item its container expects.
   That also promotes <source> to a layout box, which would occupy a grid cell
   and shove the real content sideways, so keep it explicitly out of flow. */
picture { display: contents; }
picture > source { display: none; }

h1, h2, h3, h4, p { margin: 0; }

a { color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: clamp(56px, 8vw, 100px); }
.section--tight { padding-block: clamp(36px, 5vw, 64px); }
.section--flush-top { padding-top: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none !important; }
}

/* ---------- LED ticker ---------- */

.ticker {
  background: #000;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  display: inline-block;
  padding: 8px 0;
  color: var(--led);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- header (dark, carries the logo) ---------- */

.site-header {
  position: relative;
  background: var(--ink);
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }

.brand-logo {
  height: 46px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a:not(.btn) {
  color: #f4f2ec;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}

.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"]:not(.btn) {
  color: #fff;
  border-bottom-color: var(--cab);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 2px solid #4a4a4a;
  border-radius: 999px;
  padding: 9px 18px;
  font: 700 .82rem var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* awning valance under the header */
.awning-strip {
  position: relative;
  z-index: 5;
  height: 22px;
  background: var(--cab);
  border-bottom: 3px solid var(--ink);
}

.awning-strip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  background-image: radial-gradient(circle at 50% 0, var(--cab) 0 58%, transparent 62%);
  background-size: 36px 16px;
  background-repeat: repeat-x;
  pointer-events: none;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn-primary { background: var(--cab); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-nav { padding: 10px 20px; font-size: .8rem; box-shadow: 3px 3px 0 var(--cab); }

/* ---------- route bullets ---------- */

.bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
  color: #fff;
}

.bl-cab    { background: var(--cab); color: var(--ink); }
.bl-green  { background: var(--bl-green); }
.bl-orange { background: var(--bl-orange); color: var(--ink); }
.bl-blue   { background: var(--bl-blue); }
.bl-red    { background: var(--bl-red); }
.bl-purple { background: var(--bl-purple); }
.bl-lgreen { background: var(--bl-lgreen); color: var(--ink); }
.bl-brown  { background: var(--bl-brown); }

/* ---------- station signs ---------- */

.station-sign {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 16px 22px;
}

.station-sign h1,
.station-sign h2,
.station-sign h3,
.station-sign p {
  font-family: var(--body);
  font-weight: 800;
  font-size: clamp(1.02rem, 2.4vw, 1.45rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.station-sign .arrow {
  margin-left: auto;
  font-size: 1.5em;
  line-height: 1;
  color: var(--cab);
}

.section-head { margin-bottom: clamp(26px, 4vw, 40px); }

.section-note {
  margin-top: 14px;
  color: var(--steel);
  max-width: 60ch;
}

/* ---------- eyebrow ticket ---------- */

.ticket-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--card);
  border: 2px dashed var(--ink);
  border-radius: 6px;
  padding: 8px 14px;
}

/* ---------- photo hero ---------- */

.photo-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(440px, 66vh, 640px);
  background: var(--ink);
  overflow: hidden;
}

.photo-hero > img,
.photo-hero > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,16,.72) 0%, rgba(16,16,16,.42) 42%, rgba(16,16,16,.88) 100%);
}

.photo-hero .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(40px, 6vw, 64px);
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cab);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

.hero-title .accent { color: var(--cab); }

.hero-sub {
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #ece9e2;
  max-width: 48ch;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 500;
  color: #cfccc4;
}

.hero-meta strong { color: var(--cab); font-weight: 600; }

/* ---------- dish cards (photo led) ---------- */

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 24px;
}

.dish-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}

.dish-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }

.dish-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 3px solid var(--ink);
}

.dish-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.dish-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.dish-card h3 {
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.25;
}

.dish-card .price {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.dish-desc { color: var(--steel); font-size: .93rem; }

.dish-link {
  margin-top: auto;
  padding-top: 4px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 3px solid var(--cab);
}

/* ---------- split feature (photo + copy) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.split-media {
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.split-body p { margin-top: 16px; color: var(--steel); font-size: 1.04rem; }

.split-body .btn { margin-top: 26px; }

.split--flip .split-media { order: 2; }

/* ---------- photo strip ---------- */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.photo-tile {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.photo-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(16,16,16,.9));
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ---------- category tiles ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 16px;
}

.cat-tile {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}

.cat-tile:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }

.cat-tile .cat-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  color: var(--steel);
  text-transform: none;
  letter-spacing: .03em;
  white-space: nowrap;
}

.cat-cta { margin-top: 28px; }

/* ---------- menu page ---------- */

.chip-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-block: 3px solid var(--ink);
}

.chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 12px;
  scrollbar-width: thin;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 15px 7px 8px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.chip:hover { background: var(--cab); }

.chip .bullet { width: 24px; height: 24px; font-size: .8rem; }

.menu-section { padding-block: clamp(40px, 6vw, 68px); scroll-margin-top: 78px; }
.menu-section + .menu-section { border-top: 3px solid var(--line); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  column-gap: 52px;
  row-gap: 26px;
}

/* items with a photo get a thumbnail rail */
.menu-item--photo {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: start;
}

.menu-thumb {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.enlargeable-image {
  cursor: zoom-in;
  transition: filter .18s ease, transform .18s ease;
}

.enlargeable-image:hover {
  filter: brightness(.88);
}

.enlargeable-image:active {
  transform: scale(.97);
}

body.image-viewer-open { overflow: hidden; }

.image-viewer {
  width: min(92vw, 1000px);
  max-width: none;
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  color: #fff;
  background: transparent;
  border: 0;
}

.image-viewer::backdrop {
  background: rgba(8, 8, 8, .88);
  backdrop-filter: blur(4px);
}

.image-viewer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.image-viewer-image {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 3px solid #fff;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .5);
}

.image-viewer-caption {
  font-weight: 700;
  text-align: center;
}

.image-viewer-close {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -8px;
  width: 46px;
  height: 46px;
  padding: 0 0 3px;
  color: var(--ink);
  background: var(--cab);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 #fff;
  font: 700 2rem/1 var(--body);
  cursor: pointer;
}

.image-viewer-close:hover { background: #fff; }

.menu-item h3 {
  font-size: 1.04rem;
  font-weight: 800;
}

/* Halal stamp beside certified items, matching the board in the store.
   Sides carries one stamp on the section heading instead of per item. */
.halal-tag {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-left: 7px;
  vertical-align: -2px;
  flex: none;
}

h2 .halal-tag { width: 26px; height: 26px; vertical-align: -4px; }

.location-tag {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 7px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cab);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: 2px;
  white-space: nowrap;
}

.menu-line { display: flex; align-items: baseline; gap: 10px; }

.menu-line .dots {
  flex: 1;
  border-bottom: 3px dotted #c9c6bc;
  transform: translateY(-5px);
  min-width: 20px;
}

.menu-line .price {
  font-family: var(--mono);
  font-weight: 600;
  font-size: .98rem;
  white-space: nowrap;
}

/* two-size items may break between the sizes, never inside one */
.menu-line .price:has(.pv) { white-space: normal; }
.menu-line .price .pv { white-space: nowrap; }

.menu-line .price small {
  font-size: .72em;
  font-weight: 500;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.menu-desc {
  margin-top: 5px;
  color: var(--steel);
  font-size: .92rem;
  max-width: 52ch;
}

.menu-kicker {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 12px;
}

/* ---------- callout ---------- */

.callout {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--cab);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}

.callout p { font-weight: 600; font-size: .96rem; }

.callout .callout-label {
  font-family: var(--mono);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.callout-stamp { width: 52px; height: 52px; flex: none; }

.callout-wrap { padding-bottom: clamp(26px, 4vw, 38px); }

/* ---------- review tickets ---------- */

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 22px;
}

.ticket {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ticket-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 2px dashed var(--line);
  padding-bottom: 11px;
  font-family: var(--mono);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
}

.ticket-meta .stars { color: var(--cab); font-size: .92rem; letter-spacing: .1em; }

.ticket blockquote { margin: 0; font-size: .96rem; line-height: 1.6; }

.ticket figcaption {
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: .84rem;
  font-weight: 600;
  color: var(--steel);
}

.rating-line strong { color: var(--ink); }

/* ---------- locations ---------- */

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.loc-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.loc-card .station-sign { border-radius: 0; }

.loc-body { padding: 24px; display: flex; flex-direction: column; gap: 13px; flex: 1; }

.loc-addr { font-size: 1.02rem; font-weight: 600; line-height: 1.5; }

.loc-phone {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 3px solid var(--cab);
  align-self: flex-start;
  padding-bottom: 2px;
}

.loc-hours { color: var(--steel); font-size: .94rem; }
.loc-hours strong { color: var(--ink); }

.loc-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 8px; }

.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  padding: 8px 15px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
}

.link-chip:hover { background: var(--cab); }
.link-chip--solid { background: var(--ink); color: #fff; }
.link-chip--solid:hover { background: var(--orange); color: #fff; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--ink);
  border-top: 4px solid var(--ink);
  overflow: hidden;
}

.cta-band > img,
.cta-band > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
}

.cta-band .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: clamp(40px, 6vw, 68px);
}

.cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .02em;
  color: #fff;
  max-width: 18ch;
}

.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- values / about ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 20px;
}

.value-tile {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.value-tile h3 {
  font-size: 1.04rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 8px;
}

.value-tile p { color: var(--steel); font-size: .93rem; }

.prose { max-width: 66ch; }
.prose p + p { margin-top: 1.05em; }
.prose .lead { font-size: 1.16rem; font-weight: 500; }

.pull-quote {
  border-left: 6px solid var(--cab);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
}

.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- interior page hero ---------- */

.page-hero { padding-block: clamp(36px, 5vw, 60px) clamp(22px, 3vw, 34px); }
.page-hero .ticket-eyebrow { margin-bottom: 20px; }
.page-hero .station-sign { padding: 20px 24px; }
.page-hero .station-sign h1 { font-size: clamp(1.4rem, 3.8vw, 2.4rem); }
.page-hero .lede { margin-top: 18px; font-size: 1.1rem; color: var(--steel); max-width: 62ch; }

.mega-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: .01em;
  text-transform: uppercase;
  max-width: 18ch;
}

.hl {
  background: var(--cab);
  padding: 0 .12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: .88rem;
  font-weight: 600;
}

.phone-row a { text-decoration: none; border-bottom: 3px solid var(--cab); padding-bottom: 2px; }
.phone-row .city { color: var(--steel); }

.apps-label {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
}

/* ---------- 404 ---------- */

.notfound {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding-block: 60px;
}

.notfound .bullet { width: 72px; height: 72px; font-size: 2.1rem; }

/* ---------- menu search ---------- */

.menu-search-wrap { margin-block: 4px 26px; }

.menu-search-label {
  display: block;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}

.menu-search-field { display: flex; gap: 10px; }

.menu-search {
  flex: 1 1 auto;
  min-width: 0;
  font: inherit;
  padding: 13px 16px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
}

.menu-search:focus-visible { outline: 3px solid var(--cab); outline-offset: 2px; }

.menu-search-clear {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 18px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.menu-search-status {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--steel);
  min-height: 1.2em;
}

/* The filter hides individual rows and whole sections, so [hidden] has to beat
   the display rules that the grid items carry. */
[hidden] { display: none !important; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #fff;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-block: clamp(44px, 6vw, 68px) 34px;
}

.foot-logo { height: 52px; width: auto; margin-bottom: 16px; }

.foot-tag { color: #d8d6cf; font-style: italic; }

.foot-halal {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .05em;
  color: #a9a7a0;
  max-width: 36ch;
}

.foot-halal img { width: 40px; height: 40px; flex: none; }

/* Each location runs its own Instagram and Facebook, so the links sit with
   that location's address rather than in one shared row. */
.foot-social {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.site-footer h3 {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cab);
  margin-bottom: 15px;
}

.site-footer li + li { margin-top: 9px; }

.site-footer a { color: #f0eee8; text-decoration: none; font-size: .93rem; }
.site-footer a:hover { color: var(--cab); }

.site-footer address { font-style: normal; color: #d8d6cf; font-size: .93rem; line-height: 1.7; }

.foot-phone { font-family: var(--mono); }

.foot-bottom {
  border-top: 1px solid #2c2c2c;
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: .8rem;
  color: #a9a7a0;
}

.foot-bottom a { color: #d8d6cf; }

/* ---------- responsive ---------- */

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-top: 2px solid #2c2c2c;
    padding: 10px 20px 20px;
    z-index: 60;
  }

  .nav-open .nav-links { display: flex; }

  .nav-links a:not(.btn) { padding: 13px 4px; border-bottom: 1px solid #2c2c2c; }
  .nav-links .btn { margin-top: 14px; }

  .station-sign { gap: 12px; padding: 14px 16px; }
  .hero-cta .btn { flex: 1 1 auto; }
}

@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .brand-logo { height: 38px; }
  .menu-item--photo { grid-template-columns: 76px 1fr; gap: 13px; }
  .menu-thumb { width: 76px; height: 76px; }

  /* dot leaders don't read at phone width — let the price sit under the name */
  .menu-line { flex-wrap: wrap; row-gap: 1px; }
  .menu-line h3 { flex: 1 1 100%; }
  .menu-line .dots { display: none; }
}
