:root {
  --ink: #101714;
  --ink-soft: #24302a;
  --cream: #fff8e8;
  --paper: #f5edda;
  --saffron: #a8ff16;
  --saffron-bright: #c9ff61;
  --chilli: #f04425;
  --leaf: #194f37;
  --white: #ffffff;
  --muted: #766f62;
  --line: rgba(16, 23, 20, 0.13);
  --shadow: 0 28px 80px rgba(10, 18, 14, 0.2), 0 8px 20px rgba(10, 18, 14, 0.11);
  --radius: 1.4rem;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(168,255,22,.13), transparent 26rem),
    radial-gradient(circle at 92% 22%, rgba(240,68,37,.1), transparent 30rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page-shell { overflow: hidden; perspective: 1400px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.topbar {
  width: min(1420px, calc(100% - 5vw));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.brand-mark { width: 44px; height: 44px; border-radius: 50% 50% 45% 55%; display: grid; place-items: center; background: linear-gradient(145deg, var(--chilli), #a61f0b); color: white; font-size: .78rem; font-weight: 900; transform: rotate(-5deg) translateZ(12px); box-shadow: inset 0 0 0 3px rgba(255,255,255,.2), 0 10px 20px rgba(118,28,12,.25); }
.brand > span:last-child { display: grid; line-height: 1.02; }
.brand strong { font-size: .93rem; font-weight: 900; }
.brand small { font-size: .69rem; letter-spacing: .28em; margin-top: .28rem; color: var(--chilli); }
nav { display: flex; align-items: center; gap: 2rem; font-size: .9rem; font-weight: 750; }
nav a { position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.25rem; height: 2px; background: var(--chilli); transition: right .25s ease; }
nav a:hover::after, nav a:focus-visible::after { right: 0; }
.cart-pill { border: 0; background: var(--ink); color: white; border-radius: 999px; display: flex; align-items: center; gap: .85rem; padding: .63rem .7rem .63rem 1.1rem; font-weight: 800; cursor: pointer; }
.cart-pill strong { min-width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--saffron); color: var(--ink); }

.hero {
  width: min(1420px, calc(100% - 5vw));
  margin: 0 auto;
  min-height: 610px;
  padding: 3.6rem 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  position: relative;
}
.hero::before { content: ""; position: absolute; width: 260px; height: 260px; left: -180px; top: 12%; border: 50px solid rgba(255,176,0,.13); border-radius: 50%; }
.eyebrow { margin: 0 0 1rem; display: flex; align-items: center; gap: .65rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; font-size: .75rem; color: var(--chilli); }
.eyebrow span { width: 26px; height: 3px; background: currentColor; }
h1, h2 { margin: 0; letter-spacing: -.055em; line-height: .95; font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(3.6rem, 7vw, 7.2rem); max-width: 720px; }
h1 em { display: block; color: var(--chilli); font-weight: 400; }
.hero-text { max-width: 600px; margin: 1.6rem 0 2rem; font-size: 1.08rem; color: #4f534e; }
.hero-actions { display: flex; align-items: center; gap: 1.8rem; }
.button { min-height: 50px; padding: .88rem 1.25rem; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(255,176,0,.7); outline-offset: 3px; }
.button-primary { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--saffron-bright), var(--saffron)); color: var(--ink); box-shadow: 0 14px 0 #76b900, 0 24px 38px rgba(83,143,0,.22); }
.button-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,.62) 46%, transparent 64%); transform: translateX(-130%); transition: transform .6s ease; }
.button-primary:hover { background: linear-gradient(145deg, #dcff8d, var(--saffron)); box-shadow: 0 10px 0 #76b900, 0 20px 34px rgba(83,143,0,.3); transform: translateY(4px); }
.button-primary:hover::after { transform: translateX(130%); }
.hero-actions p { margin: 0; display: grid; }
.hero-actions p strong { font-size: .92rem; }
.hero-actions p span { color: var(--muted); font-size: .78rem; }
.hero-photo-wrap { position: relative; min-height: 515px; transform-style: preserve-3d; transform: rotateY(-4deg) rotateX(2deg); }
.hero-photo-wrap::before { content: ""; position: absolute; inset: 1.3rem -1.4rem -1.1rem 1.4rem; background: var(--leaf); border-radius: 44% 56% 48% 52% / 52% 43% 57% 48%; transform: rotate(2deg); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 51% 49% 43% 57% / 42% 52% 48% 58%; box-shadow: var(--shadow); transform: translateZ(24px); animation: hero-float 6s ease-in-out infinite; }
.photo-badge { position: absolute; left: -2.2rem; bottom: 2.2rem; z-index: 2; display: grid; grid-template-columns: auto 1fr; background: rgba(255,248,232,.93); backdrop-filter: blur(14px); padding: .85rem 1.1rem; border: 1px solid rgba(255,255,255,.65); border-radius: 1rem; box-shadow: 0 18px 45px rgba(16,23,20,.2), 0 8px 0 rgba(168,255,22,.45); transform: translateZ(62px); animation: badge-bob 4.5s ease-in-out infinite; }
.photo-badge > span { grid-row: 1 / 3; align-self: center; margin-right: .7rem; font-size: 1.6rem; }
.photo-badge strong { font-size: .87rem; }
.photo-badge small { color: var(--muted); }
.script-note { position: absolute; right: -1rem; top: 1.2rem; margin: 0; padding: .48rem .8rem; background: var(--chilli); color: white; font-weight: 800; font-size: .78rem; transform: rotate(5deg); border-radius: .45rem; }

.promo-banner { position:relative; isolation:isolate; min-height:190px; padding:2.2rem max(2.5vw,calc((100vw - 1420px)/2)); display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:clamp(1.2rem,3vw,3rem); overflow:hidden; color:white; background:radial-gradient(circle at 78% -45%,rgba(168,255,22,.42),transparent 22rem),linear-gradient(120deg,#8f1d0b 0%,var(--chilli) 44%,#c32e17 62%,#101714 62.2%,#194f37 100%); box-shadow:inset 0 1px rgba(255,255,255,.22),inset 0 -12px 28px rgba(0,0,0,.18),0 22px 55px rgba(95,26,12,.22); }
.promo-banner::before,.promo-banner::after { content:""; position:absolute; z-index:-1; border:1px solid rgba(255,255,255,.16); border-radius:50%; }
.promo-banner::before { width:310px; height:310px; left:-120px; top:-170px; box-shadow:0 0 0 34px rgba(255,255,255,.035),0 0 0 68px rgba(255,255,255,.025); }
.promo-banner::after { width:230px; height:230px; right:7%; bottom:-180px; box-shadow:0 0 0 32px rgba(168,255,22,.07); }
.promo-banner-icon { width:92px; aspect-ratio:1; display:grid; place-items:center; border-radius:30% 70% 60% 40%/45% 40% 60% 55%; background:linear-gradient(145deg,var(--saffron-bright),var(--saffron)); color:var(--ink); box-shadow:0 13px 0 #b87800,0 24px 38px rgba(0,0,0,.25); transform:rotate(-7deg) translateZ(20px); }
.promo-banner-icon span { font:900 2.5rem/1 Georgia,serif; transform:rotate(7deg); }
.promo-banner-copy > p:first-child { margin:0 0 .35rem; color:var(--saffron-bright); text-transform:uppercase; letter-spacing:.16em; font-size:.72rem; font-weight:950; }
.promo-banner-copy h2 { max-width:820px; font-family:Inter,ui-sans-serif,system-ui,sans-serif; font-size:clamp(2rem,4.5vw,4.4rem); line-height:.92; letter-spacing:-.055em; text-transform:uppercase; text-shadow:0 5px 18px rgba(0,0,0,.24); }
.promo-banner-copy > p:last-child { max-width:760px; margin:.7rem 0 0; color:rgba(255,255,255,.8); font-size:.98rem; }
.promo-banner-link { min-height:52px; padding:.85rem 1.15rem; display:inline-flex; align-items:center; gap:.7rem; border-radius:999px; background:var(--saffron); color:var(--ink); font-size:.82rem; font-weight:900; box-shadow:0 8px 0 #9c6805,0 18px 30px rgba(0,0,0,.2); transition:transform .2s ease,box-shadow .2s ease; white-space:nowrap; }
.promo-banner-link:hover { transform:translateY(4px); box-shadow:0 4px 0 #9c6805,0 12px 22px rgba(0,0,0,.2); }

.menu-section { background: radial-gradient(circle at 92% 6%, rgba(168,255,22,.16), transparent 26rem), linear-gradient(180deg, #f3ead4, var(--paper)); padding: 6.2rem max(2.5vw, calc((100vw - 1420px) / 2)); }
.section-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: end; margin-bottom: 2.2rem; }
.section-heading h2, .how-section h2 { font-size: clamp(2.7rem, 4.7vw, 5.3rem); }
.section-heading > p { max-width: 460px; color: var(--muted); margin: 0; }
.category-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.1rem; }
.category { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: .7rem 1rem; font-weight: 800; cursor: pointer; }
.category { transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.category:hover { transform: translateY(-2px); }
.category.active { background: linear-gradient(145deg, #26332d, var(--ink)); color: white; border-color: var(--ink); box-shadow: 0 8px 0 rgba(16,23,20,.16), 0 13px 28px rgba(16,23,20,.12); }
.order-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 1.5rem; align-items: start; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.menu-card { --tilt-x: 0deg; --tilt-y: 0deg; min-height: 190px; display: flex; flex-direction: row; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.9); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,238,218,.86)); box-shadow: 0 11px 0 rgba(16,23,20,.07), 0 22px 38px rgba(16,23,20,.12); transform-style: preserve-3d; transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transition: transform .18s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; will-change: transform; }
.menu-card:hover { transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px); background: white; border-color: rgba(168,255,22,.72); box-shadow: 0 15px 0 rgba(119,181,18,.15), 0 30px 55px rgba(16,23,20,.19); }
.menu-card-info { min-width: 0; flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 1.1rem; transform: translateZ(16px); }
.food-photo-frame { flex: 0 0 42%; overflow: hidden; background: var(--ink); transform: translateZ(24px); box-shadow: 10px 0 24px rgba(16,23,20,.14); }
.food-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.menu-card:hover .food-photo { transform: scale(1.035); }
.menu-tag { margin-bottom: .45rem; color: var(--chilli); font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.menu-card h3 { margin: 0 0 .4rem; font-size: 1.16rem; line-height: 1.12; }
.menu-card p { margin: 0 0 1rem; color: var(--muted); font-size: .88rem; line-height: 1.45; }
.menu-card-footer { margin-top: auto; display: flex; align-items: center; gap: .9rem; }
.item-offer { padding: .25rem .4rem; border-radius: .42rem; background: var(--chilli); color: white; font-size: .66rem; font-weight: 900; letter-spacing: .04em; }
.menu-price { display: flex; align-items: baseline; gap: .45rem; font-weight: 900; }
.menu-price s { color: var(--muted); font-size: .77rem; font-weight: 650; }
.menu-price strong { color: var(--chilli); font-size: 1.08rem; }
.add-button { width: 36px; height: 36px; border: 0; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(145deg, var(--saffron-bright), var(--saffron)); cursor: pointer; font-size: 1.3rem; box-shadow: 0 6px 0 #75b600, 0 10px 18px rgba(79,125,0,.22); transition: transform .2s ease, box-shadow .2s ease; }
.add-button:hover { transform: translateY(3px) rotate(8deg) scale(1.08); box-shadow: 0 3px 0 #75b600, 0 7px 14px rgba(79,125,0,.2); }
.order-panel { position: sticky; top: 1rem; background: linear-gradient(155deg, #1c2923, var(--ink)); color: white; padding: 1.45rem; border: 1px solid rgba(168,255,22,.22); border-radius: 1.55rem; box-shadow: 0 15px 0 rgba(6,10,8,.2), 0 34px 75px rgba(8,14,11,.3); transform: translateZ(18px); }
.order-panel .eyebrow { color: var(--saffron); }
.order-panel-header { display: flex; justify-content: space-between; gap: 1rem; align-items: end; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.order-panel h2 { font-size: 2.15rem; letter-spacing: -.035em; }
.item-count-label { color: rgba(255,255,255,.55); font-size: .8rem; }
.cart-empty { text-align: center; padding: 2.8rem 1rem; }
.cart-empty > span { display: block; font-size: 2rem; margin-bottom: .6rem; }
.cart-empty strong { display: block; }
.cart-empty p { color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: 0; }
.cart-row { display: grid; grid-template-columns: 1fr auto; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cart-row-name strong { display: block; font-size: .9rem; }
.cart-row-name span { color: rgba(255,255,255,.55); font-size: .78rem; }
.quantity { display: flex; align-items: center; gap: .55rem; }
.quantity button { width: 27px; height: 27px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: transparent; color: white; display: grid; place-items: center; cursor: pointer; }
.quantity span { min-width: 1rem; text-align: center; font-weight: 800; }
.order-totals { padding-top: 1rem; }
.order-totals > div { display: flex; justify-content: space-between; margin-bottom: .65rem; font-size: .86rem; color: rgba(255,255,255,.7); }
.order-totals .grand-total { color: white; font-size: 1.05rem; padding-top: .8rem; margin-top: .8rem; border-top: 1px solid rgba(255,255,255,.13); }
.checkout-button { width: 100%; margin-top: .8rem; }

.how-section { background: var(--leaf); color: white; padding: 5.5rem max(2.5vw, calc((100vw - 1420px) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 5vw; }
.eyebrow.light { color: var(--saffron); }
.how-section ol { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.how-section li { padding-left: 1.1rem; border-left: 1px solid rgba(255,255,255,.2); }
.how-section li > span { display: block; color: var(--saffron); font-weight: 900; font-size: .8rem; margin-bottom: 2rem; }
.how-section li strong { font-size: 1.02rem; }
.how-section li p { color: rgba(255,255,255,.63); font-size: .87rem; }
.chef-story { padding: 3.8rem max(2.5vw, calc((100vw - 1420px) / 2)); display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 5rem); background: radial-gradient(circle at 18% 50%, rgba(168,255,22,.16), transparent 24rem), var(--cream); overflow: hidden; }
.chef-portrait { width: clamp(190px, 20vw, 270px); aspect-ratio: 4 / 5; margin: 0; position: relative; flex: 0 0 auto; transform: perspective(900px) rotateY(7deg) rotateZ(-1deg); }
.chef-portrait::before { content: ""; position: absolute; inset: .85rem -.85rem -.85rem .85rem; border-radius: 1.7rem; background: linear-gradient(145deg, var(--saffron), #73b70b); box-shadow: 0 22px 42px rgba(16,23,20,.2); }
.chef-portrait img { width: 100%; height: 100%; display: block; position: relative; object-fit: cover; object-position: center top; border-radius: 1.7rem; border: 4px solid white; box-shadow: 0 26px 60px rgba(16,23,20,.2); }
.chef-story-copy { max-width: 600px; }
.chef-story-copy h2 { max-width: 650px; font-size: clamp(2.5rem, 4.2vw, 4.9rem); }
.chef-story-copy > p:last-child { max-width: 560px; margin: 1.3rem 0 0; color: var(--muted); font-size: 1.03rem; }
footer { background: var(--ink); color: white; padding: 2.5rem max(2.5vw, calc((100vw - 1420px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.footer-brand small { color: var(--saffron); }
footer > p { margin: 0; color: rgba(255,255,255,.55); font-size: .84rem; }
.footer-meta { text-align: right; }

.checkout-modal, .success-modal { width: min(620px, calc(100% - 2rem)); max-height: calc(100vh - 2rem); border: 0; border-radius: 1.6rem; padding: 0; background: var(--cream); box-shadow: 0 35px 120px rgba(0,0,0,.45); }
.checkout-modal::backdrop, .success-modal::backdrop { background: rgba(8,12,10,.76); backdrop-filter: blur(7px); }
.checkout-form { padding: 1.7rem; overflow-y: auto; max-height: calc(100vh - 2rem); }
.modal-top { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.modal-top h2, .success-card h2 { font-size: clamp(2.15rem, 6vw, 3.5rem); }
.modal-close { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.45rem; cursor: pointer; }
.fulfilment-switch { margin: 1.5rem 0; padding: .3rem; border: 0; border-radius: 999px; background: #e9dfc9; display: grid; grid-template-columns: 1fr 1fr; }
.fulfilment-switch label { cursor: pointer; }
.fulfilment-switch input { position: absolute; opacity: 0; pointer-events: none; }
.fulfilment-switch span { display: block; padding: .72rem; border-radius: 999px; text-align: center; font-weight: 850; }
.fulfilment-switch input:checked + span { background: var(--ink); color: white; box-shadow: 0 4px 12px rgba(16,23,20,.2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid label { display: grid; gap: .4rem; }
.form-grid label > span { font-size: .8rem; font-weight: 850; }
.form-grid input, .form-grid select { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: .75rem; padding: 0 .85rem; background: white; color: var(--ink); }
.address-field { grid-column: 1 / -1; }
.payment-options { margin: 1.4rem 0 0; padding: 0; border: 0; display: grid; gap: .6rem; }
.payment-options legend { font-size: .8rem; font-weight: 850; margin-bottom: .45rem; }
.payment-options label { display: flex; gap: .75rem; align-items: start; border: 1px solid var(--line); border-radius: .85rem; padding: .8rem; cursor: pointer; }
.payment-options input { accent-color: var(--chilli); margin-top: .2rem; }
.payment-options label > span { display: grid; }
.payment-options small { color: var(--muted); }
.checkout-summary { margin: 1.3rem 0 .3rem; display: flex; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); }
.checkout-summary strong { font-size: 1.3rem; }
.place-order { width: 100%; }
.fine-print { margin: .75rem 0 0; text-align: center; font-size: .73rem; color: var(--muted); }
.success-card { padding: 2.2rem; text-align: center; }
.success-modal[open] .success-card { animation: success-pop .42s cubic-bezier(.2,.9,.2,1.2); }
.success-card .eyebrow { justify-content: center; margin-top: 1.2rem; }
.success-card > p:not(.eyebrow) { color: var(--muted); }
.success-icon { width: 65px; height: 65px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto; background: var(--leaf); color: white; font-size: 1.8rem; font-weight: 900; }
.confirmation-number { margin: 1.5rem 0; padding: 1rem; border-radius: 1rem; background: var(--paper); display: grid; }
.confirmation-number span { color: var(--muted); font-size: .78rem; }
.confirmation-number strong { font-size: 1.4rem; letter-spacing: .08em; }
.toast { position: fixed; left: 50%; bottom: 1.4rem; z-index: 50; transform: translate(-50%, 120px); background: var(--ink); color: white; padding: .75rem 1rem; border-radius: 999px; font-size: .86rem; font-weight: 750; box-shadow: 0 15px 40px rgba(0,0,0,.25); transition: transform .3s ease; }
.toast.show { transform: translate(-50%, 0); }
.mobile-cart-bar, .mobile-drawer, .drawer-backdrop { display: none; }

@keyframes hero-float {
  0%, 100% { transform: translateZ(24px) translateY(0) rotate(-.3deg); }
  50% { transform: translateZ(34px) translateY(-9px) rotate(.5deg); }
}
@keyframes badge-bob {
  0%, 100% { transform: translateZ(62px) translateY(0) rotate(-1deg); }
  50% { transform: translateZ(68px) translateY(-7px) rotate(1deg); }
}
@keyframes success-pop {
  from { opacity: 0; transform: translateY(20px) scale(.92) rotateX(8deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: .9fr 1.1fr; gap: 2.5rem; }
  .hero-photo-wrap { min-height: 460px; }
  .order-layout { grid-template-columns: 1fr; }
  .order-panel { display: none; }
  .menu-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .mobile-cart-bar { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 20; border: 0; border-radius: 999px; background: var(--saffron); min-height: 56px; padding: .65rem 1rem; align-items: center; justify-content: space-between; gap: .75rem; box-shadow: 0 14px 45px rgba(0,0,0,.28); font-weight: 900; cursor: pointer; }
  .mobile-cart-bar[hidden] { display: none; }
  .mobile-cart-bar:not([hidden]) { display: flex; }
  .mobile-cart-bar > span:first-child { display: flex; align-items: center; gap: .35rem; }
  .mobile-cart-bar > span:first-child strong { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-size: .78rem; }
  .drawer-backdrop { position: fixed; inset: 0; z-index: 30; background: rgba(8,12,10,.7); }
  .drawer-backdrop:not([hidden]) { display: block; }
  .mobile-drawer { position: fixed; left: 0; right: 0; bottom: 0; z-index: 31; max-height: 78vh; overflow-y: auto; background: var(--ink); color: white; border-radius: 1.6rem 1.6rem 0 0; padding: .6rem 1.2rem 1.4rem; box-shadow: 0 -25px 70px rgba(0,0,0,.34); }
  .mobile-drawer:not([hidden]) { display: block; }
  .drawer-handle { width: 42px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.25); margin: 0 auto .7rem; }
  .drawer-heading { display: flex; justify-content: space-between; align-items: center; }
  .drawer-heading h2 { font-size: 2rem; }
  .drawer-heading button { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: white; font-size: 1.4rem; }
  .drawer-total { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 780px) {
  .topbar { min-height: 72px; width: calc(100% - 2rem); }
  nav > a { display: none; }
  .cart-pill span { display: none; }
  .cart-pill { padding: .45rem; }
  .hero { width: calc(100% - 2rem); grid-template-columns: 1fr; padding: 2.4rem 0 3.5rem; min-height: 0; }
  h1 { font-size: clamp(3.3rem, 16vw, 5.7rem); }
  .hero-text { font-size: 1rem; }
  .hero-photo-wrap { min-height: 390px; }
  .photo-badge { left: .6rem; bottom: .7rem; }
  .script-note { right: .2rem; }
  .promo-banner { min-height:0; grid-template-columns:auto 1fr; padding:1.8rem 1rem 2rem; gap:1rem; }
  .promo-banner-icon { width:70px; }
  .promo-banner-icon span { font-size:2rem; }
  .promo-banner-link { grid-column:1 / -1; justify-self:start; }
  .menu-section { padding: 4.2rem 1rem; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 1rem; }
  .category-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
  .category { white-space: nowrap; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .how-section { grid-template-columns: 1fr; padding: 4rem 1rem; }
  .how-section ol { grid-template-columns: 1fr; }
  .how-section li { padding: .5rem 0 .5rem 1rem; }
  .how-section li > span { margin-bottom: .7rem; }
  .chef-story { padding: 3.5rem 1rem; align-items: flex-start; }
  .chef-portrait { width: clamp(165px, 33vw, 230px); }
  footer { grid-template-columns: 1fr; padding: 2.5rem 1rem 6.5rem; }
  footer > p, .footer-meta { text-align: left; }
}

@media (max-width: 520px) {
  .brand-mark { width: 39px; height: 39px; }
  .brand strong { font-size: .82rem; }
  .brand small { font-size: .61rem; }
  .hero-actions { align-items: flex-start; gap: 1rem; }
  .hero-actions p { display: none; }
  .hero-photo-wrap { min-height: 325px; }
  .promo-banner { grid-template-columns:1fr; text-align:center; justify-items:center; }
  .promo-banner-copy > p:last-child { font-size:.9rem; }
  .promo-banner-link { grid-column:auto; justify-self:center; }
  .menu-grid { grid-template-columns: 1fr; }
  .chef-story { display: grid; justify-items: center; text-align: center; gap: 2.4rem; }
  .chef-portrait { width: min(220px, 72vw); transform: perspective(900px) rotateY(0) rotateZ(-1deg); }
  .chef-story-copy .eyebrow { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .address-field { grid-column: 1; }
  .checkout-form { padding: 1.25rem; }
}

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