/* Rico Pan Bakery v3 — mobile-first (390 designed first, desktop expands). Palette: cream / cinnamon / rose. */
:root {
  --cream: #FBF4E8;
  --cream-2: #F4E7D3;
  --paper: #FFFBF5;
  --line: #E6D3BC;
  --ink: #3A2417;
  --muted: #6B5243;
  --cinnamon: #8B4A26;
  --cinnamon-deep: #5C2E17;
  --crust: #C98B4E;
  --rose: #B04B66;
  --rose-soft: #F6DDE1;
  --rose-deep: #8E3450;
  --ok: #2F6B45;
  --err: #A3262F;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --r: 14px;
  --bar-h: 64px;
  color-scheme: light;
}
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font: 16px/1.55 var(--sans);
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: var(--rose-deep); text-underline-offset: 3px; }
a:hover { color: var(--cinnamon-deep); }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; border-radius: 6px; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0 0 .8em; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.wrap > *, .hero-grid > *, .order-layout > *, .story-grid > * { min-width: 0; }
.narrow { max-width: 760px; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--muted); }
.wrap-any { overflow-wrap: anywhere; }
.ico { width: 22px; height: 22px; flex: none; }

/* skip + status */
.skip { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--cinnamon-deep); color: var(--cream); padding: 12px 16px; border-radius: 10px; font-weight: 700; }
.skip:focus { top: 8px; color: var(--cream); }
.status { background: var(--cinnamon-deep); color: var(--cream); text-align: center; }
.status a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 16px; color: var(--cream); text-decoration: none; font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.status .ico { width: 18px; height: 18px; color: var(--rose-soft); }

