/* =========================================================================
   RFC Chicken & Ribs — design system
   Dark "late-night London grill" look: charcoal surfaces, flame red, mustard gold.
   ========================================================================= */

:root {
  --ink: #0f0d0b;
  --ink-2: #171411;
  --ink-3: #201c18;
  --ink-4: #2a241f;
  --line: #312a24;
  --line-2: #443a31;
  --cream: #f7f0e6;
  --muted: #b5aa9b;
  --dim: #82776b;
  --red: #f0463c;
  --red-hi: #ff5d52;
  --red-lo: #b8261e;
  --gold: #f8bc1c;
  --gold-lo: #c98f00;
  --green: #3cc774;
  --teal: #1f9e86;
  --paper: #f4ebdd;
  --paper-ink: #1c1612;

  --f-display: "Anton", "Impact", "Arial Narrow", sans-serif;
  --f-body: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-script: "Kaushan Script", "Brush Script MT", cursive;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --pill: 999px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, .75);
  --shadow-sm: 0 6px 20px -10px rgba(0, 0, 0, .7);
  --ring: 0 0 0 3px rgba(248, 188, 28, .55);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --header-h: 72px;
  --gutter: clamp(16px, 4vw, 32px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 72px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font: 400 16px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
main { overflow-x: clip; }
.prose { overflow-wrap: anywhere; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 999; padding: 10px 16px;
  background: var(--gold); color: #111; font-weight: 700; border-radius: var(--r-sm);
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 26px; height: 26px; }

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--paper { background: var(--paper); color: var(--paper-ink); }
.section--raised { background: var(--ink-2); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--f-script); color: var(--red); font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1; display: inline-block; transform: rotate(-3deg); margin-bottom: 10px;
}
.section--paper .eyebrow { color: var(--red-lo); }
.display {
  font-family: var(--f-display); text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: .95;
}
.h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: .98; letter-spacing: .01em; }
.h3 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.35rem, 2.4vw, 1.75rem); letter-spacing: .02em; line-height: 1.05; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.section--paper .lead { color: #5b5047; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head .lead { margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--ink-3); --b-fg: var(--cream); --b-bd: var(--line-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: var(--pill);
  background: var(--b-bg); color: var(--b-fg); border: 1.5px solid var(--b-bd);
  font-weight: 600; font-size: 1rem; letter-spacing: .01em; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s, border-color .18s, box-shadow .18s;
  cursor: pointer; user-select: none; position: relative;
}
.btn:hover { transform: translateY(-1px); border-color: var(--cream); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }
.btn--primary { --b-bg: var(--red); --b-fg: #fff; --b-bd: var(--red); box-shadow: 0 10px 28px -12px rgba(240, 70, 60, .8); }
.btn--primary:hover { --b-bg: var(--red-hi); border-color: var(--red-hi); }
.btn--gold { --b-bg: var(--gold); --b-fg: #1a1206; --b-bd: var(--gold); }
.btn--gold:hover { border-color: #ffd35a; --b-bg: #ffcb3d; }
.btn--ghost { --b-bg: transparent; }
.btn--light { --b-bg: var(--cream); --b-fg: var(--paper-ink); --b-bd: var(--cream); }
.btn--dark { --b-bg: var(--paper-ink); --b-fg: var(--cream); --b-bd: var(--paper-ink); }
.btn--sm { min-height: 38px; padding: 0 16px; font-size: .9rem; }
.btn--lg { min-height: 56px; padding: 0 30px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn .price-tag { font-variant-numeric: tabular-nums; opacity: .95; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.35); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gold); }
.link-arrow .icon { transition: transform .2s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.icon-btn {
  width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 50%;
  background: var(--ink-3); border: 1.5px solid var(--line); transition: background .2s, border-color .2s;
}
.icon-btn:hover { border-color: var(--line-2); background: var(--ink-4); }

/* ---------- Badges / tags ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 10px; border-radius: var(--pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink-4); color: var(--muted); border: 1px solid var(--line-2);
}
.tag .icon { width: 13px; height: 13px; }
.tag--popular { background: rgba(248, 188, 28, .14); color: var(--gold); border-color: rgba(248, 188, 28, .35); }
.tag--spicy { background: rgba(240, 70, 60, .14); color: #ff7b72; border-color: rgba(240, 70, 60, .4); }
.tag--peri { background: rgba(255, 128, 64, .13); color: #ff9e6b; border-color: rgba(255, 128, 64, .35); }
.tag--veggie { background: rgba(60, 199, 116, .12); color: #6fdc9b; border-color: rgba(60, 199, 116, .35); }
.tag--sharing { background: rgba(31, 158, 134, .15); color: #5fd1bb; border-color: rgba(31, 158, 134, .4); }
.tag--deal { background: var(--red); color: #fff; border-color: var(--red); }

.status { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; }
.status__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--dim); box-shadow: 0 0 0 4px rgba(130,119,107,.18); }
.status.is-open { color: #7be3a4; }
.status.is-open .status__dot { background: var(--green); box-shadow: 0 0 0 4px rgba(60, 199, 116, .2); animation: pulse 2s infinite; }
.status.is-closed { color: #ff8a80; }
.status.is-closed .status__dot { background: var(--red); box-shadow: 0 0 0 4px rgba(240, 70, 60, .2); }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(60, 199, 116, 0); } }

/* =========================================================================
   Header
   ========================================================================= */
.announce {
  background: var(--red); color: #fff; font-size: .875rem; font-weight: 500;
  text-align: center; padding: 8px var(--gutter); position: relative; z-index: 51;
}
.announce strong { font-weight: 800; letter-spacing: .04em; }
.announce a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.announce .code { background: rgba(0,0,0,.22); border: 1px dashed rgba(255,255,255,.6); padding: 1px 8px; border-radius: 6px; font-weight: 800; letter-spacing: .08em; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 13, 11, .82); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, background .25s;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(15, 13, 11, .94); }
.header-bar { height: var(--header-h); display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 58px; height: auto; filter: drop-shadow(0 4px 10px rgba(240,70,60,.25)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-display); font-size: 1.45rem; letter-spacing: .03em; color: var(--red); }
.brand__sub { font-family: var(--f-script); font-size: .95rem; color: var(--cream); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.main-nav > a, .nav-dd > button {
  display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; border-radius: var(--pill);
  font-weight: 500; color: var(--muted); transition: color .2s, background .2s;
}
.main-nav > a:hover, .nav-dd > button:hover, .nav-dd.is-open > button { color: var(--cream); background: var(--ink-3); }
.main-nav > a[aria-current="page"], .nav-dd.is-current > button { color: var(--cream); background: var(--ink-3); box-shadow: inset 0 -2px 0 var(--red); }
.nav-dd { position: relative; }
.nav-dd > button .icon { width: 16px; height: 16px; transition: transform .2s; }
.nav-dd.is-open > button .icon { transform: rotate(180deg); }
.nav-dd__panel {
  position: absolute; top: calc(100% + 10px); left: -8px; width: 330px; padding: 8px;
  background: var(--ink-2); border: 1px solid var(--line-2); border-radius: var(--r); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .2s var(--ease);
}
.nav-dd.is-open .nav-dd__panel { opacity: 1; visibility: visible; transform: none; }
.nav-dd__panel a { display: flex; gap: 14px; align-items: flex-start; padding: 12px; border-radius: 12px; transition: background .15s; }
.nav-dd__panel a:hover, .nav-dd__panel a:focus-visible { background: var(--ink-3); }
.nav-dd__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; background: rgba(240,70,60,.14); color: var(--red-hi); }
.nav-dd__panel a:nth-child(2) .nav-dd__ico { background: rgba(248,188,28,.14); color: var(--gold); }
.nav-dd__panel a:nth-child(3) .nav-dd__ico { background: rgba(31,158,134,.16); color: #5fd1bb; }
.nav-dd__panel strong { display: block; font-weight: 600; color: var(--cream); }
.nav-dd__panel span { font-size: .85rem; color: var(--muted); line-height: 1.4; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.branch-chip {
  display: inline-flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px 0 12px;
  border-radius: var(--pill); background: var(--ink-3); border: 1.5px solid var(--line); text-align: left;
  transition: border-color .2s;
}
.branch-chip:hover { border-color: var(--line-2); }
.branch-chip .icon { color: var(--red); }
.branch-chip__label { display: flex; flex-direction: column; line-height: 1.15; }
.branch-chip__label small { font-size: .7rem; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.branch-chip__label b { font-weight: 600; font-size: .9rem; }
.branch-chip .status__dot { margin-left: 2px; }
.cart-btn { position: relative; }
.cart-btn .icon { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 21px; height: 21px; padding: 0 5px; border-radius: var(--pill);
  background: var(--red); color: #fff; font-size: .72rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--ink); transform: scale(0); transition: transform .25s var(--ease);
}
.cart-count.has-items { transform: scale(1); }
.cart-count.bump { animation: bump .4s var(--ease); }
@keyframes bump { 40% { transform: scale(1.35); } }
.nav-toggle { display: none; }

/* Mobile drawer */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 80; background: rgba(5, 4, 3, .66); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: .25s;
}
.drawer-scrim.is-open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 81; width: min(88vw, 360px);
  background: var(--ink-2); border-right: 1px solid var(--line); display: flex; flex-direction: column;
  transform: translateX(-102%); transition: transform .32s var(--ease);
  padding: calc(env(safe-area-inset-top, 0px) + 16px) 20px calc(env(safe-area-inset-bottom, 0px) + 20px);
}
.nav-drawer.is-open { transform: none; }
.nav-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.nav-drawer__links a {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.45rem; letter-spacing: .02em;
}
.nav-drawer__links a[aria-current="page"] { color: var(--red); }
.nav-drawer__links a .icon { color: var(--dim); }
.nav-drawer__order { display: grid; gap: 10px; margin-top: 22px; }
.nav-drawer__foot { margin-top: auto; padding-top: 20px; font-size: .9rem; color: var(--muted); display: grid; gap: 8px; }
.nav-drawer__foot a { display: flex; gap: 10px; align-items: center; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-grid; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .brand img { width: 46px; }
  .brand__text { display: none; }
  .branch-chip { padding: 0 12px 0 10px; }
  .branch-chip__label small { display: none; }
  .branch-chip__label b { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .85rem; }
  .header-actions { gap: 8px; }
  .announce { font-size: .8rem; padding-block: 7px; }
}
@media (max-width: 380px) { .branch-chip .icon { display: none; } }

/* =========================================================================
   Hero (home)
   ========================================================================= */
.hero { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(40px, 7vw, 88px) clamp(56px, 8vw, 110px); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; filter: grayscale(1) contrast(1.15) brightness(.55); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 78% 40%, rgba(240, 70, 60, .38), transparent 70%),
    linear-gradient(90deg, var(--ink) 18%, rgba(15, 13, 11, .82) 48%, rgba(15, 13, 11, .35) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 30%);
  mix-blend-mode: normal;
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1; background: var(--red); mix-blend-mode: multiply; opacity: .35;
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2.9rem, 8.2vw, 6.4rem); line-height: .9; letter-spacing: .005em; }
.hero h1 .line { display: block; }
.hero h1 .line--red { color: var(--red); }
.hero h1 .line--outline { color: transparent; -webkit-text-stroke: 2px var(--cream); }
.hero__sub { margin-top: 22px; font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: #d8cec1; max-width: 52ch; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; color: var(--muted); font-size: .92rem; }
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof .icon { color: var(--gold); }

.order-card {
  margin-top: 30px; max-width: 540px; padding: 18px; border-radius: var(--r-lg);
  background: rgba(23, 20, 17, .86); border: 1px solid var(--line-2); box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.order-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.order-card__row > .btn { height: 56px; }
.order-card__note { margin-top: 12px; font-size: .85rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.order-card__note .icon { color: var(--gold); width: 16px; height: 16px; }

.hero__art { position: relative; aspect-ratio: 1 / 1.02; max-width: 560px; justify-self: end; width: 100%; }
.hero__photo {
  position: absolute; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -25px rgba(0,0,0,.9);
  border: 4px solid var(--cream); background: var(--ink-3);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--a { width: 66%; aspect-ratio: 1; top: 4%; right: 0; transform: rotate(3deg); }
.hero__photo--b { width: 54%; aspect-ratio: 1.08; bottom: 2%; left: 0; transform: rotate(-5deg); }
.hero__sticker {
  position: absolute; z-index: 3; width: 150px; aspect-ratio: 1; border-radius: 50%;
  background: var(--gold); color: #1a1206; display: grid; place-items: center; text-align: center;
  transform: rotate(-12deg); box-shadow: 0 16px 30px -12px rgba(0,0,0,.8);
  top: 50%; left: 36%; padding: 14px;
}
.hero__sticker::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 2px dashed rgba(26,18,6,.45); }
.hero__sticker small { display: block; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.hero__sticker b { display: block; font-family: var(--f-display); font-size: 2.6rem; line-height: .9; font-weight: 400; }
.hero__sticker s { font-size: .8rem; opacity: .7; }
.hero__badge { position: absolute; z-index: 2; width: 150px; top: -2%; left: 4%; transform: rotate(-8deg); opacity: .9; filter: drop-shadow(0 6px 14px rgba(0,0,0,.6)); }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { justify-self: center; max-width: 480px; margin-top: 8px; }
  .hero__bg::after { background: radial-gradient(70% 50% at 70% 70%, rgba(240,70,60,.35), transparent 70%), linear-gradient(180deg, rgba(15,13,11,.7) 0%, rgba(15,13,11,.9) 55%, var(--ink) 100%); }
}
@media (max-width: 520px) {
  .order-card__row { grid-template-columns: 1fr; }
  .hero__sticker { width: 118px; left: 32%; }
  .hero__sticker b { font-size: 2rem; }
  .hero__badge { width: 110px; }
}

/* Tape marquee */
.tape { background: var(--gold); color: #1a1206; overflow: hidden; transform: rotate(-1.4deg); margin: -18px -10px 0; position: relative; z-index: 3; box-shadow: 0 14px 30px -18px rgba(0,0,0,.9); }
.tape--red { background: var(--red); color: #fff; transform: rotate(1deg); margin-top: -28px; }
.tape__track { display: flex; width: max-content; animation: tape 36s linear infinite; }
.tape__track span {
  display: inline-flex; align-items: center; gap: 22px; padding: 13px 11px; white-space: nowrap;
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.35rem; letter-spacing: .04em;
}
.tape__track span::after { content: "✦"; font-size: .9rem; }
@keyframes tape { to { transform: translateX(-50%); } }

/* =========================================================================
   Category tiles
   ========================================================================= */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 300px; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: var(--ink-3);
  border: 1px solid var(--line); grid-column: span 2;
}
.cat-tile--wide { grid-column: span 3; min-height: 340px; }
.cat-tile img, .cat-tile .art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.cat-tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(10,8,7,.92) 100%); }
.cat-tile:hover img, .cat-tile:hover .art { transform: scale(1.05); }
.cat-tile h3 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: .95; }
.cat-tile p { color: #d9cfc3; margin-top: 6px; font-size: .95rem; max-width: 34ch; }
.cat-tile .cat-tile__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.cat-tile .cat-tile__from { font-size: .9rem; color: var(--gold); font-weight: 600; }
.cat-tile .round-arrow { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--paper-ink); transition: background .2s, transform .3s var(--ease); }
.cat-tile:hover .round-arrow { background: var(--red); color: #fff; transform: rotate(-35deg); }
@media (max-width: 960px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-tile, .cat-tile--wide { grid-column: span 1; min-height: 240px; }
}
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-tile, .cat-tile--wide { min-height: 190px; padding: 14px; border-radius: var(--r); }
  .cat-tile p { display: none; }
  .cat-tile h3 { font-size: 1.3rem; }
  .cat-tile .round-arrow { width: 34px; height: 34px; }
  .cat-tile .round-arrow .icon { width: 16px; height: 16px; }
  .cat-tile--wide:first-child { grid-column: span 2; }
}

/* Illustrated art tile (items with no photo) */
.art {
  --a1: #3a1612; --a2: #16100d; --ac: #ff8a73;
  display: grid; place-items: center; width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.08) 0 2px, transparent 3px) 0 0 / 22px 22px,
    radial-gradient(120% 90% at 70% 20%, var(--a1), var(--a2));
  color: var(--ac); position: relative; overflow: hidden;
}
.art svg { width: 44%; height: 44%; max-width: 120px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 8px 18px rgba(0,0,0,.45)); }
.art::after {
  content: "RFC"; position: absolute; right: -6px; bottom: -14px; font-family: var(--f-display); font-size: 5.5rem; line-height: 1;
  color: rgba(255,255,255,.035); letter-spacing: .02em;
}
.art--drink { --a1: #0f3b3a; --a2: #0b1514; --ac: #6fe0cf; }
.art--dip { --a1: #4a3406; --a2: #17110a; --ac: #ffcc4d; }
.art--dessert { --a1: #4a1830; --a2: #170c11; --ac: #ff9cc5; }
.art--leaf { --a1: #173c20; --a2: #0d140e; --ac: #7ee29d; }
.art--fish { --a1: #12304a; --a2: #0b1118; --ac: #8cc8ff; }
.art--rice, .art--corn { --a1: #463a0f; --a2: #15120a; --ac: #ffe07a; }
.art--bucket { --a1: #4a1512; --a2: #150c0a; --ac: #ffb199; }
.art--side, .art--bites { --a1: #4a300b; --a2: #17100a; --ac: #ffbf66; }

/* =========================================================================
   Product cards
   ========================================================================= */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.product-card {
  display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color .2s, transform .25s var(--ease), box-shadow .25s; position: relative;
}
.product-card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); cursor: pointer; }
.product-card__media img, .product-card__media .art { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__tags { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.product-card__tags .tag { backdrop-filter: blur(8px); background-color: rgba(15,13,11,.72); }
.product-card__tags .tag--deal { background: var(--red); }
.product-card__num { position: absolute; top: 12px; right: 12px; min-width: 32px; height: 32px; padding: 0 8px; border-radius: var(--pill); display: grid; place-items: center; background: rgba(15,13,11,.72); font-family: var(--f-display); font-size: 1rem; color: var(--gold); backdrop-filter: blur(8px); }
.product-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.product-card h3 { font-weight: 600; font-size: 1.1rem; line-height: 1.25; }
.product-card h3 button { text-align: left; }
.product-card h3 button:hover { color: var(--gold); }
.product-card__desc { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.product-card__sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.product-card__sizes span { font-size: .75rem; padding: 2px 9px; border-radius: var(--pill); background: var(--ink-3); border: 1px solid var(--line); color: var(--muted); }
.product-card__foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--f-display); font-size: 1.55rem; letter-spacing: .02em; line-height: 1; }
.price small { font-family: var(--f-body); font-size: .72rem; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; display: block; margin-bottom: 3px; }
.price s { font-family: var(--f-body); font-size: .9rem; color: var(--dim); margin-left: 6px; }
.add-btn {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px 0 14px; border-radius: var(--pill);
  background: var(--red); color: #fff; font-weight: 700; letter-spacing: .02em; transition: background .2s, transform .2s var(--ease);
}
.add-btn:hover { background: var(--red-hi); transform: scale(1.04); }
.add-btn.is-added { background: var(--green); }
.product-card--row { flex-direction: row; }
.product-card--row .product-card__media { width: 38%; aspect-ratio: auto; min-height: 100%; flex: none; }
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { flex-direction: row; border-radius: var(--r); }
  .product-card__media { width: 118px; aspect-ratio: auto; flex: none; }
  .product-card__num { top: 8px; right: auto; left: 8px; min-width: 26px; height: 26px; font-size: .85rem; }
  .product-card__tags { display: none; }
  .product-card__body { padding: 12px 14px 14px; gap: 5px; min-width: 0; }
  .product-card h3 { font-size: 1rem; }
  .product-card__desc { font-size: .82rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-card__sizes { display: none; }
  .product-card .mtags { display: flex; }
  .price { font-size: 1.3rem; }
  .add-btn { height: 40px; padding: 0 14px 0 10px; }
  .art svg { width: 54%; height: 54%; }
  .art::after { display: none; }
}
.mtags { display: none; flex-wrap: wrap; gap: 5px; }
.mtags .tag { height: 20px; font-size: .62rem; padding: 0 7px; }

/* =========================================================================
   Deals & coupons
   ========================================================================= */
.deal-hero {
  display: grid; grid-template-columns: 1.1fr 1fr; border-radius: var(--r-lg); overflow: hidden;
  background: var(--red); color: #fff; position: relative; isolation: isolate; min-height: 380px;
}
.deal-hero__copy { padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.deal-hero__copy .eyebrow { color: #1a1206; }
.deal-hero h3 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: .92; }
.deal-hero__price { display: flex; align-items: baseline; gap: 14px; font-family: var(--f-display); font-size: clamp(3rem, 7vw, 5rem); line-height: 1; }
.deal-hero__price s { font-family: var(--f-body); font-size: 1.2rem; opacity: .75; }
.deal-hero__media { position: relative; }
.deal-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.deal-hero__media::before { content: ""; position: absolute; inset: 0 auto 0 -1px; width: 90px; z-index: 1; background: var(--red); clip-path: polygon(0 0, 100% 0, 0 100%); }
.deal-hero .half-stamp {
  position: absolute; z-index: 2; right: 22px; top: 22px; width: 118px; aspect-ratio: 1; border-radius: 50%;
  background: var(--gold); color: #1a1206; display: grid; place-content: center; text-align: center; transform: rotate(10deg);
  font-family: var(--f-display); text-transform: uppercase; line-height: .9; font-size: 1.9rem; box-shadow: var(--shadow-sm);
}
.deal-hero .half-stamp small { font-size: 1rem; }
@media (max-width: 800px) {
  .deal-hero { grid-template-columns: 1fr; }
  .deal-hero__media { min-height: 240px; order: -1; }
  .deal-hero__media::before { inset: auto 0 -1px 0; width: 100%; height: 50px; clip-path: polygon(0 100%, 100% 0, 100% 100%); }
}

.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.coupon {
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 22px 22px 20px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  --notch: radial-gradient(circle at 0 50%, transparent 13px, #000 14px);
}
.coupon::before, .coupon::after {
  content: ""; position: absolute; top: 58%; width: 26px; height: 26px; border-radius: 50%; background: var(--ink);
  border: 1px solid var(--line);
}
.coupon::before { left: -14px; clip-path: inset(0 0 0 50%); }
.coupon::after { right: -14px; clip-path: inset(0 50% 0 0); }
.section--raised .coupon::before, .section--raised .coupon::after { background: var(--ink-2); }
.coupon__top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.coupon .coupon__pct { font-family: var(--f-display); font-size: 3rem; line-height: .85; color: var(--gold); }
.coupon .coupon__pct small { font-size: 1.2rem; display: block; color: var(--cream); letter-spacing: .04em; }
.coupon .coupon__branch { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); font-weight: 700; text-align: right; }
.coupon p { color: var(--muted); font-size: .92rem; }
.coupon__foot { display: flex; align-items: center; gap: 10px; padding-top: 14px; margin-top: auto; border-top: 2px dashed var(--line-2); }
.coupon__code { flex: 1; font-family: var(--f-display); font-size: 1.4rem; letter-spacing: .12em; }
@media (max-width: 900px) { .coupon-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Steps / features
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 26px; border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line); position: relative; overflow: hidden; }
.step::before {
  counter-increment: step; content: "0" counter(step); position: absolute; right: 16px; top: 4px;
  font-family: var(--f-display); font-size: 5rem; color: rgba(255,255,255,.05); line-height: 1;
}
.step__ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--red); color: #fff; margin-bottom: 18px; }
.step__ico .icon { width: 26px; height: 26px; }
.step h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.5rem; margin-bottom: 8px; }
.step p { color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.zone-table { margin-top: 18px; width: 100%; border-collapse: collapse; font-size: .92rem; }
.zone-table th, .zone-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.zone-table th { color: var(--dim); font-weight: 600; text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; }
.zone-table td:last-child, .zone-table th:last-child { text-align: right; }

/* Loyalty banner */
.loyalty-band { position: relative; overflow: hidden; isolation: isolate; border-radius: var(--r-lg); padding: clamp(28px, 5vw, 64px); min-height: 420px; display: grid; align-items: center; }
.loyalty-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: grayscale(1) contrast(1.1) brightness(.75); }
.loyalty-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(15, 80, 68, .96) 0%, rgba(15, 80, 68, .82) 45%, rgba(15, 13, 11, .15) 100%); }
.loyalty-band__inner { max-width: 560px; }
.loyalty-band .eyebrow { color: var(--gold); }
.loyalty-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0 28px; }
.loyalty-stats div { background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 14px; }
.loyalty-stats b { display: block; font-family: var(--f-display); font-size: 2rem; color: var(--gold); line-height: 1; font-weight: 400; }
.loyalty-stats span { font-size: .85rem; color: #d4e9e3; }
@media (max-width: 760px) {
  .loyalty-band::after { background: linear-gradient(180deg, rgba(15, 80, 68, .92), rgba(15, 80, 68, .96)); }
}
@media (max-width: 440px) { .loyalty-stats { grid-template-columns: 1fr; } .loyalty-stats div { display: flex; gap: 12px; align-items: baseline; } }

/* Brand promise */
.promise { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.promise__media { position: relative; }
.promise__media > img { border-radius: var(--r-lg); aspect-ratio: 4/3.2; object-fit: cover; width: 100%; filter: grayscale(1) contrast(1.1); }
.promise__media .badge-100 { position: absolute; right: -18px; bottom: -26px; width: 180px; background: var(--paper-ink); border-radius: 50%; padding: 18px; transform: rotate(8deg); box-shadow: var(--shadow); }
.promise__logo { width: min(380px, 100%); margin-bottom: 18px; }
.promise ul { display: grid; gap: 14px; margin-top: 26px; }
.promise li { display: flex; gap: 14px; align-items: flex-start; }
.promise li .ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--paper-ink); color: var(--gold); flex: none; }
.promise li strong { display: block; font-weight: 700; }
.promise li span { color: #5b5047; font-size: .95rem; }
@media (max-width: 860px) { .promise { grid-template-columns: 1fr; } .promise__media .badge-100 { width: 130px; right: 8px; } }

/* =========================================================================
   Branch cards
   ========================================================================= */
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.branch-card { display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line); }
.branch-card__head { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.branch-card h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.9rem; line-height: 1; }
.branch-card address { font-style: normal; color: var(--muted); }
.branch-card__services { display: flex; flex-wrap: wrap; gap: 8px; }
.svc { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; padding: 5px 11px; border-radius: var(--pill); background: var(--ink-3); border: 1px solid var(--line); }
.svc .icon { width: 15px; height: 15px; }
.svc.is-yes .icon { color: var(--green); }
.svc.is-no { color: var(--dim); text-decoration: line-through; text-decoration-color: var(--dim); }
.branch-card__list { display: grid; gap: 8px; font-size: .93rem; }
.branch-card__list a, .branch-card__list div { display: flex; gap: 10px; align-items: center; }
.branch-card__list .icon { color: var(--dim); width: 17px; height: 17px; }
.branch-card__list a:hover { color: var(--gold); }
.branch-card__actions { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; flex-wrap: wrap; }
.branch-card__actions .btn { flex: 1; }
@media (max-width: 960px) { .branch-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FAQ (custom accordion)
   ========================================================================= */
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: clamp(24px, 5vw, 64px); align-items: start; }
.faq-layout .section-head { position: sticky; top: calc(var(--header-h) + 24px); flex-direction: column; align-items: flex-start; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: minmax(0, 1fr); } .faq-layout .section-head { position: static; } }
.faq { display: grid; gap: 10px; }
.faq details { border-radius: var(--r); background: var(--ink-2); border: 1px solid var(--line); transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; font-weight: 600; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--ink-3); position: relative; transition: background .2s, transform .3s var(--ease); }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; width: 12px; height: 2px; border-radius: 2px; background: currentColor; }
.faq summary .pm::after { transform: rotate(90deg); transition: transform .3s var(--ease); }
.faq details[open] summary .pm { background: var(--red); }
.faq details[open] summary .pm::after { transform: rotate(0); }
.faq details > div { padding: 0 20px 20px; color: var(--muted); }
.faq details > div a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   Page hero (inner pages)
   ========================================================================= */
