/* ============================================================
   M Cafe & Grill — shared structural stylesheet
   Variant themes (variants/a|b/theme.css) set the token values.
   Motion follows 01-research rules: transform/opacity only,
   IntersectionObserver reveals, prefers-reduced-motion honored.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--head-font); line-height: 1.15; margin: 0 0 .5em; color: var(--head-ink, var(--ink)); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p  { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand); color: var(--brand-ink); padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--narrow { width: min(820px, 92vw); margin-inline: auto; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  background: var(--header-bg-top, transparent);
}
.site-header.is-scrolled {
  background: var(--header-bg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}
.page-home .site-header:not(.is-scrolled) {
  --header-ink: var(--hero-photo-ink);
  background: var(--header-photo-bg);
}
.header-inner {
  display: flex; align-items: center; gap: 1.4rem;
  padding: .65rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: auto; }
.brand-name {
  font-family: var(--head-font); font-weight: 700; font-size: 1.28rem;
  color: var(--header-ink); letter-spacing: .01em; white-space: nowrap;
}
.main-nav { display: flex; gap: 1.35rem; align-items: center; }
.main-nav a {
  color: var(--header-ink); text-decoration: none; font-weight: 500; font-size: .98rem;
  position: relative; padding: .3rem 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease-out;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-phone {
  display: flex; align-items: center; gap: .45rem;
  color: var(--header-ink); text-decoration: none; font-weight: 600; font-size: .95rem;
  white-space: nowrap;
}
.header-phone svg { width: 17px; height: 17px; fill: var(--brand); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--header-ink);
  margin: 5px 0; transition: transform .25s ease, opacity .25s ease;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.8rem;
  background: var(--brand); color: var(--brand-ink);
  font-family: var(--body-font); font-weight: 700; font-size: 1rem; letter-spacing: .015em;
  border: 2px solid var(--brand); border-radius: var(--btn-radius);
  text-decoration: none; cursor: pointer;
  transition: transform .25s ease-out, box-shadow .25s ease-out, background .25s ease-out, border-color .25s ease-out;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px var(--brand-glow); background: var(--brand-hover); border-color: var(--brand-hover); }
.btn--ghost {
  background: transparent; color: var(--ghost-ink, var(--ink)); border-color: var(--ghost-line, currentColor);
}
.btn--ghost:hover { background: var(--ghost-fill, rgba(128,128,128,.08)); box-shadow: none; color: var(--ghost-ink-hover, var(--ghost-ink, var(--ink))); }
.btn--small { min-height: 40px; padding: .45rem 1.1rem; font-size: .9rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(94vh, 900px);
  display: flex; align-items: center;
  background: var(--hero-bg);
  padding: 7.5rem 0 4rem;
}
.hero-inner { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 3rem; align-items: center; }
.hero-copy { max-width: 34rem; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .92rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--kicker); margin-bottom: 1.1rem;
}
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--kicker); }
.hero h1 { color: var(--hero-ink); margin-bottom: .35em; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--hero-muted); max-width: 30rem; margin-bottom: 1.8rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }
.hero-badges { display: flex; gap: 1.1rem; margin-top: 2rem; align-items: center; flex-wrap: wrap; }
.hero-badges .badge-item { display: flex; align-items: center; gap: .5rem; color: var(--hero-muted); font-size: .92rem; font-weight: 600; }
.hero-badges img { width: 40px; height: 40px; object-fit: contain; }
.hero--plate { min-height: min(88vh, 800px); isolation: isolate; }
.hero--plate::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--hero-pattern);
  opacity: .42;
}
.hero--plate .hero-inner { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.hero-food { position: relative; display: grid; place-items: center; min-width: 0; }
.hero-food::before {
  content: ""; position: absolute; width: 92%; aspect-ratio: 1;
  border-radius: 50%; background: var(--hero-halo); filter: blur(36px);
}
.hero-food img {
  position: relative; width: min(100%, 760px); height: auto;
  filter: drop-shadow(0 28px 24px var(--hero-food-shadow));
}

/* ---------- sections ---------- */
.section { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.section--tint { background: var(--surface); }
.section--dark { background: var(--navy-deep); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: var(--on-dark-head); }
.section-head { max-width: 44rem; margin-bottom: 2.6rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block; font-size: .85rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--kicker); margin-bottom: .7rem;
}
.section-head p { color: var(--muted); }
.section--dark .section-head p { color: var(--on-dark-muted); }