/* header */
.site-header { background: var(--cream); border-bottom: 1px solid var(--line); position: relative; z-index: 30; }
.header-in { display: flex; align-items: center; gap: 12px; min-height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--cinnamon-deep); margin-right: auto; min-height: 44px; }
.logo .mark { width: 40px; height: 40px; }
.logo-txt { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font: 700 1.35rem/1 var(--serif); letter-spacing: .2px; }
.logo-sub { font-size: 12.5px; color: var(--muted); letter-spacing: .6px; text-transform: uppercase; margin-top: 3px; }
.tools { display: flex; align-items: center; gap: 8px; }
.lang { display: inline-grid; place-items: center; min-width: 44px; height: 44px; border-radius: 22px; border: 1.5px solid var(--line); color: var(--cinnamon-deep); font-weight: 700; text-decoration: none; font-size: 14px; }
.tools .call-top { display: none; }
.tools > * { flex: none; }
.burger { width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--cream-2); display: none; place-items: center; cursor: pointer; }
.burger-lines, .burger-lines::before, .burger-lines::after { display: block; width: 20px; height: 2px; background: var(--cinnamon-deep); border-radius: 2px; position: relative; content: ""; }
.burger-lines::before { position: absolute; top: -6px; } .burger-lines::after { position: absolute; top: 6px; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav a { display: flex; align-items: center; min-height: 44px; padding: 0 12px; text-decoration: none; color: var(--ink); font-weight: 600; border-radius: 10px; }
.nav a[aria-current="page"] { color: var(--rose-deep); box-shadow: inset 0 -3px 0 var(--rose); }
.nav a:hover { background: var(--cream-2); }
/* no-JS: nav stays visible as a scroll row under the header */
html:not(.js) .nav { order: 5; width: 100%; overflow-x: auto; }
html:not(.js) .header-in { flex-wrap: wrap; }
html:not(.js) .nav ul { display: flex; }
.js .burger { display: inline-grid; }
.js .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(58, 36, 23, .12); padding: 8px 16px 16px; }
.js .nav-open .nav { display: block; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 20px; border-radius: 999px; font: 700 16px/1.1 var(--sans); text-decoration: none; border: 2px solid transparent; cursor: pointer; text-align: center; }
.btn-primary { background: var(--cinnamon-deep); color: var(--cream); }
.btn-primary:hover { background: var(--cinnamon); color: var(--cream); }
.btn-rose { background: var(--rose-deep); color: #fff; }
.btn-rose:hover { background: var(--rose); color: #fff; }
.btn-outline { border-color: var(--cinnamon-deep); color: var(--cinnamon-deep); background: transparent; }
.btn-outline:hover { background: var(--cinnamon-deep); color: var(--cream); }
.btn-sm { min-height: 44px; padding: 0 16px; font-size: 15px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.cta-row .btn { flex: 1 1 140px; }
.link-strong { font-weight: 700; }

/* type */
.h1 { font: 700 clamp(1.85rem, 7.6vw, 3.9rem)/1.08 var(--serif); color: var(--cinnamon-deep); letter-spacing: -.3px; }
.h1 em, .h2 em, .h3 em { font-style: italic; font-weight: 600; color: var(--rose); }
.h1-sm { font-size: clamp(1.7rem, 6.6vw, 3rem); }
.h2 { font: 700 clamp(1.6rem, 6vw, 2.6rem)/1.12 var(--serif); color: var(--cinnamon-deep); margin-bottom: 10px; }
.h3 { font: 700 1.35rem/1.2 var(--serif); color: var(--cinnamon-deep); margin-bottom: 8px; }
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 6px; }
.hero-sub { font-size: 16.5px; color: var(--muted); margin: 8px 0 0; }

/* home hero */
.hero { padding: 22px 0 26px; }
.hero-art { display: none; }

/* menu */
.menu-sec { padding: 8px 0 24px; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { padding-top: 18px; }
.menu-note { font-size: 15px; color: var(--muted); margin: 0 0 4px; }
.chips-bar { position: sticky; top: 0; z-index: 20; background: var(--paper); border-bottom: 1px solid var(--line); margin-top: 8px; }
.chips { display: flex; gap: 8px; overflow-x: auto; padding-top: 8px; padding-bottom: 8px; scroll-snap-type: x proximity; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: none; scroll-snap-align: start; display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 22px; border: 1.5px solid var(--line); background: var(--cream); color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px; white-space: nowrap; }
.chip.is-active, .chip:hover { background: var(--cinnamon-deep); border-color: var(--cinnamon-deep); color: var(--cream); }
.menu-cat { scroll-margin-top: 68px; padding-top: 16px; }
.cat-h { font: 700 1.3rem/1.2 var(--serif); color: var(--cinnamon-deep); display: flex; align-items: baseline; gap: 10px; padding-bottom: 4px; }
.cat-n { font: 700 13px/1 var(--sans); color: var(--rose); letter-spacing: 1px; }
.dish-list { list-style: none; margin: 0; padding: 0; }
.dish { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.dish-txt { min-width: 0; }
.dish-name { font: 650 1.06rem/1.3 var(--sans); color: var(--ink); overflow-wrap: anywhere; }
.dish-desc { margin: 2px 0 0; font-size: 15px; color: var(--muted); overflow-wrap: anywhere; }
.dish-act { display: flex; align-items: center; gap: 6px; }
.add, .sub { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--cinnamon-deep); color: var(--cream); font: 700 24px/1 var(--sans); text-decoration: none; cursor: pointer; flex: none; }
.add:hover { background: var(--rose-deep); color: #fff; }
.sub { background: var(--cream-2); color: var(--cinnamon-deep); }
.qty { min-width: 22px; text-align: center; font-weight: 800; color: var(--rose-deep); }
.dish.in-order .dish-name::after { content: " •"; color: var(--rose); }
.menu-foot { margin: 18px 0 0; }

/* story + art */
.story { padding: 34px 0; }
.story-grid { display: grid; gap: 18px; }
.story-art { background: var(--cream-2); border-radius: var(--r); padding: 16px 16px 6px; max-width: 460px; }
.art-svg { display: block; width: 100%; height: auto; }

/* callouts */
.callouts { padding: 6px 0 30px; }
.callout-grid { display: grid; gap: 14px; }
.callout { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.callout-rose { background: var(--rose-soft); border-color: #EBC1C8; }
.callout .btn { margin-top: 6px; }

/* visit */
.visit { padding: 30px 0 36px; background: var(--cream-2); }
.visit-grid { display: grid; gap: 14px; margin: 14px 0 0; }
.visit-grid div { background: var(--paper); border-radius: var(--r); padding: 14px 16px; }
.visit-grid dt { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--rose-deep); }
.visit-grid dd { margin: 4px 0 0; overflow-wrap: anywhere; }
.visit-grid a { display: inline-block; min-height: 32px; padding: 4px 0; }

/* order page */
.order-head { padding: 16px 0 10px; }
.demo-line { display: inline-flex; align-items: center; gap: 8px; margin: 10px 0 0; font-size: 14px; font-weight: 600; color: var(--rose-deep); }
.demo-line::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); flex: none; }
.trust { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.trust li { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; font-size: 14px; line-height: 1.25; color: var(--muted); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 8px 4px; }
.trust .ico { color: var(--rose-deep); }
.menu-order { padding-top: 10px; }
.menu-order .menu-note { padding-top: 4px; }
.sheet { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; margin: 16px; }
.sheet-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sheet-close { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--cream-2); color: var(--cinnamon-deep); font-size: 26px; cursor: pointer; }
.sheet-count { font: 600 15px var(--sans); color: var(--rose-deep); }
.picked { margin: 6px 0 12px; }
.picked-empty { color: var(--muted); font-size: 15px; margin: 0; }
.picked-list { list-style: none; margin: 0; padding: 0; }
.picked-list li { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.picked-list .p-name { overflow-wrap: anywhere; font-weight: 600; }
.picked-list .p-ctl { display: flex; align-items: center; gap: 6px; }
.picked-list .p-ctl button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--cream); color: var(--cinnamon-deep); font: 700 20px/1 var(--sans); cursor: pointer; }
.picked-list .p-q { min-width: 20px; text-align: center; font-weight: 800; }
.sheet-open body { overflow: hidden; }
.sheet-scrim { position: fixed; inset: 0; background: rgba(40, 22, 12, .45); z-index: 60; }
.js .order-layout .sheet { position: fixed; left: 0; right: 0; bottom: 0; margin: 0; z-index: 70; max-height: 88vh; overflow-y: auto; border-radius: 20px 20px 0 0; transform: translateY(105%); transition: transform .25s ease; padding-bottom: calc(16px + env(safe-area-inset-bottom)); visibility: hidden; }
.js .order-layout .sheet::before { content: ""; display: block; width: 44px; height: 5px; border-radius: 3px; background: var(--line); margin: -4px auto 10px; }
.js.sheet-open .order-layout .sheet { transform: none; visibility: visible; }
.js .sheet-close { display: inline-grid; place-items: center; }
.before { padding: 24px 0 30px; }
.before-grid { display: grid; gap: 10px; }
.before-grid div { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px; }
.before-grid h3 { font-size: 16px; margin-bottom: 4px; color: var(--cinnamon-deep); }
.before-grid p { margin: 0; color: var(--muted); }

/* action bar */
.actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: 1fr 1.2fr 1fr; background: var(--cinnamon-deep); padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -6px 18px rgba(58, 36, 23, .18); }
.actionbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: var(--bar-h); color: var(--cream); text-decoration: none; font-weight: 700; font-size: 14px; position: relative; }
.actionbar .ab-order { background: var(--rose-deep); color: #fff; flex-direction: row; gap: 8px; font-size: 16px; }
.ab-count { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 6px; border-radius: 12px; background: var(--cream); color: var(--rose-deep); font-size: 14px; }
.to-top { position: fixed; right: 14px; bottom: calc(var(--bar-h) + 14px + env(safe-area-inset-bottom)); z-index: 40; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--crust); color: var(--cinnamon-deep); font-weight: 800; text-decoration: none; box-shadow: 0 6px 14px rgba(58, 36, 23, .2); }
.to-top[hidden] { display: none; }