.page-hero { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(44px, 7vw, 88px) clamp(36px, 5vw, 60px); }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; filter: saturate(1.1); }
.page-hero__bg--mono img { filter: grayscale(1) contrast(1.1); opacity: .3; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 20%, rgba(15,13,11,.6) 100%), linear-gradient(0deg, var(--ink), transparent 60%); }
.page-hero h1 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2.6rem, 7vw, 5rem); line-height: .92; }
.page-hero .lead { margin-top: 14px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--dim); margin-bottom: 16px; }
.crumbs a:hover { color: var(--cream); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-2); }

/* =========================================================================
   Forms — every control is custom-drawn
   ========================================================================= */
.field { position: relative; display: flex; flex-direction: column; gap: 7px; }
.field > label, .field-label { font-size: .85rem; font-weight: 600; color: #d9cfc3; display: flex; align-items: baseline; gap: 4px; }
.field > label .opt, .field-label .opt { color: var(--dim); font-weight: 500; margin-left: auto; }
.req { color: var(--red); margin-left: 3px; }
.input, .textarea {
  width: 100%; min-height: 52px; padding: 13px 16px; border-radius: 14px; outline: none;
  background: var(--ink-3); border: 1.5px solid var(--line-2); color: var(--cream); font-size: 1rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--dim); }