.divider-motif {
  display: flex; justify-content: center; margin: 0 auto 1rem;
  color: var(--kicker);
}
.divider-motif svg { width: 120px; height: 18px; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--strip-bg); color: var(--strip-ink); padding: 1.1rem 0; }
.trust-items { display: flex; justify-content: center; gap: clamp(1.4rem, 5vw, 4rem); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .98rem; }
.trust-item img { width: 34px; height: 34px; object-fit: contain; }
.trust-item svg { width: 22px; height: 22px; fill: var(--strip-accent); flex: none; }

/* ---------- dish cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; }
.dish-card {
  background: var(--card-bg); border: 1px solid var(--card-line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease-out, box-shadow .3s ease-out;
  text-decoration: none; color: inherit;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--card-shadow); }
.dish-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface); }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease-out; }
.dish-card:hover .dish-media img { transform: scale(1.08); }
.dish-body { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.dish-top { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.dish-name { font-family: var(--head-font); font-size: 1.18rem; font-weight: 700; color: var(--card-head); margin: 0; }
.dish-price { font-weight: 800; color: var(--price); white-space: nowrap; font-size: 1.05rem; }
.dish-desc { color: var(--card-muted); font-size: .93rem; line-height: 1.55; margin: 0; flex: 1; }
.dish-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .3rem; }
.tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .18rem .55rem; border-radius: 99px;
  background: var(--tag-bg); color: var(--tag-ink);
}
.dish-actions { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-top: .55rem; }
.add-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--brand-strong, var(--brand));
  border: 1.5px solid var(--brand); border-radius: var(--btn-radius);
  font-weight: 700; font-size: .86rem; padding: .42rem .95rem; cursor: pointer;
  transition: background .25s ease-out, color .25s ease-out, transform .25s ease-out;
}
.add-btn:hover { background: var(--brand); color: var(--brand-ink); transform: translateY(-2px); }

/* text-only dish rows (drinks/sides without photos) */
.dish-row {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .95rem 0; border-bottom: 1px dashed var(--card-line);
}
.dish-row .dish-name { font-size: 1.06rem; }
.dish-row .dish-desc { font-size: .9rem; }
.dish-row-main { max-width: 46rem; }
.dish-row-end { display: flex; align-items: center; gap: .9rem; white-space: nowrap; }
.row-list { columns: 2; column-gap: 3.2rem; }
.row-list .dish-row { break-inside: avoid; }

/* ---------- category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; }
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1 / 1.06; display: flex; align-items: flex-end;
  text-decoration: none; isolation: isolate;
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease-out; z-index: -1; }
.cat-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(4, 8, 15, .82) 8%, rgba(4, 8, 15, .12) 55%, transparent);
}
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile-label {
  position: relative; z-index: 1; width: 100%; padding: 1rem 1.1rem;
  color: #fff; font-family: var(--head-font); font-weight: 700; font-size: 1.22rem;
  display: flex; justify-content: space-between; align-items: center;
}
.cat-tile-label span:last-child { font-size: .85rem; opacity: .85; font-family: var(--body-font); font-weight: 600; }
.cat-tile--text { background: var(--navy); }
.cat-tile--text::after { background: linear-gradient(to top, rgba(0,0,0,.35), transparent); }

/* ---------- story ---------- */
.story-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-photo { position: relative; }
.story-photo img {
  width: min(400px, 100%); margin-inline: auto;
  border-radius: var(--arch-radius, var(--radius));
  background: var(--story-photo-bg);
  padding: clamp(1rem, 2vw, 1.6rem) clamp(1rem, 2vw, 1.6rem) 0;
}
.story-photo::before {
  content: ""; position: absolute; inset: -14px; z-index: -1;
  border: 2px solid var(--kicker); border-radius: var(--arch-radius, var(--radius));
  opacity: .35; transform: translate(14px, 14px);
}
.story-sign { margin-top: 1.2rem; font-family: var(--head-font); font-style: italic; font-size: 1.15rem; color: var(--kicker); }
.story-points { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; gap: .75rem; }
.story-points li { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted); }
.section--dark .story-points li { color: var(--on-dark-muted); }
.story-points svg { width: 20px; height: 20px; fill: var(--kicker); flex: none; margin-top: .2rem; }

