:root {
  --black: oklch(0.075 0 0);
  --ink: oklch(0.12 0.008 25);
  --surface: oklch(0.17 0.012 25);
  --white: oklch(0.985 0 0);
  --muted: oklch(0.79 0.01 25);
  --red: oklch(0.57 0.23 27);
  --red-dark: oklch(0.41 0.17 27);
  --yellow: oklch(0.86 0.17 88);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --page: min(1180px, calc(100vw - 40px));
  --header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--white); background: var(--black); font-family: var(--body); line-height: 1.55; overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
section[id] { scroll-margin-top: calc(var(--header) + 18px); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 30; padding: 12px 16px; color: var(--black); background: var(--white); transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }

.site-header { min-height: var(--header); padding: max(9px, env(safe-area-inset-top)) max(16px, 3vw, env(safe-area-inset-right)) 9px max(16px, 3vw, env(safe-area-inset-left)); display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 3px solid var(--red); background: oklch(0.075 0 0 / .97); position: sticky; top: 0; z-index: 20; }
.wordmark { width: 94px; height: 70px; display: block; text-decoration: none; }
.wordmark img { width: 100%; height: 100%; object-fit: contain; }
.site-header nav { display: flex; align-items: center; gap: 34px; }
.site-header nav a { min-height: 44px; display: flex; align-items: center; font: 800 .82rem/1 var(--body); text-decoration: none; text-transform: uppercase; letter-spacing: .06em; }
.site-header nav a:hover { color: var(--red); }
.nav-toggle { display: none; width: 48px; height: 44px; padding: 0; align-items: center; justify-content: center; color: var(--white); border: 2px solid var(--white); background: transparent; cursor: pointer; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; display: block; width: 22px; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.hero { min-height: calc(100svh - var(--header)); display: block; overflow: hidden; position: relative; background-color: var(--black); background-image: linear-gradient(90deg, oklch(0.075 0 0 / .94) 0%, oklch(0.075 0 0 / .82) 34%, oklch(0.075 0 0 / .42) 62%, oklch(0.075 0 0 / .12) 100%), url("assets/factory-food-collage.png"); background-size: cover; background-position: center; }
.hero-copy { width: min(690px, 57vw); min-height: calc(100svh - var(--header)); padding: clamp(28px, 4vw, 58px) 20px clamp(54px, 7vw, 88px) clamp(20px, 3.4vw, 50px); display: flex; flex-direction: column; justify-content: flex-start; position: relative; z-index: 2; }
.hero-brand { width: max-content; margin: 0 0 12px; position: relative; }
.hero-brand img { width: min(200px, 52vw); transform: rotate(-1.5deg); }
.hero h1 { margin: 0; max-width: 7ch; font: 900 clamp(4rem, 7.8vw, 6rem)/.88 var(--display); letter-spacing: -.025em; text-transform: uppercase; text-wrap: balance; }
.hero h1 span { display: block; color: var(--white); }
.hero h1 strong { width: max-content; max-width: 100%; margin-top: 8px; padding: 5px 12px 8px; display: block; color: var(--white); background: var(--red); font: inherit; transform: rotate(-1.5deg); }
.hero-lede { max-width: 520px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.24rem); font-weight: 700; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 1px; font: 900 .86rem/1 var(--body); text-transform: uppercase; letter-spacing: .045em; text-decoration: none; transition: transform 180ms cubic-bezier(.22, 1, .36, 1), background 180ms ease-out, color 180ms ease-out; }
.button:hover { transform: translateY(-3px) rotate(-1deg); }
.button-light { color: var(--black); background: var(--white); }
.button-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.button-red { background: var(--red); color: var(--white); }
.button-dark { color: var(--white); background: var(--black); }
.hours-line { margin: 24px 0 0; font-size: .9rem; }
.hours-line strong { color: var(--yellow); text-transform: uppercase; }
.hours-line span { color: var(--muted); }

.page-intro { padding: clamp(64px, 9vw, 120px) max(20px, calc((100vw - 1180px) / 2)); color: var(--white); background: var(--black); border-bottom: 10px solid var(--red); }
.page-intro h1 { max-width: 8ch; margin: 18px 0 20px; font: 900 clamp(4rem, 8vw, 6rem)/.86 var(--display); letter-spacing: -.035em; text-transform: uppercase; text-wrap: balance; }
.page-intro > p:not(.script-line) { max-width: 54ch; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 700; }