.input:hover, .textarea:hover { border-color: #5a4d41; }
.input:focus, .textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(248, 188, 28, .16); background: var(--ink-4); }
.textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap > .icon { position: absolute; left: 16px; color: var(--dim); pointer-events: none; }
.input-wrap > .icon ~ .input { padding-left: 46px; }
.input-wrap .input-action { position: absolute; right: 6px; }
.input-wrap .input-action.icon-btn { width: 40px; height: 40px; border: 0; background: transparent; }
.input-wrap .input-action.icon-btn:hover { background: var(--ink-4); }
.input-wrap--btn .input { padding-right: 120px; }
.input-wrap--btn .input-action.btn { height: 40px; min-height: 40px; }
.field.is-invalid .input, .field.is-invalid .textarea, .field.is-invalid .cselect__btn { border-color: var(--red); box-shadow: 0 0 0 4px rgba(240, 70, 60, .14); }
.field-error { display: none; font-size: .82rem; color: #ff8a80; align-items: center; gap: 6px; }
.field.is-invalid .field-error { display: flex; }
.field-hint { font-size: .8rem; color: var(--dim); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .span-2 { grid-column: span 2; }
.form-grid--3 { grid-template-columns: 110px 1fr 1fr; }
@media (max-width: 600px) {
  .form-grid, .form-grid--3 { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
}
/* Autofill in dark mode */
.input:-webkit-autofill { -webkit-text-fill-color: var(--cream); -webkit-box-shadow: 0 0 0 1000px var(--ink-4) inset; transition: background-color 9999s; caret-color: var(--cream); }

/* Custom select (listbox) */
.cselect { position: relative; }
.cselect > select { position: absolute; inset: 0; opacity: 0; pointer-events: none; width: 100%; }
.cselect__btn {
  width: 100%; min-height: 52px; display: flex; align-items: center; gap: 12px; padding: 0 14px 0 16px; border-radius: 14px;
  background: var(--ink-3); border: 1.5px solid var(--line-2); text-align: left; transition: border-color .2s, box-shadow .2s;
}
.cselect__btn:hover { border-color: #5a4d41; }
.cselect.is-open .cselect__btn, .cselect__btn:focus-visible { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(248, 188, 28, .16); border-radius: 14px; }
.cselect__value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cselect__value.is-placeholder { color: var(--dim); }
.cselect__chev { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--ink-4); transition: transform .25s var(--ease), background .2s; flex: none; }
.cselect__chev .icon { width: 16px; height: 16px; }
.cselect.is-open .cselect__chev { transform: rotate(180deg); background: var(--gold); color: #1a1206; }
.cselect__list {
  position: absolute; z-index: 40; left: 0; right: 0; top: calc(100% + 8px); max-height: 290px; overflow: auto; padding: 6px;
  background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 16px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.98); transform-origin: top; transition: .18s var(--ease);
  overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.cselect.drop-up .cselect__list { top: auto; bottom: calc(100% + 8px); transform-origin: bottom; }
.cselect.is-open .cselect__list { opacity: 1; visibility: visible; transform: none; }
.cselect__opt {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px; cursor: pointer; transition: background .12s;
}
.cselect__opt .opt-sub { margin-left: auto; font-size: .8rem; color: var(--dim); }
.cselect__opt .tick { width: 18px; height: 18px; color: var(--gold); opacity: 0; flex: none; }
.cselect__opt.is-active { background: var(--ink-4); }
.cselect__opt[aria-selected="true"] { color: var(--gold); font-weight: 600; }
.cselect__opt[aria-selected="true"] .tick { opacity: 1; }
.cselect__opt[aria-disabled="true"] { opacity: .4; cursor: not-allowed; }
.cselect__group { padding: 10px 12px 4px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.cselect--sm .cselect__btn { min-height: 42px; border-radius: var(--pill); padding: 0 8px 0 16px; font-size: .92rem; }
.cselect--sm .cselect__chev { width: 26px; height: 26px; }

/* Radio + checkbox base: native input is visually hidden, the look is ours */
.ctl-input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.radio-mark, .check-mark {
  width: 24px; height: 24px; flex: none; display: grid; place-items: center; background: var(--ink); border: 2px solid var(--line-2);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.radio-mark { border-radius: 50%; }
.radio-mark::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #1a1206; transform: scale(0); transition: transform .2s var(--ease); }
.check-mark { border-radius: 7px; }
.check-mark svg { width: 14px; height: 14px; stroke: #1a1206; stroke-width: 3.2; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .25s var(--ease) .05s; }
.ctl-input:checked + .radio-mark, .ctl-input:checked + .check-mark { background: var(--gold); border-color: var(--gold); }
.ctl-input:checked + .radio-mark::after { transform: scale(1); }
.ctl-input:checked + .check-mark svg { stroke-dashoffset: 0; }
.ctl-input:focus-visible + .radio-mark, .ctl-input:focus-visible + .check-mark { box-shadow: var(--ring); }
.ctl-input:disabled + .radio-mark, .ctl-input:disabled + .check-mark { opacity: .4; }

.check, .radio { display: inline-flex; align-items: flex-start; gap: 12px; cursor: pointer; position: relative; line-height: 1.45; }
.check:hover .check-mark, .radio:hover .radio-mark { border-color: #6b5c4e; }
.check .check-mark, .radio .radio-mark { margin-top: -1px; }
.check a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.field.is-invalid .check-mark { border-color: var(--red); }

/* Option rows (modifier lists) */
.opt-list { display: grid; gap: 8px; }
.opt-list--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .opt-list--2 { grid-template-columns: 1fr; } }
.opt-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; cursor: pointer; position: relative;
  background: var(--ink-3); border: 1.5px solid var(--line); transition: border-color .15s, background .15s;
}
.opt-row:hover { border-color: var(--line-2); }
.opt-row:has(.ctl-input:checked) { border-color: var(--gold); background: rgba(248, 188, 28, .07); }
.opt-row__label { flex: 1; font-weight: 500; }
.opt-row__meta { font-size: .85rem; color: var(--dim); }
.opt-row__ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--ink-4); color: var(--muted); flex: none; }
.opt-row__ico .icon { width: 17px; height: 17px; }
.heat { display: inline-flex; gap: 2px; }
.heat i { width: 7px; height: 14px; border-radius: 4px 4px 2px 2px; background: var(--line-2); }
.heat i.on { background: linear-gradient(#ffb03a, var(--red)); }

/* Choice cards (big radio tiles) */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.choice {
  position: relative; display: flex; flex-direction: column; gap: 6px; padding: 16px; border-radius: 16px; cursor: pointer;
  background: var(--ink-3); border: 1.5px solid var(--line); transition: border-color .15s, background .15s, transform .15s;
}
.choice:hover { border-color: var(--line-2); }
.choice .radio-mark { position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; }
.choice:has(.ctl-input:checked) { border-color: var(--gold); background: rgba(248, 188, 28, .07); }
.choice:has(.ctl-input:disabled) { opacity: .5; cursor: not-allowed; }
.choice__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--ink-4); color: var(--gold); margin-bottom: 4px; }
.choice__title { font-weight: 700; font-size: 1.02rem; padding-right: 28px; }
.choice__desc { font-size: .85rem; color: var(--muted); line-height: 1.45; }
.choice__imgs { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.choice__imgs img { height: 24px; width: auto; border-radius: 4px; }

/* Size chips */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  position: relative; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: var(--pill); cursor: pointer;
  background: var(--ink-3); border: 1.5px solid var(--line-2); font-weight: 600; transition: .15s;
}
.chip:hover { border-color: #6b5c4e; }
.chip small { font-weight: 500; color: var(--muted); }
.chip:has(.ctl-input:checked) { background: var(--cream); color: var(--paper-ink); border-color: var(--cream); }
.chip:has(.ctl-input:checked) small { color: #6b5d50; }
.chip:has(.ctl-input:focus-visible) { box-shadow: var(--ring); }
.chip .chip-x { display: none; }
.chip--filter:has(.ctl-input:checked) { background: var(--red); border-color: var(--red); color: #fff; }
.chip--filter:has(.ctl-input:checked) .icon { color: #fff; }
.chip--filter .icon { width: 16px; height: 16px; color: var(--muted); }

/* Segmented control */
.seg {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; padding: 5px; border-radius: var(--pill);
  background: var(--ink); border: 1.5px solid var(--line-2); position: relative;
}
.seg label { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 14px; border-radius: var(--pill); cursor: pointer; font-weight: 600; color: var(--muted); transition: color .2s, background .2s; }
.seg label:hover { color: var(--cream); }
.seg label:has(.ctl-input:checked) { background: var(--red); color: #fff; box-shadow: 0 6px 16px -8px rgba(240,70,60,.9); }
.seg label:has(.ctl-input:focus-visible) { box-shadow: var(--ring); }
.seg label:has(.ctl-input:disabled) { opacity: .4; cursor: not-allowed; }
.seg .icon { width: 18px; height: 18px; }

/* Toggle switch */
.switch { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; }
.switch__track { width: 50px; height: 30px; border-radius: var(--pill); background: var(--ink-4); border: 1.5px solid var(--line-2); position: relative; flex: none; transition: background .2s, border-color .2s; }
.switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: var(--muted); transition: transform .25s var(--ease), background .2s; }
.ctl-input:checked + .switch__track { background: var(--green); border-color: var(--green); }
.ctl-input:checked + .switch__track::after { transform: translateX(20px); background: #fff; }
.ctl-input:focus-visible + .switch__track { box-shadow: var(--ring); }
.ctl-input:disabled + .switch__track { opacity: .4; }

/* Quantity stepper */
.qty { display: inline-flex; align-items: center; border-radius: var(--pill); background: var(--ink-3); border: 1.5px solid var(--line-2); height: 44px; }
.qty button { width: 42px; height: 100%; display: grid; place-items: center; border-radius: var(--pill); color: var(--cream); transition: background .15s, color .15s; }
.qty button:hover { background: var(--ink-4); color: var(--gold); }
.qty button[disabled] { opacity: .35; pointer-events: none; }
.qty output, .qty input { width: 34px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; background: none; border: 0; }
.qty--sm { height: 36px; }
.qty--sm button { width: 34px; }
.qty--sm .icon { width: 15px; height: 15px; }

/* Password strength */
.strength { display: flex; gap: 5px; margin-top: 2px; }
.strength i { flex: 1; height: 5px; border-radius: 4px; background: var(--ink-4); transition: background .3s; }
.strength[data-score="1"] i:nth-child(-n+1) { background: var(--red); }
.strength[data-score="2"] i:nth-child(-n+2) { background: #ff9d3a; }
.strength[data-score="3"] i:nth-child(-n+3) { background: var(--gold); }
.strength[data-score="4"] i { background: var(--green); }

/* Tabs */
.tabs { display: flex; gap: 6px; padding: 5px; background: var(--ink); border: 1.5px solid var(--line-2); border-radius: var(--pill); }
.tabs button { flex: 1; min-height: 44px; border-radius: var(--pill); font-weight: 600; color: var(--muted); transition: .2s; }
.tabs button[aria-selected="true"] { background: var(--cream); color: var(--paper-ink); }
.tabs button:hover:not([aria-selected="true"]) { color: var(--cream); }

/* Notices */
.notice { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; background: var(--ink-3); border: 1px solid var(--line-2); font-size: .92rem; color: #d9cfc3; }
.notice .icon { color: var(--gold); margin-top: 2px; }
.notice--ok { border-color: rgba(60,199,116,.4); background: rgba(60,199,116,.08); }
.notice--ok .icon { color: var(--green); }
.notice--warn { border-color: rgba(240,70,60,.45); background: rgba(240,70,60,.08); }
.notice--warn .icon { color: var(--red-hi); }
.notice strong { color: var(--cream); }

/* =========================================================================
   Modal / bottom sheet
   ========================================================================= */
.modal-root { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; visibility: hidden; }
.modal-root.is-open { visibility: visible; }
.modal-scrim { position: absolute; inset: 0; background: rgba(5, 4, 3, .72); backdrop-filter: blur(4px); opacity: 0; transition: opacity .25s; }
.modal-root.is-open .modal-scrim { opacity: 1; }
.modal {
  position: relative; width: min(100%, 620px); max-height: min(92vh, 900px); display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden;
  transform: translateY(24px) scale(.97); opacity: 0; transition: transform .32s var(--ease), opacity .25s;
}
.modal--wide { width: min(100%, 860px); }
.modal-root.is-open .modal { transform: none; opacity: 1; }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; background: rgba(15,13,11,.7); backdrop-filter: blur(6px); }
.modal__head { padding: 24px 24px 12px; }
.modal__head h2 { font-family: var(--f-display); text-transform: uppercase; font-size: 2rem; padding-right: 50px; }
.modal__body { padding: 8px 24px 24px; overflow: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.modal__foot { padding: 14px 24px calc(14px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: var(--ink-2); display: flex; gap: 12px; align-items: center; }
.modal__foot .btn { flex: 1; }
@media (max-width: 640px) {
  .modal-root { padding: 0; place-items: end center; }
  .modal { width: 100%; max-height: 94vh; border-radius: 22px 22px 0 0; transform: translateY(100%); }
  .modal::before { content: ""; position: absolute; top: 8px; left: 50%; width: 44px; height: 5px; border-radius: 5px; background: var(--line-2); transform: translateX(-50%); z-index: 4; }
  .modal__head { padding: 26px 18px 10px; }
  .modal__body { padding: 6px 18px 20px; }
  .modal__foot { padding-inline: 18px; }
}

/* Product customiser */
.pz__media { position: relative; aspect-ratio: 16 / 8; background: var(--ink-3); flex: none; }
.pz__media img, .pz__media .art { width: 100%; height: 100%; object-fit: cover; }
.pz__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, var(--ink-2)); }
.pz__title { padding: 0 24px; margin-top: -34px; position: relative; z-index: 2; }
.pz__title h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: .95; }
.pz__title p { color: var(--muted); margin-top: 8px; }
.pz-group { padding-top: 22px; }
.pz-group + .pz-group { border-top: 1px solid var(--line); margin-top: 22px; }
.pz-group__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.pz-group__head h3 { font-weight: 700; font-size: 1.05rem; }
.pz-group__head .pill { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--pill); background: var(--ink-4); color: var(--muted); white-space: nowrap; }
.pz-group__head .pill.is-req { background: rgba(240,70,60,.15); color: #ff8a80; }
.pz-group__head .pill.is-done { background: rgba(60,199,116,.15); color: #7be3a4; }
.pz-group.is-missing { animation: shake .4s; }
.pz-group.is-missing .pz-group__head .pill { background: var(--red); color: #fff; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.pz-foot-price { font-family: var(--f-display); font-size: 1.1rem; letter-spacing: .03em; }
@media (max-width: 640px) { .pz__title { padding: 0 18px; } .pz__media { aspect-ratio: 16 / 9; } }

/* Branch picker modal */
.branch-options { display: grid; gap: 10px; }
.branch-opt { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 16px; border-radius: 16px; cursor: pointer; background: var(--ink-3); border: 1.5px solid var(--line); transition: .15s; }
.branch-opt:hover { border-color: var(--line-2); }
.branch-opt:has(.ctl-input:checked) { border-color: var(--gold); background: rgba(248,188,28,.06); }
.branch-opt__name { font-family: var(--f-display); text-transform: uppercase; font-size: 1.35rem; line-height: 1; letter-spacing: .02em; }
.branch-opt__addr { color: var(--muted); font-size: .85rem; margin-top: 4px; }
.branch-opt__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 8px; font-size: .8rem; }
.branch-opt__meta .status { font-size: .8rem; }
.branch-opt__svc { color: var(--dim); }

/* =========================================================================
   Cart drawer + panel
   ========================================================================= */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 85; width: min(100vw, 440px);
  background: var(--ink-2); border-left: 1px solid var(--line); display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform .34s var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
}
.cart-drawer.is-open { transform: none; }
.cart { display: flex; flex-direction: column; min-height: 0; flex: 1; }
.cart__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.cart__head h2 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.7rem; letter-spacing: .02em; }
.cart__ctx { padding: 14px 20px; border-bottom: 1px solid var(--line); display: grid; gap: 10px; }
.cart__ctx-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .88rem; }
.cart__ctx-row button { color: var(--gold); font-weight: 600; font-size: .85rem; }
.cart__items { flex: 1; overflow: auto; padding: 6px 20px; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; min-height: 80px; }
.cart-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line:last-child { border-bottom: 0; }
.cart-line__img { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; background: var(--ink-3); }
.cart-line__img img, .cart-line__img .art { width: 100%; height: 100%; object-fit: cover; }
.cart-line__img .art::after { display: none; }
.cart-line__img .art svg { width: 60%; height: 60%; }
.cart-line__name { font-weight: 600; line-height: 1.3; }
.cart-line__mods { font-size: .8rem; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.cart-line__note { font-size: .78rem; color: var(--gold); margin-top: 3px; font-style: italic; }
.cart-line__side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 8px; }
.cart-line__price { font-weight: 700; font-variant-numeric: tabular-nums; }
.cart-line__row { grid-column: 2 / -1; display: flex; justify-content: space-between; align-items: center; }
.cart-line__remove { font-size: .8rem; color: var(--dim); display: inline-flex; align-items: center; gap: 5px; }
.cart-line__remove:hover { color: #ff8a80; }
.cart__empty { text-align: center; padding: 40px 10px; color: var(--muted); }
.cart__empty .art { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px; }
.cart__empty .art::after { display: none; }
.cart__empty h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.6rem; color: var(--cream); margin-bottom: 6px; }
.cart__foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: var(--ink-2); display: grid; gap: 12px; }
.promo-form { display: flex; gap: 8px; }
.promo-form .input { min-height: 44px; padding-block: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.promo-form .input::placeholder { text-transform: none; letter-spacing: 0; font-weight: 400; }
.promo-applied { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(60,199,116,.08); border: 1px dashed rgba(60,199,116,.5); font-size: .88rem; }
.promo-applied b { letter-spacing: .08em; }
.promo-applied button { color: var(--muted); font-size: .8rem; text-decoration: underline; }
.promo-msg { font-size: .82rem; }
.promo-msg.is-bad { color: #ff8a80; }
.promo-msg.is-good { color: #7be3a4; }
.totals { display: grid; gap: 7px; font-size: .93rem; }
.totals div { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
.totals div span:last-child { font-variant-numeric: tabular-nums; color: var(--cream); }
.totals .is-discount span:last-child { color: #7be3a4; }
.totals .is-total { padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--line); color: var(--cream); font-weight: 700; font-size: 1.1rem; }
.totals .is-total span:last-child { font-family: var(--f-display); font-weight: 400; font-size: 1.5rem; letter-spacing: .02em; }
.points-earn { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: #5fd1bb; }
.points-earn .icon { width: 16px; height: 16px; }
.min-bar { font-size: .82rem; color: var(--muted); }
.min-bar__track { height: 6px; border-radius: 6px; background: var(--ink-4); margin-top: 6px; overflow: hidden; }
.min-bar__fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--red)); border-radius: 6px; transition: width .4s var(--ease); }

/* Mobile floating cart bar */
.cart-bar {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 60;
  display: none; align-items: center; gap: 12px; padding: 8px 8px 8px 18px; min-height: 60px; border-radius: var(--pill);
  background: var(--red); color: #fff; box-shadow: 0 16px 40px -12px rgba(240, 70, 60, .7), 0 10px 30px -10px rgba(0,0,0,.8);
  transform: translateY(140%); visibility: hidden; transition: transform .35s var(--ease), visibility .35s;
}
.cart-bar.is-visible { transform: none; visibility: visible; }
.cart-bar__count { width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--red); display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.cart-bar__label { flex: 1; font-weight: 700; }
.cart-bar__total { font-family: var(--f-display); font-size: 1.3rem; letter-spacing: .03em; background: rgba(0,0,0,.2); padding: 8px 16px; border-radius: var(--pill); }
@media (max-width: 1180px) { .cart-bar { display: flex; } }

/* =========================================================================
   Menu page layout
   ========================================================================= */
.menu-ctx { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }
.menu-ctx .seg { min-width: 290px; }
.menu-ctx__branch { min-width: 220px; }
.menu-tools { position: sticky; top: var(--header-h); z-index: 30; background: rgba(15, 13, 11, .94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.menu-tools__row { display: flex; align-items: center; gap: 12px; padding-block: 12px; }
.menu-search { flex: 1; max-width: 360px; }
.menu-search .input { min-height: 46px; border-radius: var(--pill); padding-block: 8px; }
.menu-filters { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent); mask-image: linear-gradient(90deg, #000 88%, transparent); padding-right: 24px; }
.menu-filters::-webkit-scrollbar { display: none; }
.menu-filters .chip { min-height: 40px; white-space: nowrap; flex: none; font-size: .9rem; }
.menu-sort { width: 210px; flex: none; }
.cat-pills { display: none; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 12px; scroll-behavior: smooth; }
.cat-pills::-webkit-scrollbar { display: none; }
.cat-pills a { flex: none; display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border-radius: var(--pill); background: var(--ink-3); border: 1px solid var(--line); font-weight: 600; font-size: .9rem; color: var(--muted); transition: .15s; white-space: nowrap; }
.cat-pills a.is-active { background: var(--cream); color: var(--paper-ink); border-color: var(--cream); }

.menu-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr) 360px; gap: 28px; align-items: start; padding-block: 28px 80px; }
.cat-nav { position: sticky; top: calc(var(--header-h) + 90px); display: grid; gap: 2px; max-height: calc(100vh - var(--header-h) - 110px); overflow: auto; scrollbar-width: none; }
.cat-nav h2 { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); font-weight: 700; padding: 0 12px 8px; }
.cat-nav a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; color: var(--muted); font-weight: 500; font-size: .95rem; transition: .15s; }
.cat-nav a span { font-size: .75rem; color: var(--dim); }
.cat-nav a:hover { background: var(--ink-2); color: var(--cream); }
.cat-nav a.is-active { background: var(--ink-3); color: var(--cream); box-shadow: inset 3px 0 0 var(--red); }
.menu-cat { margin-bottom: 44px; scroll-margin-top: calc(var(--header-h) + 90px); }
.menu-cat__head { position: relative; border-radius: var(--r-lg); overflow: hidden; padding: 26px 24px; margin-bottom: 18px; min-height: 130px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; background: var(--ink-3); border: 1px solid var(--line); }
.menu-cat__head img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.menu-cat__head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15,13,11,.95) 25%, rgba(15,13,11,.35)); }
.menu-cat__head--plain { min-height: 0; padding: 20px 24px; background: linear-gradient(90deg, var(--ink-3), var(--ink-2)); }
.menu-cat__head--plain::after { display: none; }
.menu-cat__head h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1; }
.menu-cat__head p { color: #d9cfc3; margin-top: 6px; }
.menu-cat .product-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.menu-empty { text-align: center; padding: 60px 20px; color: var(--muted); border: 2px dashed var(--line-2); border-radius: var(--r-lg); }
.menu-empty h2 { font-family: var(--f-display); text-transform: uppercase; font-size: 2rem; color: var(--cream); margin-bottom: 8px; }
.cart-panel { position: sticky; top: calc(var(--header-h) + 90px); max-height: calc(100vh - var(--header-h) - 110px); display: flex; flex-direction: column; border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line); overflow: hidden; }
.cart-panel .cart__head .icon-btn { display: none; }
.promo-side { margin-top: 14px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }

@media (max-width: 1180px) {
  .menu-layout { grid-template-columns: 210px minmax(0, 1fr); }
  .cart-panel-wrap { display: none; }
  .menu-layout { padding-bottom: 110px; }
}
@media (max-width: 860px) {
  .menu-layout { grid-template-columns: 1fr; padding-top: 18px; }
  .cat-nav { display: none; }
  .cat-pills { display: flex; }
  .menu-tools__row { flex-wrap: wrap; gap: 10px; padding-bottom: 10px; }
  .menu-search { max-width: none; flex-basis: 100%; }
  .menu-sort { width: 170px; }
  .menu-ctx .seg, .menu-ctx__branch { min-width: 0; flex: 1 1 100%; }
  .menu-cat__head { min-height: 100px; padding: 18px; }
  .menu-cat { scroll-margin-top: calc(var(--header-h) + 170px); }
}

/* =========================================================================
   Checkout
   ========================================================================= */
.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 28px; align-items: start; padding-block: 28px 80px; }
.co-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(18px, 3vw, 28px); }
.co-card + .co-card { margin-top: 18px; }
.co-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.co-card__num { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; font-family: var(--f-display); font-size: 1.1rem; flex: none; }
.co-card__head h2 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.7rem; line-height: 1; }
.co-card__head p { font-size: .88rem; color: var(--muted); margin-top: 3px; }
.co-card__head .link-arrow { margin-left: auto; font-size: .9rem; }
.co-stack { display: grid; gap: 18px; }
.co-summary { position: sticky; top: calc(var(--header-h) + 20px); }
.co-summary .cart { border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line); overflow: hidden; }
.co-summary .cart__items { max-height: 340px; }
.co-summary .cart__head .icon-btn { display: none; }
.secure-row { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8rem; color: var(--dim); }
.pay-icons { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pay-icons img { height: 26px; width: auto; border-radius: 5px; background: #fff; }
.card-frame { border: 1.5px dashed var(--line-2); border-radius: 14px; padding: 18px; display: grid; gap: 14px; background: var(--ink); }
.card-frame .notice { background: transparent; border: 0; padding: 0; }
.progress { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.progress li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--dim); font-weight: 600; }
.progress li b { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--line-2); font-size: .8rem; }
.progress li.is-done { color: var(--cream); }
.progress li.is-done b { background: var(--green); border-color: var(--green); color: #fff; }
.progress li + li::before { content: ""; width: 26px; height: 2px; background: var(--line-2); border-radius: 2px; }
.confirm { max-width: 720px; margin: 0 auto; text-align: center; padding-block: 40px 80px; }
.confirm__tick { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center; background: var(--green); color: #fff; box-shadow: 0 0 0 12px rgba(60,199,116,.15); animation: pop .5s var(--ease); }
.confirm__tick .icon { width: 46px; height: 46px; stroke-width: 3; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } }
.confirm__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0; text-align: left; }
.confirm__grid div { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.confirm__grid small { display: block; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; font-weight: 700; margin-bottom: 4px; }
.confirm__grid b { font-size: 1.05rem; }
@media (max-width: 1020px) {
  .checkout { grid-template-columns: 1fr; }
  .co-summary { position: static; order: -1; }
  .co-summary .cart__items { max-height: none; }
}
@media (max-width: 600px) { .confirm__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Locations page
   ========================================================================= */
.loc { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; padding: clamp(18px, 3vw, 28px); border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 20px); }
.loc + .loc { margin-top: 20px; }
.loc h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; }
.loc__info { display: flex; flex-direction: column; gap: 16px; }
.hours { width: 100%; border-collapse: collapse; font-size: .93rem; }
.hours td { padding: 8px 10px; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today td { color: var(--gold); font-weight: 700; background: rgba(248,188,28,.06); }
.hours tr.is-today td:first-child { box-shadow: inset 3px 0 0 var(--gold); }
.map-facade { position: relative; border-radius: var(--r); overflow: hidden; min-height: 340px; height: 100%; background: #1d1a17; isolation: isolate; border: 1px solid var(--line); }
.map-facade::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .8;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 38px 38px,
    radial-gradient(60% 60% at 50% 45%, rgba(240,70,60,.18), transparent 70%);
}
.map-facade__road { position: absolute; background: #2e2823; z-index: -1; }
.map-facade__pin { position: absolute; top: 42%; left: 50%; transform: translate(-50%, -100%); display: grid; justify-items: center; gap: 6px; }
.map-facade__pin img { width: 64px; height: 64px; border-radius: 50%; background: var(--ink); border: 3px solid var(--red); padding: 4px; object-fit: contain; }
.map-facade__pin::after { content: ""; width: 14px; height: 14px; background: var(--red); transform: rotate(45deg); margin-top: -14px; }
.map-facade__cta { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; width: calc(100% - 24px); }
.map-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.4) invert(.9) hue-rotate(180deg) contrast(.9); }
@media (max-width: 900px) { .loc { grid-template-columns: 1fr; } .map-facade { min-height: 280px; } }