/* ---------- banners & strips ---------- */
.banner {
  position: relative; border-radius: var(--radius); overflow: hidden;
  padding: clamp(2.2rem, 5vw, 3.6rem); isolation: isolate;
  background: var(--navy-deep); color: var(--on-dark);
}
.banner img.banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.banner::after { content: ""; position: absolute; inset: 0; background: var(--banner-overlay); z-index: -1; }
.banner--plain { background: var(--banner-plain-bg); }
.banner h2, .banner h3 { color: #fff; }
.banner p { color: rgba(255, 255, 255, .88); max-width: 36rem; }
.banner .btn { margin-top: .6rem; }
.banner-note { font-size: .9rem; opacity: .8; margin-top: .8rem; }

.info-duo { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 1.6rem; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
.gallery-grid a { border-radius: calc(var(--radius) * .6); overflow: hidden; display: block; }
.gallery-grid img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .45s ease-out; }
.gallery-grid a:hover img { transform: scale(1.06); }

.proof-photo-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem;
}
.proof-photo {
  margin: 0; overflow: hidden; border: 1px solid var(--card-line);
  border-radius: var(--radius); background: var(--card-bg);
}
.proof-photo-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface); }
.proof-photo-media img { width: 100%; height: 100%; object-fit: cover; }
.proof-photo--chef .proof-photo-media { background: var(--story-photo-bg); }
.proof-photo--chef .proof-photo-media img { object-fit: contain; object-position: center bottom; padding-top: .8rem; }
.proof-photo figcaption { display: grid; gap: .15rem; padding: 1rem 1.1rem 1.15rem; }
.proof-photo figcaption strong { font-family: var(--head-font); color: var(--card-head); font-size: 1.12rem; }
.proof-photo figcaption span { color: var(--card-muted); font-size: .88rem; }

/* ---------- menu page ---------- */
.menu-hero { padding: 8.5rem 0 2.2rem; background: var(--hero-bg); }
.menu-hero h1 { color: var(--hero-ink); }
.menu-hero p { color: var(--hero-muted); max-width: 40rem; }
.menu-toolbar {
  position: sticky; top: 62px; z-index: 60;
  background: var(--toolbar-bg); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-line);
  padding: .65rem 0;
}
.menu-toolbar-inner { display: flex; gap: 1rem; align-items: center; }
.menu-tabs { display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none; flex: 1; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  white-space: nowrap; text-decoration: none; font-weight: 600; font-size: .92rem;
  color: var(--toolbar-ink); padding: .42rem .95rem; border-radius: 99px;
  border: 1px solid transparent; transition: background .2s ease, color .2s ease;
}
.menu-tab:hover { background: var(--surface); }
.menu-tab.is-active { background: var(--brand); color: var(--brand-ink); }
.menu-search {
  min-width: 180px; padding: .5rem .9rem; border-radius: 99px;
  border: 1px solid var(--card-line); background: var(--card-bg); color: var(--ink);
  font-family: inherit; font-size: .92rem;
}
.menu-group { padding: 2.8rem 0 .6rem; scroll-margin-top: 130px; }
.menu-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.menu-group-head h2 { margin: 0; }
.menu-group-head a { color: var(--kicker); font-weight: 600; font-size: .92rem; text-decoration: none; }
.menu-group-head a:hover { text-decoration: underline; }
.variant-note { font-size: .84rem; color: var(--card-muted); }

/* specials callout */
.specials {
  border: 1.5px solid var(--kicker); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap;
  background: var(--surface);
}
.specials-badge {
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: var(--kicker); color: var(--navy-deep); padding: .3rem .8rem; border-radius: 99px;
}

