:root {
  --green-950: #0b2b20;
  --green-900: #123d2d;
  --green-800: #18523b;
  --green-700: #22684a;
  --green-200: #cfe6d6;
  --cream: #f7f0e1;
  --cream-2: #fffaf1;
  --orange: #ed7b2f;
  --orange-dark: #c95b19;
  --yellow: #f5c74e;
  --red: #bb3f2d;
  --ink: #172019;
  --muted: #5f6a62;
  --white: #fff;
  --line: rgba(18, 61, 45, .15);
  --shadow: 0 26px 70px rgba(26, 44, 33, .14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

/* Visible keyboard focus everywhere. The original stylesheet had none, which
   made the site unusable by keyboard and failed WCAG 2.4.7. */
:focus-visible { outline: 3px solid var(--orange-dark); outline-offset: 3px; border-radius: 4px; }
.story :focus-visible, .quick-bar :focus-visible, .site-footer :focus-visible, .order-callout :focus-visible {
  outline-color: var(--yellow);
}

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 110px 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-950);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.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; }

.announcement { background: var(--green-950); color: var(--white); font-size: .84rem; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement p { margin: 0; display: flex; align-items: center; gap: 16px; }
.announcement p span { color: rgba(255,255,255,.68); }
.announcement a { font-weight: 800; letter-spacing: .02em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,241,.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 30px rgba(11,43,32,.08); }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; }
.brand img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 22px rgba(11,43,32,.16); }
.brand__copy { display: grid; line-height: 1; }
.brand__copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.42rem; color: var(--green-950); }
.brand__copy small { margin-top: 6px; color: var(--orange-dark); font-size: .68rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .93rem; font-weight: 800; }
.site-nav > a:not(.btn) { position: relative; padding: 12px 0; }
.site-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--orange); transition: right .2s ease; }
.site-nav > a:not(.btn):hover::after { right: 0; }
.nav-toggle { display: none; border: 0; padding: 10px; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--green-950); transition: transform .2s ease, opacity .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .015em;
  box-shadow: 0 10px 24px rgba(201,91,25,.18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 15px 32px rgba(201,91,25,.25); }
.btn--small { min-height: 44px; padding-inline: 20px; }
.btn--outline { color: var(--green-950); background: transparent; border-color: rgba(18,61,45,.28); box-shadow: none; }
.btn--outline:hover { color: var(--white); background: var(--green-900); border-color: var(--green-900); }
.btn--dark { background: var(--green-950); border-color: var(--green-950); box-shadow: 0 10px 24px rgba(11,43,32,.18); }
.btn--dark:hover { background: var(--green-700); border-color: var(--green-700); }
.btn--outline-dark { background: transparent; color: var(--green-950); border-color: var(--green-950); box-shadow: none; }
.btn--outline-dark:hover { background: var(--green-950); color: var(--white); }
.btn--light { background: var(--cream-2); border-color: var(--cream-2); color: var(--green-950); box-shadow: none; }
.btn--light:hover { background: var(--yellow); border-color: var(--yellow); }

.eyebrow { margin: 0 0 15px; color: var(--orange-dark); font-size: .76rem; font-weight: 950; letter-spacing: .2em; text-transform: uppercase; }