/* inner pages */
.page-hero { padding: 22px 0 18px; }
.page-hero-grid { display: grid; gap: 16px; }
.side-card, .lanes { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.side-card li { display: flex; gap: 10px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.side-card .ico { color: var(--rose-deep); }
.lanes { margin-top: 16px; }
.lanes li { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.lanes .lane-n { grid-row: span 2; font: 700 1.3rem var(--serif); color: var(--rose); }
.lanes span:last-child { color: var(--muted); font-size: 15px; }
.urgent { margin-top: 16px; background: var(--rose-soft); border-radius: 12px; padding: 14px 16px; }
.tiles-sec { padding: 4px 0 18px; }
.tiles3, .tiles4 { display: grid; gap: 10px; }
.tile { display: flex; flex-direction: column; gap: 4px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px; color: var(--ink); text-decoration: none; min-height: 44px; }
a.tile:hover { border-color: var(--cinnamon); }
.tile .ico { color: var(--rose-deep); }
.tile-t { font-weight: 700; color: var(--cinnamon-deep); }
.tile-n { font: 700 13px var(--sans); color: var(--rose); letter-spacing: 1px; }
.form-sec { padding: 10px 0 36px; }
.form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; margin: 0; border: 0; padding: 0; min-width: 0; }
.field > span, .field > legend { font-weight: 650; font-size: 15px; color: var(--ink); padding: 0; }
.field abbr { color: var(--rose-deep); text-decoration: none; }
input, select, textarea { width: 100%; min-height: 48px; font: 16px/1.4 var(--sans); color: var(--ink); background: #fff; border: 1.5px solid #D9C3A8; border-radius: 12px; padding: 10px 12px; }
textarea { min-height: 72px; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible { border-color: var(--rose); outline: 3px solid rgba(176, 75, 102, .35); outline-offset: 0; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--err); }
.row2, .row3 { display: grid; gap: 14px; }
.row2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pick-grid { display: grid; gap: 6px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr)); }
.chk, .radio { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 6px 10px; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); font-size: 15px; cursor: pointer; }
.chk input, .radio input { width: 22px; height: 22px; min-height: 0; accent-color: var(--rose-deep); flex: none; }
.radios { display: grid; gap: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fine { font-size: 14px; color: var(--muted); margin: 0; }
.form-status { font-weight: 600; }
.form-status:empty { display: none; }
.form-status.ok { background: #E4F1E7; color: var(--ok); padding: 12px 14px; border-radius: 12px; }
.form-status.err { background: #F8E1E2; color: var(--err); padding: 12px 14px; border-radius: 12px; }
.map-sec { padding: 6px 0 22px; }
.map-facade { display: grid; justify-items: center; gap: 10px; text-align: center; background: var(--cream-2); border: 1px dashed var(--crust); border-radius: var(--r); padding: 26px 16px; }
.map-facade .ico { width: 34px; height: 34px; color: var(--rose-deep); }
.map-frame { width: 100%; height: 360px; border: 0; border-radius: var(--r); }
.faq-sec { padding: 6px 0 34px; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 52px; padding: 10px 0; font-weight: 700; color: var(--cinnamon-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--rose); flex: none; }
.faq[open] summary::after { content: "−"; }
.faq p { color: var(--muted); }
.human { margin-top: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; }
.legal-links { display: flex; gap: 14px; flex-wrap: wrap; margin: 0; }
.legal-links a { display: inline-flex; align-items: center; min-height: 44px; }
.legal { padding: 0 0 36px; }
.legal-list { padding-left: 1.3em; }
.legal-list li { margin-bottom: 16px; }
.legal-list h2 { font: 700 1.15rem var(--serif); color: var(--cinnamon-deep); margin-bottom: 4px; }
.legal-list li::marker { color: var(--rose); font-weight: 700; }

/* footer */
.site-footer { background: var(--cinnamon-deep); color: var(--cream-2); padding: 30px 0 18px; }
.site-footer a { color: var(--cream); }
.site-footer .logo { color: var(--cream); }
.site-footer .logo-sub { color: var(--cream-2); }
.footer-grid { display: grid; gap: 22px; }
.foot-h { font: 700 14px var(--sans); letter-spacing: 1px; text-transform: uppercase; color: var(--rose-soft); margin-bottom: 6px; }
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 16px; }
.foot-links a { display: inline-flex; align-items: center; min-height: 44px; }
.nap a { display: inline-block; padding: 6px 0; }
.foot-base { margin-top: 16px; border-top: 1px solid rgba(251, 244, 232, .2); padding-top: 12px; font-size: 14px; }

/* ≥ 600 */
@media (min-width: 600px) {
  .wrap { padding: 0 24px; }
  .callout-grid, .tiles3 { grid-template-columns: repeat(3, 1fr); }
  .callout-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: repeat(3, 1fr); }
  .tiles4 { grid-template-columns: repeat(2, 1fr); }
  .row3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .before-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr .8fr; }
  .cta-row .btn { flex: 0 0 auto; }
}
/* ≥ 768: dishes in two columns */
@media (min-width: 768px) {
  .dish-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
  .story-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: center; gap: 36px; }
  .tiles4 { grid-template-columns: repeat(4, 1fr); }
  .page-hero-grid { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); align-items: center; }
  .page-hero { padding: 40px 0 24px; }
}
/* ≥ 1024: desktop chrome; order page gets a side panel instead of a bottom sheet */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .actionbar { display: none; }
  .to-top { bottom: 20px; }
  .js .burger { display: none; }
  .js .nav, html:not(.js) .nav { display: block; position: static; box-shadow: none; border: 0; padding: 0; background: none; width: auto; order: 0; }
  .nav ul { display: flex; gap: 2px; }
  .nav a { padding: 0 10px; font-size: 15.5px; }
  .tools .call-top { display: inline-flex; }
  .header-in { min-height: 76px; }
  .hero { padding: 48px 0 44px; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: center; gap: 40px; }
  .hero-art { display: block; }
  .hero-sub { font-size: 19px; }
  .story-art { max-width: none; }
  .order-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 24px; max-width: 1160px; margin: 0 auto; padding: 0 24px; align-items: start; }
  .order-layout .menu-sec { border: 1px solid var(--line); border-radius: var(--r); }
  .order-layout .wrap { padding: 0 20px; }
  .js .order-layout .sheet, .order-layout .sheet { position: sticky; top: 16px; transform: none; visibility: visible; max-height: calc(100vh - 32px); overflow-y: auto; border-radius: var(--r); margin: 10px 0 0; left: auto; right: auto; bottom: auto; z-index: 1; transition: none; }
  .js .order-layout .sheet::before, .js .sheet-close { display: none; }
  .sheet-scrim { display: none; }
  .order-layout .dish-list { grid-template-columns: 1fr; }
}
@media (min-width: 1200px) { .order-layout .dish-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print { .actionbar, .status, .chips-bar, .to-top, .site-footer { display: none; } }
@media (max-width: 359px) {
  .header-in .logo-sub { display: none; }
  .logo .mark { width: 34px; height: 34px; }
  .header-in { gap: 8px; }
}