.intro { width: 100%; margin: 0; padding: clamp(80px, 10vw, 140px) max(20px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 8vw, 100px); align-items: center; color: var(--black); background: var(--white); }
.intro-logo { min-height: clamp(300px, 34vw, 470px); padding: clamp(28px, 4vw, 56px); display: flex; align-items: center; justify-content: center; background: var(--white); border: 7px solid var(--red); position: relative; transform: rotate(-1deg); }
.intro-logo img { width: 100%; max-width: 100%; max-height: 100%; margin: 0 auto; object-fit: contain; }
.intro-logo::after { content: "Made fresh"; position: absolute; right: -20px; bottom: -17px; padding: 7px 10px; color: var(--black); background: var(--yellow); font-weight: 900; text-transform: uppercase; transform: rotate(4deg); }
.intro-copy h2, .food-copy h2, .visit-copy h2, .social-section h2 { margin: 0 0 20px; font: 900 clamp(2.8rem, 6vw, 5.6rem)/.9 var(--display); letter-spacing: -.02em; text-transform: uppercase; text-wrap: balance; }
.intro-copy h2 { color: var(--red); }
.intro-copy p { max-width: 55ch; margin: 0; color: oklch(0.25 0.01 25); font-size: 1.12rem; }

.menu-section { padding: clamp(82px, 10vw, 140px) max(20px, calc((100vw - 1180px) / 2)); position: relative; color: var(--white); background: var(--ink); border-top: 10px solid var(--red); border-bottom: 10px solid var(--red); }
.menu-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 18% 20%, oklch(1 0 0 / .025) 0 1px, transparent 2px); background-size: 13px 13px; opacity: .55; }
.section-heading { position: relative; display: flex; align-items: end; justify-content: flex-end; gap: 30px; margin-bottom: 44px; border-bottom: 6px solid var(--white); }
.section-heading p { margin: 0 0 17px; color: var(--yellow); font-weight: 900; text-transform: uppercase; }
.section-heading h2 { margin: 0; color: var(--white); font: 900 clamp(3.8rem, 8vw, 6rem)/.88 var(--display); text-transform: uppercase; }
.menu-layout { position: relative; display: grid; grid-template-columns: 5fr 7fr; border-top: 2px solid oklch(1 0 0 / .55); border-left: 2px solid oklch(1 0 0 / .55); }
.menu-block { padding: clamp(28px, 4vw, 48px); border-right: 2px solid oklch(1 0 0 / .55); border-bottom: 2px solid oklch(1 0 0 / .55); }
.menu-title { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 14px; border-bottom: 5px solid var(--red); }
.menu-title h3 { margin: 0; font: 900 clamp(2rem, 4vw, 3.15rem)/1 var(--display); text-transform: uppercase; }
.menu-title span { color: var(--yellow); font-weight: 900; text-transform: uppercase; font-size: .75rem; text-align: right; }
.price-list { margin: 25px 0; }
.chicken-tenders { margin-bottom: 0; }
.chicken-tenders + .price-list { margin-top: 0; }
.price-list > div { display: flex; align-items: baseline; gap: 10px; margin: 10px 0; }
.price-list > div::before { content: ""; flex: 1; order: 2; border-bottom: 2px dotted oklch(1 0 0 / .3); }
.price-list dt { order: 1; font-weight: 800; }
.price-list dd { order: 3; margin: 0; color: var(--yellow); font-weight: 900; }
.flavor-board { margin-top: 30px; padding: 22px; color: var(--black); background: var(--white); transform: rotate(-.5deg); }
.flavor-board h4, .addons h4 { margin: 0 0 12px; font: 900 1.45rem/1 var(--display); text-transform: uppercase; }
.flavor-board ul { margin: 0; padding: 0; columns: 2; list-style: none; }
.flavor-board li { margin: 8px 0; break-inside: avoid; font-size: .88rem; font-weight: 800; }
.flavor-board li::before { content: "★"; margin-right: 8px; color: var(--red); }
.new-tag { display: inline-block; padding: 2px 5px; color: var(--black); background: var(--yellow); font-size: .66rem; text-transform: uppercase; transform: rotate(-5deg); }
.dish-list > div { padding: 18px 0; border-bottom: 1px solid oklch(1 0 0 / .2); }
.dish-list h4 { margin: 0; font: 900 1.35rem/1.1 var(--display); text-transform: uppercase; }
.dish-list h4 b { float: right; color: var(--yellow); }
.dish-list p, .small-note { margin: 6px 0 0; color: var(--muted); font-size: .9rem; }
.addons { margin-top: 24px; padding: 18px; color: var(--black); background: var(--yellow); transform: rotate(.4deg); }
.addons p { margin: 0; font-size: .9rem; font-weight: 700; }
.featured-price { margin: 28px 0 16px; display: flex; align-items: baseline; gap: 10px; }
.featured-price strong { color: var(--yellow); font: 900 3rem/1 var(--display); }
.featured-price span { font-weight: 900; text-transform: uppercase; }
.drink-flavors { padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.drink-flavors li { padding: 7px 10px; border: 2px solid var(--white); font-weight: 800; }
.tea-menu { margin-top: 30px; padding-top: 22px; border-top: 3px solid var(--red); }
.tea-menu h4 { margin: 0; font: 900 clamp(1.8rem, 3vw, 2.4rem)/1 var(--display); text-transform: uppercase; }
.tea-menu .featured-price { margin-top: 18px; }
.tea-menu .small-note { margin-top: 12px; }
.compact { margin-bottom: 12px; }
.price-list.compact.chicken-tenders { margin-bottom: 0; }
.combo-list { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 26px; background: var(--red); }
.combo-list > div { padding: 20px; color: var(--white); background: var(--black); }
.combo-list h4 { margin: 0; font: 900 1.4rem/1 var(--display); text-transform: uppercase; }
.combo-list p { margin: 7px 0; color: var(--muted); font-size: .88rem; }
.combo-list strong { color: var(--yellow); font-size: 1.3rem; }
.catering-note { margin: 38px 0 0; padding: 22px clamp(18px, 3vw, 30px); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--black); background: var(--yellow); transform: rotate(-.35deg); }
.catering-note strong { font: 900 clamp(1.5rem, 3vw, 2.1rem)/1 var(--display); text-transform: uppercase; }
.catering-note p { margin: 5px 0 0; font-weight: 800; }
.advisory { width: 100%; max-width: none; margin: 34px 0 0; padding: 18px clamp(12px, 3vw, 30px); color: var(--white); background: var(--black); border-top: 2px solid var(--red); border-bottom: 2px solid var(--red); font-size: .84rem; text-align: center; }