.hero { position: relative; overflow: hidden; padding: 72px 0 100px; background: var(--cream); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 70px; }
.hero__copy h1 { margin: 0; max-width: 700px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.3rem, 6.8vw, 6.35rem); line-height: .92; letter-spacing: -.055em; color: var(--green-950); }
.hero__copy h1 em { color: var(--orange-dark); font-weight: 500; }
.hero__lead { max-width: 610px; margin: 28px 0 0; color: #49564c; font-size: clamp(1.03rem, 1.6vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 44px; margin-top: 46px; padding-top: 26px; border-top: 1px solid rgba(18,61,45,.18); }
.hero__meta div { display: grid; gap: 2px; }
.hero__meta span { color: var(--muted); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero__meta strong { color: var(--green-950); font-size: 1.05rem; }

.hero__visual { position: relative; min-height: 620px; }
.hero__photo { position: absolute; margin: 0; overflow: hidden; background: #ddd; box-shadow: var(--shadow); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main { inset: 0 80px 65px 0; border-radius: 260px 260px 30px 30px; }
.hero__photo--secondary { width: 270px; height: 300px; right: 0; bottom: 0; border: 10px solid var(--cream); border-radius: 30px; transform: rotate(3deg); }
.hero__stamp { position: absolute; top: 32px; right: -4px; width: 142px; height: 142px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--yellow); color: var(--green-950); box-shadow: 0 16px 35px rgba(11,43,32,.2); transform: rotate(8deg); }
.hero__stamp::before { content: ""; position: absolute; inset: 8px; border: 2px dashed rgba(11,43,32,.42); border-radius: 50%; }
.hero__stamp span, .hero__stamp strong { position: relative; }
.hero__stamp span { font-size: .62rem; font-weight: 950; letter-spacing: .17em; text-transform: uppercase; }
.hero__stamp strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; line-height: 1; }
.hero__pattern { position: absolute; right: -70px; bottom: -80px; width: 380px; height: 380px; opacity: .18; background-image: radial-gradient(var(--green-800) 2px, transparent 2px); background-size: 22px 22px; transform: rotate(14deg); }

.quick-bar { background: var(--green-950); color: var(--white); }
.quick-bar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-bar__grid > div { min-height: 122px; display: flex; align-items: center; gap: 17px; padding: 28px 36px; border-right: 1px solid rgba(255,255,255,.12); }
.quick-bar__grid > div:last-child { border-right: 0; }
.quick-bar__icon { display: grid; place-items: center; flex: 0 0 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--yellow); font-family: Georgia, serif; font-weight: 800; }
.quick-bar p { display: grid; margin: 0; }
.quick-bar strong { font-size: 1rem; }
.quick-bar small { margin-top: 2px; color: rgba(255,255,255,.64); }

.favorites { background: var(--cream-2); }
.section-head { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.section-head h2, .story__copy h2, .visit__details h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5vw, 4.65rem); line-height: .98; letter-spacing: -.04em; color: var(--green-950); }
.section-head > p { margin: 0 0 5px; color: var(--muted); font-size: 1.06rem; }

.dish-grid { display: grid; grid-template-columns: 1.04fr .96fr .96fr; grid-template-rows: 290px 290px; gap: 20px; }
.dish-card { position: relative; min-height: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--green-900); box-shadow: 0 16px 38px rgba(26,44,33,.08); }
.dish-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.dish-card:hover img { transform: scale(1.045); }
.dish-card--tall { grid-row: 1 / 3; }
.dish-card--wide { grid-column: 2 / 4; }
.dish-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,20,14,.88) 100%); }
.dish-card__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px; color: var(--white); }
.dish-card__content span { color: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.dish-card__content h3 { margin: 7px 0 5px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.75rem, 3vw, 2.6rem); line-height: 1; }
.dish-card__content p { margin: 0; max-width: 440px; color: rgba(255,255,255,.77); font-size: .94rem; }
.dish-card--light { background: var(--yellow); }
.dish-card--light .dish-card__content { position: relative; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; color: var(--green-950); }
.dish-card--light .dish-card__content span { color: var(--red); }
.dish-card--light .dish-card__content p { color: rgba(11,43,32,.72); }
.dish-card--light .dish-card__content a { margin-top: 15px; font-weight: 950; }
.dish-card__graphic { position: absolute; right: -10px; top: -28px; font-size: 8.3rem; transform: rotate(10deg); opacity: .62; }
.section-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 34px; padding: 0 4px; }
.section-cta p { margin: 0; color: var(--muted); }

/* ---------- Menu ---------- */
.menu { background: var(--cream); }
.menu__section { margin-top: 54px; }
.menu__section:first-of-type { margin-top: 0; }
.menu__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -.02em;
}
.menu__heading span {
  color: var(--orange-dark);
  font-family: Inter, sans-serif;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(26, 44, 33, .07);
}
.menu-item img {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  /* Uber Eats watermarks sit in the lower-right of the source photos, so the
     thumbnail crop is biased toward the top-left of the frame. */
  object-position: 38% 30%;
  background: var(--green-200);
}
.menu-item h4 {
  margin: 0 0 4px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.15;
}
.menu-item p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.45; }

