
:root {
  --ink: #171312;
  --cream: #f7edda;
  --paper: #fffaf0;
  --red: #d52b22;
  --red-dark: #a91f1a;
  --yellow: #f4b942;
  --green: #335b45;
  --muted: #716963;
  --line: rgba(23, 19, 18, .14);
  --shadow: 0 26px 70px rgba(42, 27, 20, .13);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
}
body:has(dialog[open]) { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 100; padding: 10px 14px; background: white; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 58px);
  color: white;
  background: rgba(23, 19, 18, .97);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-badge {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.5rem;
  transform: rotate(-7deg);
}
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-family: var(--display); font-size: 1.25rem; letter-spacing: .04em; }
.brand-copy small { color: rgba(255,255,255,.62); font-size: .7rem; }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a { color: rgba(255,255,255,.78); text-decoration: none; font-weight: 700; font-size: .9rem; }
.desktop-nav a:hover { color: white; }
.header-actions { display: flex; justify-content: flex-end; gap: 10px; }
.location-pill {
  display: flex; align-items: center; gap: 7px;
  min-width: 0; max-width: 220px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: white; background: rgba(255,255,255,.07);
  cursor: pointer;
}
.location-pill span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 59%;
  background: url("images/award-winning-pizza.webp") 59% center / cover no-repeat;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23,19,18,1) 0%, rgba(23,19,18,.98) 38%, rgba(23,19,18,.72) 55%, rgba(23,19,18,.12) 82%),
    linear-gradient(to top, rgba(0,0,0,.36), transparent 30%);
}
.hero-content {
  position: relative; z-index: 3;
  width: min(1180px, calc(100% - 36px));
  padding: 82px 0 145px;
}
.kicker, .eyebrow, .micro-label {
  margin: 0 0 13px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker { color: var(--yellow); }
.eyebrow.light { color: var(--yellow); }
.hero h1 {
  max-width: 740px;
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(5.2rem, 13vw, 10.8rem);
  font-weight: 400;
  line-height: .79;
  letter-spacing: -.025em;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-copy { max-width: 610px; margin: 0 0 28px; color: rgba(255,255,255,.76); font-size: 1.13rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  margin-top: 30px;
  color: rgba(255,255,255,.62);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-signature span { padding: 0 13px; border-left: 1px solid rgba(255,255,255,.25); }
.hero-signature span:first-child { padding-left: 0; border-left: 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 13px 21px;
  border: 0; border-radius: 999px;
  text-decoration: none; font-weight: 800; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 10px 16px; }
.button-large { min-height: 56px; padding: 15px 25px; }
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.08); }
.button-dark { color: white; background: var(--ink); }
.button-cream { color: var(--ink); background: var(--cream); }
.button-outline { border: 1px solid var(--line); background: transparent; }
.hero-location {
  display: inline-flex; align-items: center; gap: 17px;
  margin-top: 24px; padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 17px;
  background: rgba(0,0,0,.18);
}
.hero-location > span { color: rgba(255,255,255,.55); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-location button { padding: 7px 12px; border: 0; border-radius: 12px; text-align: left; color: white; background: rgba(255,255,255,.1); cursor: pointer; }
.hero-location strong, .hero-location small { display: block; }
.hero-location small { margin-top: 2px; color: rgba(255,255,255,.58); }

.quick-strip {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: -70px auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream); box-shadow: var(--shadow);
}
.quick-strip a {
  position: relative;
  display: grid; grid-template-columns: auto 1fr;
  column-gap: 12px;
  padding: 25px 22px;
  text-decoration: none;
  border-right: 1px solid var(--line);
}
.quick-strip a:last-child { border-right: 0; }
.quick-strip span { grid-row: 1 / 3; color: var(--red); font-family: var(--display); font-size: 1.65rem; }
.quick-strip strong, .quick-strip small { display:block; }
.quick-strip small { margin-top: 3px; color: var(--muted); }

.section { width: min(1180px, calc(100% - 36px)); margin: 96px auto; }
.section-intro.split { display:grid; grid-template-columns: 1.15fr .85fr; align-items:end; gap:48px; margin-bottom:38px; }
.section h2, .promo-section h2, .story-section h2 {
  margin:0;
  font-family:var(--display);
  font-size:clamp(3.1rem,7vw,6.5rem);
  font-weight:400;
  line-height:.9;
  letter-spacing:-.02em;
}
.section-intro > p { margin:0 0 5px; color:var(--muted); line-height:1.7; }

.photo-section { margin-bottom:88px; }
.brand-photo-grid { display:grid; grid-template-columns:1.35fr .8fr; grid-template-rows:repeat(2,245px); gap:16px; }
.brand-photo { position:relative; min-height:0; margin:0; overflow:hidden; border-radius:23px; background:var(--ink); box-shadow:var(--shadow); }
.brand-photo-feature { grid-row:1 / 3; }
.brand-photo img { width:100%; height:100%; display:block; object-fit:cover; transition:transform .45s ease; }
.brand-photo:hover img { transform:scale(1.025); }
.brand-photo figcaption { position:absolute; left:0; right:0; bottom:0; display:flex; flex-direction:column; gap:3px; padding:42px 22px 20px; color:white; background:linear-gradient(transparent,rgba(18,12,10,.88)); }
.brand-photo figcaption strong { font-family:var(--display); font-size:1.9rem; font-weight:400; letter-spacing:.02em; text-transform:uppercase; }
.brand-photo figcaption span { color:rgba(255,255,255,.72); font-size:.85rem; }
.location-photo-heading { display:flex; align-items:end; justify-content:space-between; gap:24px; margin:42px 0 15px; }
.location-photo-heading p { margin:0 0 5px; }
.location-photo-heading h3 { margin:0; font-family:var(--display); font-size:clamp(2.3rem,5vw,4rem); font-weight:400; line-height:.9; }
.location-photo-rail { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(210px,1fr); gap:13px; overflow-x:auto; padding:0 0 14px; scroll-snap-type:x proximity; scrollbar-color:var(--red) #e7dbc5; }
.location-photo-rail figure { position:relative; height:285px; margin:0; overflow:hidden; border-radius:18px; background:var(--ink); scroll-snap-align:start; }
.location-photo-rail img { width:100%; height:100%; display:block; object-fit:cover; transition:transform .35s ease; }
.location-photo-rail figure:hover img { transform:scale(1.04); }
.location-photo-rail figcaption { position:absolute; left:10px; right:10px; bottom:10px; padding:10px 12px; border-radius:12px; color:white; background:rgba(23,19,18,.78); backdrop-filter:blur(8px); font-size:.78rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; }

.menu-tabs { display:flex; gap:8px; overflow-x:auto; padding-bottom:8px; scrollbar-width:none; }
.menu-tab { flex:none; padding:11px 17px; border:1px solid var(--line); border-radius:999px; background:transparent; font-weight:800; cursor:pointer; }
.menu-tab.active { color:white; background:var(--ink); }
.menu-grid {
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(340px,.65fr);
  grid-template-rows:repeat(3,190px);
  gap:14px;
  margin-top:24px;
}
.menu-card { position:relative; min-height:0; display:flex; flex-direction:column; justify-content:flex-end; overflow:hidden; border-radius:21px; background:var(--ink); box-shadow:0 14px 34px rgba(42,27,20,.12); }
.menu-card:first-child { grid-row:1 / 4; }
.menu-card-photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.menu-card:hover .menu-card-photo { transform:scale(1.035); }
.menu-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,14,12,.02) 25%,rgba(20,14,12,.92) 100%); }
.menu-card-copy { position:relative; z-index:2; padding:26px; color:white; }
.menu-card h3 { margin:42px 0 7px; font-family:var(--display); font-size:2.1rem; font-weight:400; }
.menu-card p { min-height:45px; margin:0; color:rgba(255,255,255,.72); line-height:1.5; font-size:.9rem; }
.menu-card:first-child h3 { font-size:clamp(2.8rem,5vw,4.5rem); }
.menu-card:first-child p { max-width:520px; font-size:1rem; }
.menu-card:not(:first-child) .menu-card-copy { display:grid; grid-template-columns:1fr minmax(145px,1.2fr); align-items:end; gap:18px; padding:22px; }
.menu-card:not(:first-child) h3 { margin:0; font-size:1.85rem; }
.menu-card:not(:first-child) p { min-height:0; }
.menu-card-tag { position:absolute; top:16px; left:16px; z-index:3; padding:7px 10px; border-radius:999px; color:var(--ink); background:var(--yellow); box-shadow:0 5px 18px rgba(0,0,0,.16); font-size:.72rem; font-weight:800; text-transform:uppercase; }
.center-actions { display:flex; justify-content:center; margin-top:30px; }