.checker { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 48px); align-items: center; }
.checker-result { margin-top: 14px; }
@media (max-width: 860px) { .checker { grid-template-columns: 1fr; } }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(20px, 4vw, 48px); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* =========================================================================
   Rewards page
   ========================================================================= */
.rewards { display: grid; grid-template-columns: 1fr 480px; gap: clamp(24px, 4vw, 56px); align-items: start; }
.perk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.perk { padding: 20px; border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line); }
.perk b { display: block; font-family: var(--f-display); font-size: 2.4rem; line-height: 1; color: var(--gold); font-weight: 400; margin-bottom: 6px; }
.perk h3 { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.perk p { color: var(--muted); font-size: .92rem; }
.points-calc { margin-top: 20px; padding: 22px; border-radius: var(--r-lg); background: linear-gradient(135deg, #0f5044, #0d2e28); border: 1px solid rgba(95,209,187,.25); }
.points-calc h3 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.5rem; margin-bottom: 14px; }
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 8px; background: linear-gradient(90deg, var(--gold) var(--fill, 30%), rgba(255,255,255,.14) var(--fill, 30%)); outline: none; margin: 14px 0 6px; cursor: pointer; }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 4px solid var(--gold); box-shadow: 0 4px 12px rgba(0,0,0,.4); cursor: grab; }
.range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 4px solid var(--gold); box-shadow: 0 4px 12px rgba(0,0,0,.4); cursor: grab; }
.range:focus-visible::-webkit-slider-thumb { box-shadow: var(--ring); }
.points-calc__out { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .95rem; color: #d4e9e3; }
.points-calc__out b { color: var(--gold); font-size: 1.2rem; }
.auth-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(18px, 3vw, 28px); position: sticky; top: calc(var(--header-h) + 20px); }
.auth-card form { display: grid; gap: 16px; margin-top: 22px; }
.auth-card .row-between { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.auth-card .text-link { color: var(--gold); font-weight: 600; font-size: .9rem; }
@media (max-width: 1000px) { .rewards { grid-template-columns: 1fr; } .auth-card { position: static; } }
@media (max-width: 520px) { .perk-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Legal page
   ========================================================================= */
.legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 40px; align-items: start; padding-block: 28px 80px; }
.legal-toc { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 2px; }
.legal-toc a { padding: 10px 14px; border-radius: 12px; color: var(--muted); font-weight: 500; transition: .15s; }
.legal-toc a:hover { background: var(--ink-2); color: var(--cream); }
.legal-toc a.is-active { background: var(--ink-3); color: var(--cream); box-shadow: inset 3px 0 0 var(--red); }
.legal-toc .cselect { display: none; }
.prose { max-width: 76ch; color: #d9cfc3; }
.prose section { padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--cream); margin-bottom: 18px; }
.prose h3 { font-weight: 700; font-size: 1.12rem; color: var(--cream); margin: 26px 0 8px; line-height: 1.3; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 14px; display: grid; gap: 6px; }
.prose ul li { padding-left: 20px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 7px; height: 7px; border-radius: 2px; background: var(--red); transform: rotate(45deg); }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; font-size: .9rem; margin-bottom: 14px; }
.prose th, .prose td { text-align: left; padding: 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--cream); }
.table-scroll { overflow-x: auto; }
@media (max-width: 900px) {
  .legal { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .legal-toc { position: sticky; top: var(--header-h); z-index: 20; background: var(--ink); padding: 10px 0; }
  .legal-toc a { display: none; }
  .legal-toc .cselect { display: block; }
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { position: relative; background: #0a0908; border-top: 1px solid var(--line); overflow: hidden; isolation: isolate; padding-top: clamp(48px, 7vw, 80px); }
.site-footer::before { content: ""; position: absolute; right: -4%; bottom: 60px; width: min(900px, 90%); aspect-ratio: 1335 / 754; background: url("../assets/img/tower-bridge-lineart.webp") no-repeat right bottom / contain; opacity: .35; z-index: -1; pointer-events: none; }
.footer-cta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: clamp(36px, 5vw, 56px); margin-bottom: clamp(36px, 5vw, 56px); border-bottom: 1px solid var(--line); }
.footer-cta h2 { font-family: var(--f-display); text-transform: uppercase; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: .92; }
.footer-cta h2 em { font-style: normal; color: var(--red); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid h3 { font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); font-weight: 700; margin-bottom: 14px; }
.footer-grid ul { display: grid; gap: 9px; }
.footer-grid a { color: #d9cfc3; transition: color .15s; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand img { width: 120px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: .93rem; max-width: 34ch; }
.footer-branch { font-size: .9rem; }
.footer-branch + .footer-branch { margin-top: 14px; }
.footer-branch b { display: block; color: var(--cream); }
.footer-branch span, .footer-branch a { color: var(--muted); display: block; }
.footer-bottom { margin-top: clamp(36px, 5vw, 56px); padding-block: 22px calc(22px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; font-size: .85rem; color: var(--dim); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-bottom a:hover { color: var(--cream); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
body.has-cart-bar .footer-bottom { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }

/* =========================================================================
   Toasts + cookie banner
   ========================================================================= */
.toasts { position: fixed; z-index: 120; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); transform: translateX(-50%); display: grid; gap: 8px; width: min(92vw, 420px); pointer-events: none; }
body.has-cart-bar .toasts { bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
.toast { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px; background: var(--cream); color: var(--paper-ink); box-shadow: var(--shadow); font-weight: 600; font-size: .93rem; pointer-events: auto; animation: toastIn .35s var(--ease); }
.toast .icon { color: var(--green); flex: none; }
.toast--bad .icon { color: var(--red); }
.toast.is-leaving { animation: toastOut .3s forwards; }
.toast button { margin-left: auto; color: var(--red-lo); font-weight: 700; white-space: nowrap; }
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } }
@keyframes toastOut { to { transform: translateY(10px); opacity: 0; } }

.cookie {
  position: fixed; z-index: 110; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); width: min(calc(100vw - 32px), 440px);
  padding: 20px; border-radius: var(--r-lg); background: var(--ink-2); border: 1px solid var(--line-2); box-shadow: var(--shadow);
  animation: toastIn .4s var(--ease);
}
.cookie h2 { font-family: var(--f-display); text-transform: uppercase; font-size: 1.4rem; margin-bottom: 6px; }
.cookie p { font-size: .88rem; color: var(--muted); }
.cookie p a { color: var(--gold); text-decoration: underline; }
.cookie__prefs { display: grid; gap: 12px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.cookie__prefs .switch span:first-child { font-size: .9rem; }
.cookie__prefs .switch small { display: block; color: var(--dim); font-size: .78rem; }
.cookie__actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.cookie__actions .btn { flex: 1; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