/* ---------- Catering ---------- */
.catering { background: var(--green-950); color: var(--white); }
.catering__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.catering__copy h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.catering__copy .eyebrow { color: var(--yellow); }
.catering__copy p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.74); font-size: 1.05rem; }
.catering__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.catering__phone {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.catering-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
}
.catering-card h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}
.catering-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.catering-card li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
}
.catering-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}
.catering-card__note {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream-2); }
.faq__inner { max-width: 860px; }
.faq .section-head { grid-template-columns: 1fr; margin-bottom: 34px; }
.faq__list { display: grid; gap: 12px; }
.faq details {
  padding: 4px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(18, 61, 45, .3); box-shadow: 0 10px 26px rgba(26, 44, 33, .07); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  color: var(--green-950);
  font-size: 1.04rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:focus-visible { outline: 2px solid var(--orange-dark); outline-offset: 4px; border-radius: 6px; }
.faq details p { margin: 0 0 22px; max-width: 68ch; color: var(--muted); }
.faq details p a { color: var(--orange-dark); font-weight: 800; text-decoration: underline; }

/* ---------- 404 ---------- */
.error-body { background: var(--cream); }
.error-page { display: grid; place-items: center; min-height: 100vh; padding: 60px 0; text-align: center; }
.error-page__inner { max-width: 620px; }
.error-page img { margin: 0 auto 26px; width: 96px; height: 96px; border-radius: 50%; }
.error-page h1 {
  margin: 0 0 18px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.error-page > .shell > p { color: var(--muted); font-size: 1.05rem; }
.error-page__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 32px 0 36px; }
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-weight: 800;
  font-size: .94rem;
}
.error-page__links a { color: var(--green-900); text-decoration: underline; text-underline-offset: 3px; }
.error-page__address { margin-top: 28px; color: var(--muted); font-size: .82rem; }

