@font-face {
  font-family: Inter;
  src: url('/assets/inter-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #c94335;
  --red-dark: #6f2c27;
  --apricot: #f2a074;
  --cream: #fff0dc;
  --paper: #fffaf1;
  --ink: #42241d;
  --muted: #6c5a50;
  --line: #decfc2;
  --success: #187a45;
  --warning: #a95f00;
  --ribbon-h: 30px;
  --header-h: 76px;
  --radius: 12px;
  --shadow: 0 22px 60px rgba(59, 25, 18, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 1000; background: var(--paper); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.demo-ribbon {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--ribbon-h);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.ribbon-track { display: flex; width: max-content; height: 100%; animation: ribbon 24s linear infinite; }
.ribbon-track:hover { animation-play-state: paused; }
.ribbon-group { display: flex; align-items: center; min-width: 760px; justify-content: space-around; }
.ribbon-group i { width: 5px; height: 5px; border-radius: 50%; background: var(--apricot); }
@keyframes ribbon { to { transform: translateX(-50%); } }

.site-header {
  position: fixed;
  z-index: 90;
  top: var(--ribbon-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 clamp(1.2rem, 4vw, 4.5rem);
  background: rgba(255, 250, 241, .97);
  border-bottom: 1px solid rgba(66, 36, 29, .12);
  backdrop-filter: blur(12px);
}
.brand { display: block; width: 192px; line-height: 0; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 2rem; margin-right: auto; }
.primary-nav a { text-decoration: none; font-size: .88rem; font-weight: 700; }
.primary-nav a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 5px; }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.employee-login { color: var(--red-dark); font-size: .72rem; font-weight: 750; padding: .65rem; text-decoration: none; }
.employee-login:hover { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.order-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .75rem 1.15rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: 0; }
.nav-toggle b { position: absolute; clip: rect(0 0 0 0); }

main { padding-top: calc(var(--ribbon-h) + var(--header-h)); }
.hero {
  height: calc(100svh - var(--ribbon-h) - var(--header-h));
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(430px, .82fr) minmax(0, 1.18fr);
  background: var(--apricot);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: clamp(2.5rem, 6vh, 4.5rem) clamp(2rem, 6vw, 7.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.2rem;
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow > span { width: 23px; height: 3px; background: currentColor; }
.eyebrow.light { color: var(--cream); }
.hero h1,
.section-heading h2,
.governance-copy h2,
.world-copy h2,
.app-section h2 {
  margin: 0;
  font-size: clamp(3rem, 5.9vw, 5.8rem);
  line-height: .88;
  letter-spacing: -.07em;
}
.hero .eyebrow { color: var(--red-dark); }
.hero h1 em { color: var(--red-dark); font-style: normal; }
.hero-lede { max-width: 590px; margin: 1.65rem 0 2rem; color: var(--ink); font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.7; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .9rem 1.25rem;
  border: 2px solid var(--red);
  border-radius: 999px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { background: var(--red); color: #fff; }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.button span { transition: transform .2s; }
.button:hover span { transform: translateX(3px); }
.service-points { display: flex; gap: 1.8rem; margin-top: 3.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(66, 36, 29, .3); color: var(--ink); font-size: .76rem; font-weight: 750; }
.service-points span { display: flex; align-items: center; gap: .45rem; }
.service-points i { font-style: normal; color: var(--red-dark); font-size: .62rem; }
.hero-board { position: relative; min-height: 0; background: var(--red-dark); overflow: hidden; }
.hero-board > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero-board:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(37, 26, 22, .72)); pointer-events: none; }
.hero-photo-note { position: absolute; z-index: 2; left: clamp(1.4rem, 4vw, 3.5rem); bottom: clamp(1.4rem, 4vw, 3rem); color: #fff; }
.hero-photo-note span { display: block; margin-bottom: .35rem; color: var(--cream); font-size: .68rem; font-weight: 850; letter-spacing: .16em; }
.hero-photo-note b { font-size: clamp(1.1rem, 2vw, 1.6rem); }

.shake-section {
  display: grid;
  grid-template-columns: .82fr .76fr .9fr 1.15fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.3rem, 6vw, 7.5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.section-heading h2 { font-size: clamp(2.5rem, 4.7vw, 4.5rem); }
.section-heading > p:last-child { color: var(--muted); max-width: 480px; line-height: 1.7; }
.shake-photo { position: relative; height: 360px; overflow: hidden; background: var(--cream); border-radius: var(--radius); }
.shake-photo img { width: 100%; height: 100%; object-fit: cover; }
.shake-photo:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(37, 26, 22, .62)); }
.shake-photo span { position: absolute; z-index: 1; left: 1.2rem; bottom: 1.1rem; color: #fff; font-size: 1rem; font-weight: 900; line-height: 1.05; letter-spacing: -.03em; }
.shake-form label { display: block; margin-bottom: .65rem; font-weight: 800; }
.shake-form > div { display: flex; flex-direction: column; gap: .6rem; }
.shake-form select { width: 100%; min-height: 50px; padding: .9rem; border: 1px solid #9f928a; background: #fff; border-radius: 8px; color: var(--ink); }
.shake-form button { min-height: 50px; border: 0; border-radius: 999px; background: var(--red); color: #fff; padding: 0 1rem; font-weight: 800; font-size: .78rem; cursor: pointer; }
.shake-form small { display: block; margin-top: .7rem; color: var(--muted); font-size: .7rem; }
.shake-result { background: var(--ink); color: #fff; padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); outline: none; }
.shake-result:focus { box-shadow: 0 0 0 4px var(--apricot), var(--shadow); }
.shake-result header { display: flex; justify-content: space-between; align-items: start; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.shake-result header small, .machine-status small { font-size: .62rem; letter-spacing: .12em; color: #ddcfc7; }
.shake-result header h3 { margin: .3rem 0 0; font-size: 1.2rem; }
.shake-result header > b { font-size: .65rem; padding: .4rem; background: rgba(255, 255, 255, .1); }
.restaurant-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1rem 0; }
.restaurant-facts p { margin: 0; }
.restaurant-facts span { display: block; color: #cbbab1; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.restaurant-facts b { display: block; margin-top: .3rem; font-size: .82rem; }
.machine-status { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: .9rem; align-items: center; background: #fff; color: var(--ink); padding: 1rem; border-radius: 8px; }
.machine-icon { position: relative; width: 48px; height: 58px; background: #e3ded9; border: 4px solid #8d8179; border-radius: 5px; }
.machine-icon:before { content: ''; position: absolute; left: 7px; right: 7px; top: 7px; height: 14px; background: var(--ink); border-radius: 2px; }
.machine-icon:after { content: ''; position: absolute; left: 13px; bottom: 6px; width: 14px; height: 15px; border: 3px solid #8d8179; border-top: 0; }
.machine-status h4 { margin: .15rem 0; color: var(--success); font-size: 1.15rem; }
.machine-status p { margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.45; }
.status-light { grid-column: 1 / -1; display: flex; align-items: center; gap: .45rem; padding-top: .7rem; border-top: 1px solid var(--line); }
.status-light i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.status-light b { color: var(--muted); font-size: .6rem; }
.shake-result[data-status='service'] .machine-status h4, .shake-result[data-status='service'] .status-light i { color: var(--red); background: var(--red); }
.shake-result[data-status='limited'] .machine-status h4, .shake-result[data-status='limited'] .status-light i { color: var(--warning); background: var(--warning); }

.governance-section { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 760px; background: var(--red-dark); color: #fff; }
.governance-copy { padding: clamp(5rem, 8vw, 8rem) clamp(2rem, 7vw, 8rem); }
.governance-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.governance-copy > p:not(.eyebrow) { max-width: 580px; color: #f1d9d5; line-height: 1.75; }
.governance-copy ul { list-style: none; margin: 2.5rem 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .2); }
.governance-copy li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.governance-copy li > i { font-style: normal; color: var(--apricot); font-size: .65rem; }
.governance-copy li b { display: block; color: #fff; font-size: .86rem; }
.governance-copy li span { color: #efd0cc; font-size: .75rem; }
.button.tomato { background: var(--apricot); border-color: var(--apricot); color: var(--ink); }
.governance-receipt { position: relative; align-self: center; justify-self: center; width: min(560px, 82%); padding: 2rem; background: #fffdf4; color: var(--ink); box-shadow: 28px 32px 0 rgba(37, 26, 22, .28); clip-path: polygon(0 0, 100% 0, 100% 97%, 97% 100%, 94% 97%, 91% 100%, 88% 97%, 85% 100%, 82% 97%, 79% 100%, 76% 97%, 73% 100%, 70% 97%, 67% 100%, 64% 97%, 61% 100%, 58% 97%, 55% 100%, 52% 97%, 49% 100%, 46% 97%, 43% 100%, 40% 97%, 37% 100%, 34% 97%, 31% 100%, 28% 97%, 25% 100%, 22% 97%, 19% 100%, 16% 97%, 13% 100%, 10% 97%, 7% 100%, 4% 97%, 0 100%); }
.governance-receipt > header { display: flex; align-items: center; gap: .8rem; padding-bottom: 1.2rem; border-bottom: 2px solid var(--ink); }
.governance-receipt header img { width: 38px; }
.governance-receipt header div { margin-right: auto; }
.governance-receipt header b, .governance-receipt header small { display: block; }
.governance-receipt header b { font-size: .85rem; letter-spacing: .1em; }
.governance-receipt header small { color: var(--muted); font-size: .65rem; }
.governance-receipt header > span { font-weight: 800; }
.receipt-prompt { margin: 1rem 0; padding: 1rem; background: #f4eee5; }
.receipt-prompt span { font-size: .6rem; font-weight: 850; letter-spacing: .1em; }
.receipt-prompt p { margin: .4rem 0 0; font-size: .78rem; }
.receipt-prompt strong { color: var(--red); }
.receipt-route { border-top: 1px dashed #9d9188; }
.receipt-step { display: grid; grid-template-columns: 28px 1fr auto; gap: .75rem; align-items: center; padding: .8rem 0; border-bottom: 1px dashed #bcb0a6; }
.receipt-step > i { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid #93877e; border-radius: 50%; font-style: normal; font-size: .62rem; }
.receipt-step b, .receipt-step small { display: block; }
.receipt-step b { font-size: .75rem; }
.receipt-step small { color: var(--muted); font-size: .6rem; }
.receipt-step strong { font-size: .62rem; color: var(--muted); }
.receipt-step.active { color: var(--warning); }
.receipt-step.complete strong { color: var(--success); }
.receipt-step.blocked strong { color: var(--red); }
.trace-result { margin-top: 1rem; padding: .8rem; border: 2px solid var(--ink); }
.trace-result span, .trace-result b { display: block; }
.trace-result span { color: var(--red); font-size: .6rem; font-weight: 850; letter-spacing: .1em; }
.trace-result b { margin-top: .25rem; font-size: .76rem; }
.governance-receipt > button { width: 100%; margin: .8rem 0; padding: .8rem; border: 0; border-radius: 999px; background: var(--red); color: #fff; font-size: .72rem; font-weight: 850; cursor: pointer; }
.governance-receipt > footer { display: flex; justify-content: space-between; color: var(--muted); font-size: .57rem; }

.menu-section { padding: clamp(5rem, 8vw, 8rem) clamp(1.3rem, 6vw, 7.5rem); background: var(--cream); }
.menu-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.menu-heading > p { max-width: 420px; }
.menu-tabs { display: flex; gap: .3rem; margin: 2.5rem 0 1.5rem; border-bottom: 1px solid #c6b7ab; overflow: auto; }
.menu-tab { border: 0; border-bottom: 4px solid transparent; background: transparent; padding: .9rem 1.1rem; font-weight: 800; color: var(--muted); white-space: nowrap; cursor: pointer; }
.menu-tab.active { color: var(--red); border-color: var(--red); }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.menu-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card > div:last-child { padding: 1rem 1.1rem 1.2rem; }
.menu-card small { color: var(--red); font-size: .6rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.menu-card h3 { margin: .25rem 0; font-size: 1.08rem; }
.menu-card p { min-height: 48px; margin: .3rem 0 1rem; color: var(--muted); font-size: .73rem; }
.menu-card button { padding: 0; border: 0; background: none; color: var(--red); font-size: .7rem; font-weight: 850; cursor: pointer; }
.menu-visual { height: 260px; background: #e6d5c6; overflow: hidden; }
.menu-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.menu-card:hover .menu-visual img { transform: scale(1.035); }
.site-notice { margin: 1rem 0 0; color: var(--muted); font-size: .68rem; }

.world-section { display: grid; grid-template-columns: 1.2fr .8fr; background: var(--paper); }
.world-map { background: var(--red); color: #fff; padding: clamp(2rem, 5vw, 5rem); }
.world-map header, .world-map footer { display: flex; justify-content: space-between; font-size: .62rem; letter-spacing: .1em; }
.market-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 2rem 0; border-top: 1px solid rgba(255, 255, 255, .35); border-left: 1px solid rgba(255, 255, 255, .35); }
.market-list button { min-height: 155px; padding: 1rem; text-align: left; border: 0; border-right: 1px solid rgba(255, 255, 255, .35); border-bottom: 1px solid rgba(255, 255, 255, .35); background: transparent; color: #fff; cursor: default; }
.market-list i, .market-list b, .market-list span { display: block; }
.market-list i { font-style: normal; color: var(--cream); font-size: .58rem; }
.market-list b { margin-top: 1.8rem; font-size: 1.1rem; }
.market-list span { margin-top: .2rem; color: #ffe8df; font-size: .68rem; }
.world-copy { padding: clamp(4rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.world-copy h2 { font-size: clamp(2.7rem, 4.7vw, 4.5rem); }
.world-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.world-copy a { color: var(--red); font-size: .78rem; font-weight: 850; text-underline-offset: 4px; }

.standards-section { padding: clamp(5rem, 8vw, 8rem) clamp(1.3rem, 6vw, 7.5rem); background: var(--paper); }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.standards-grid article { padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.standards-grid span { color: var(--red); font-size: .65rem; font-weight: 850; }
.standards-grid h3 { font-size: 1rem; }
.standards-grid p { color: var(--muted); font-size: .78rem; line-height: 1.7; }

.app-section { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 650px; background: var(--apricot); color: var(--ink); overflow: hidden; }
.app-section > div:first-child { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem); }
.app-section h2 { font-size: clamp(2.8rem, 5.2vw, 5rem); }
.app-section > div:first-child > p:not(.eyebrow) { max-width: 430px; line-height: 1.75; }
.app-section > div:first-child > button { align-self: start; margin-top: 1rem; padding: .8rem 1rem; border: 2px solid var(--ink); border-radius: 999px; background: transparent; color: #665548; font-size: .7rem; }
.app-photo { position: relative; min-height: 650px; }
.app-photo img { width: 100%; height: 100%; object-fit: cover; }
.app-photo:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(37, 26, 22, .65)); }
.app-photo span { position: absolute; z-index: 1; left: 2rem; bottom: 2rem; color: #fff; font-size: clamp(2rem, 4vw, 4rem); font-weight: 900; line-height: .9; letter-spacing: -.06em; }

.site-footer { padding: 4rem clamp(1.3rem, 6vw, 7.5rem) 1.5rem; background: var(--ink); color: #fff; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; padding-bottom: 3rem; }
.footer-main img { width: 190px; }
.footer-main p { color: #d5c8c0; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: start; gap: .7rem; }
.footer-main b { font-size: .72rem; color: var(--apricot); text-transform: uppercase; letter-spacing: .08em; }
.footer-main a, .footer-main span, .footer-main button { font-size: .74rem; color: #e5dcd7; }
.footer-main button { padding: 0; border: 0; background: none; text-align: left; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .16); font-size: .63rem; color: #b7a8a0; }

.chat-launcher { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80; display: flex; align-items: center; gap: .7rem; min-height: 52px; padding: .45rem .8rem .45rem .45rem; border: 0; border-radius: 30px; background: var(--red); color: #fff; box-shadow: 0 12px 34px rgba(0, 0, 0, .25); cursor: pointer; }
.chat-launcher > i { width: 8px; height: 8px; border-radius: 50%; background: #70db9c; }
.chat-launcher b { font-size: .75rem; }
.chat-spark { display: grid; place-items: center; width: 38px; height: 38px; padding: 4px; border-radius: 50%; background: var(--paper); color: var(--ink); }
.chat-spark img { width: 100%; height: 100%; object-fit: contain; }
.chat-panel { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 85; display: none; flex-direction: column; width: min(385px, calc(100vw - 2rem)); height: min(620px, calc(100vh - 3rem)); background: var(--paper); box-shadow: 0 24px 80px rgba(0, 0, 0, .3); border: 1px solid #c9bdb5; border-radius: var(--radius); overflow: hidden; }
.chat-panel.open { display: flex; }
.chat-panel > header { display: flex; align-items: center; justify-content: space-between; padding: .9rem; background: var(--red); color: #fff; }
.chat-panel > header > div { display: flex; align-items: center; gap: .7rem; }
.chat-panel header p { margin: 0; }
.chat-panel header p b, .chat-panel header p small { display: block; }
.chat-panel header p small { color: #ffe8df; font-size: .62rem; }
.chat-panel header p small i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #70db9c; }
.chat-panel > header button { border: 0; background: transparent; color: #fff; font-size: 1.5rem; cursor: pointer; }
.chat-security { display: flex; justify-content: center; align-items: center; gap: .45rem; padding: .55rem; background: var(--cream); color: var(--red-dark); font-size: .56rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.chat-security i { width: 3px; height: 3px; border-radius: 50%; background: var(--red); }
.chat-messages { flex: 1; overflow: auto; padding: 1rem; display: flex; flex-direction: column; gap: .7rem; }
.chat-message { max-width: 86%; padding: .75rem .85rem; border-radius: 12px; font-size: .75rem; line-height: 1.55; }
.chat-message.assistant { align-self: flex-start; background: #f0e9e2; }
.chat-message.user { align-self: flex-end; background: var(--red); color: #fff; }
.chat-message.blocked { align-self: flex-start; background: #fff0d8; border-left: 3px solid var(--warning); }
.chat-message.typing { display: flex; gap: 4px; padding: .9rem; }
.chat-message.typing i { width: 5px; height: 5px; border-radius: 50%; background: #82736b; animation: typing 1s infinite alternate; }
.chat-message.typing i:nth-child(2) { animation-delay: .2s; }
.chat-message.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes typing { to { transform: translateY(-4px); } }
.chat-suggestions { display: flex; gap: .4rem; padding: 0 1rem .7rem; overflow-x: auto; }
.chat-suggestions button { flex: 0 0 auto; max-width: 190px; padding: .5rem .65rem; border: 1px solid #c5b8af; border-radius: 999px; background: #fff; color: var(--ink); font-size: .62rem; cursor: pointer; }
.chat-panel form { display: flex; gap: .5rem; align-items: end; padding: .8rem; border-top: 1px solid var(--line); }
.chat-panel textarea { flex: 1; resize: none; max-height: 96px; padding: .65rem; border: 1px solid #aa9e96; border-radius: 8px; font-size: .75rem; }
.chat-panel form button { width: 38px; height: 38px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--red); color: #fff; cursor: pointer; }
.chat-panel > footer { padding: .55rem .8rem; background: #f2ece6; color: var(--muted); font-size: .55rem; text-align: center; }

@media (max-width: 1200px) {
  .primary-nav { gap: 1rem; }
  .employee-login { display: none; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero-copy { padding-left: 3rem; padding-right: 3rem; }
  .shake-section { grid-template-columns: 1fr 1fr; }
  .shake-photo { height: 330px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .world-section { grid-template-columns: 1fr; }
  .world-copy { padding: 5rem; }
}

@media (max-width: 780px) {
  :root { --header-h: 66px; }
  .site-header { padding: 0 1rem; }
  .brand { width: 158px; margin-right: auto; }
  .order-link { display: none; }
  .nav-toggle { display: flex; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: .8rem; }
  .hero { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { padding: 2.5rem 1.3rem 1.5rem; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-lede { margin: 1rem 0 1.25rem; }
  .service-points { gap: 1rem; flex-wrap: wrap; margin-top: .9rem; padding-top: .6rem; }
  .hero-board { min-height: 560px; }
  .shake-section { grid-template-columns: 1fr; padding: 4.5rem 1.3rem; }
  .shake-photo { height: 420px; }
  .governance-section { grid-template-columns: 1fr; }
  .governance-copy { padding: 4.5rem 1.3rem; }
  .governance-receipt { width: calc(100% - 2.6rem); margin: 0 auto 5rem; padding: 1.25rem; }
  .menu-section { padding: 4.5rem 1.3rem; }
  .menu-heading { display: block; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-visual { height: 220px; }
  .world-map { padding: 3rem 1.3rem; }
  .market-list { grid-template-columns: 1fr 1fr; }
  .world-copy { padding: 4.5rem 1.3rem; }
  .standards-section { padding: 4.5rem 1.3rem; }
  .standards-grid { grid-template-columns: 1fr; }
  .app-section { grid-template-columns: 1fr; }
  .app-section > div:first-child { padding: 4.5rem 1.3rem; }
  .app-photo { min-height: 520px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .chat-panel { right: 1rem; bottom: 1rem; }
}

@media (max-width: 480px) {
  .ribbon-group { min-width: 650px; font-size: .59rem; }
  .hero-board { min-height: 460px; }
  .hero-board > img { object-position: 50% 70%; }
  .hero-photo-note { max-width: 220px; }
  .shake-photo { height: 340px; }
  .restaurant-facts { grid-template-columns: 1fr; }
  .machine-status { grid-template-columns: 52px 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-visual { height: 280px; }
  .market-list { grid-template-columns: 1fr; }
  .market-list button { min-height: 110px; }
  .footer-main { grid-template-columns: 1fr; }
  .chat-launcher b { display: none; }
  .chat-launcher { border-radius: 50%; padding: .45rem; }
  .chat-launcher > i { position: absolute; right: 2px; top: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon-track { animation: none; }
  .ribbon-group[aria-hidden='true'] { display: none; }
  .chat-message.typing i { animation: none; }
  .button span, .menu-card, .menu-visual img { transition: none; }
}