/* ---------- dish page ---------- */
.dish-hero { padding: 8.5rem 0 3rem; }
.dish-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.dish-photo { border-radius: var(--radius); overflow: hidden; }
.dish-photo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.breadcrumbs { font-size: .88rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-strong, var(--brand)); }
.price-display { font-size: 1.9rem; font-weight: 800; color: var(--price); margin: .8rem 0 1.2rem; font-family: var(--head-font); }
.variant-picker { margin: 0 0 1.4rem; }
.variant-picker legend { font-weight: 700; font-size: .95rem; margin-bottom: .55rem; }
.variant-options { display: flex; gap: .55rem; flex-wrap: wrap; border: 0; padding: 0; margin: 0; }
.variant-chip { position: relative; }
.variant-chip input { position: absolute; opacity: 0; pointer-events: none; }
.variant-chip label {
  display: inline-flex; gap: .5rem; align-items: baseline; cursor: pointer;
  border: 1.5px solid var(--card-line); border-radius: 99px; padding: .5rem 1.05rem;
  font-size: .92rem; font-weight: 600;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.variant-chip label b { font-weight: 800; }
.variant-chip input:checked + label { border-color: var(--brand); background: var(--brand); color: var(--brand-ink); }
.variant-chip input:focus-visible + label { outline: 3px solid var(--brand); outline-offset: 2px; }

/* ---------- order modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 150; display: none;
  background: var(--overlay-bg); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1.2rem;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--modal-bg); color: var(--modal-ink);
  border-radius: var(--radius); width: min(430px, 100%);
  padding: 2rem 1.9rem; position: relative;
  opacity: 0; transform: translateY(18px);
  transition: opacity .3s ease, transform .3s ease;
}
.modal-overlay.is-open .modal { opacity: 1; transform: translateY(0); }
.modal h3 { margin-bottom: .3rem; }
.modal-sub { color: var(--modal-muted); font-size: .93rem; margin-bottom: 1.3rem; }
.modal-close {
  position: absolute; top: .9rem; right: .9rem; background: none; border: 0;
  font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--modal-muted); padding: .3rem;
}
.platform-list { display: grid; gap: .7rem; }
.platform-btn {
  display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--card-line); border-radius: calc(var(--btn-radius) * .9);
  padding: .85rem 1.1rem; text-decoration: none; font-weight: 700; color: var(--modal-ink);
  transition: border-color .2s ease, transform .2s ease-out, box-shadow .2s ease-out;
}
.platform-btn:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.12); }
.platform-btn small { font-weight: 500; color: var(--modal-muted); }
.modal-alt { margin-top: 1.2rem; text-align: center; font-size: .95rem; color: var(--modal-muted); }
.modal-alt a { color: var(--brand-strong, var(--brand)); font-weight: 700; text-decoration: none; }
.modal-note { font-size: .8rem; color: var(--modal-muted); text-align: center; margin: 1rem 0 0; }

/* ---------- cart drawer ---------- */
.cart-toggle {
  position: relative; display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 0; cursor: pointer; color: var(--header-ink); padding: .4rem;
}
.cart-toggle svg { width: 22px; height: 22px; fill: currentColor; }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--brand); color: var(--brand-ink);
  font-size: .68rem; font-weight: 800; min-width: 17px; height: 17px;
  border-radius: 99px; display: grid; place-items: center; padding: 0 4px;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 160;
  width: min(400px, 94vw); background: var(--modal-bg); color: var(--modal-ink);
  box-shadow: -18px 0 50px rgba(0,0,0,.28);
  transform: translateX(105%); transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-scrim {
  position: fixed; inset: 0; z-index: 155;
  background: var(--overlay-bg); opacity: 0; visibility: hidden;
  transition: opacity .25s ease-out, visibility .25s ease-out;
}
.cart-scrim.is-open { opacity: 1; visibility: visible; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--card-line); }
.cart-head h3 { margin: 0; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.cart-item { display: flex; justify-content: space-between; gap: .9rem; padding: .8rem 0; border-bottom: 1px dashed var(--card-line); font-size: .95rem; }
.cart-item-name { font-weight: 600; }
.cart-item small { color: var(--modal-muted); display: block; }
.cart-item-end { display: flex; align-items: center; gap: .7rem; white-space: nowrap; }
.cart-remove { background: none; border: 0; cursor: pointer; color: var(--modal-muted); font-size: 1.05rem; padding: .2rem; }
.cart-remove:hover { color: var(--red); }
.cart-empty { color: var(--modal-muted); text-align: center; margin-top: 2.5rem; }
.cart-foot { padding: 1.2rem 1.4rem 1.5rem; border-top: 1px solid var(--card-line); }
.cart-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem; }
.cart-foot .btn { width: 100%; }
.cart-foot-note { font-size: .8rem; color: var(--modal-muted); text-align: center; margin: .7rem 0 0; }

/* toast */
.toast {
  position: fixed; bottom: 1.4rem; left: 50%; z-index: 170;
  background: var(--navy-deep); color: #fff; font-weight: 600; font-size: .95rem;
  padding: .75rem 1.4rem; border-radius: 99px; box-shadow: 0 12px 30px rgba(0,0,0,.3);
  opacity: 0; transform: translate(-50%, 12px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* sticky mobile order bar */
.sticky-order {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: .7rem; padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: var(--modal-bg); box-shadow: 0 -6px 24px rgba(0,0,0,.18);
}
.sticky-order .btn { flex: 1; min-height: 46px; }
.menu-search-status {
  margin-top: .65rem; margin-bottom: 0; color: var(--toolbar-ink);
  font-size: .9rem; font-weight: 600;
}

.lightbox { padding: clamp(1rem, 4vw, 3rem); }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: fixed; top: max(1rem, env(safe-area-inset-top)); right: 1rem;
  z-index: 1; width: 48px; height: 48px; border-radius: 50%;
  background: var(--modal-bg); color: var(--modal-ink);
}

.add-btn, .cart-toggle, .cart-remove, .modal-close, .nav-toggle {
  min-width: 44px; min-height: 44px;
}

/* ---------- location / contact ---------- */
.map-frame { border: 0; width: 100%; height: 380px; border-radius: var(--radius); display: block; filter: var(--map-filter, none); }
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
.contact-card {
  background: var(--card-bg); border: 1px solid var(--card-line); border-radius: var(--radius);
  padding: 1.6rem; text-align: center;
}
.contact-card svg { width: 30px; height: 30px; fill: var(--brand-strong, var(--brand)); margin-bottom: .7rem; }
.contact-card h3 { font-size: 1.15rem; }
.contact-card p, .contact-card a { color: var(--card-muted); text-decoration: none; font-size: .96rem; }
.contact-card a:hover { color: var(--brand-strong, var(--brand)); }
.hours-note { font-size: .85rem; color: var(--muted); }

/* ---------- quick answers ---------- */
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-line);
  border-radius: var(--radius); padding: 0 1.2rem;
}
.faq-item summary {
  color: var(--card-head); cursor: pointer; font-family: var(--head-font);
  font-size: 1.08rem; font-weight: 700; padding: 1rem 2rem 1rem 0;
}
.faq-item p { color: var(--card-muted); margin: 0; padding: 0 0 1.1rem; }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; }
.post-card {
  background: var(--card-bg); border: 1px solid var(--card-line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .3s ease-out, box-shadow .3s ease-out;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--card-shadow); }
