:root {
  --ink: #141414;
  --paper: #fffdf9;
  --cream: #fbf6ef;
  --gold: #cf9b2d;
  --gold-soft: #e6c57d;
  --orange: #c98416;
  --orange-dark: #9d670f;
  --purple: #6b2e91;
  --purple-soft: #f2e7fb;
  --line: #eadfd2;
  --muted: #6f675e;
  --shadow: 0 20px 50px rgba(45,30,17,.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 14px; background: var(--paper); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--tight { padding: 62px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--orange-dark); font-size: .79rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 3px; border-radius: 999px; background: var(--orange); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2 { margin: 9px 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.07rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; gap: 9px; padding: 12px 20px; border: 0; border-radius: 14px; font-weight: 900; text-decoration: none; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--orange); box-shadow: 0 12px 24px rgba(239,104,23,.25); }
.button--primary:hover { background: var(--orange-dark); }
.button--dark { color: white; background: var(--ink); }
.button--light { color: var(--ink); background: white; border: 1px solid var(--line); }
.button--small { min-height: 42px; padding: 8px 14px; font-size: .9rem; }

.topbar { background: var(--ink); color: #f7f2ec; font-size: .86rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar a { color: white; font-weight: 800; text-decoration: none; }
.status-dot::before { content: ''; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #999; }
.status-dot.is-open::before { background: #48d38c; box-shadow: 0 0 0 4px rgba(72,211,140,.15); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,248,239,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(234,223,210,.85); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 180px; height: 56px; display: flex; align-items: center; overflow: hidden; border-radius: 8px; background: var(--ink); }
.logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { font-weight: 800; font-size: .94rem; text-decoration: none; }
.desktop-nav a:hover { color: var(--orange-dark); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: white; font-size: 1.4rem; }
.mobile-nav { padding: 0 18px 18px; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 12px 4px; font-weight: 850; text-decoration: none; border-bottom: 1px solid var(--line); }

.hero { position: relative; overflow: hidden; padding: 72px 0 82px; background:
  radial-gradient(circle at 15% 15%, rgba(239,104,23,.14), transparent 35%),
  linear-gradient(135deg, #fff9f2 0%, #f6e8d7 100%); }
.hero::after { content: ''; position: absolute; width: 480px; height: 480px; right: -200px; bottom: -260px; border: 70px solid rgba(239,104,23,.13); border-radius: 50%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.hero h1 { margin: 14px 0 22px; max-width: 760px; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .94; letter-spacing: -.065em; }
.hero h1 em { color: var(--orange); font-family: Georgia, serif; font-weight: 400; }
.hero-copy > p { max-width: 650px; margin: 0 0 30px; color: #5f5851; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-chip { padding: 8px 12px; border: 1px solid rgba(239,104,23,.22); border-radius: 999px; background: rgba(255,255,255,.68); font-size: .87rem; font-weight: 800; }
.hero-visual { position: relative; max-width: 720px; margin-left: auto; }
.hero-image { aspect-ratio: 16/10; border-radius: 34px; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); transform: none; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-image--wide { aspect-ratio: 16/10; }
.hero-caption { position: absolute; left: -28px; bottom: 36px; max-width: 240px; padding: 18px; border-radius: 18px; color: white; background: rgba(36,36,36,.94); box-shadow: var(--shadow); }
.hero-caption strong { display: block; color: #ffb273; font-size: 1.05rem; }
.hero-caption span { font-size: .88rem; color: #eee5dc; }
.special-stamp { position: absolute; top: 28px; right: -24px; width: 114px; height: 114px; display: grid; place-items: center; padding: 14px; border-radius: 50%; color: white; background: var(--orange); text-align: center; font-weight: 950; line-height: 1.05; transform: rotate(8deg); box-shadow: 0 14px 30px rgba(239,104,23,.28); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 24px 18px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.2rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.category-card { position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: white; text-decoration: none; transition: .22s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(239,104,23,.4); }
.category-card__icon { font-size: 2.5rem; }
.category-card h3 { margin: 18px 0 4px; font-size: 1.45rem; }
.category-card p { margin: 0; color: var(--muted); }
.category-card__link { margin-top: 18px; color: var(--orange-dark); font-weight: 900; }
.category-card::after { content: ''; position: absolute; width: 110px; height: 110px; right: -50px; top: -50px; border-radius: 50%; background: rgba(239,104,23,.09); }

.special-section { color: white; background: var(--ink); }
.special-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 72px; }
.special-poster { border-radius: 30px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.35); transform: rotate(-1.4deg); }
.special-section .eyebrow { color: #ffb273; }
.special-section h2 { margin: 10px 0 18px; font-size: clamp(2.4rem,5vw,4.7rem); line-height: 1; letter-spacing: -.055em; }
.special-section p { color: #d9d0c7; font-size: 1.08rem; }
.special-note { display: inline-block; margin-top: 18px; padding: 10px 13px; color: #181818; background: #ffd8bd; border-radius: 10px; font-weight: 850; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-copy h2 { margin: 10px 0 20px; font-size: clamp(2.4rem,5vw,4.6rem); line-height: 1; letter-spacing: -.055em; }
.about-copy p { color: var(--muted); font-size: 1.08rem; }
.quote-stack { display: grid; gap: 14px; }
.quote-card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 10px 30px rgba(45,30,17,.06); }
.quote-card strong { display: block; margin-bottom: 5px; font-size: 1.15rem; }
.quote-card span { color: var(--muted); }

.location-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 32px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.location-copy { padding: 44px; }
.location-copy h2 { margin: 8px 0 16px; font-size: clamp(2rem,4vw,3.5rem); line-height: 1.05; }
.location-list { display: grid; gap: 12px; margin: 24px 0; }
.location-list a, .location-list div { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); text-decoration: none; font-weight: 750; }
.hours-panel { padding: 44px; color: white; background: var(--ink-2); }
.hours-panel h3 { margin-top: 0; font-size: 1.5rem; }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hours-row span { color: #d6ccc2; }

.site-footer { padding: 55px 0 100px; color: #d9d0c7; background: #1d1d1d; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { max-width: 430px; }
.footer-heading { color: white; font-weight: 900; margin-bottom: 12px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #d9d0c7; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 35px; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; }
.footer-bottom a { color: white; }

.page-hero { padding: 58px 0 50px; background: linear-gradient(135deg,#242424,#3a2a20); color: white; }
.page-hero h1 { margin: 10px 0 14px; font-size: clamp(3rem,7vw,5.6rem); line-height: .95; letter-spacing: -.06em; }
.page-hero p { max-width: 760px; color: #ded4ca; font-size: 1.1rem; }
.page-hero .eyebrow { color: #ffb273; }
.menu-toolbar-wrap { position: sticky; top: 82px; z-index: 30; padding: 15px 0; background: rgba(255,248,239,.95); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.menu-toolbar { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.search-box { flex: 1; position: relative; }
.search-box input { width: 100%; min-height: 50px; padding: 12px 16px 12px 45px; border: 1px solid var(--line); border-radius: 14px; background: white; outline: none; }
.search-box input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(239,104,23,.12); }
.search-box::before { content: '⌕'; position: absolute; left: 16px; top: 10px; font-size: 1.5rem; color: var(--muted); }
.service-filters { display: flex; gap: 8px; }
.filter-button { min-height: 46px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: white; font-weight: 850; white-space: nowrap; }
.filter-button[aria-pressed="true"] { color: white; border-color: var(--ink); background: var(--ink); }
.menu-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 30px; align-items: start; }
.menu-main { min-width: 0; }
.menu-section { scroll-margin-top: 170px; margin-bottom: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: white; }
.menu-section__head { display: flex; gap: 18px; align-items: flex-start; padding: 26px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg,#fff,#fff6ed); }
.menu-icon { width: 54px; height: 54px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 16px; background: #fff0e4; font-size: 1.8rem; }
.service-label { color: var(--orange-dark); font-size: .72rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.menu-section h2 { margin: 2px 0 5px; font-size: 1.65rem; }
.menu-section__head p { margin: 0; color: var(--muted); font-size: .94rem; }
.menu-items { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.menu-item { min-height: 132px; display: flex; justify-content: space-between; gap: 18px; padding: 22px; border-bottom: 1px solid var(--line); }
.menu-item:nth-child(odd) { border-right: 1px solid var(--line); }
.menu-item h3 { margin: 0 0 5px; font-size: 1.02rem; line-height: 1.3; }
.menu-item p { margin: 0; color: var(--muted); font-size: .86rem; }
.menu-item__action { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.menu-item__action strong { color: var(--orange-dark); }
.add-button { min-width: 64px; padding: 7px 11px; color: white; border: 0; border-radius: 10px; background: var(--ink); font-weight: 900; }
.add-button:hover { background: var(--orange); }
.menu-sidebar { position: sticky; top: 170px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.menu-sidebar h3 { margin-top: 0; }
.menu-sidebar a { display: block; padding: 7px 0; color: var(--muted); font-weight: 750; text-decoration: none; }
.menu-sidebar a:hover { color: var(--orange-dark); }
.menu-disclaimer { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.original-menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.original-menu-grid a { overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: white; box-shadow: 0 10px 30px rgba(45,30,17,.07); }
.original-menu-grid img { width: 100%; height: 100%; object-fit: cover; }
.empty-state { padding: 60px; text-align: center; border: 1px dashed var(--line); border-radius: 22px; background: white; }

.cart-fab { position: fixed; right: 22px; bottom: 24px; z-index: 45; display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 12px 18px; color: white; border: 0; border-radius: 18px; background: var(--orange); box-shadow: 0 18px 40px rgba(239,104,23,.35); font-weight: 950; }
.cart-count { min-width: 24px; height: 24px; display: inline-grid; place-items: center; border-radius: 50%; color: var(--ink); background: white; font-size: .78rem; }
#cart-dialog { width: min(560px,100%); height: 100%; max-height: none; margin: 0 0 0 auto; padding: 0; border: 0; background: white; box-shadow: -20px 0 60px rgba(0,0,0,.22); }
#cart-dialog::backdrop { background: rgba(0,0,0,.55); backdrop-filter: blur(3px); }
.cart-panel { min-height: 100%; display: flex; flex-direction: column; }
.cart-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); background: white; }
.cart-head h2 { margin: 0; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: white; font-size: 1.25rem; }
.cart-body { flex: 1; overflow: auto; padding: 20px 24px 32px; }
.cart-line { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line h3 { margin: 2px 0; font-size: 1rem; }
.cart-line p, .cart-line__section { margin: 0; color: var(--muted); font-size: .8rem; }
.quantity { display: flex; align-items: center; gap: 10px; }
.quantity button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 10px; background: white; font-weight: 900; }
.cart-total { display: flex; justify-content: space-between; margin: 24px 0 16px; padding: 18px 0; border-top: 2px solid var(--ink); font-size: 1.15rem; }
.order-form { display: grid; gap: 13px; }
.order-form.is-empty { display: none; }
.field { display: grid; gap: 5px; }
.field label { font-size: .82rem; font-weight: 900; }
.field input, .field textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; outline: none; }
.field input:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(239,104,23,.12); }
.form-note { margin: 0; color: var(--muted); font-size: .78rem; }
.cart-actions { display: flex; gap: 10px; }
.cart-actions .button { flex: 1; }
.empty-cart { padding: 70px 12px; text-align: center; }
.empty-cart > div { font-size: 3rem; }
.empty-cart p { color: var(--muted); }
.toast { position: fixed; left: 50%; bottom: 30px; z-index: 100; padding: 11px 16px; color: white; border-radius: 12px; background: var(--ink); opacity: 0; transform: translate(-50%,20px); pointer-events: none; transition: .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.mobile-action-bar { display: none; }

.legal-page { max-width: 820px; margin: 0 auto; padding: 70px 18px 100px; }
.legal-page h1 { font-size: clamp(2.5rem,6vw,4.5rem); line-height: 1; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .header-actions .button--light { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .hero-grid, .special-grid, .about-grid, .location-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 45px; }
  .hero-visual { width: min(100%,540px); margin: auto; }
  .hero-caption { left: 10px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { display: none; }
  .original-menu-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 66px 0; }
  .topbar__inner { min-height: 36px; justify-content: center; }
  .topbar__inner > :last-child { display: none; }
  .header-inner { height: 70px; }
  .logo { width: 145px; height: 46px; }
  .header-actions .button { display: none; }
  .hero { padding: 52px 0 70px; }
  .hero h1 { font-size: clamp(3rem,15vw,4.6rem); }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-caption { max-width: 210px; bottom: 18px; }
  .special-stamp { width: 96px; height: 96px; right: -5px; top: 16px; font-size: .8rem; }
  .category-grid, .original-menu-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 185px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .special-grid { gap: 45px; }
  .location-copy, .hours-panel { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .menu-toolbar-wrap { top: 70px; overflow-x: auto; }
  .menu-toolbar { min-width: 620px; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: 0; }
  .menu-section__head { padding: 22px 18px; }
  .menu-item { min-height: 112px; padding: 18px; }
  .cart-fab { display: none; }
  #cart-dialog { width: 100%; }
  .mobile-action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 48; height: 68px; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(14px); box-shadow: 0 -10px 30px rgba(0,0,0,.08); }
  .mobile-action-bar a, .mobile-action-bar button { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2px; padding: 4px; color: var(--ink); border: 0; background: transparent; text-decoration: none; font-size: .7rem; font-weight: 850; }
  .mobile-action-bar span:first-child { font-size: 1.25rem; line-height: 1; }
  .mobile-action-bar .cart-count { position: absolute; margin: -28px 0 0 22px; color: white; background: var(--orange); }
  .toast { bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


.section-heading--tight { margin-bottom: 24px; }
.section--gallery { padding-top: 10px; }
.food-showcase-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.food-showcase-grid--compact { gap: 18px; }
.food-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 12px 34px rgba(45,30,17,.08); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.food-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(45,30,17,.12); }
.food-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.food-card__body { padding: 18px 18px 20px; }
.food-card__tag { display: inline-block; margin-bottom: 8px; padding: 6px 10px; border-radius: 999px; background: #fff0e4; color: var(--orange-dark); font-size: .74rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.food-card h3 { margin: 0 0 8px; font-size: 1.15rem; line-height: 1.18; }
.food-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.menu-photo-strip { background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0)); }

@media (max-width: 980px) { .food-showcase-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 700px) { .food-showcase-grid { grid-template-columns: 1fr; } .hero-visual { max-width: 100%; } .hero-image { border-radius: 26px; } .food-card__body { padding: 16px; } }

body { background: var(--cream); }
.topbar--bold { background: linear-gradient(90deg, #0f0f0f, #262626); color: #f7f2ec; }
.status-dot--hero { padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.08); font-weight: 900; }
.status-dot.is-closed::before { background: #e45c5c; box-shadow: 0 0 0 4px rgba(228,92,92,.18); }
.site-header--dark { background: rgba(20,20,20,.88); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header--dark .desktop-nav a, .site-header--dark .header-actions .button--light { color: white; }
.site-header--dark .button--light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.site-header--dark .nav-toggle { background: rgba(255,255,255,.06); color: white; border-color: rgba(255,255,255,.15); }
.site-header--dark .mobile-nav { background: #161616; }
.site-header--dark .mobile-nav a { color: white; border-bottom-color: rgba(255,255,255,.08); }
.logo { background: #000; }
.button--primary { background: linear-gradient(135deg, var(--gold), var(--orange)); box-shadow: 0 12px 24px rgba(201,132,22,.28); }
.button--primary:hover { background: linear-gradient(135deg, var(--orange), var(--gold)); }
.button--ghost { color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); }
.button--ghost:hover { background: rgba(255,255,255,.14); }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before { background: var(--gold); }
.eyebrow--purple { color: var(--purple); }
.eyebrow--purple::before { background: var(--purple); }
.brand-kicker { margin-top: 10px; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 1.1rem; letter-spacing: .03em; color: #fff4d6; }
.hero--fullbleed { position: relative; min-height: 84svh; padding: 0; background: #0f0f0f; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.58) 38%, rgba(0,0,0,.28) 65%, rgba(0,0,0,.15) 100%); }
.hero-grid--single { min-height: 84svh; display: flex; align-items: center; }
.hero-copy--light { position: relative; z-index: 2; max-width: 700px; color: white; padding: 72px 0; }
.hero-copy--light h1 { color: white; font-size: clamp(3.3rem, 8vw, 6.6rem); }
.hero-copy--light > p { color: #efe8de; }
.hero-strap { margin: 0 0 12px !important; color: #ffefc8 !important; font-size: clamp(1.1rem, 2vw, 1.35rem) !important; font-weight: 900; }
.hero-chips--dark .hero-chip { color: white; border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.08); }
.hero-chips--compact { margin-top: 18px; }
.trust-strip--dark { background: #181818; color: white; }
.trust-strip--dark .trust-item { border-color: rgba(255,255,255,.08); }
.trust-strip--dark .trust-item span { color: #cfc4b8; }
.feature-category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.feature-category-card { overflow: hidden; border-radius: 28px; background: white; border: 1px solid var(--line); box-shadow: 0 16px 38px rgba(45,30,17,.08); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.feature-category-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(45,30,17,.12); }
.feature-category-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-category-card__body { padding: 18px 18px 22px; }
.feature-category-card__badge { display: inline-flex; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: #fff4df; color: var(--orange-dark); font-size: .73rem; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
.feature-category-card__body h3 { margin: 0 0 8px; font-size: 1.4rem; }
.feature-category-card__body p { margin: 0 0 10px; color: var(--muted); }
.feature-category-card__link { font-weight: 900; color: var(--ink); }
.special-section--purple { background: linear-gradient(180deg, #fff7ff, #fffaf5); }
.live-badge { display: inline-flex; margin-bottom: 12px; padding: 7px 12px; border-radius: 999px; background: #f3e8fb; color: var(--purple); font-weight: 950; letter-spacing: .05em; text-transform: uppercase; }
.live-badge.is-live { background: #3f9e5f; color: white; }
.special-proteins { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 18px; }
.special-proteins span { padding: 8px 12px; border-radius: 999px; background: white; border: 1px solid #e8dff0; font-weight: 850; }
.reviews-section { background: linear-gradient(180deg, #fff, #fcf6ef); }
.review-meta { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-bottom: 24px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 10px 28px rgba(45,30,17,.06); }
.rating-badge, .wanderlog-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 90px; min-height: 54px; padding: 0 16px; border-radius: 16px; font-weight: 950; }
.rating-badge { color: #1f5e33; background: #eaf8ef; }
.wanderlog-badge { color: #5a3a00; background: #fff2cf; }
.review-meta span { display: block; color: var(--muted); }
.testimonial-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.testimonial-card { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 10px 28px rgba(45,30,17,.05); }
.testimonial-card p { margin: 0 0 14px; font-size: 1rem; line-height: 1.7; }
.testimonial-card span { color: var(--muted); font-weight: 800; }
.section--dark { color: white; background: linear-gradient(135deg, #121212, #242424); }
.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.teaser-card { padding: 34px; border-radius: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.teaser-card h2 { margin: 8px 0 12px; font-size: clamp(2rem,4vw,3rem); line-height: 1.02; }
.teaser-card p { color: #ddd4ca; }
.location-card--enhanced { margin-bottom: 18px; }
.hours-callout { display: grid; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.map-wrap { margin-bottom: 80px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; border-radius: 26px; box-shadow: var(--shadow); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.footer-payments span { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.08); font-size: .8rem; font-weight: 850; }
.page-hero--rich { background: linear-gradient(135deg, #121212, #322415); color: white; }
.page-hero--rich p { color: #e4d8ca; }
.menu-toolbar-wrap { background: rgba(255,251,245,.95); }
.menu-section__head { position: relative; display: grid; grid-template-columns: auto 1fr 170px; align-items: center; gap: 18px; }
.menu-section__photo { width: 170px; height: 120px; object-fit: cover; border-radius: 18px; box-shadow: 0 10px 24px rgba(45,30,17,.1); }
.menu-item__headrow { display: flex; flex-direction: column; gap: 8px; }
.menu-item__muted { color: #8a8177 !important; font-style: italic; }
.menu-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.menu-tag { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: .68rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; background: #f1ece6; color: #493b31; }
.menu-tag.most-popular { background: #fff0cf; color: #875400; }
.menu-tag.popular { background: #fff4df; color: #9d670f; }
.menu-tag.vegetarian { background: #eaf8ef; color: #1f5e33; }
.menu-tag.spicy { background: #ffe7e1; color: #a93b22; }
.menu-item__action strong { font-size: 1.08rem; color: var(--orange-dark); font-weight: 950; }
.add-button { padding: 8px 13px; background: var(--ink); }
.food-card, .feature-category-card, .testimonial-card, .quote-card, .menu-sidebar, .location-card, .hours-panel, .special-poster img { box-shadow: 0 14px 32px rgba(45,30,17,.08); }
.mobile-action-bar--strong a, .mobile-action-bar--strong button { background: #111; color: white; }
.mobile-action-bar--strong .mobile-action-bar__primary { background: linear-gradient(135deg, var(--gold), var(--orange)); color: white; }
@media (max-width: 980px) {
  .feature-category-grid, .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .review-meta { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .menu-section__head { grid-template-columns: auto 1fr; }
  .menu-section__photo { grid-column: 1 / -1; width: 100%; height: 180px; }
}
@media (max-width: 700px) {
  .hero--fullbleed, .hero-grid--single { min-height: 78svh; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.35) 100%); }
  .feature-category-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .review-meta { padding: 16px; }
  .feature-category-card__body h3 { font-size: 1.25rem; }
  .map-wrap iframe { height: 300px; border-radius: 20px; }
}

.food-gallery-section { background: linear-gradient(180deg, #fffdf9, #fcf5ea); }
.food-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.food-gallery-card { margin: 0; overflow: hidden; border-radius: 24px; background: white; border: 1px solid var(--line); box-shadow: 0 14px 32px rgba(45,30,17,.08); }
.food-gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.food-gallery-card figcaption { padding: 14px 16px 16px; font-weight: 850; }
.food-gallery-card--wide { grid-column: span 2; }
.food-gallery-card--wide img { aspect-ratio: 16/9; }
.food-gallery-section--menu { padding-top: 0; }
.food-gallery-grid--menu .food-gallery-card img { aspect-ratio: 1.2/1; }
@media (max-width: 980px) {
  .food-gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .food-gallery-card--wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .food-gallery-grid { grid-template-columns: 1fr; }
  .food-gallery-card--wide { grid-column: span 1; }
  .food-gallery-card--wide img { aspect-ratio: 4/3; }
}

/* Menu imagery and item customisation upgrade */
.customizable-note {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0cf;
  color: #875400;
  font-size: .75rem;
  font-weight: 900;
}

.menu-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.menu-item__thumb {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center var(--thumb-offset, 50%);
  box-shadow: 0 10px 24px rgba(45, 30, 17, .12);
}

.menu-item__copy {
  min-width: 0;
}

.menu-item__options {
  margin-top: 8px !important;
  color: var(--orange-dark) !important;
  font-size: .78rem !important;
  font-weight: 850;
}

.menu-item__action {
  min-width: 118px;
}

.price-label {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.add-button {
  min-width: 104px;
}

.cart-line__modifiers {
  max-width: 340px;
  margin: 6px 0 !important;
  color: var(--orange-dark) !important;
  font-weight: 750;
}

#customize-dialog {
  width: min(620px, calc(100% - 24px));
  max-height: min(860px, calc(100% - 24px));
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

#customize-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(4px);
}

.customize-panel {
  display: flex;
  flex-direction: column;
  max-height: min(860px, calc(100vh - 24px));
}

.customize-head {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.customize-head h2 {
  margin: 2px 0 0;
  font-size: 1.7rem;
}

.customize-product {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(135deg, #fff9f2, #f8ead8);
}

.customize-product img {
  width: 150px;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(45, 30, 17, .14);
}

.customize-product h3 {
  margin: 3px 0 6px;
  font-size: 1.45rem;
}

.customize-product p {
  margin: 0;
  color: var(--muted);
}

.customize-groups {
  overflow: auto;
  padding: 20px 22px 8px;
}

.modifier-group {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.modifier-group legend {
  padding: 0;
  font-size: 1.05rem;
  font-weight: 950;
}

.modifier-group > p {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: .88rem;
}

.modifier-options {
  display: grid;
  gap: 9px;
}

.modifier-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: .16s ease;
}

.modifier-option:hover {
  border-color: var(--gold);
  background: #fffaf0;
}

.modifier-option:has(input:checked) {
  border-color: var(--gold);
  background: #fff4df;
  box-shadow: 0 0 0 3px rgba(207, 155, 45, .12);
}

.modifier-option input {
  width: 19px;
  height: 19px;
  accent-color: var(--orange);
}

.modifier-option span {
  font-weight: 850;
}

.modifier-option strong {
  color: var(--orange-dark);
  white-space: nowrap;
}

.customize-footer {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: white;
  box-shadow: 0 -10px 30px rgba(45, 30, 17, .07);
}

.customize-footer > div {
  display: grid;
  gap: 2px;
}

.customize-footer span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.customize-footer strong {
  font-size: 1.45rem;
}

@media (max-width: 700px) {
  .menu-item {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
  }

  .menu-item__thumb {
    width: 82px;
    height: 82px;
    border-radius: 14px;
  }

  .menu-item__action {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
  }

  .menu-item__action .add-button {
    min-width: 132px;
  }

  #customize-dialog {
    width: calc(100% - 12px);
    max-height: calc(100% - 12px);
    border-radius: 22px;
  }

  .customize-product {
    grid-template-columns: 105px minmax(0, 1fr);
    padding: 18px;
  }

  .customize-product img {
    width: 105px;
    height: 88px;
  }

  .customize-groups {
    padding: 18px 16px 4px;
  }

  .customize-footer {
    grid-template-columns: 1fr;
    padding: 14px 16px 16px;
  }

  .customize-footer .button {
    width: 100%;
  }
}


/* Interactive visual ordering menu */
.menu-page { color: #f6f0e7; background: #080808; }
.menu-page .site-header { background: rgba(8,8,8,.96); }
.menu-page .site-footer { border-top: 1px solid rgba(207,155,45,.22); }
.ordering-hero { padding: 42px 0; background: radial-gradient(circle at 78% 30%, rgba(207,155,45,.14), transparent 34%), linear-gradient(135deg,#090909,#19130c); border-bottom: 1px solid rgba(207,155,45,.22); }
.ordering-hero__grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 30px; align-items: center; }
.ordering-hero__copy h1 { margin: 10px 0 14px; color: white; font-size: clamp(2.8rem,6vw,5.4rem); line-height: .92; letter-spacing: -.055em; }
.ordering-hero__copy p { max-width: 660px; color: #d7cec2; font-size: 1.05rem; }
.ordering-hero__image { overflow: hidden; border: 1px solid rgba(207,155,45,.44); border-radius: 24px; background: #111; }
.ordering-hero__image img { width: 100%; aspect-ratio: 16/8; object-fit: cover; object-position: center; }
.menu-toolbar-wrap--dark { top: 82px; background: rgba(12,12,12,.96); border-bottom-color: rgba(207,155,45,.22); }
.menu-page .search-box input { color: white; background: #171717; border-color: #393126; }
.menu-page .search-box input::placeholder { color: #9c9388; }
.menu-page .filter-button { color: #f4ede4; background: #171717; border-color: #3c3327; }
.menu-page .filter-button[aria-pressed="true"] { color: #080808; border-color: var(--gold); background: linear-gradient(135deg,var(--gold-soft),var(--gold)); }
.interactive-ordering-section { padding: 26px 0 70px; background: #080808; }
.ordering-shell { display: grid; grid-template-columns: 220px minmax(0,1fr) 300px; gap: 14px; align-items: start; }
.category-rail, .desktop-order-summary { position: sticky; top: 164px; border: 1px solid rgba(207,155,45,.28); border-radius: 18px; background: #111; overflow: hidden; }
.rail-title { padding: 16px; color: var(--gold-soft); border-bottom: 1px solid rgba(207,155,45,.22); font-size: .76rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.category-rail > a { display: flex; align-items: center; gap: 10px; min-height: 50px; padding: 8px 12px; color: white; border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none; font-weight: 820; }
.category-rail > a:hover, .category-rail > a:focus { color: #0a0a0a; background: linear-gradient(90deg,var(--gold),#f1c35b); }
.category-rail > a img { width: 34px; height: 34px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); }
.rail-special { margin: 12px; padding: 14px; border: 1px solid rgba(188,88,230,.42); border-radius: 14px; background: linear-gradient(145deg,#351748,#1f102a); }
.rail-special strong, .rail-special span, .rail-special a { display: block; }
.rail-special strong { color: #f2cdff; }
.rail-special span { margin: 4px 0 10px; color: #d2bed9; font-size: .78rem; }
.rail-special a { color: #f4c8ff; font-size: .78rem; font-weight: 900; text-decoration: none; }
.menu-main--interactive { min-width: 0; }
.menu-page .menu-section { margin-bottom: 15px; border-color: rgba(207,155,45,.26); border-radius: 18px; background: #111; box-shadow: none; }
.menu-page .menu-section__head { min-height: 146px; grid-template-columns: auto 1fr 220px; padding: 18px; color: white; border-bottom-color: rgba(207,155,45,.22); background: linear-gradient(100deg,#151515,#21170e); }
.menu-page .menu-section__head p { color: #cfc5b9; }
.menu-page .menu-section__photo { width: 220px; height: 112px; border: 1px solid rgba(207,155,45,.28); border-radius: 14px; box-shadow: none; }
.menu-page .menu-icon { color: #111; background: linear-gradient(135deg,var(--gold-soft),var(--gold)); }
.menu-page .service-label { color: var(--gold-soft); }
.menu-page .customizable-note { color: #f5d6ff; background: rgba(130,51,163,.24); }
.menu-page .menu-items { grid-template-columns: 1fr; }
.menu-page .menu-item { min-height: 132px; display: grid; grid-template-columns: 112px minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 14px; border-right: 0 !important; border-bottom-color: rgba(255,255,255,.07); background: #0e0e0e; }
.menu-page .menu-item:hover { background: #15130f; }
.menu-page .menu-item__thumb { width: 112px; height: 104px; border: 1px solid rgba(207,155,45,.28); border-radius: 14px; box-shadow: none; object-position: center; }
.menu-page .menu-item h3 { color: white; font-size: 1.06rem; }
.menu-page .menu-item p { color: #aaa096; }
.menu-page .menu-item__muted { color: #8d857d !important; }
.menu-page .menu-item__options { color: var(--gold-soft) !important; }
.menu-page .menu-tag { background: #26211a; color: #e7ddcf; }
.menu-page .menu-tag.most-popular { background: #4e3710; color: #ffd77b; }
.menu-page .menu-tag.vegetarian { background: #173221; color: #a9edbd; }
.menu-page .menu-tag.spicy { background: #3d1c16; color: #ffb09c; }
.menu-page .menu-item__action { min-width: 118px; }
.menu-page .menu-item__action strong { color: #f4bd3f; font-size: 1.15rem; }
.menu-page .price-label { color: #877f75; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.menu-page .add-button { width: 118px; min-height: 40px; color: #111; background: linear-gradient(135deg,var(--gold-soft),var(--gold)); }
.menu-page .add-button:hover { background: #f1c55c; }
.desktop-order-summary { padding: 16px; }
.desktop-order-summary__head { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(207,155,45,.22); }
.desktop-order-summary h2 { margin: 2px 0 0; color: white; font-size: 1.2rem; }
.cart-count--visible { display: grid !important; min-width: 30px; height: 30px; color: #111; background: var(--gold); }
.desktop-cart-items { max-height: 420px; overflow: auto; padding: 8px 0; }
.desktop-cart-empty { color: #928a81; font-size: .88rem; }
.desktop-cart-line { display: grid; grid-template-columns: 48px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.desktop-cart-line img { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; }
.desktop-cart-line strong, .desktop-cart-line span { display: block; }
.desktop-cart-line strong { color: white; font-size: .86rem; }
.desktop-cart-line span { color: #aca298; font-size: .74rem; }
.desktop-cart-total { display: flex; justify-content: space-between; gap: 12px; padding: 15px 0; color: white; border-top: 1px solid rgba(207,155,45,.22); }
.desktop-cart-total strong { color: #f4bd3f; font-size: 1.25rem; }
.button--whatsapp { color: white; background: #2da740; }
.button--whatsapp:hover { background: #238a34; }
.desktop-order-summary .button { width: 100%; }
.desktop-order-facts { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 14px; }
.desktop-order-facts div { display: flex; justify-content: space-between; gap: 10px; color: #9f958b; font-size: .76rem; }
.desktop-order-facts strong { color: #e9dfd2; }
.desktop-cart-note { margin: 14px 0 0; color: #817970; font-size: .72rem; }
.original-boards-section { color: #211c17; background: #f8f1e8; }
.original-menu-details { border: 1px solid var(--line); border-radius: 20px; background: white; padding: 18px; }
.original-menu-details summary { cursor: pointer; font-size: 1.05rem; font-weight: 900; }
.menu-page #customize-dialog, .menu-page #cart-dialog { color: #221b15; }

@media (max-width: 1180px) {
  .ordering-shell { grid-template-columns: 190px minmax(0,1fr); }
  .desktop-order-summary { display: none; }
}
@media (max-width: 900px) {
  .ordering-hero__grid { grid-template-columns: 1fr; }
  .ordering-shell { grid-template-columns: 1fr; }
  .category-rail { position: static; display: flex; gap: 8px; overflow-x: auto; padding: 10px; border-radius: 14px; }
  .rail-title, .rail-special { display: none; }
  .category-rail > a { flex: 0 0 auto; min-height: 42px; padding: 6px 10px; border: 1px solid rgba(207,155,45,.2); border-radius: 999px; }
  .category-rail > a img { width: 28px; height: 28px; }
  .menu-page .menu-section__head { grid-template-columns: auto 1fr; }
  .menu-page .menu-section__photo { grid-column: 1 / -1; width: 100%; height: 180px; }
}
@media (max-width: 700px) {
  .ordering-hero { padding: 30px 0; }
  .ordering-hero__copy h1 { font-size: clamp(2.7rem,13vw,4.2rem); }
  .ordering-hero__image img { aspect-ratio: 16/10; }
  .menu-toolbar-wrap--dark { top: 70px; }
  .menu-page .menu-item { grid-template-columns: 86px minmax(0,1fr); }
  .menu-page .menu-item__thumb { width: 86px; height: 86px; }
  .menu-page .menu-item__action { grid-column: 1 / -1; width: 100%; display: grid; grid-template-columns: auto auto 1fr; align-items: center; }
  .menu-page .add-button { width: 100%; }
}

/* Final integrated item-card ordering layout */
.menu-page .menu-section__head {
  min-height: auto;
  grid-template-columns: auto minmax(0,1fr);
}
.menu-page .menu-section__photo { display: none; }
.menu-page .menu-item.menu-item--visual {
  grid-template-columns: 132px minmax(0,1fr) 150px;
  min-height: 154px;
  gap: 16px;
  padding: 16px;
}
.menu-item__image-wrap {
  position: relative;
  width: 132px;
  height: 122px;
}
.menu-page .menu-item__image-wrap .menu-item__thumb {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}
.menu-item__image-badge {
  position: absolute;
  left: 7px;
  bottom: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #17120a;
  background: #efc25a;
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.menu-page .menu-item__copy h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}
.menu-page .menu-item__action {
  min-width: 150px;
  align-self: stretch;
  justify-content: center;
}
.menu-page .add-button {
  width: 150px;
  min-height: 44px;
  padding: 9px 10px;
}
.menu-page .add-button--extras {
  color: #fff7df;
  border: 1px solid #d5a12d;
  background: #2a1d08;
}
.menu-page .add-button--extras:hover {
  color: #17120a;
  background: #efc25a;
}
.customize-product__note {
  margin-top: 7px !important;
  color: #756b61 !important;
  font-size: .78rem !important;
}
@media (max-width: 760px) {
  .menu-page .menu-item.menu-item--visual {
    grid-template-columns: 104px minmax(0,1fr);
    min-height: 136px;
    gap: 12px;
    padding: 13px;
  }
  .menu-item__image-wrap {
    width: 104px;
    height: 104px;
  }
  .menu-page .menu-item__action {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto minmax(150px,1fr);
    align-items: center;
    gap: 10px;
  }
  .menu-page .add-button {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .menu-page .menu-item.menu-item--visual {
    grid-template-columns: 88px minmax(0,1fr);
  }
  .menu-item__image-wrap {
    width: 88px;
    height: 88px;
  }
  .menu-page .menu-item__action {
    grid-template-columns: auto auto;
  }
  .menu-page .add-button {
    grid-column: 1 / -1;
  }
}


/* Bilingual controls */
.language-toggle { display: inline-flex; align-items: center; padding: 3px; border: 1px solid rgba(207,155,45,.35); border-radius: 999px; background: rgba(0,0,0,.22); }
.language-toggle button { min-width: 37px; min-height: 34px; padding: 4px 9px; color: inherit; border: 0; border-radius: 999px; background: transparent; font-size: .76rem; font-weight: 950; }
.language-toggle button[aria-pressed="true"] { color: #17120a; background: linear-gradient(135deg,var(--gold-soft),var(--gold)); }

/* Categories centered above the interactive ordering platform */
.menu-page .ordering-shell { grid-template-columns: minmax(0,1fr) 300px; gap: 16px; }
.menu-page .category-rail { position: sticky; top: 164px; z-index: 20; grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; padding: 12px; overflow: visible; border-radius: 18px; }
.menu-page .category-rail .rail-title { flex: 0 0 100%; padding: 2px 0 8px; text-align: center; border: 0; }
.menu-page .category-rail > a { flex: 0 0 auto; min-height: 44px; padding: 6px 11px; border: 1px solid rgba(207,155,45,.22); border-radius: 999px; }
.menu-page .category-rail > a img { width: 30px; height: 30px; }
.menu-page .category-rail .rail-special { display: none; }
.menu-page .menu-main--interactive { grid-column: 1; }
.menu-page .desktop-order-summary { grid-column: 2; }

/* One complete item card: image + name + price + item-specific controls */
.menu-page .menu-item.menu-item--visual { border: 1px solid rgba(207,155,45,.16); border-radius: 16px; margin: 10px; overflow: hidden; }
.menu-page .menu-item__action { gap: 8px; }
.item-button-stack { display: grid; gap: 7px; width: 100%; }
.item-button-stack .add-button { width: 100%; }
.line-extras { margin-top: 7px; padding: 8px 10px; border-left: 3px solid var(--gold); border-radius: 6px; color: #d7cbbd; background: rgba(207,155,45,.08); font-size: .78rem; }
.line-extras strong { display: block; margin-bottom: 4px; color: #f2c75e !important; }
.line-extras div { margin-top: 3px; }
.line-extras div span { display: inline !important; color: #f3eadf !important; font-weight: 850; }
.cart-line .line-extras { color: #5f554c; background: #fff8e7; }
.cart-line .line-extras strong, .cart-line .line-extras div span { color: #6e4b00 !important; }

@media (max-width: 1180px) {
  .menu-page .ordering-shell { grid-template-columns: 1fr; }
  .menu-page .desktop-order-summary { display: none; }
  .menu-page .category-rail { position: static; }
}
@media (max-width: 700px) {
  .language-toggle { margin-left: auto; }
  .menu-page .category-rail { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; }
  .menu-page .category-rail .rail-title { display: none; }
  .menu-page .menu-item__action { grid-template-columns: auto auto minmax(160px,1fr); }
  .item-button-stack { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .item-button-stack:has(.add-button:only-child) { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .header-actions { gap: 6px; }
  .language-toggle button { min-width: 34px; padding-inline: 7px; }
  .item-button-stack { grid-template-columns: 1fr; }
}


/* Final category alignment: compact category plates stay centred and wrap cleanly. */
.menu-page .category-rail,
.menu-page .category-rail[aria-label="Menu categories"] {
  flex-wrap: wrap !important;
  justify-content: center !important;
  overflow: visible !important;
  text-align: center;
}
.menu-page .category-rail > a { justify-content: center; }
@media (max-width: 700px) {
  .menu-page .category-rail,
  .menu-page .category-rail[aria-label="Menu categories"] {
    flex-wrap: wrap !important;
    justify-content: center !important;
    overflow: visible !important;
  }
}

/* Island Mogul integration */
.game-promo-section { padding: 34px 0 72px; background: linear-gradient(180deg, #fbf6ef, #fff); }
.game-promo-card { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr); gap: 28px; align-items: center; overflow: hidden; padding: 34px; color: white; border: 1px solid rgba(207,155,45,.3); border-radius: 30px; background: radial-gradient(circle at 82% 20%, rgba(207,155,45,.25), transparent 30%), linear-gradient(135deg,#111,#292014); box-shadow: 0 22px 48px rgba(35,24,12,.18); }
.game-promo-card h2 { margin: 8px 0 12px; font-size: clamp(2.1rem,4vw,3.6rem); line-height: 1; }
.game-promo-card p { max-width: 720px; color: #e2d8cc; }
.game-promo-card__visual { position: relative; min-height: 230px; display: grid; place-items: center; border-radius: 24px; background: linear-gradient(150deg,rgba(207,155,45,.22),rgba(107,46,145,.24)); border: 1px solid rgba(255,255,255,.12); }
.game-promo-card__island { font-size: clamp(4.5rem,10vw,8rem); filter: drop-shadow(0 14px 22px rgba(0,0,0,.3)); }
.game-promo-card__badge { position: absolute; right: 16px; bottom: 16px; padding: 8px 12px; border-radius: 999px; color: #16120a; background: #efc25a; font-weight: 950; }
.game-promo-note { margin-top: 13px; font-size: .86rem; color: #cbbfaf !important; }




.play-page { min-height: 100vh; color: white; background:
  radial-gradient(circle at top, rgba(207,155,45,.16), transparent 28%),
  linear-gradient(180deg, #090909 0%, #090909 24%, #111111 100%); }
.play-toolbar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; padding: 10px 18px; border-bottom: 1px solid rgba(207,155,45,.24); background: rgba(10,10,10,.96); backdrop-filter: blur(14px); }
.play-toolbar__left, .play-toolbar__right { display: flex; align-items: center; gap: 10px; }
.play-toolbar .logo { width: 190px; height: 72px; }
.play-toolbar__title { display: grid; line-height: 1.15; }
.play-toolbar__title strong { color: white; }
.play-toolbar__title span { color: #bfb3a5; font-size: .8rem; }
.play-intro { padding: clamp(36px, 6vw, 82px) 0 34px; }
.play-intro__inner { display: grid; place-items: center; }
.play-story-card { width: min(980px, 100%); text-align: center; padding: clamp(28px, 4vw, 46px); border: 1px solid rgba(207,155,45,.28); border-radius: 34px; background:
  radial-gradient(circle at 50% 0%, rgba(107,46,145,.17), transparent 30%),
  radial-gradient(circle at 85% 15%, rgba(207,155,45,.14), transparent 22%),
  linear-gradient(145deg, rgba(18,18,18,.98), rgba(28,21,13,.98));
  box-shadow: 0 26px 70px rgba(0,0,0,.34); }
.play-story-card h1 { margin: 12px auto 14px; max-width: 12ch; color: white; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: .95; }
.play-intro__lead { max-width: 760px; margin: 0 auto 10px; color: #ece1d4; font-size: clamp(1rem, 2vw, 1.16rem); }
.play-story-card > p:last-of-type { max-width: 760px; margin: 0 auto; color: #bfb5aa; }
.play-story-card__icon { display: grid; place-items: center; margin-bottom: 12px; }
.mogul-icon { position: relative; width: 160px; height: 160px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #4b3513, #1b140d 60%, #0e0e0e 100%); border: 1px solid rgba(207,155,45,.46); box-shadow: inset 0 0 0 8px rgba(255,255,255,.03), 0 16px 38px rgba(0,0,0,.35); overflow: hidden; }
.mogul-icon__halo { position: absolute; inset: 16px; border-radius: 50%; border: 1px solid rgba(240,194,91,.18); }
.mogul-icon__emoji { position: relative; z-index: 2; font-size: 4.4rem; filter: drop-shadow(0 12px 18px rgba(0,0,0,.35)); }
.mogul-icon__coin, .mogul-icon__pin { position: absolute; z-index: 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #1b1308; background: linear-gradient(145deg, #ffd978, #c9921f); box-shadow: 0 6px 12px rgba(0,0,0,.25); }
.mogul-icon__coin { top: 22px; right: 22px; font-size: 1rem; }
.mogul-icon__pin { bottom: 24px; left: 20px; font-size: 1rem; }
.play-story-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin: 26px 0 24px; text-align: left; }
.play-story-grid article { padding: 18px; border-radius: 20px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.04); }
.play-story-grid strong { display: block; margin-bottom: 6px; color: #f0c25b; }
.play-story-grid p { margin: 0; color: #cdbfaf; font-size: .92rem; }
.play-cta-stack { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.play-launch-button { min-width: 240px; }
.play-helper-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.play-helper-pill { padding: 9px 12px; border-radius: 999px; color: #efe3d4; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); font-size: .88rem; }
.play-frame-section { width: min(1240px, calc(100% - 28px)); margin: 0 auto 36px; }
.play-frame-header { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin: 10px 0 14px; }
.play-frame-header h2 { margin: 8px 0 4px; color: white; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.play-frame-header p { margin: 0; color: #b9afa3; }
.play-frame-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.play-frame-wrap { position: relative; height: calc(100vh - 76px); min-height: 580px; background: #111; border: 1px solid rgba(207,155,45,.22); border-radius: 26px; overflow: hidden; }
.play-frame-wrap--intro { height: 0; min-height: 0; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease, min-height .35s ease; }
.play-frame-wrap--intro.is-live { height: calc(100vh - 140px); min-height: 680px; opacity: 1; pointer-events: auto; transform: translateY(0); }
.play-frame-section:not(.is-live) .play-frame-header { display: none; }
.play-frame { width: 100%; height: 100%; border: 0; background: #111; }
.play-fallback { position: absolute; right: 18px; bottom: 18px; z-index: 2; padding: 10px 14px; border-radius: 12px; color: white; background: rgba(0,0,0,.72); border: 1px solid rgba(255,255,255,.18); text-decoration: none; font-weight: 850; }
.play-return-mobile { display: none; }
@media (max-width: 920px) {
  .play-story-grid { grid-template-columns: 1fr; }
  .play-frame-header { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  .play-toolbar { min-height: 68px; padding: 8px 10px; }
  .play-toolbar .logo { width: 152px; height: 58px; }
  .play-toolbar__title { display: none; }
  .play-toolbar__right .button--light { display: none; }
  .play-return-mobile { display: inline-flex; }
  .play-story-card { border-radius: 24px; }
  .mogul-icon { width: 132px; height: 132px; }
  .mogul-icon__emoji { font-size: 3.7rem; }
  .play-frame-section { width: min(100%, calc(100% - 16px)); }
  .play-frame-wrap--intro.is-live { height: calc(100vh - 122px); min-height: 520px; }
  .play-fallback { right: 10px; bottom: 10px; }
}

/* Thorough menu rebuild: photographs and inline item builder */
.menu-page .menu-icon { display: none !important; }
.menu-page .ordering-shell--builder { grid-template-columns: minmax(0,1fr) 340px; gap: 18px; align-items: start; }
.menu-page .category-rail--centered { grid-column: 1 / -1; position: sticky; top: 162px; z-index: 25; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 12px; }
.menu-page .category-rail--centered .rail-title { flex: 0 0 100%; text-align: center; border: 0; padding: 0 0 6px; }
.menu-page .category-rail--centered > a { flex: 0 0 auto; min-height: 48px; border: 1px solid rgba(207,155,45,.25); border-radius: 999px; padding: 7px 13px; }
.menu-page .category-rail--centered > a img { width: 34px; height: 34px; }
.menu-page .menu-main--interactive { grid-column: 1; min-width: 0; }
.builder-sidebar { grid-column: 2; position: sticky; top: 164px; display: grid; gap: 16px; }
.item-builder, .desktop-order-summary--embedded { position: static; overflow: hidden; border: 1px solid rgba(207,155,45,.3); border-radius: 20px; background: #111; }
.item-builder__empty { padding: 22px; }
.item-builder__empty h2 { margin: 6px 0 10px; color: white; font-size: 1.35rem; line-height: 1.1; }
.item-builder__empty p { margin: 0; color: #a99f94; font-size: .9rem; }
.item-builder__form { position: relative; }
.builder-close { position: absolute; right: 10px; top: 10px; z-index: 2; width: 34px; height: 34px; color: white; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(0,0,0,.55); }
.builder-product { display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 14px; align-items: center; padding: 16px; color: white; background: linear-gradient(135deg,#171717,#2a1c0c); }
.builder-product img { width: 112px; height: 92px; object-fit: cover; border-radius: 14px; border: 1px solid rgba(207,155,45,.35); }
.builder-product h2 { margin: 3px 0 6px; font-size: 1.25rem; }
.builder-product p { margin: 0; color: #b9afa4; font-size: .82rem; }
.builder-options { max-height: 420px; overflow: auto; padding: 16px; }
.builder-options .modifier-group { margin-bottom: 16px; }
.builder-options .modifier-group legend { color: #f0c25b; }
.builder-options .modifier-group > p { color: #9e958b; }
.builder-options .modifier-option { color: #eee5da; border-color: rgba(255,255,255,.12); background: #171717; }
.builder-options .modifier-option:hover, .builder-options .modifier-option:has(input:checked) { border-color: var(--gold); background: #2a210f; }
.builder-options .modifier-option strong { color: #f0c25b; }
.builder-quantity, .builder-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; color: white; border-top: 1px solid rgba(255,255,255,.08); }
.quantity-control { display: flex; align-items: center; gap: 10px; }
.quantity-control button { width: 34px; height: 34px; color: white; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; background: #1d1d1d; }
.builder-total strong { color: #f2bd45; font-size: 1.25rem; }
.builder-add { width: calc(100% - 32px); margin: 14px 16px 8px; }
.builder-note { margin: 0; padding: 0 16px 16px; color: #948a80; font-size: .72rem; }
.desktop-order-summary--embedded { padding: 16px; }
.menu-page .menu-section__head--photo { display: grid; grid-template-columns: 128px minmax(0,1fr); gap: 16px; align-items: center; min-height: auto; padding: 16px; }
.menu-section__category-photo { width: 128px; height: 96px; object-fit: cover; border-radius: 15px; border: 1px solid rgba(207,155,45,.28); }
.menu-page .menu-items--cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 12px; }
.menu-page .menu-item.menu-item--ordering-card { min-height: 0; display: grid; grid-template-columns: 118px minmax(0,1fr); gap: 12px; align-items: stretch; margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(207,155,45,.18); border-radius: 16px; background: #0e0e0e; }
.menu-page .menu-item--ordering-card .menu-item__thumb { width: 118px; height: 100%; min-height: 138px; border: 0; border-radius: 0; object-fit: cover; }
.menu-page .menu-item--ordering-card .menu-item__copy { padding: 13px 12px 4px 0; }
.menu-page .menu-item--ordering-card h3 { margin: 0 0 5px; color: white; font-size: 1.02rem; }
.menu-page .menu-item--ordering-card p { margin: 0; color: #aaa096; font-size: .82rem; }
.menu-page .menu-item--ordering-card .menu-tags { margin-top: 8px; }
.menu-page .menu-item--ordering-card .menu-item__action { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; padding: 10px 12px; border-top: 1px solid rgba(255,255,255,.07); }
.menu-page .menu-item--ordering-card .menu-item__action strong { font-size: 1.2rem; }
.menu-page .menu-item--ordering-card .add-button { width: auto; min-width: 138px; }
.cart-line__image { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.cart-line { display: grid; grid-template-columns: 72px minmax(0,1fr) auto; align-items: center; }

@media (max-width: 1180px) {
  .menu-page .ordering-shell--builder { grid-template-columns: minmax(0,1fr) 320px; }
  .menu-page .menu-items--cards { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .menu-page .ordering-shell--builder { grid-template-columns: 1fr; }
  .builder-sidebar { grid-column: 1; position: static; order: -1; }
  .desktop-order-summary--embedded { display: none; }
  .item-builder__empty { display: none; }
  .item-builder:not(.is-active) { display: none; }
  .menu-page .category-rail--centered { position: static; }
}
@media (max-width: 700px) {
  .menu-page .category-rail--centered { flex-wrap: wrap !important; justify-content: center !important; }
  .menu-page .category-rail--centered .rail-title { display: block; }
  .menu-page .category-rail--centered > a { padding: 6px 9px; font-size: .82rem; }
  .menu-page .category-rail--centered > a img { width: 28px; height: 28px; }
  .menu-page .menu-section__head--photo { grid-template-columns: 92px minmax(0,1fr); }
  .menu-section__category-photo { width: 92px; height: 76px; }
  .menu-page .menu-item.menu-item--ordering-card { grid-template-columns: 96px minmax(0,1fr); }
  .menu-page .menu-item--ordering-card .menu-item__thumb { width: 96px; min-height: 124px; }
  .menu-page .menu-item--ordering-card .menu-item__action { grid-column: 1 / -1; }
  .builder-product { grid-template-columns: 92px minmax(0,1fr); }
  .builder-product img { width: 92px; height: 80px; }
}

.catering-callout { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: rgba(255,255,255,.06); }
.catering-callout h2 { margin: 8px 0 12px; font-size: clamp(2rem,4vw,3rem); line-height: 1.05; }
.catering-callout p { max-width: 720px; margin: 0; color: #ddd4ca; }
.review-meta--simple { grid-template-columns: auto 1fr; }
@media (max-width: 760px) { .catering-callout { align-items: flex-start; flex-direction: column; padding: 26px; } }


/* Definitive Changes logo v8 — crisp, proportional and uncropped. */
.logo {
  width: clamp(190px, 20vw, 285px) !important;
  height: auto !important;
  aspect-ratio: 3 / 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  overflow: visible !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000 !important;
}
.logo .brand-logo-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.footer-brand .logo { width: min(310px, 100%) !important; }
.play-toolbar .logo { width: 230px !important; }
@media (max-width: 700px) {
  .logo { width: 180px !important; }
  .footer-brand .logo { width: 235px !important; }
  .play-toolbar .logo { width: 175px !important; }
}


/* Final polish v8: restore the original warm, lighter homepage header. */
body:not(.menu-page):not(.play-page) .site-header {
  background: rgba(255, 248, 239, .96);
  border-bottom: 1px solid rgba(234, 223, 210, .92);
  box-shadow: 0 8px 24px rgba(45, 30, 17, .06);
}
body:not(.menu-page):not(.play-page) .site-header .desktop-nav a { color: var(--ink); }
body:not(.menu-page):not(.play-page) .site-header .button--light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}
body:not(.menu-page):not(.play-page) .site-header .nav-toggle {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}
body:not(.menu-page):not(.play-page) .site-header .mobile-nav { background: #fff8ef; }
body:not(.menu-page):not(.play-page) .site-header .mobile-nav a {
  color: var(--ink);
  border-bottom-color: var(--line);
}
/* Keep the approved black logo panel crisp against the restored warm header. */
body:not(.menu-page):not(.play-page) .site-header .logo {
  background: #000 !important;
  box-shadow: 0 5px 15px rgba(20, 20, 20, .10);
}


/* Food gallery */
.gallery-preview-section { background: linear-gradient(180deg, #fff, #fff8ef); }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading--split > div { max-width: 720px; }
.gallery-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.gallery-preview-grid a { position: relative; min-height: 230px; overflow: hidden; border-radius: 22px; box-shadow: 0 14px 30px rgba(52,35,17,.12); }
.gallery-preview-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-preview-grid a:hover img { transform: scale(1.045); }
.gallery-preview-grid span { position: absolute; left: 12px; bottom: 12px; padding: 8px 11px; border-radius: 999px; color: white; background: rgba(0,0,0,.72); font-weight: 850; }
.gallery-page { background: #fffaf4; }
.gallery-hero { padding: clamp(42px,7vw,88px) 0; background: radial-gradient(circle at 80% 15%, rgba(207,155,45,.18), transparent 26%), linear-gradient(180deg,#fff8ef,#fff); }
.gallery-hero__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; }
.gallery-hero__copy h1 { margin: 10px 0 16px; font-size: clamp(3rem,7vw,5.8rem); line-height: .9; }
.gallery-hero__copy p { max-width: 660px; color: var(--muted); font-size: 1.05rem; }
.gallery-hero__collage { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr 1fr; gap: 12px; min-height: 470px; }
.gallery-hero__collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: 0 18px 38px rgba(45,30,17,.14); }
.gallery-hero__collage img:first-child { grid-row: 1 / 3; }
.gallery-main-section { padding-top: 40px; }
.gallery-filter-bar { position: sticky; top: 94px; z-index: 10; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,250,244,.94); backdrop-filter: blur(12px); }
.gallery-filter { min-height: 42px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: white; font-weight: 850; }
.gallery-filter.is-active { color: #17100a; border-color: var(--gold); background: #f0c25b; }
.food-gallery-grid--full { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.food-gallery-item { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 12px 28px rgba(52,35,17,.08); }
.food-gallery-item[hidden] { display: none; }
.food-gallery-open { position: relative; display: block; width: 100%; height: 310px; padding: 0; border: 0; overflow: hidden; background: #eee; cursor: zoom-in; }
.food-gallery-open img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.food-gallery-open:hover img { transform: scale(1.04); }
.food-gallery-zoom { position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: white; background: rgba(0,0,0,.72); font-size: 1.25rem; }
.food-gallery-item figcaption { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px 16px; }
.food-gallery-item figcaption strong { color: var(--ink); }
.food-gallery-item figcaption span { color: var(--muted); font-size: .82rem; font-weight: 750; }
.gallery-lightbox { width: min(1000px, calc(100% - 24px)); max-height: calc(100vh - 24px); padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; color: white; background: #090909; box-shadow: 0 28px 80px rgba(0,0,0,.55); }
.gallery-lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(6px); }
.gallery-lightbox img { display: block; width: 100%; max-height: calc(100vh - 100px); object-fit: contain; background: #090909; }
.gallery-lightbox p { margin: 0; padding: 14px 18px 18px; color: white; text-align: center; font-weight: 850; }
.gallery-lightbox__close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: white; background: rgba(0,0,0,.7); font-size: 1.35rem; }
@media (max-width: 980px) {
  .gallery-hero__grid { grid-template-columns: 1fr; }
  .gallery-hero__collage { min-height: 390px; }
  .food-gallery-grid--full { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gallery-preview-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .section-heading--split { align-items: flex-start; flex-direction: column; }
  .gallery-hero__collage { min-height: 320px; }
  .gallery-filter-bar { top: 76px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; }
  .gallery-filter { flex: 0 0 auto; }
  .food-gallery-grid--full { grid-template-columns: 1fr; }
  .food-gallery-open { height: 290px; }
  .gallery-preview-grid a { min-height: 190px; }
}

/* Mobile hero and header polish v10 */
@media (max-width: 700px) {
  body { padding-bottom: 72px; }

  .topbar { font-size: .78rem; }
  .topbar__inner {
    min-height: 34px;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  .status-dot--hero {
    max-width: 100%;
    padding: 5px 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-inner {
    height: 68px;
    gap: 7px;
  }
  body:not(.menu-page):not(.play-page) .site-header .logo,
  .logo {
    width: 156px !important;
  }
  .header-actions { gap: 6px; }
  .language-toggle {
    margin-left: auto;
    padding: 2px;
  }
  body:not(.menu-page):not(.play-page) .site-header .language-toggle {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
  }
  .language-toggle button {
    min-width: 31px;
    min-height: 31px;
    padding-inline: 5px;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .hero--fullbleed {
    min-height: 0;
    padding: 0 0 32px;
    overflow: visible;
    background: linear-gradient(180deg, #17110c 0%, #101010 100%);
  }
  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: #17110c;
  }
  .hero-bg picture,
  .hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-bg img {
    object-fit: cover;
    object-position: center;
  }
  .hero-overlay {
    inset: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    background: linear-gradient(180deg, rgba(0,0,0,.03) 48%, rgba(0,0,0,.62) 100%);
    pointer-events: none;
  }
  .hero-grid--single {
    min-height: 0;
    display: block;
    margin-top: -46px;
  }
  .hero-copy--light {
    max-width: none;
    padding: 23px 20px 24px;
    border: 1px solid rgba(240,194,91,.2);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(22,22,22,.98), rgba(39,27,16,.98));
    box-shadow: 0 20px 45px rgba(0,0,0,.32);
  }
  .hero-copy--light .eyebrow {
    font-size: .68rem;
    letter-spacing: .1em;
  }
  .hero-copy--light .eyebrow::before { width: 20px; }
  .brand-kicker {
    margin-top: 7px;
    font-size: .98rem;
  }
  .hero-copy--light h1,
  .hero h1 {
    margin: 9px 0 11px;
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: .96;
    letter-spacing: -.052em;
  }
  .hero-strap {
    margin-bottom: 8px !important;
    font-size: 1rem !important;
    line-height: 1.35;
  }
  .hero-copy--light > p:not(.hero-strap) {
    margin-bottom: 18px;
    font-size: .94rem;
    line-height: 1.52;
  }
  .hero-copy--light .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .hero-copy--light .hero-actions .button {
    min-width: 0;
    min-height: 47px;
    padding: 10px 12px;
    font-size: .9rem;
  }
  .hero-copy--light .hero-chips {
    gap: 7px;
    margin-top: 15px;
  }
  .hero-copy--light .hero-chip {
    padding: 6px 9px;
    font-size: .72rem;
  }
  .hero-copy--light .hero-chip:nth-child(n+3) { display: none; }

  .trust-item {
    padding: 18px 10px;
  }
  .trust-item strong { font-size: 1rem; }
  .trust-item span { font-size: .76rem; }

  .section { padding: 60px 0; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2 { font-size: clamp(2rem, 10vw, 2.65rem); }
  .section-heading p { font-size: .98rem; }
}

@media (max-width: 430px) {
  .topbar__inner > :nth-child(2) { display: none; }
}

@media (max-width: 360px) {
  body:not(.menu-page):not(.play-page) .site-header .logo,
  .logo { width: 136px !important; }
  .language-toggle button { min-width: 29px; padding-inline: 4px; }
  .nav-toggle { width: 40px; height: 40px; }
  .hero-copy--light .hero-actions { grid-template-columns: 1fr; }
}


/* Mobile-first PWA header, install and sharing controls — v11 */
.app-header-actions{display:flex;align-items:center;gap:7px}
.app-header-button{min-height:40px;display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:7px 10px;border:1px solid rgba(207,155,45,.28);border-radius:12px;color:var(--ink);background:#fff;font-size:.76rem;font-weight:950;line-height:1;white-space:nowrap;box-shadow:0 6px 16px rgba(32,24,16,.06)}
.app-header-button svg,.mobile-app-action svg{width:18px;height:18px;flex:0 0 auto;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.app-header-button--install{color:#9a4414;background:#fff1e5;border-color:rgba(239,104,23,.25)}
.app-header-button--share{color:#5a3313;background:#fff9ef;border-color:rgba(207,155,45,.35)}
.app-header-button.is-installed,.mobile-app-action.is-installed{color:#155c39;background:#eaf8ef;border-color:rgba(35,141,91,.28)}
.site-header--dark .app-header-button{color:#fff;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.17);box-shadow:none}
.site-header--dark .app-header-button--install{color:#ffd596;background:rgba(239,104,23,.13);border-color:rgba(239,104,23,.35)}
.site-header--dark .app-header-button--share{color:#f5cf72;background:rgba(207,155,45,.12);border-color:rgba(207,155,45,.35)}
.mobile-app-strip{display:none}
.mobile-app-action{min-width:0;min-height:46px;display:flex;align-items:center;justify-content:center;gap:7px;padding:8px 7px;border:1px solid rgba(36,36,36,.12);border-radius:14px;color:var(--ink);background:#fff;font-size:.73rem;font-weight:950;line-height:1.08;text-decoration:none;box-shadow:0 7px 18px rgba(45,30,17,.06)}
.mobile-app-action--game{color:#fff;background:linear-gradient(135deg,#cf9b2d,#ef6817);border-color:rgba(239,104,23,.28)}
.mobile-app-action--game svg{fill:currentColor;stroke:none}
.mobile-app-action--install{color:#963f11;background:#fff0e2;border-color:rgba(239,104,23,.25)}
.mobile-app-action--share{color:#5d3b16;background:#fff9ec;border-color:rgba(207,155,45,.35)}
.mobile-app-action:active,.app-header-button:active{transform:scale(.98)}
.mobile-app-action:focus-visible,.app-header-button:focus-visible{outline:3px solid rgba(239,104,23,.24);outline-offset:2px}
.mobile-action-bar__game{color:#89500e!important;background:rgba(207,155,45,.14)!important}

.app-modal[hidden],.app-toast[hidden]{display:none!important}
.app-modal{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:18px;background:rgba(10,10,10,.68);backdrop-filter:blur(8px)}
.app-modal-card{position:relative;width:min(100%,480px);padding:30px;border:1px solid rgba(207,155,45,.28);border-radius:28px;background:#fffaf4;box-shadow:0 28px 90px rgba(0,0,0,.32)}
.app-modal-close{position:absolute;top:14px;right:14px;width:42px;height:42px;display:grid;place-items:center;border:1px solid var(--line);border-radius:50%;color:var(--ink);background:#fff;font-size:1.55rem;line-height:1}
.app-modal-icon{width:74px;height:74px;margin-bottom:16px;border-radius:21px;object-fit:cover;background:#000;box-shadow:0 10px 24px rgba(0,0,0,.18)}
.app-modal-card h2{margin:8px 46px 10px 0;font-size:clamp(1.8rem,5vw,2.55rem);line-height:1.02;letter-spacing:-.04em}
.app-modal-message{margin:0;color:var(--muted);font-size:1rem;line-height:1.55}
.app-modal-actions{display:grid;gap:10px;margin-top:22px}
.app-modal-actions .button{width:100%}
.app-toast{position:fixed;left:50%;bottom:88px;z-index:220;max-width:min(calc(100% - 30px),430px);padding:12px 16px;border-radius:14px;color:#fff;background:#171717;box-shadow:0 16px 40px rgba(0,0,0,.24);font-weight:900;text-align:center;transform:translateX(-50%)}
body.app-modal-open{overflow:hidden}
.button--whatsapp{color:#fff;background:#128c4a}

.legal-header{position:sticky;top:0;z-index:50;border-bottom:1px solid rgba(234,223,210,.9);background:rgba(255,248,239,.96);backdrop-filter:blur(14px)}
.legal-header .header-inner{height:76px}
.legal-header .desktop-nav{margin-left:auto}

.play-toolbar .play-app-actions{display:flex;align-items:center;gap:7px}
.play-toolbar .app-header-button{color:#fff;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18);box-shadow:none}

@media(max-width:1180px){
  .app-header-button span{display:none}
  .app-header-button{width:40px;padding:7px}
}

@media(max-width:980px){
  html{scroll-padding-top:150px}
  .site-header .app-header-actions{display:none}
  .mobile-app-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;width:min(calc(100% - 24px),var(--max));margin:0 auto;padding:0 0 10px}
  .site-header--dark .mobile-app-strip{color:#fff}
  .site-header--dark .mobile-app-action--install{color:#ffd79e;background:rgba(239,104,23,.14);border-color:rgba(239,104,23,.34)}
  .site-header--dark .mobile-app-action--share{color:#f2cf75;background:rgba(207,155,45,.13);border-color:rgba(207,155,45,.34)}
  .site-header--dark .mobile-app-action--game{color:#16110a;background:linear-gradient(135deg,#f2d783,#ef9a36)}
  .menu-toolbar-wrap--dark{top:139px}
  .gallery-filter-bar{top:146px}
  .play-toolbar{flex-wrap:wrap;align-items:center}
  .play-toolbar .play-app-actions{order:3;width:100%;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
  .play-toolbar .app-header-button{width:auto;min-height:42px}
  .play-toolbar .app-header-button span{display:inline}
}

@media(max-width:700px){
  .header-inner{height:66px}
  body:not(.menu-page):not(.play-page) .site-header .logo,.logo{width:150px!important}
  .mobile-app-strip{gap:7px;padding-bottom:9px}
  .mobile-app-action{min-height:45px;padding:7px 5px;font-size:.69rem;gap:5px}
  .mobile-app-action svg{width:18px;height:18px}
  .menu-toolbar-wrap--dark{top:142px}
  .gallery-filter-bar{top:142px}
  .mobile-action-bar{height:72px;padding-bottom:env(safe-area-inset-bottom)}
  .mobile-action-bar a,.mobile-action-bar button{min-width:0;border-radius:12px;margin:5px 1px;font-size:.62rem;line-height:1.05}
  .mobile-action-bar .mobile-action-bar__primary{margin-inline:3px;box-shadow:0 7px 18px rgba(239,104,23,.22)}
  .app-modal{place-items:end center;padding:0}
  .app-modal-card{width:100%;max-height:88dvh;overflow:auto;padding:25px 18px calc(22px + env(safe-area-inset-bottom));border-radius:27px 27px 0 0}
  .app-modal-icon{width:66px;height:66px;border-radius:19px}
  .app-modal-card h2{font-size:2rem}
  .play-toolbar{padding:9px 10px}
  .play-toolbar__title{display:none}
  .play-toolbar__right{gap:6px}
  .play-toolbar__right>.button:not(.play-return-mobile){display:none}
  .play-toolbar .play-app-actions{grid-template-columns:1fr 1fr}
}

@media(max-width:390px){
  body:not(.menu-page):not(.play-page) .site-header .logo,.logo{width:136px!important}
  .mobile-app-action{font-size:.65rem;gap:4px;padding-inline:3px}
  .mobile-app-action svg{width:17px;height:17px}
  .language-toggle button{min-width:29px;padding-inline:4px}
}

/* Share handoff reliability and mobile interaction polish — v12 */
[data-share-app]{touch-action:manipulation;-webkit-tap-highlight-color:transparent}
[data-share-app].is-sharing{opacity:.72;cursor:progress}
[data-share-app].is-sharing svg{animation:sharePulse .8s ease-in-out infinite alternate}
@keyframes sharePulse{from{transform:scale(.9)}to{transform:scale(1.08)}}
.app-modal{overscroll-behavior:contain;touch-action:pan-y}
.app-modal-card{overscroll-behavior:contain;-webkit-overflow-scrolling:touch}
.app-modal-actions .button{min-height:50px;display:flex;align-items:center;justify-content:center;text-align:center;touch-action:manipulation}
.app-modal-actions .button--ghost{color:var(--ink);background:transparent;border:1px solid var(--line)}
.app-modal-close{z-index:2;touch-action:manipulation}
@media(max-width:700px){
  .app-modal-card{max-height:min(88dvh,760px)}
  .app-modal-actions{position:relative;z-index:1}
  .mobile-app-action--share{position:relative}
  .mobile-app-action--share::after{content:"";position:absolute;inset:-3px;border-radius:16px}
}
@media(prefers-reduced-motion:reduce){[data-share-app].is-sharing svg{animation:none}}

/* Contain decorative mobile artwork and prevent accidental page-wide sideways drag. */
html,body{max-width:100%;overflow-x:hidden;overflow-x:clip}
@media(max-width:700px){
  .hero--fullbleed{overflow:hidden}
  .mobile-app-action--share::after{display:none}
  .mobile-app-strip{overflow:visible}
}

/* Manager/customer integration alignment v13 */
.manager-operation-notice{position:relative;z-index:47;width:min(calc(100% - 28px),var(--max));margin:10px auto 0;padding:11px 15px;border:1px solid rgba(207,155,45,.32);border-radius:14px;color:#5f430d;background:#fff7dd;box-shadow:0 8px 24px rgba(45,30,17,.07);font-weight:900;text-align:center}
.manager-operation-notice[hidden]{display:none!important}
.manager-operation-notice--blocked{color:#842b18;border-color:rgba(174,58,30,.25);background:#fff0e9}
.menu-item--sold-out{opacity:.72}
.menu-item--sold-out .menu-item__thumb{filter:grayscale(.65)}
.availability-badge{display:inline-flex;width:max-content;max-width:100%;margin-top:8px;padding:5px 9px;border-radius:999px;color:#8d2e19;background:#fff0e9;font-size:.76rem;font-weight:950;line-height:1.15}
.add-button:disabled{cursor:not-allowed;opacity:.62;filter:grayscale(.25);transform:none!important}
.modifier-group>small{display:block;margin-top:8px;color:var(--muted);font-weight:800}

@media(max-width:980px){
  .manager-operation-notice{margin-top:8px;font-size:.82rem;line-height:1.3}
}


/* ============================================================
   Changes v17 — stable 264Eats modal + single-scroll menu polish
   ============================================================ */

/* Main ordering page returns to a clean one-column menu. */
.menu-page .ordering-shell--builder{
  grid-template-columns:minmax(0,1fr)!important;
  gap:14px!important;
}
.menu-page .menu-main--interactive{
  grid-column:1!important;
}
.builder-sidebar{
  grid-column:1!important;
  position:static!important;
  display:block!important;
  width:100%;
}
.desktop-order-summary--embedded,
.item-builder__empty{
  display:none!important;
}

/* Compact category navigation — not a second sticky slab in the middle. */
.menu-page .category-rail--centered{
  grid-column:1!important;
  position:static!important;
  display:flex!important;
  flex-wrap:nowrap!important;
  justify-content:flex-start!important;
  gap:7px!important;
  padding:8px 2px 10px!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  scrollbar-width:thin;
  -webkit-overflow-scrolling:touch;
}
.menu-page .category-rail--centered .rail-title{
  display:none!important;
}
.menu-page .category-rail--centered > a{
  flex:0 0 auto!important;
  min-height:38px!important;
  padding:6px 10px!important;
  border-radius:999px!important;
  white-space:nowrap;
}
.menu-page .category-rail--centered > a img{
  width:24px!important;
  height:24px!important;
}

/* Item options are no longer a permanent sidebar with its own scrollbar.
   The body is locked while the modal is open, so there is only one
   active vertical scroll area. */
body.builder-modal-open{
  overflow:hidden!important;
}
.item-builder{
  display:none!important;
}
.item-builder.is-active{
  position:fixed!important;
  inset:0!important;
  z-index:1200!important;
  display:grid!important;
  place-items:center!important;
  padding:20px!important;
  overflow-y:auto!important;
  border:0!important;
  border-radius:0!important;
  background:rgba(0,0,0,.72)!important;
  backdrop-filter:blur(8px);
}
.item-builder.is-active .item-builder__form{
  display:block!important;
  width:min(560px,100%)!important;
  max-height:calc(100dvh - 40px)!important;
  overflow-y:auto!important;
  overscroll-behavior:contain;
  border:1px solid rgba(207,155,45,.36)!important;
  border-radius:22px!important;
  background:#111!important;
  box-shadow:0 28px 80px rgba(0,0,0,.52)!important;
}
.item-builder .builder-options{
  max-height:none!important;
  overflow:visible!important;
  padding:14px 16px!important;
}
.builder-product{
  grid-template-columns:88px minmax(0,1fr)!important;
  gap:12px!important;
  padding:14px 48px 14px 14px!important;
}
.builder-product img{
  width:88px!important;
  height:74px!important;
}
.builder-product h2{
  font-size:1.12rem!important;
}
.builder-options .modifier-group{
  margin-bottom:12px!important;
}
.builder-options .modifier-options{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.builder-options .modifier-option{
  min-height:44px;
  margin:0!important;
  padding:9px 10px!important;
}
.builder-quantity,
.builder-total{
  padding:10px 16px!important;
}
.quantity-control button{
  width:42px!important;
  height:42px!important;
  touch-action:manipulation;
}
.builder-add{
  min-height:48px!important;
}
.builder-no-options{
  display:grid;
  gap:5px;
  padding:14px;
  border:1px solid rgba(207,155,45,.18);
  border-radius:14px;
  color:#efe6dc;
  background:#171717;
}
.builder-no-options strong{color:#f0c25b}
.builder-no-options span{color:#aea398;font-size:.86rem}
.deeplink-arrival-badge{
  display:inline-flex;
  margin-top:6px;
  padding:4px 8px;
  border:1px solid rgba(240,194,91,.34);
  border-radius:999px;
  color:#f6d77f;
  background:rgba(207,155,45,.1);
  font-size:.68rem;
  font-weight:900;
}
.menu-item--ordering-card.from-264eats{
  outline:3px solid rgba(207,155,45,.9);
  outline-offset:2px;
}

/* Keep menu cards readable without the permanent sidebar stealing width. */
@media (min-width:900px){
  .menu-page .menu-items--cards{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media (max-width:700px){
  .menu-page .category-rail--centered > a img{
    display:none!important;
  }
  .menu-page .category-rail--centered > a{
    min-height:34px!important;
    padding:6px 9px!important;
    font-size:.8rem!important;
  }
  .item-builder.is-active{
    place-items:end center!important;
    padding:0!important;
  }
  .item-builder.is-active .item-builder__form{
    width:100%!important;
    max-height:88dvh!important;
    border-radius:24px 24px 0 0!important;
    border-bottom:0!important;
  }
  .builder-options .modifier-options{
    grid-template-columns:1fr;
  }
  .builder-product{
    grid-template-columns:72px minmax(0,1fr)!important;
  }
  .builder-product img{
    width:72px!important;
    height:64px!important;
  }
}


/* Changes v19.2 — ShoCash-first checkout + optional WhatsApp */
.checkout-delivery{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border:1px solid rgba(207,155,45,.28);
  border-radius:14px;
  background:rgba(207,155,45,.08);
}
.checkout-delivery strong{color:#f3ce72;font-size:.92rem}
.checkout-delivery span{color:#c9beb3;font-size:.78rem;line-height:1.45}
.checkout-whatsapp-option{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:10px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:14px;
  background:#171717;
  cursor:pointer;
}
.checkout-whatsapp-option input{
  flex:0 0 auto;
  width:20px;
  height:20px;
  margin:2px 0 0;
  accent-color:#25d366;
}
.checkout-whatsapp-option span{display:grid;gap:3px;min-width:0}
.checkout-whatsapp-option strong{color:#f8f3ed;font-size:.88rem}
.checkout-whatsapp-option small{color:#a99f95;font-size:.73rem;line-height:1.4}
.order-success-dialog{
  padding:0;
  border:0;
  border-radius:22px;
  width:min(92vw,480px);
  background:transparent;
  color:#fff;
}
.order-success-dialog::backdrop{
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(7px);
}
.order-success-card{
  display:grid;
  gap:10px;
  padding:26px;
  border:1px solid rgba(207,155,45,.36);
  border-radius:22px;
  background:#111;
  box-shadow:0 28px 80px rgba(0,0,0,.5);
  text-align:center;
}
.order-success-icon{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  margin:0 auto 2px;
  border-radius:999px;
  background:rgba(37,211,102,.14);
  color:#4fe181;
  font-size:1.65rem;
  font-weight:950;
}
.order-success-card .service-label{justify-self:center}
.order-success-card h2{margin:0;font-size:1.45rem}
.order-success-reference{color:#f3ce72;font-size:1rem;word-break:break-word}
.order-success-card p{margin:0;color:#bdb3aa;line-height:1.5}
.order-success-actions{
  display:grid;
  grid-template-columns:1fr 1.35fr;
  gap:9px;
  margin-top:8px;
}
.order-success-actions .button{min-height:46px;justify-content:center}
@media(max-width:520px){
  .order-success-dialog{width:calc(100vw - 20px)}
  .order-success-card{padding:22px 16px}
  .order-success-actions{grid-template-columns:1fr}
}

/* Changes Bar management-inspired customer interface v20 */
.changes-home-v20 { background:#0a0a0a; color:#f7f2ea; }
.changes-home-v20 .topbar { background:#050505; border-color:rgba(255,255,255,.08); }
.changes-home-v20 .changes-header-v20 { position:sticky; top:0; z-index:80; background:rgba(8,8,8,.96); border-bottom:1px solid rgba(207,155,45,.2); backdrop-filter:blur(16px); }
.changes-header-v20 .desktop-nav a { color:#f7f2ea; }
.changes-header-v20 .desktop-nav a:hover { color:#f1bd48; }
.changes-header-v20 .brand-logo-image { filter:none; }

.changes-hero-2026 { background:#050505; display:flex; align-items:center; justify-content:center; min-height:min(78vh,920px); overflow:hidden; }
.changes-hero-2026 img { display:block; width:100%; height:min(78vh,920px); object-fit:contain; object-position:center; background:#050505; }
.hero-action-ribbon { background:linear-gradient(180deg,#111,#080808); border-top:1px solid rgba(207,155,45,.22); border-bottom:1px solid rgba(207,155,45,.18); }
.hero-action-ribbon__inner { min-height:180px; display:flex; gap:36px; align-items:center; justify-content:space-between; padding-top:30px; padding-bottom:30px; }
.hero-action-ribbon h1 { max-width:820px; margin:8px 0 0; color:#fff; font-size:clamp(2rem,4vw,4.3rem); line-height:.98; letter-spacing:-.04em; }
.hero-action-ribbon .hero-actions { justify-content:flex-end; min-width:min(100%,420px); }

.creations-section { background:#111; padding:clamp(62px,8vw,112px) 0; }
.section-heading--center { max-width:860px; margin:0 auto 38px; text-align:center; }
.section-heading--on-dark h2 { color:#fff; font-size:clamp(2.6rem,5.5vw,5rem); line-height:.96; letter-spacing:-.045em; }
.section-heading--on-dark p { color:#bdb4a8; }
.creations-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.creations-grid a { position:relative; display:block; aspect-ratio:1/1; overflow:hidden; border-radius:24px; background:#191919; border:1px solid rgba(207,155,45,.16); box-shadow:0 22px 40px rgba(0,0,0,.24); }
.creations-grid img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease,filter .35s ease; }
.creations-grid a::after { content:""; position:absolute; inset:38% 0 0; background:linear-gradient(180deg,transparent,rgba(0,0,0,.9)); pointer-events:none; }
.creations-grid a>span { position:absolute; z-index:2; left:18px; right:18px; bottom:16px; display:flex; flex-direction:column; gap:4px; color:#fff; }
.creations-grid strong { font-size:1.05rem; }
.creations-grid small { color:#f4bd3f; font-weight:850; }
.creations-grid a:hover img { transform:scale(1.045); filter:saturate(1.06); }
.creations-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-top:30px; }

.menu-feature-v20 { background:#fbf7f0; color:#151515; }
.menu-feature-v20 .section-heading h2 { color:#171717; }
.menu-feature-grid-v20 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.menu-feature-grid-v20 a { position:relative; min-height:360px; overflow:hidden; border-radius:24px; background:#222; box-shadow:0 16px 32px rgba(36,24,11,.14); }
.menu-feature-grid-v20 img { width:100%; height:100%; object-fit:cover; }
.menu-feature-grid-v20 a::after { content:""; position:absolute; inset:45% 0 0; background:linear-gradient(180deg,transparent,rgba(0,0,0,.9)); }
.menu-feature-grid-v20 span { position:absolute; z-index:2; left:18px; right:18px; bottom:18px; color:#fff; display:flex; flex-direction:column; gap:5px; }
.menu-feature-grid-v20 strong { font-size:1.4rem; }
.menu-feature-grid-v20 small { color:#f2c75d; font-weight:800; }

.reviews-v20 { padding:clamp(64px,8vw,112px) 0; background:#0b0b0b; }
.reviews-carousel-v20 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.reviews-carousel-v20 article { min-height:260px; padding:30px 24px; border-radius:22px; background:#151515; border:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; justify-content:center; text-align:center; }
.reviews-carousel-v20 p { margin:14px 0 18px; color:#f3eee7; font-size:1.03rem; line-height:1.7; }
.reviews-carousel-v20 span { color:#a99f95; font-size:.88rem; font-weight:800; }
.review-stars { color:#e74a3a; letter-spacing:.18em; }

.game-promo-section--compact { background:#111; padding:54px 0; }
.game-promo-section--compact .game-promo-card { margin:0; }

.visit-v20 { background:#0c0c0c; color:#eee6dc; }
.map-wrap--edge { width:100%; max-width:none; margin:0; border-radius:0; }
.map-wrap--edge iframe { width:100%; height:360px; border:0; display:block; filter:saturate(.85) contrast(1.05); }
.visit-grid-v20 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:52px; padding-top:52px; padding-bottom:58px; }
.visit-grid-v20 h3 { margin:10px 0 14px; color:#fff; font-size:1.65rem; }
.visit-grid-v20 p { margin:7px 0; color:#c8bfb4; }
.visit-grid-v20 a { color:#fff; display:block; margin:8px 0; font-weight:750; text-decoration:underline; text-underline-offset:4px; }
.visit-social-v20 { display:flex; flex-wrap:wrap; gap:12px; }
.visit-social-v20 a { text-decoration:none; padding:8px 10px; border:1px solid rgba(255,255,255,.14); border-radius:999px; }
.contact-heading-v20 { display:block; margin-top:24px; }
.site-footer--v20 { background:#050505; border-top:1px solid rgba(255,255,255,.08); }

/* Home mobile: show the complete management-approved hero image rather than cropping it. */
@media (max-width:980px) {
  .hero-action-ribbon__inner { align-items:flex-start; flex-direction:column; }
  .hero-action-ribbon .hero-actions { justify-content:flex-start; min-width:0; }
  .creations-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .menu-feature-grid-v20 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .reviews-carousel-v20 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .visit-grid-v20 { grid-template-columns:1fr 1fr; }
}
@media (max-width:700px) {
  .changes-hero-2026 { min-height:auto; padding:0; }
  .changes-hero-2026 img { width:100%; height:auto; max-height:none; object-fit:contain; }
  .hero-action-ribbon__inner { min-height:0; padding-top:24px; padding-bottom:28px; gap:20px; }
  .hero-action-ribbon h1 { font-size:clamp(2.1rem,11vw,3.4rem); }
  .hero-action-ribbon .hero-actions { width:100%; display:grid; grid-template-columns:1fr; }
  .creations-section { padding:56px 0; }
  .creations-grid { gap:10px; }
  .creations-grid a { border-radius:17px; }
  .creations-grid a>span { left:12px; right:12px; bottom:11px; }
  .creations-grid strong { font-size:.9rem; }
  .creations-grid small { font-size:.73rem; }
  .menu-feature-grid-v20 { grid-template-columns:1fr 1fr; gap:10px; }
  .menu-feature-grid-v20 a { min-height:240px; border-radius:18px; }
  .menu-feature-grid-v20 strong { font-size:1.05rem; }
  .menu-feature-grid-v20 small { font-size:.74rem; }
  .reviews-carousel-v20 { display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:12px; padding-bottom:12px; }
  .reviews-carousel-v20 article { flex:0 0 88%; scroll-snap-align:center; min-height:240px; }
  .visit-grid-v20 { grid-template-columns:1fr; gap:28px; padding-top:36px; padding-bottom:44px; }
  .map-wrap--edge iframe { height:300px; }
}

/* Gallery page dark polish to match management reference. */
.gallery-page { background:#0b0b0b; color:#f5eee7; }
.gallery-page .gallery-hero { background:radial-gradient(circle at 80% 15%,rgba(207,155,45,.16),transparent 28%),linear-gradient(180deg,#111,#080808); }
.gallery-page .gallery-hero__copy h1 { color:#fff; }
.gallery-page .gallery-hero__copy p { color:#c5bbb0; }
.gallery-page .gallery-main-section { background:#0b0b0b; }
.gallery-page .gallery-filter { background:#181818; color:#ddd4ca; border-color:rgba(255,255,255,.1); }
.gallery-page .gallery-filter.is-active { background:#c99a32; color:#090909; }
.gallery-page .food-gallery-item { background:#141414; border-color:rgba(255,255,255,.08); }
.gallery-page .food-gallery-item figcaption { color:#f5eee7; }
.gallery-page .food-gallery-item figcaption span { color:#a99f95; }

/* Current-menu breakfast timing from the new management menu. */
.menu-page .ordering-hero__copy::after { content:'Breakfast Mon–Fri · 8:00–10:30 AM'; display:inline-block; margin-top:15px; padding:7px 11px; border:1px solid rgba(207,155,45,.28); border-radius:999px; color:#f3cf76; font-size:.78rem; font-weight:850; }


/* ============================================================
   Changes v20.2 — customer-facing polish and contrast audit
   ============================================================ */
:root{
  --ink-2:#1a1a1a;
  --radius:24px;
}

/* Keep app actions explicit: never hide the words Install / Share. */
@media(max-width:1180px) and (min-width:981px){
  .app-header-button{width:auto!important;min-width:106px!important;padding:7px 10px!important}
  .app-header-button span{display:inline!important;color:inherit!important;opacity:1!important;visibility:visible!important}
}
.app-header-button span,
.mobile-app-action span{
  color:inherit!important;
  opacity:1!important;
  visibility:visible!important;
  text-shadow:none!important;
}
.mobile-app-strip .mobile-app-action{font-weight:950!important}

/* Friday special had inherited white text after its background became light. */
.special-section--purple{
  color:#1b1713!important;
  background:linear-gradient(180deg,#fff7ff,#fffaf5)!important;
}
.special-section--purple h2{color:#171311!important}
.special-section--purple p{color:#5e554d!important}
.special-section--purple .eyebrow{color:#713387!important}
.special-section--purple .special-proteins span{color:#231b18!important;background:#fff!important}
.special-section--purple .button--light{color:#171311!important;background:#fff!important}
.special-section--purple .special-note{color:#21170e!important}

/* Lower-page dark sections: lock text to high-contrast values. */
.changes-home-v20 .reviews-v20 h2,
.changes-home-v20 .catering-section h2,
.changes-home-v20 .game-promo-section h2,
.changes-home-v20 .visit-v20 h2,
.changes-home-v20 .visit-v20 h3,
.changes-home-v20 .site-footer h2,
.changes-home-v20 .site-footer h3,
.changes-home-v20 .site-footer .footer-heading{color:#fff!important}
.changes-home-v20 .reviews-v20 .section-heading p{color:#cfc5ba!important}
.changes-home-v20 .catering-section p{color:#e4dcd2!important}
.changes-home-v20 .game-promo-section p{color:#e2d8cc!important}
.changes-home-v20 .visit-v20 p{color:#d3c9be!important}
.changes-home-v20 .visit-v20 a{color:#fff!important}
.changes-home-v20 .site-footer,
.changes-home-v20 .site-footer p,
.changes-home-v20 .site-footer span,
.changes-home-v20 .site-footer a{color:#ddd4ca}
.changes-home-v20 .site-footer .footer-heading,
.changes-home-v20 .site-footer .footer-bottom a{color:#fff!important}

/* Gallery captions were inheriting a dark strong-label on dark cards. */
.gallery-page .food-gallery-item figcaption strong{color:#f8f2ea!important}
.gallery-page .food-gallery-item figcaption span{color:#bdb3a8!important}
.gallery-page .gallery-filter{color:#e9e0d6!important}
.gallery-page .gallery-filter.is-active{color:#111!important}

/* Menu + checkout small copy: improve legibility without changing layout. */
.menu-page .menu-item p{color:#c1b7ad!important}
.menu-page .menu-item__muted{color:#aaa198!important}
.menu-page .price-label{color:#b7ada3!important}
.menu-page .builder-note{color:#bcb2a8!important}
.menu-page .builder-options .modifier-group>p{color:#b5aba1!important}
.menu-page .desktop-cart-note{color:#aaa096!important}
.checkout-delivery span{color:#e0d6cb!important}
.checkout-whatsapp-option small{color:#c3b9ae!important}
.order-success-card p{color:#d0c6bc!important}

/* Old location component fallback: prevent white text on an undefined background. */
.hours-panel{background:#1a1a1a!important;color:#fff!important}
.hours-panel .hours-row span{color:#ddd3c8!important}

/* Accessible focus and link visibility in the footer/lower sections. */
.site-footer a:focus-visible,
.visit-v20 a:focus-visible,
.mobile-app-action:focus-visible,
.app-header-button:focus-visible{outline:3px solid #f0c25b!important;outline-offset:3px!important}

/* Keep legal/offline text readable at the bottom of the page. */
.legal-page{color:#211c18;background:#fbf6ef}
.legal-page p{color:#5e554d}
.legal-page a:not(.button){color:#633e12;text-decoration:underline;text-underline-offset:3px}


/* ============================================================
   Changes v20.3 — app-action legibility + Island Mogul map tile
   ============================================================ */
/* Install / Share labels must always be visibly black, regardless of header theme/state. */
.app-header-button--install,
.app-header-button--share,
.mobile-app-action--install,
.mobile-app-action--share,
.site-header--dark .app-header-button--install,
.site-header--dark .app-header-button--share,
.site-header--dark .mobile-app-action--install,
.site-header--dark .mobile-app-action--share,
.app-header-button.is-installed,
.mobile-app-action.is-installed{
  color:#111!important;
  background:#fff!important;
  border-color:rgba(17,17,17,.20)!important;
}
.app-header-button--install span,
.app-header-button--share span,
.mobile-app-action--install span,
.mobile-app-action--share span,
[data-install-app] span,
[data-share-app] span{
  color:#111!important;
  -webkit-text-fill-color:#111!important;
  opacity:1!important;
  visibility:visible!important;
  display:inline!important;
  text-shadow:none!important;
}
.app-header-button--install svg,
.app-header-button--share svg,
.mobile-app-action--install svg,
.mobile-app-action--share svg{
  color:#111!important;
  stroke:#111!important;
}

/* Replace the old stretched game artwork/emoji with the approved Island Mogul map. */
.game-promo-card__visual{
  width:min(100%,360px)!important;
  aspect-ratio:1 / 1!important;
  min-height:0!important;
  justify-self:end!important;
  overflow:hidden!important;
  background:#083d59!important;
  border:1px solid rgba(240,194,91,.36)!important;
  box-shadow:0 18px 42px rgba(0,0,0,.28)!important;
}
.game-promo-card__map{
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center!important;
}
.game-promo-card__island{display:none!important}
.game-promo-card__badge{
  right:12px!important;
  bottom:12px!important;
  max-width:calc(100% - 24px)!important;
  color:#111!important;
  background:rgba(255,255,255,.94)!important;
  border:1px solid rgba(17,17,17,.14)!important;
  box-shadow:0 8px 20px rgba(0,0,0,.18)!important;
}
@media(max-width:760px){
  .game-promo-card__visual{
    width:min(100%,420px)!important;
    justify-self:center!important;
  }
}


/* ============================================================
   Changes v20.4 — compact Island Mogul strip
   ============================================================ */
/* Replace the prior two-part game card with one short horizontal strip. */
.island-mogul-strip{
  display:grid;
  grid-template-columns:112px minmax(0,1fr) auto;
  gap:20px;
  align-items:center;
  padding:16px 18px;
  border-radius:22px;
  color:#fff;
  background:linear-gradient(135deg,#101010,#2a2116);
  border:1px solid rgba(240,194,91,.28);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  overflow:hidden;
}
.island-mogul-strip__image{
  display:block;
  width:112px;
  height:82px;
  object-fit:cover;
  object-position:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
}
.island-mogul-strip__copy{min-width:0}
.island-mogul-strip__copy .eyebrow{margin-bottom:4px}
.island-mogul-strip__copy h2{
  margin:2px 0 5px!important;
  font-size:clamp(1.35rem,2.5vw,2rem)!important;
  line-height:1.08!important;
  white-space:normal;
}
.island-mogul-strip__copy p{
  margin:0!important;
  max-width:none!important;
  color:#ddd4c8!important;
  font-size:.96rem;
  line-height:1.4;
}
.island-mogul-strip__button{
  margin:0!important;
  white-space:nowrap;
  align-self:center;
}
.game-promo-section--compact,
.menu-game-promo{
  padding:28px 0!important;
}
/* The old separate visual tile is intentionally not used in v20.4. */
.game-promo-card__visual{display:none!important}

@media(max-width:760px){
  .island-mogul-strip{
    grid-template-columns:86px minmax(0,1fr);
    gap:14px;
    padding:14px;
  }
  .island-mogul-strip__image{width:86px;height:72px;border-radius:12px}
  .island-mogul-strip__copy h2{font-size:1.25rem!important}
  .island-mogul-strip__copy p{font-size:.88rem}
  .island-mogul-strip__button{
    grid-column:1 / -1;
    width:100%;
    min-height:44px;
  }
}


/* ============================================================
   Changes v20.5 — header-only Island Mogul access
   ============================================================ */
@media(max-width:980px){
  .mobile-app-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}


/* v20.6 — compact restaurant header + single footer app control */
.header-inner{height:64px;gap:16px}
.site-header .logo{width:148px!important;height:46px!important}
.desktop-nav{gap:20px}
.desktop-nav a{font-size:.89rem}
.header-actions{gap:7px}
.header-actions .button--small{min-height:38px;padding:7px 11px;font-size:.82rem}
.language-toggle button{min-height:30px;min-width:30px}
.nav-toggle{width:40px;height:40px;border-radius:11px}
.app-header-actions,.mobile-app-strip,.play-app-actions{display:none!important}
.footer-app-action{margin-top:16px}
.footer-app-button{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:44px;padding:10px 15px;border:1px solid rgba(255,255,255,.26);border-radius:13px;color:#111!important;background:#fff;font-weight:950;line-height:1.1;box-shadow:0 9px 24px rgba(0,0,0,.14)}
.footer-app-button svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.footer-app-button:hover{transform:translateY(-1px);background:#fff8ef}
.footer-app-button:focus-visible{outline:3px solid rgba(207,155,45,.45);outline-offset:3px}
.menu-toolbar-wrap--dark{top:64px}
.gallery-filter-bar{top:72px}
.legal-header .header-inner{height:64px}
@media(max-width:980px){
  html{scroll-padding-top:104px}
  .header-inner{height:60px;gap:8px}
  .site-header .logo,body:not(.menu-page):not(.play-page) .site-header .logo,.logo{width:132px!important;height:42px!important}
  .menu-toolbar-wrap--dark{top:60px}
  .gallery-filter-bar{top:68px}
}
@media(max-width:700px){
  .topbar__inner{min-height:30px}
  .header-inner{height:56px}
  .site-header .logo,body:not(.menu-page):not(.play-page) .site-header .logo,.logo{width:122px!important;height:38px!important}
  .language-toggle button{min-width:29px;min-height:29px;padding-inline:4px}
  .nav-toggle{width:38px;height:38px}
  .menu-toolbar-wrap--dark{top:56px}
  .gallery-filter-bar{top:64px}
  .footer-app-button{width:100%;max-width:250px}
}


/* ============================================================
   Changes v20.7 — mobile footer App control + live order count
   ============================================================ */
/* App controls now live in the fixed mobile footer, not the content footer. */
.footer-app-action{display:none!important}
.mobile-action-bar .mobile-action-bar__primary{position:relative}
.mobile-action-bar .cart-count{
  position:absolute!important;
  top:5px!important;
  left:50%!important;
  margin:0 0 0 9px!important;
  min-width:19px!important;
  width:auto!important;
  height:19px!important;
  padding:0 5px!important;
  display:inline-grid;
  place-items:center;
  border:2px solid #111;
  border-radius:999px;
  color:#111!important;
  background:#fff!important;
  font-size:.68rem!important;
  font-weight:950!important;
  line-height:1!important;
  z-index:2;
}
.mobile-action-bar .cart-count[hidden]{display:none!important}
.mobile-action-bar__app{min-width:0!important;position:relative}
.mobile-action-bar__app-glyph{
  width:22px;
  height:22px;
  display:grid!important;
  place-items:center;
  font-size:inherit!important;
  line-height:1!important;
}
.mobile-action-bar__app-glyph svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
@media(max-width:700px){
  .mobile-action-bar{
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
    height:70px;
  }
  .mobile-action-bar a,.mobile-action-bar button{
    min-width:0!important;
    padding:5px 2px!important;
    margin:4px 1px!important;
    gap:3px!important;
    font-size:.60rem!important;
    line-height:1.02!important;
    overflow:visible;
  }
  .mobile-action-bar span:first-child{font-size:1.17rem}
  .mobile-action-bar__app-glyph svg{width:20px;height:20px}
  .mobile-action-bar .cart-count{top:4px!important;margin-left:8px!important}
}
@media(max-width:380px){
  .mobile-action-bar a,.mobile-action-bar button{font-size:.56rem!important;padding-inline:1px!important}
  .mobile-action-bar__app-glyph svg{width:19px;height:19px}
}


/* v20.8 — recurring Changes specials + sandwich ordering polish */
.manager-blast[hidden], .today-special-band[hidden], .menu-today-special[hidden] { display:none !important; }
.manager-blast { background:linear-gradient(90deg,#5b1f0e,#a63b15); color:#fff; border-bottom:1px solid rgba(255,255,255,.14); }
.manager-blast__inner { min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:20px; padding-top:12px; padding-bottom:12px; }
.manager-blast__inner>div { display:flex; align-items:baseline; flex-wrap:wrap; gap:8px 14px; }
.manager-blast__eyebrow { font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; font-weight:950; color:#ffd7ad; }
.manager-blast strong { font-size:1.05rem; }
.manager-blast [data-manager-blast-message] { color:#ffe9d4; }
.today-special-band { background:radial-gradient(circle at 78% 25%,rgba(207,155,45,.16),transparent 34%),linear-gradient(135deg,#0b0b0b,#21150b); color:#fff; border-bottom:1px solid rgba(207,155,45,.26); }
.today-special-band.is-today { box-shadow:inset 0 3px 0 #cf9b2d; }
.today-special-band__grid { display:grid; grid-template-columns:minmax(190px,.55fr) minmax(0,1.45fr); gap:30px; align-items:center; padding-top:26px; padding-bottom:26px; }
.today-special-band__poster { display:block; max-width:310px; justify-self:center; overflow:hidden; border-radius:22px; border:1px solid rgba(255,255,255,.16); box-shadow:0 18px 50px rgba(0,0,0,.32); }
.today-special-band__poster img { display:block; width:100%; aspect-ratio:4/5; object-fit:cover; }
.today-special-band__copy h2 { margin:8px 0 8px; color:#fff; font-size:clamp(2rem,4.5vw,4.3rem); line-height:.95; letter-spacing:-.045em; }
.today-special-band__copy p { max-width:760px; margin:0 0 14px; color:#e9dfd2; font-size:1.03rem; }
.today-special-band__badges { display:flex; gap:10px; align-items:center; margin-bottom:8px; color:#f1d9b2; font-weight:850; }
.today-special-band__meta { display:flex; gap:18px; align-items:center; margin:12px 0 18px; }
.today-special-band__meta strong { color:#ffd46d; font-size:clamp(1.5rem,3vw,2.4rem); }
.today-special-band__meta span { color:#fff; font-weight:850; }
.weekly-specials-section { background:linear-gradient(180deg,#fffaf2,#fff); }
.weekly-specials-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.weekly-special-card { overflow:hidden; border:1px solid #eadfce; border-radius:24px; background:#fff; box-shadow:0 14px 32px rgba(45,30,17,.08); }
.weekly-special-card.is-today { border-color:#cf9b2d; box-shadow:0 18px 44px rgba(155,100,18,.18); }
.weekly-special-card__image { position:relative; display:block; background:#16110c; }
.weekly-special-card__image img { display:block; width:100%; aspect-ratio:4/5; object-fit:cover; }
.weekly-special-card__today { position:absolute; top:12px; left:12px; padding:8px 11px; border-radius:999px; background:#cf9b2d; color:#111; font-size:.72rem; font-weight:950; text-transform:uppercase; letter-spacing:.06em; }
.weekly-special-card__body { padding:18px; }
.weekly-special-card__day { color:#9a5c1a; font-size:.76rem; font-weight:950; letter-spacing:.11em; text-transform:uppercase; }
.weekly-special-card h3 { margin:6px 0 10px; font-size:1.45rem; line-height:1.03; }
.weekly-special-card__meta { display:flex; flex-wrap:wrap; gap:8px 12px; align-items:baseline; margin-bottom:10px; }
.weekly-special-card__meta strong { color:#9d350d; font-size:1.3rem; }
.weekly-special-card__meta span { color:#6e6259; font-size:.86rem; font-weight:800; }
.weekly-special-card p { min-height:5.2em; color:#665d55; font-size:.91rem; }
.specials-page-hero { padding:clamp(54px,7vw,88px) 0; background:radial-gradient(circle at 80% 20%,rgba(207,155,45,.18),transparent 30%),linear-gradient(180deg,#fff7ea,#fff); }
.specials-page-hero__grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:44px; align-items:center; }
.specials-page-hero h1 { margin:10px 0 14px; font-size:clamp(3rem,7vw,6rem); line-height:.9; letter-spacing:-.055em; }
.specials-page-hero p { max-width:620px; color:#6d6258; font-size:1.08rem; }
.specials-page-hero__stack { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; align-items:end; }
.specials-page-hero__stack img { width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:20px; box-shadow:0 18px 38px rgba(45,30,17,.14); }
.specials-page-hero__stack img:nth-child(2){ transform:translateY(-16px); }
.today-special-band--page { border-top:1px solid rgba(207,155,45,.2); }
.weekly-specials-grid--page { gap:24px; }
.menu-today-special { border-top:1px solid #eee0ca; border-bottom:1px solid #eee0ca; background:#fff8ec; }
.menu-today-special__inner { display:grid; grid-template-columns:74px minmax(0,1fr) auto; gap:16px; align-items:center; padding-top:13px; padding-bottom:13px; }
.menu-today-special__inner>img { width:74px; height:74px; object-fit:cover; border-radius:14px; }
.menu-today-special h2 { margin:2px 0 4px; font-size:1.35rem; }
.menu-today-special p { margin:0; color:#665d55; }
.menu-today-special__actions { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.item-builder__empty h2 { max-width:420px; }

@media (max-width:1050px){
  .weekly-specials-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .specials-page-hero__grid { grid-template-columns:1fr; }
  .specials-page-hero__stack { max-width:760px; }
}
@media (max-width:760px){
  .manager-blast__inner { align-items:flex-start; flex-direction:column; }
  .today-special-band__grid { grid-template-columns:110px minmax(0,1fr); gap:16px; padding-top:18px; padding-bottom:18px; }
  .today-special-band__poster { border-radius:15px; align-self:start; }
  .today-special-band__copy h2 { font-size:clamp(1.65rem,8vw,2.45rem); }
  .today-special-band__copy p { font-size:.9rem; }
  .today-special-band__badges { flex-wrap:wrap; font-size:.8rem; }
  .today-special-band__meta { gap:8px 14px; flex-wrap:wrap; }
  .today-special-band__copy .hero-actions { grid-column:1/-1; }
  .weekly-specials-grid { grid-template-columns:1fr; }
  .weekly-special-card { display:grid; grid-template-columns:42% 58%; border-radius:18px; }
  .weekly-special-card__image img { height:100%; aspect-ratio:auto; min-height:260px; }
  .weekly-special-card__body { padding:15px; }
  .weekly-special-card p { min-height:0; font-size:.86rem; }
  .specials-page-hero__stack { grid-template-columns:repeat(3,1fr); gap:7px; }
  .specials-page-hero__stack img { border-radius:13px; }
  .menu-today-special__inner { grid-template-columns:58px minmax(0,1fr); }
  .menu-today-special__inner>img { width:58px; height:58px; }
  .menu-today-special__actions { grid-column:1/-1; justify-content:stretch; }
  .menu-today-special__actions .button { flex:1 1 45%; }
}
@media (max-width:480px){
  .today-special-band__grid { grid-template-columns:92px minmax(0,1fr); }
  .today-special-band__copy p { display:none; }
  .today-special-band__copy .hero-actions { display:flex; flex-direction:column; }
  .weekly-special-card { grid-template-columns:39% 61%; }
  .weekly-special-card__image img { min-height:280px; }
  .weekly-special-card h3 { font-size:1.18rem; }
  .weekly-special-card__body .button { width:100%; text-align:center; }
}

.menu-category-description{margin:6px 0 7px;color:#6e6259;font-size:.9rem;line-height:1.45;max-width:720px}