.food-story { padding: clamp(90px, 11vw, 150px) max(20px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: .8fr 1.2fr .8fr; gap: clamp(22px, 5vw, 64px); align-items: center; position: relative; overflow: hidden; color: var(--white); background: var(--red); }
.food-image { margin: 0; height: min(620px, 62vw); overflow: hidden; border: 8px solid var(--white); }
.food-image img { width: 100%; height: 100%; object-fit: cover; }
.food-image:first-child { transform: rotate(-2deg); }
.front-cup { transform: translateY(46px) rotate(2deg); }
.script-line { width: max-content; margin: 0 0 18px; padding: 7px 11px; color: var(--black); background: var(--yellow); font-weight: 900; text-transform: uppercase; transform: rotate(-2deg); }
.food-copy h2 { color: var(--white); }
.food-copy p:not(.script-line) { color: var(--white); font-size: 1.08rem; }
.text-link { display: inline-block; margin-top: 18px; color: var(--white); font-weight: 900; text-underline-offset: 5px; }

.visit-section { min-height: 650px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; color: var(--black); background: var(--white); }
.visit-copy { padding: clamp(72px, 9vw, 130px) clamp(28px, 7vw, 110px) clamp(72px, 9vw, 130px) max(20px, calc((100vw - 1180px) / 2)); display: flex; flex-direction: column; justify-content: center; }
.visit-copy h2 { color: var(--black); }
.visit-copy address { font-style: normal; font-size: clamp(1.4rem, 3vw, 2.05rem); font-weight: 900; }
.visit-hours { margin: 26px 0 0; font-size: 1.08rem; }
.visit-hours span { color: var(--red-dark); }
.pickup-note { max-width: 50ch; margin-top: 24px; font-size: .9rem; font-weight: 700; }
.map-panel { height: 100%; min-height: 500px; position: relative; overflow: hidden; border: 12px solid var(--red); background: oklch(.92 0 0); }
.map-panel iframe { width: 100%; height: 100%; min-height: 0; display: block; border: 0; filter: saturate(.8) contrast(1.05); }

.social-section { padding: clamp(84px, 12vw, 150px) 20px; color: var(--black); text-align: center; background: var(--white); }
.social-section > p { width: max-content; max-width: 100%; margin: 0 auto 18px; padding: 7px 10px; color: var(--black); background: var(--yellow); font-weight: 900; text-transform: uppercase; transform: rotate(-1deg); }
.social-section h2 { margin-left: auto; margin-right: auto; color: var(--black); }
.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.social-links a { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; border: 2px solid var(--black); color: var(--black); font-weight: 900; text-decoration: none; text-transform: uppercase; }
.social-links a:hover { color: var(--white); background: var(--black); }

footer { padding: 34px max(20px, calc((100vw - 1180px) / 2)) 34px clamp(16px, 3vw, 44px); display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 26px; border-top: 5px solid var(--red); background: var(--surface); }
.footer-logo { width: 96px; }
footer p { margin: 0; font-weight: 800; }

.catering-hero { min-height: min(760px, calc(100svh - var(--header))); padding: clamp(58px, 9vw, 120px) max(20px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: clamp(42px, 8vw, 120px); color: var(--white); background: var(--black); border-bottom: 10px solid var(--red); }
.catering-hero-copy { max-width: 620px; }
.catering-hero-copy h1 { margin: 18px 0 24px; font: 900 clamp(4rem, 9vw, 7rem)/.86 var(--display); letter-spacing: -.035em; text-transform: uppercase; text-wrap: balance; }
.catering-hero-copy > p:not(.script-line) { max-width: 50ch; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 700; }
.catering-hero-copy .text-link { margin-top: 24px; }
.catering-hero-mark { width: min(420px, 100%); justify-self: end; padding: 20px; background: var(--surface); border: 8px solid var(--red); transform: rotate(2deg); }
.catering-hero-mark img { width: 100%; }
.catering-form-section { padding: clamp(70px, 9vw, 120px) max(20px, calc((100vw - 1000px) / 2)); color: var(--white); background: var(--black); }
.catering-form-intro { max-width: 680px; margin: 0 auto 42px; text-align: center; }
.catering-form-intro h2 { margin: 0 0 18px; font: 900 clamp(3rem, 6vw, 5.4rem)/.88 var(--display); letter-spacing: -.025em; text-transform: uppercase; text-wrap: balance; }
.catering-form-intro p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.catering-form-frame { max-width: 980px; margin: 0 auto; overflow: hidden; border: 10px solid var(--red); background: var(--black); }
.native-catering-form { color: var(--white); background: var(--black); color-scheme: dark; }
.native-form-header { padding: clamp(28px, 4vw, 48px) clamp(22px, 5vw, 52px); border-bottom: 1px solid oklch(.84 0 0); }
.native-form-header h3 { margin: 0; color: var(--white); font: 900 clamp(2rem, 4vw, 3.1rem)/1 var(--display); text-transform: uppercase; }
.native-form-header p { max-width: 60ch; margin: 9px 0 0; color: var(--muted); }
.native-form-body { padding: clamp(28px, 5vw, 54px); display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.form-field, .field-group { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-field-full { grid-column: 1 / -1; }
.form-field > label, .field-group legend { display: block; margin-bottom: 10px; color: var(--white); font-size: .98rem; font-weight: 800; }
.form-field > label span[aria-hidden="true"], .field-group legend span[aria-hidden="true"] { color: var(--red); }
.form-grid { display: grid; gap: 18px 24px; }
.form-grid-two { grid-template-columns: 1fr 1fr; }
.native-catering-form input, .native-catering-form select, .native-catering-form textarea { width: 100%; min-height: 48px; padding: 12px 14px; color: var(--white); background: var(--black); border: 1px solid oklch(.78 0 0); border-radius: 1px; font: inherit; }
.native-catering-form textarea { min-height: 132px; resize: vertical; }
.native-catering-form input::placeholder, .native-catering-form textarea::placeholder { color: var(--muted); opacity: 1; }
.native-catering-form input:focus, .native-catering-form select:focus, .native-catering-form textarea:focus { border-color: var(--red); outline: 3px solid oklch(.57 .23 27 / .22); outline-offset: 2px; }
.native-catering-form small { display: block; margin-top: 6px; color: var(--muted); font-size: .78rem; }
.form-submit-row { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding-top: 8px; }
.form-submit-row .button { cursor: pointer; }
.form-submit-row .button:disabled { cursor: wait; opacity: .65; }
.form-status { flex: 1 1 300px; margin: 0; color: var(--muted); font-size: .9rem; }
.form-status.is-success { color: oklch(.76 .14 145); }
.form-status.is-error { color: var(--red); }
.form-status.is-pending { color: var(--muted); }
.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; }
.form-fallback { max-width: 980px; margin: 18px auto 0; color: oklch(.32 .01 25); font-size: .9rem; text-align: center; }
.form-fallback a { color: var(--red-dark); font-weight: 800; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-header nav { position: absolute; top: 100%; left: 0; right: 0; padding: 12px 20px max(22px, env(safe-area-inset-bottom)); display: none; flex-direction: column; align-items: stretch; gap: 4px; background: var(--black); border-bottom: 3px solid var(--red); }
  .site-header nav.open { display: flex; }
  .site-header nav a { min-height: 48px; font-size: .9rem; }
  .hero { background-size: cover; background-image: linear-gradient(90deg, oklch(0.075 0 0 / .94) 0%, oklch(0.075 0 0 / .84) 42%, oklch(0.075 0 0 / .34) 76%, oklch(0.075 0 0 / .12) 100%), url("assets/factory-food-collage.png"); background-position: 68% center; }
  .hero-copy { width: min(680px, 72vw); min-height: 670px; }
  .intro { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 12px; }
  .menu-layout { grid-template-columns: 1fr; }
  .food-story { grid-template-columns: 1fr 1fr; }
  .food-copy { grid-column: 1 / -1; grid-row: 1; }
  .food-image { height: 68vw; }
  .front-cup { transform: translateY(24px) rotate(2deg); }
  .catering-hero { grid-template-columns: 1fr; min-height: auto; }
  .catering-hero-mark { justify-self: start; width: min(340px, 75vw); }
  .visit-section { grid-template-columns: 1fr; }
  .map-panel { min-height: 440px; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 32px); --header: calc(72px + env(safe-area-inset-top)); }
  .wordmark { width: 72px; height: 58px; }
  .hero { min-height: max(650px, calc(100svh - var(--header))); background-size: auto 100%; background-image: linear-gradient(90deg, oklch(0.075 0 0 / .95) 0%, oklch(0.075 0 0 / .88) 54%, oklch(0.075 0 0 / .42) 100%), url("assets/factory-food-collage.png"); background-position: 76% center; }
  .hero-copy { width: 100%; min-height: max(650px, calc(100svh - var(--header))); padding: 24px 20px max(54px, env(safe-area-inset-bottom)); }
  .hero-brand img { width: min(158px, 42vw); }
  .hero h1 { max-width: 6.5ch; font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero h1 strong { width: max-content; max-width: calc(100vw - 40px); }
  .hero-lede { max-width: 28ch; margin-top: 20px; }
  .hero-actions { width: min(270px, 100%); flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero-actions .button { width: 100%; }
  .hours-line { margin-top: 18px; }
  .intro-logo { padding: 14px; }
  .intro-logo::after { right: 0; }
  .intro { padding-top: 64px; padding-bottom: 76px; gap: 38px; }
  .intro-copy h2, .food-copy h2, .visit-copy h2, .social-section h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .section-heading h2 { font-size: 3.55rem; }
  .menu-section { padding-left: 16px; padding-right: 16px; }
  .menu-block { padding: 26px 18px; }
  .menu-title { display: block; }
  .menu-title span { display: block; margin-top: 8px; text-align: left; }
  .menu-title h3 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .price-list > div { gap: 8px; }
  .price-list dt { min-width: 0; }
  .catering-note { align-items: stretch; flex-direction: column; }
  .catering-note .button { width: 100%; }
  .flavor-board ul { columns: 1; }
  .combo-list { grid-template-columns: 1fr; }
  .dish-list h4 b { float: none; display: block; margin-top: 5px; }
  .food-story { grid-template-columns: 1fr; gap: 30px; padding: 68px 18px max(88px, env(safe-area-inset-bottom)); }
  .food-copy { grid-column: auto; grid-row: auto; order: 1; margin-bottom: 0; }
  .food-image { width: min(100%, 360px); height: min(520px, 132vw); justify-self: center; border-width: 5px; }
  .food-image:first-child { order: 2; }
  .front-cup { order: 3; transform: rotate(2deg); }
  .visit-section { min-height: auto; }
  .visit-copy { padding: 64px 20px 58px; }
  .visit-actions { flex-direction: column; align-items: stretch; margin-top: 24px; }
  .visit-actions .button { width: 100%; }
  .map-panel, .map-panel iframe { min-height: 380px; }
  .catering-form-section { padding-left: 16px; padding-right: 16px; }
  .catering-form-frame { border-width: 6px; }
  .native-form-header, .native-form-body { padding-left: 18px; padding-right: 18px; }
  .native-form-body { gap: 20px; }
  .native-catering-form input, .native-catering-form select, .native-catering-form textarea { font-size: 16px; }
  .catering-hero { padding-top: 54px; padding-bottom: 64px; }
  .catering-hero-copy h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .native-form-body { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .form-grid-two { grid-template-columns: 1fr; }
  .form-submit-row { grid-column: auto; }
  .form-submit-row .button { width: 100%; }
  .visit-copy { padding-left: 20px; padding-right: 20px; }
  .visit-actions .button { width: 100%; }
  .map-panel { min-height: 390px; border-width: 7px; }
  .map-panel iframe { min-height: 390px; }
  footer { grid-template-columns: 1fr; padding-bottom: max(34px, env(safe-area-inset-bottom)); }
}

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