.story { background: var(--green-900); color: var(--white); }
.story__grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 92px; }
.story__image { position: relative; min-height: 590px; }
.story__image > img { width: 100%; height: 590px; object-fit: cover; border-radius: 260px 260px 28px 28px; }
.story__image-card { position: absolute; right: -30px; bottom: 40px; width: 215px; padding: 24px; border-radius: 20px; background: var(--yellow); color: var(--green-950); box-shadow: var(--shadow); transform: rotate(-3deg); }
.story__image-card strong, .story__image-card span { display: block; font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.05; }
.story__image-card span { color: var(--red); font-style: italic; }
.story__copy .eyebrow { color: var(--yellow); }
.story__copy h2 { color: var(--white); }
.story__copy > p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 1.06rem; }
.story__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 34px; }
.text-link { font-weight: 900; color: var(--white); }
.text-link span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.visit { background: var(--cream); }
.visit__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: 58px; }
.visit__details { padding: 42px 0; }
.visit__details address { display: grid; gap: 3px; margin-top: 30px; color: var(--muted); font-style: normal; font-size: 1.02rem; }
.visit__details address strong { margin-bottom: 2px; color: var(--green-950); font-size: 1.12rem; }
.visit__phone { display: inline-block; margin-top: 18px; color: var(--orange-dark); font-family: Georgia, serif; font-size: 1.6rem; font-weight: 800; }
.visit__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hours-card { padding: 42px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.hours-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.hours-card__head h3 { margin: 0; color: var(--green-950); font-family: Georgia, serif; font-size: 2rem; }
.open-status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: #eaf4ec; color: var(--green-700); font-size: .75rem; font-weight: 900; }
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.open-status.is-closed { background: #f7e9e5; color: var(--red); }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 30px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours-card dl div:last-child { border-bottom: 0; }
.hours-card dt { color: var(--muted); }
.hours-card dd { margin: 0; color: var(--green-950); font-weight: 850; }
.hours-card .is-closed-day dt, .hours-card .is-closed-day dd { color: var(--red); }
.hours-card .is-closed-day dd { font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.hours-card__note { margin: 18px 0 0; color: var(--muted); font-size: .8rem; }

.order-callout { padding: 72px 0; background: var(--orange-dark); color: var(--white); }
.order-callout__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.order-callout .eyebrow { color: var(--yellow); }
.order-callout h2 { max-width: 820px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.3rem, 4.5vw, 4.2rem); line-height: 1; letter-spacing: -.035em; }

.site-footer { padding: 55px 0 28px; background: var(--green-950); color: var(--white); }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand--footer .brand__copy strong { color: var(--white); }
.brand--footer .brand__copy small { color: rgba(255,255,255,.56); }
.footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 26px; color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 800; }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; color: rgba(255,255,255,.5); font-size: .78rem; }
.footer__bottom p { margin: 0; }
.mockup-note { text-transform: uppercase; letter-spacing: .12em; }
.mobile-order { display: none; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 55px; }
  .hero__copy { max-width: 760px; }
  .hero__visual { min-height: 600px; }
  .hero__photo--main { right: 110px; }
  .quick-bar__grid > div { padding-inline: 22px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .dish-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 290px 330px; }
  .dish-card--tall { grid-row: 1 / 3; }
  .dish-card--wide { grid-column: 1 / 3; }
  .catering__grid { grid-template-columns: 1fr; gap: 44px; }
  .story__grid { grid-template-columns: 1fr; gap: 60px; }
  .story__image { max-width: 720px; }
  .visit__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .announcement { display: none; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 78px 0; }
  .nav { min-height: 78px; }
  .brand img { width: 56px; height: 56px; }
  .brand__copy strong { font-size: 1.25rem; }
  .nav-toggle { display: block; position: relative; z-index: 103; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 90px 30px;
    background: var(--cream-2);
    font-family: Georgia, serif;
    font-size: 1.8rem;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav .btn { min-width: 220px; font-family: Inter, sans-serif; font-size: .9rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 52px 0 78px; }
  .hero__copy h1 { font-size: clamp(3.35rem, 16vw, 5.15rem); }
  .hero__lead { margin-top: 22px; }
  .hero__actions .btn { flex: 1 1 220px; }
  .hero__meta { gap: 28px; }
  .hero__visual { min-height: 460px; }
  .hero__photo--main { inset: 0 42px 38px 0; border-radius: 170px 170px 24px 24px; }
  .hero__photo--secondary { width: 185px; height: 205px; border-width: 7px; }
  .hero__stamp { top: 18px; width: 108px; height: 108px; }
  .hero__stamp strong { font-size: 1.22rem; }
  .hero__stamp span { font-size: .5rem; }

  .quick-bar__grid { grid-template-columns: 1fr; padding: 16px 0; }
  .quick-bar__grid > div { min-height: auto; padding: 20px 8px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .quick-bar__grid > div:last-child { border-bottom: 0; }
  .dish-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 360px); }
  .dish-card--tall, .dish-card--wide { grid-row: auto; grid-column: auto; }
  .section-cta { align-items: stretch; flex-direction: column; }
  .section-cta .btn { width: 100%; }
  .story__image { min-height: 470px; }
  .story__image > img { height: 470px; border-radius: 170px 170px 24px 24px; }
  .story__image-card { right: -5px; bottom: 24px; width: 175px; }
  .story__image-card strong, .story__image-card span { font-size: 1.27rem; }
  .catering-card { padding: 26px 22px; border-radius: 24px; }
  .catering__actions { gap: 16px; }
  .catering__actions .btn { width: 100%; }
  .menu__section { margin-top: 40px; }
  .menu__list { grid-template-columns: 1fr; gap: 14px; }
  .menu-item { gap: 14px; padding: 12px; }
  .menu-item img { flex-basis: 84px; width: 84px; height: 84px; }
  .faq details { padding-inline: 18px; }
  .faq summary { font-size: .98rem; padding: 17px 0; }
  .hours-card { padding: 28px 22px; border-radius: 24px; }
  .hours-card__head { flex-direction: column; }
  .hours-card dl div { gap: 16px; font-size: .9rem; }
  .order-callout__inner { align-items: stretch; flex-direction: column; }
  .order-callout .btn { width: 100%; }
  .footer__top, .footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer__links { justify-content: flex-start; }
  .mobile-order { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: block; }
  .mobile-order a { display: flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 20px; border-radius: 999px; background: var(--orange); color: var(--white); font-weight: 950; box-shadow: 0 15px 40px rgba(11,43,32,.34); }
  .site-footer { padding-bottom: 95px; }
}

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