.post-card-media { aspect-ratio: 16/9; overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.article-photo { border-radius: var(--radius); overflow: hidden; }
.article-photo img { display: block; width: 100%; height: auto; }
.post-card-body { padding: 1.3rem 1.4rem 1.5rem; }
.post-card time { font-size: .82rem; color: var(--card-muted); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; }
.post-card h3 { margin: .5rem 0 .45rem; color: var(--card-head); }
.post-card p { color: var(--card-muted); font-size: .93rem; margin: 0; }
.article { padding-top: 8.5rem; }
.article-body { font-size: 1.08rem; }
.article-body h2 { margin-top: 1.6em; }
.article-body img { border-radius: var(--radius); margin: 1.4rem 0; }
.article-meta { color: var(--muted); font-size: .92rem; margin-bottom: 2rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-ink); padding: 3.6rem 0 0; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.3fr) repeat(3, minmax(0,1fr)); gap: 2.4rem; padding-bottom: 2.6rem; }
.site-footer h4 { color: var(--footer-head); font-size: 1.02rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: var(--footer-ink); text-decoration: none; }
.site-footer a:hover { color: var(--footer-accent); }
.footer-brand img { width: 56px; margin-bottom: .9rem; }
.footer-brand p { font-size: .93rem; color: var(--footer-muted); max-width: 24rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.footer-halal { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.footer-halal img { width: 44px; height: 44px; }
.footer-halal span { font-size: .85rem; color: var(--footer-muted); }
.footer-bottom {
  border-top: 1px solid var(--footer-line); padding: 1.1rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: var(--footer-muted);
}

/* ---------- reveal motion ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), transform .6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: 8.5rem 0 3rem; background: var(--hero-bg); }
.page-hero h1 { color: var(--hero-ink); }
.page-hero p { color: var(--hero-muted); max-width: 42rem; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .story-grid, .dish-layout { grid-template-columns: minmax(0,1fr); }
  .hero--plate .hero-inner { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .hero-art { order: -1; }
  .hero-art img { width: min(400px, 80%); }
  .card-grid, .contact-cards, .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .row-list { columns: 1; }
  .info-duo { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero { padding: 6.4rem 0 3rem; min-height: 0; }
  .story-ambient { display: none; }
  .story-photo::before, .frame-photo::before { display: none; }
  .hero--plate .hero-inner { grid-template-columns: minmax(0,1fr); gap: 2rem; }
  .hero-food img { width: min(100%, 560px); }
  .hero-art::before { inset: 12% 6% 0 6%; }
  .hero-sub { max-width: 100%; }
  .main-nav {
    position: fixed; inset: 0; z-index: 110; flex-direction: column; justify-content: center;
    gap: 1.8rem; background: var(--mobile-nav-bg); font-size: 1.25rem;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; }
  .main-nav a { color: var(--mobile-nav-ink); }
  .nav-toggle { display: block; z-index: 120; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-phone span { display: none; }
  .header-order { display: none; }
  .card-grid, .contact-cards, .post-grid { grid-template-columns: minmax(0,1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-photo-grid { grid-template-columns: minmax(0, 1fr); }
  .sticky-order.sticky-order--menu { display: flex; }
  .menu-toolbar { top: 56px; }
  .menu-toolbar-inner { flex-direction: column; align-items: stretch; gap: .55rem; }
  .menu-search { order: -1; width: 100%; min-width: 0; min-height: 44px; }
  .menu-tabs { width: 100%; flex: none; }
  .menu-group { scroll-margin-top: 190px; }
  .has-sticky-order { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .trust-items { gap: 1rem 1.6rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .dish-card, .post-card, .btn, .add-btn, .cat-tile img, .dish-media img,
  .gallery-grid img, .platform-btn { transition: none !important; }
  .dish-card:hover, .post-card:hover, .btn:hover { transform: none; }
  .cart-drawer { transition: none; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer, .sticky-order, .cart-drawer, .modal-overlay, .menu-toolbar { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- order flow: pickup-first ---------- */
.platform-btn--primary {
  background: var(--brand); color: var(--brand-ink); border-color: var(--brand);
  flex-wrap: wrap;
}
.platform-btn--primary svg { width: 18px; height: 18px; fill: currentColor; }
.platform-btn--primary small { color: var(--brand-ink); opacity: .75; }
.platform-btn--primary:hover { border-color: var(--brand-hover); background: var(--brand-hover); box-shadow: 0 10px 24px var(--brand-glow); }
.modal-divider {
  display: flex; align-items: center; gap: .8rem; margin: 1.2rem 0 .8rem;
  color: var(--modal-muted, var(--muted)); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
}
.modal-divider::before, .modal-divider::after { content: ""; flex: 1; height: 1px; background: var(--card-line); }
.delivery-links { display: flex; gap: 1.4rem; justify-content: center; margin: 0; flex-wrap: wrap; }
.delivery-links a { color: inherit; font-weight: 600; font-size: .95rem; text-decoration: none; border-bottom: 1px solid var(--card-line); padding-bottom: 2px; }
.delivery-links a:hover { color: var(--brand-strong, var(--brand)); border-color: currentColor; }
.delivery-links--stack { flex-direction: column; gap: .7rem; justify-content: flex-start; }
.pickup-card {
  background: var(--card-bg); border: 1px solid var(--card-line); border-radius: var(--radius);
  padding: 2rem 2.1rem;
}
.pickup-card--muted { background: var(--surface); }
.pickup-steps { margin: 1rem 0 0; padding-left: 1.3rem; display: grid; gap: .6rem; }
.pickup-steps a { color: var(--brand-strong, var(--brand)); }

/* ---------- inquiry form ---------- */
.inquiry-form { display: grid; gap: 1.1rem; max-width: 620px; margin-inline: auto; }
.form-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 1.1rem; }
.inquiry-form label { display: grid; gap: .4rem; font-weight: 600; font-size: .92rem; }
.inquiry-form input, .inquiry-form textarea {
  font: inherit; color: var(--ink); background: var(--card-bg);
  border: 1.5px solid var(--card-line); border-radius: 10px; padding: .7rem .9rem;
}
.inquiry-form input:focus, .inquiry-form textarea:focus { outline: 3px solid var(--brand); outline-offset: 1px; }
.promo-row { display: flex; gap: .9rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
.promo-row input {
  font: inherit; padding: .6rem .9rem; border-radius: 10px;
  border: 1.5px dashed var(--card-line); background: var(--surface); color: var(--muted); max-width: 180px;
}
.checkout-panel { background: var(--card-bg); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 1.6rem; }

/* ---------- framed photo (non-arch) ---------- */
.frame-photo { position: relative; }
.frame-photo img { border-radius: var(--radius); width: 100%; height: auto; }
.frame-photo::before {
  content: ""; position: absolute; inset: 10px -10px -10px 10px; z-index: -1;
  border: 1.5px solid var(--kicker); border-radius: var(--radius); opacity: .4;
}
@media (max-width: 640px) { .form-row { grid-template-columns: minmax(0,1fr); } }


/* ---------- round-1 review fixes ---------- */
/* home H1 locality subline */
.h1-sub {
  display: block; margin-top: .65rem;
  font-family: var(--body-font); font-size: clamp(.85rem, 1.3vw, 1rem);
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--kicker);
}

/* page hero with photo backdrop (order page) */
.page-hero--photo { position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.page-hero--photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--hero-photo-overlay, linear-gradient(90deg, rgba(10,22,36,.95), rgba(10,22,36,.55) 60%, rgba(10,22,36,.25)));
}
.page-hero--photo .container { position: relative; z-index: 2; }
.page-hero--photo h1, .page-hero--photo p { color: var(--hero-photo-ink, #fff); }
.page-hero--photo p { color: var(--hero-photo-muted, #E8EDF2); }

/* Non-generative treatment for real menu photos shot on a white sweep. */
.studio-photo,
.gallery-grid a.studio-photo {
  background-color: var(--studio-mid);
  background-image:
    repeating-linear-gradient(135deg, var(--studio-line) 0 1px, transparent 1px 32px),
    radial-gradient(ellipse at 50% 25%, var(--studio-light) 0%, var(--studio-mid) 72%, var(--studio-deep) 100%);
  isolation: isolate;
}
.studio-photo img { mix-blend-mode: multiply; }

/* tag chips: menu-annotation style instead of UI-kit pill */
.tag {
  background: transparent; color: var(--tag-ink);
  border: 1px solid var(--tag-line, var(--card-line));
}

/* map block never looks broken while loading */
.map-shell {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--card-line);
}
.map-shell::before {
  content: "Loading map — " attr(data-address);
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--muted); font-size: .95rem; padding: 1rem; text-align: center;
}
.map-shell iframe { position: relative; z-index: 1; }

/* dish page blog link */
.dish-blog-link { margin-top: .6rem; }
.dish-blog-link a { color: var(--kicker); font-weight: 600; text-decoration: none; font-size: .95rem; }
.dish-blog-link a:hover { text-decoration: underline; }

/* ---------- landing perfection pass ---------- */
/* consistent vertical rhythm in the hero copy block */
.hero-kicker { margin-bottom: 1.3rem; }
.hero h1 { margin-bottom: .45em; text-wrap: balance; }
.hero-sub { margin-bottom: 2rem; line-height: 1.7; }
.hero-ctas { gap: 1rem; }
.hero-badges { margin-top: 2.4rem; gap: 1.4rem; }

/* section heads: identical spacing everywhere, balanced titles */
.section-head { margin-bottom: clamp(2.2rem, 4vw, 3rem); }
.section-head h2 { text-wrap: balance; margin-bottom: .4em; }
.section-head--center { max-width: 46rem; }
.kicker { margin-bottom: .8rem; }

/* trust strip: even breathing room */
.trust-strip { padding: 1.25rem 0; }
.trust-item { letter-spacing: .01em; }

/* card internals: steadier baseline */
.dish-body { padding: 1.2rem 1.35rem 1.35rem; gap: .5rem; }
.dish-top { align-items: baseline; }
.dish-name { line-height: 1.25; }

/* category tiles: consistent label treatment */
.cat-grid { gap: 1.5rem; }
.cat-tile-label { padding: 1.05rem 1.2rem; letter-spacing: .01em; }

/* story block: tighter signature, aligned list rhythm */
.story-sign { margin-top: 1.4rem; }
.story-points { gap: .8rem; margin: 1.5rem 0 2rem; }

/* banners: title/copy rhythm */
.banner h2, .banner h3 { margin-bottom: .45em; text-wrap: balance; }
.banner p { margin-bottom: 1.1rem; }

/* footer: align column tops, calmer line-height */
.footer-grid { align-items: start; }
.site-footer h4 { margin-top: 0; }
.footer-list { line-height: 1.5; }

/* platform buttons: consistent height rhythm in modal/checkout */
.platform-btn { min-height: 54px; }
.platform-btn small { display: block; }

/* ============================================================
   Luxury pass (Ben & Jack's-informed): order modal redesign,
   tile zoom, ambient depth layers. All non-generative.
   ============================================================ */

/* ---------- order modal: rectangular, calm hierarchy ---------- */
.modal--order { width: min(600px, 94vw); padding: 2.2rem 2.4rem 1.9rem; }
.order-head { text-align: center; margin-bottom: 1.5rem; }
.order-head .kicker { margin-bottom: .45rem; font-size: .78rem; }
.order-head h3 { font-size: 1.75rem; margin: 0; }
.order-actions { display: grid; grid-template-columns: 1.35fr 1fr; gap: .9rem; }
.order-primary, .order-secondary {
  display: flex; flex-direction: column; justify-content: center; gap: .15rem;
  min-height: 76px; padding: 1rem 1.3rem; text-decoration: none;
  border-radius: 12px; text-align: center;
  transition: transform .22s ease-out, box-shadow .22s ease-out, background .22s ease-out;
}
.order-primary { background: var(--brand); color: var(--brand-ink); }
.order-primary span { font-weight: 800; font-size: 1.04rem; }
.order-primary small { opacity: .78; font-weight: 600; font-size: .82rem; }
.order-primary:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 12px 26px var(--brand-glow); }
.order-secondary { border: 1.5px solid var(--card-line); color: var(--modal-ink); }
.order-secondary span { font-weight: 700; font-size: 1rem; }
.order-secondary small { color: var(--modal-muted); font-weight: 600; font-size: .82rem; }
.order-secondary:hover { border-color: var(--brand); transform: translateY(-2px); }
.order-meta {
  margin: 1rem 0 0; font-size: .82rem; color: var(--modal-muted);
  text-align: center; line-height: 1.5;
}
.order-meta--center { margin-top: .7rem; }
.modal--order .modal-divider { margin: 1.3rem 0 .9rem; }
@media (max-width: 560px) {
  .order-actions { grid-template-columns: minmax(0, 1fr); }
  .modal--order { padding: 1.8rem 1.4rem 1.5rem; }
}

/* ---------- tile zoom (tighter crops on white-sweep photos) ---------- */
.cat-tile img { transform: scale(var(--tile-zoom, 1)); }
.cat-tile:hover img { transform: scale(calc(var(--tile-zoom, 1) * 1.07)); }

/* ---------- ambient depth layers (real assets + geometry only) ---------- */
.hero { isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M36 8l6.5 14.2L56 16l-6.2 13.8L64 36l-14.2 6.2L56 56l-13.5-6.2L36 64l-6.5-14.2L16 56l6.2-13.8L8 36l14.2-6.2L16 16l13.5 6.2z' fill='none' stroke='%23FFA600' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 90% at 30% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(120% 90% at 30% 30%, #000 0%, transparent 70%);
}
.hero > .container { position: relative; z-index: 1; }

.story-grid { position: relative; isolation: isolate; }
.section--tint:has(.story-ambient), .story-wrap { overflow-x: clip; }
.story-ambient {
  position: absolute; right: 0; bottom: -12%; width: 58%; max-width: 640px;
  opacity: .06; pointer-events: none; z-index: -1;
  filter: saturate(.8);
}

/* section seam softening: gentle gradient at panel tops */
.section--tint { position: relative; }
.section--tint::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 70px; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .14), transparent);
}
.trust-strip { border-top: 1px solid rgba(255, 166, 0, .16); }