.promo-section { display:grid; grid-template-columns:1fr 1.35fr; min-height:580px; }
.promo-card { display:flex; flex-direction:column; justify-content:flex-end; padding:clamp(32px,5vw,72px); }
.promo-red { color:white; background:var(--red); }
.promo-red p { max-width:460px; color:rgba(255,255,255,.76); line-height:1.65; }
.promo-photo { position:relative; overflow:hidden; color:white; background:
  linear-gradient(rgba(20,15,12,.18),rgba(20,15,12,.78)),
  url("images/food-otis.jpg") center / cover no-repeat;
}
.promo-photo::before { content:""; position:absolute; inset:0; background:linear-gradient(115deg,rgba(23,19,18,.12),transparent 52%,rgba(190,40,33,.2)); }
.promo-photo > div { position:relative; z-index:2; max-width:520px; }

.location-card { display:grid; grid-template-columns:1.5fr .75fr; overflow:hidden; border:1px solid var(--line); border-radius:25px; background:white; box-shadow:var(--shadow); }
.location-main { padding:clamp(27px,5vw,52px); }
.location-heading { display:flex; justify-content:space-between; gap:20px; padding-bottom:24px; border-bottom:1px solid var(--line); }
.location-heading h3 { margin:0; font-family:var(--display); font-size:clamp(3rem,6vw,5.2rem); font-weight:400; line-height:.9; }
.status-badge { height:max-content; padding:8px 11px; border-radius:999px; color:var(--green); background:#e2efe5; font-size:.78rem; font-weight:800; }
.location-details { display:grid; grid-template-columns:1.2fr 1fr .8fr; gap:20px; padding:28px 0; }
.location-details span, .location-details strong, .location-details a { display:block; }
.location-details span { margin-bottom:7px; color:var(--muted); font-size:.75rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.location-details strong, .location-details a { line-height:1.45; text-decoration:none; }
.location-actions { display:flex; flex-wrap:wrap; gap:10px; }
.location-finder { padding:clamp(28px,4vw,45px); color:white; background:
  linear-gradient(rgba(23,19,18,.8),rgba(23,19,18,.94)),
  url("images/benton-location.webp") center / cover no-repeat; }
.location-finder h3 { margin:0 0 20px; font-family:var(--display); font-size:2.8rem; font-weight:400; line-height:.94; }
.location-finder .button { width:100%; }
.manual-button { width:100%; margin-top:9px; padding:12px; border:0; color:white; background:transparent; font-weight:800; cursor:pointer; }
.location-finder small { display:block; margin-top:15px; color:rgba(255,255,255,.48); text-align:center; }

.catering-section { display:grid; grid-template-columns:1fr 1fr; align-items:center; min-height:600px; overflow:hidden; border-radius:28px; background:var(--cream); }
.catering-copy { padding:clamp(36px,6vw,78px); }
.catering-copy p { max-width:590px; color:var(--muted); line-height:1.7; }
.check-list { display:grid; gap:10px; margin:25px 0 28px; font-weight:700; }
.catering-art { position:relative; min-height:100%; overflow:hidden; background:
  linear-gradient(180deg,rgba(23,19,18,.04),rgba(23,19,18,.4)),
  url("images/food-bbq-nachos.jpg") center / cover no-repeat; }
.catering-stamp { position:absolute; left:28px; bottom:28px; display:grid; gap:2px; padding:15px 18px; border:1px solid rgba(255,255,255,.22); border-radius:15px; color:white; background:rgba(23,19,18,.82); box-shadow:0 18px 50px rgba(0,0,0,.2); backdrop-filter:blur(8px); }
.catering-stamp span { color:rgba(255,255,255,.66); font-size:.76rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.catering-stamp strong { font-family:var(--display); font-size:2.2rem; font-weight:400; line-height:.95; text-transform:uppercase; }

.story-section { width:100%; margin:120px 0 0; padding:clamp(70px,8vw,115px) 18px; overflow:hidden; color:white; background:#294f3f; }
.story-inner { width:min(1180px,100%); margin:0 auto; }
.story-intro { display:grid; grid-template-columns:1.15fr .65fr; align-items:end; gap:55px; margin-bottom:40px; }
.story-intro h2 { margin:0; max-width:780px; font-family:var(--display); font-size:clamp(4rem,8vw,7.8rem); font-weight:400; line-height:.84; letter-spacing:-.02em; }
.story-intro > p { margin:0 0 7px; color:rgba(255,255,255,.7); font-size:1.05rem; line-height:1.75; }
.story-board { display:grid; grid-template-columns:1.12fr .88fr; gap:16px; }
.story-hero-card { position:relative; min-height:660px; margin:0; overflow:hidden; border-radius:25px; background:var(--ink); }
.story-hero-card img { width:100%; height:100%; display:block; object-fit:cover; }
.story-hero-card::after { content:""; position:absolute; inset:45% 0 0; background:linear-gradient(transparent,rgba(18,12,10,.88)); }
.story-hero-card figcaption { position:absolute; z-index:2; left:28px; right:28px; bottom:25px; display:grid; gap:4px; }
.story-hero-card figcaption span { color:var(--yellow); font-size:.72rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.story-hero-card figcaption strong { font-family:var(--display); font-size:clamp(2.5rem,5vw,4.2rem); font-weight:400; line-height:.9; text-transform:uppercase; }
.story-chapters { display:grid; grid-template-rows:1.15fr .9fr 1.25fr; gap:16px; }
.story-chapter { position:relative; min-height:0; padding:27px; overflow:hidden; border-radius:22px; }
.story-chapter h3 { margin:8px 0 7px; font-family:var(--display); font-size:clamp(2rem,3.4vw,3rem); font-weight:400; line-height:.92; }
.story-chapter p { margin:0; line-height:1.55; }
.chapter-number { font-size:.68rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.story-founders-card { display:grid; grid-template-columns:150px 1fr; align-items:stretch; gap:24px; padding:0; color:white; background:var(--ink); }
.story-founders-card img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 24%; }
.story-founders-card div { align-self:center; padding:22px 22px 22px 0; }
.story-founders-card p { color:rgba(255,255,255,.65); }
.story-founders-card .chapter-number { color:var(--yellow); }
.story-delta-card { color:var(--ink); background:var(--yellow); }
.story-delta-card p { color:rgba(23,19,18,.68); }
.story-benji-card { position:relative; min-height:0; margin:0; overflow:hidden; border-radius:22px; background:var(--ink); }
.story-benji-card img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 56%; }
.story-benji-card::after { content:""; position:absolute; inset:28% 0 0; background:linear-gradient(transparent,rgba(18,12,10,.92)); }
.story-benji-card figcaption { position:absolute; z-index:2; left:27px; right:27px; bottom:22px; color:white; }
.story-benji-card .chapter-number { display:block; margin-bottom:5px; color:var(--yellow); }
.story-benji-card strong { display:block; font-family:var(--display); font-size:2.7rem; font-weight:400; line-height:.92; text-transform:uppercase; }
.story-benji-card p { margin:7px 0 0; color:rgba(255,255,255,.72); font-size:.86rem; line-height:1.5; }
.story-tail { display:flex; align-items:center; justify-content:space-between; gap:30px; margin-top:18px; }
.story-mark { display:flex; align-items:center; gap:16px; }
.story-mark img { width:95px; height:72px; padding:8px; object-fit:contain; border-radius:12px; background:var(--cream); }
.story-mark strong, .story-mark span { display:block; }
.story-mark strong { font-family:var(--display); font-size:1.8rem; font-weight:400; letter-spacing:.02em; text-transform:uppercase; }
.story-mark span { color:rgba(255,255,255,.58); font-size:.82rem; }
.text-link { display:inline-block; margin-top:16px; font-weight:800; text-decoration:none; }
.light-link { color:white; }

.gift-section { display:flex; align-items:center; justify-content:space-between; gap:40px; padding:55px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.gift-section > div { max-width:760px; }
.gift-section p { color:var(--muted); line-height:1.65; }

footer { padding:65px max(18px,calc((100vw - 1180px)/2)) 100px; color:white; background:var(--ink); }
.footer-top { display:flex; justify-content:space-between; gap:30px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-links { display:flex; flex-wrap:wrap; gap:28px; align-items:center; }
.footer-links a { color:rgba(255,255,255,.72); text-decoration:none; }
.footer-bottom { display:flex; justify-content:space-between; gap:25px; padding-top:23px; color:rgba(255,255,255,.43); font-size:.78rem; }

dialog { width:min(650px,calc(100% - 24px)); max-height:86vh; padding:0; border:0; border-radius:24px; background:var(--paper); box-shadow:0 30px 100px rgba(0,0,0,.4); }
dialog::backdrop { background:rgba(10,8,8,.73); backdrop-filter:blur(5px); }
.dialog-card { padding:clamp(22px,5vw,38px); }
.dialog-heading { display:flex; align-items:start; justify-content:space-between; gap:15px; }
.dialog-heading h2 { margin:0; font-family:var(--display); font-size:3.4rem; font-weight:400; }
.close-button { width:42px;height:42px;border:0;border-radius:50%;background:#eee3d1;font-size:1.7rem;cursor:pointer; }
.dialog-card label { display:block; margin:24px 0 8px; font-weight:800; }
.dialog-card input { width:100%; min-height:52px; padding:0 16px; border:1px solid var(--line); border-radius:13px; background:white; }
.location-list { display:grid; gap:8px; max-height:46vh; margin-top:15px; overflow:auto; }
.location-option { display:flex; justify-content:space-between; gap:16px; width:100%; padding:15px; border:1px solid var(--line); border-radius:13px; text-align:left; background:white; cursor:pointer; }
.location-option span span { display:block; margin-top:4px; color:var(--muted); font-size:.82rem; }
.toast { position:fixed; z-index:60; left:50%; bottom:24px; max-width:calc(100% - 30px); padding:12px 16px; border-radius:12px; color:white; background:var(--ink); box-shadow:var(--shadow); opacity:0; pointer-events:none; transform:translate(-50%,20px); transition:.2s; }
.toast.show { opacity:1; transform:translate(-50%,0); }

.mobile-order-bar { display:none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns:1fr auto; }
  .desktop-nav { display:none; }
  .header-actions .location-pill { display:none; }
  .quick-strip { grid-template-columns:1fr 1fr; }
  .quick-strip a:nth-child(2) { border-right:0; }
  .quick-strip a:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .menu-grid { grid-template-columns:1fr 1fr; grid-template-rows:none; }
  .menu-card, .menu-card:first-child { min-height:390px; grid-row:auto; }
  .menu-card:not(:first-child) .menu-card-copy { display:block; padding:26px; }
  .menu-card:not(:first-child) h3 { margin:42px 0 7px; font-size:2.1rem; }
  .location-card { grid-template-columns:1fr; }
  .catering-section { grid-template-columns:1fr; }
  .catering-art { min-height:500px; }
  .story-board { grid-template-columns:1fr; }
  .story-hero-card { min-height:520px; }
}
@media (max-width: 720px) {
  body { padding-bottom:76px; }
  .site-header { min-height:68px; padding:9px 16px; }
  .brand-badge { width:40px;height:40px;font-size:1.25rem; }
  .brand-copy strong { font-size:1.05rem; }
  .brand-copy small { display:none; }
  .header-actions .button { display:none; }
  .hero { min-height:700px; }
  .hero::before { width:100%; clip-path:none; opacity:.72; background-position:62% center; }
  .hero::after { background:linear-gradient(180deg,rgba(23,19,18,.62),rgba(23,19,18,.94) 80%); }
  .hero-content { padding:65px 0 125px; }
  .hero h1 { font-size:clamp(4.8rem,25vw,7.2rem); }
  .hero-copy { font-size:1rem; }
  .hero-buttons .button { flex:1 1 100%; }
  .hero-signature { gap:8px 0; }
  .hero-signature span { padding:0 9px; }
  .hero-location { width:100%; justify-content:space-between; }
  .quick-strip { margin-top:-54px; }
  .quick-strip a { padding:19px 16px; }
  .section { margin:80px auto; }
  .section-intro.split { grid-template-columns:1fr; gap:17px; }
  .brand-photo-grid { grid-template-columns:1fr; grid-template-rows:340px 235px 235px; }
  .brand-photo-feature { grid-row:auto; }
  .location-photo-heading { display:block; }
  .location-photo-heading h3 { margin-top:5px; }
  .location-photo-rail { grid-auto-columns:72vw; }
  .section h2, .promo-section h2, .story-section h2 { font-size:3.7rem; }
  .menu-grid { grid-template-columns:1fr; }
  .menu-card { min-height:350px; }
  .promo-section { grid-template-columns:1fr; }
  .promo-card { min-height:480px; }
  .location-heading { display:block; }
  .status-badge { display:inline-block; margin-top:13px; }
  .location-details { grid-template-columns:1fr; }
  .location-actions .button { width:100%; }
  .catering-art { min-height:390px; }
  .story-section { margin-top:85px; padding-top:75px; padding-bottom:75px; }
  .story-intro { grid-template-columns:1fr; gap:20px; }
  .story-intro h2 { font-size:4.6rem; }
  .story-hero-card { min-height:430px; }
  .story-founders-card { grid-template-columns:1fr; }
  .story-founders-card img { height:250px; object-position:center 18%; }
  .story-founders-card div { padding:24px; }
  .story-chapter { min-height:245px; }
  .story-benji-card { min-height:360px; }
  .story-tail { display:block; }
  .story-tail .text-link { margin-top:28px; }
  .gift-section { display:block; }
  .gift-section .button { margin-top:20px; width:100%; }
  .footer-top, .footer-bottom { display:block; }
  .footer-links { margin-top:30px; display:grid; gap:16px; }
  .footer-bottom p + p { margin-top:8px; }
  .mobile-order-bar {
    position:fixed; z-index:50; left:0; right:0; bottom:0;
    display:grid; grid-template-columns:1fr auto; gap:12px;
    padding:10px max(12px,env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(12px,env(safe-area-inset-left));
    color:white; background:rgba(23,19,18,.97); backdrop-filter:blur(12px);
  }
  .mobile-order-bar button { min-width:0; padding:0; border:0; text-align:left; color:white; background:transparent; }
  .mobile-order-bar small, .mobile-order-bar strong { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .mobile-order-bar small { color:rgba(255,255,255,.5); }
  .mobile-order-bar a { display:grid; place-items:center; padding:12px 18px; border-radius:999px; color:white; background:var(--red); text-decoration:none; font-weight:800; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; transition:none !important; }
}