/* richer card edge on hover */
.dish-card:hover, .post-card:hover { border-color: rgba(255, 166, 0, .3); }

/* ============================================================
   Berenjak-informed refinements: statement band, scroll cue,
   highlight markers, footer wordmark marquee.
   ============================================================ */
.statement { padding: clamp(3rem, 6vw, 4.6rem) 0; text-align: center; }
.statement-line {
  font-family: var(--head-font); font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 600; font-style: italic; line-height: 1.35; margin: 0;
  color: var(--head-ink); text-wrap: balance;
}
.hl { position: relative; white-space: nowrap; }
.hl::before {
  content: "\2299"; /* circled dot marker, Berenjak's proper-noun device */
  color: var(--kicker); font-style: normal; font-size: .55em;
  margin-right: .32em; vertical-align: .28em;
}

.scroll-cue {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 2rem;
  color: var(--hero-muted); font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; text-decoration: none;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 44px; background: var(--kicker);
  transform-origin: top; opacity: .7;
}
.js .scroll-cue::after { animation: cueGrow 2.2s ease-in-out infinite; }
@keyframes cueGrow { 0%, 100% { transform: scaleY(.35); } 55% { transform: scaleY(1); } }
.scroll-cue:hover { color: var(--kicker); }

.marquee {
  overflow: hidden; padding: .85rem 0; background: var(--strip-bg);
  border-top: 1px solid rgba(255, 166, 0, .14);
}
.marquee-track { display: flex; width: max-content; }
.marquee-track span {
  font-family: var(--head-font); font-size: .95rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--strip-ink); opacity: .55; white-space: nowrap;
}
.js .marquee-track { animation: marqueeMove 38s linear infinite; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .js .scroll-cue::after, .js .marquee-track { animation: none; }
}

/* ---------- order modal banner + order-page card media ---------- */
.order-banner {
  margin: -2.2rem -2.4rem 1.4rem; border-radius: 14px 14px 0 0; overflow: hidden;
  height: 150px;
}
.order-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.modal--order { overflow: hidden; padding-top: 2.2rem; }
@media (max-width: 560px) {
  .order-banner { margin: -1.8rem -1.4rem 1.2rem; height: 120px; }
}
.pickup-card { overflow: hidden; }
.pickup-card-media {
  margin: -2rem -2.1rem 1.4rem; height: 170px; overflow: hidden;
}
.pickup-card-media img { width: 100%; height: 100%; object-fit: cover; }


/* ---------- mobile e2e review fixes ---------- */
.details-link {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: .4rem .7rem; margin: -.4rem -.7rem;
  font-size: .86rem; font-weight: 600; color: var(--kicker); text-decoration: none;
}
.details-link:hover { text-decoration: underline; }
.delivery-links a { padding: .6rem .2rem; display: inline-flex; align-items: center; min-height: 44px; border-bottom-width: 1px; }
.delivery-links--stack a { min-height: 48px; }
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 1.8rem; }
}
