:root {
  --forest: #07130d;
  --forest-2: #0d2417;
  --green: #10aa57;
  --lime: #b6e450;
  --yellow: #ffd22f;
  --red: #ff4a3d;
  --cream: #f5f2e9;
  --paper: #fffdf8;
  --ink: #132018;
  --muted: #68736b;
  --line: rgba(19, 32, 24, 0.14);
  --radius: 28px;
  --shadow: 0 30px 80px rgba(5, 21, 12, 0.15);
  font-family: "DM Sans", sans-serif;
}

/* Lunch Box brand overrides. The original layout system remains intact while
   the duplicate uses the supplied logo's black, white and red palette. */
:root {
  --forest: #090909;
  --forest-2: #151515;
  --green: #ed1c24;
  --lime: #ff4b52;
  --yellow: #ffffff;
  --red: #ed1c24;
  --cream: #f5f3ef;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #6f6a67;
  --line: rgba(23, 23, 23, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  font-family: "Inter", sans-serif;
}

.site-header { background: rgba(8, 8, 8, 0.96); }
.brand { height: 74px; }
.brand img { background: #fff; border-radius: 8px; padding: 3px 8px; }
.main-nav > a:hover,
.main-nav > a.active { border-color: #ed1c24; }
.nav-cta,
.nav-cta:hover { background: #ed1c24; border-color: #ed1c24 !important; }
.home-hero .hero-media { object-position: center 48%; filter: saturate(0.93) contrast(1.04); }
.home-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.26) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}
.button-primary { color: #fff; background: #ed1c24; }
.button-primary:hover { background: #bd1017; }
.eyebrow,
.eyebrow.dark,
.text-link,
.feature-list article > span { color: #ed1c24; }
.private-events,
.status-promo { background: #ed1c24; }
.private-events .eyebrow,
.status-promo .eyebrow { color: #fff; }
.site-footer { background: #090909; }
.footer-brand img { background: #fff; border-radius: 10px; padding: 5px; }
.menu-card-badge,
.custom-badge { background: #ed1c24 !important; color: #fff !important; }
.category-nav button.active { background: #ed1c24; border-color: #ed1c24; }
.cart-item-placeholder { background: #ed1c24; color: #fff; }

@media (max-width: 760px) {
  .brand { width: 155px; height: 58px; }
  .home-hero .hero-media { object-position: 53% center; }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font:
    15px/1.65 "DM Sans",
    sans-serif;
}
body.cart-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 96px;
  padding: 12px 4vw;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  background: rgba(7, 19, 13, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(140%);
}
.brand {
  width: 210px;
  height: 70px;
  display: flex;
  align-items: center;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 700;
}
.main-nav > a:not(.nav-cta) {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}
.main-nav > a:hover,
.main-nav > a.active {
  color: #fff;
  border-color: var(--yellow);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}
.nav-cta:hover {
  background: var(--green);
  border-color: var(--green) !important;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media {
  object-fit: cover;
  object-position: center 59%;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 15, 8, 0.88),
      rgba(3, 15, 8, 0.28) 65%,
      rgba(3, 15, 8, 0.12)
    ),
    linear-gradient(0deg, rgba(3, 15, 8, 0.82), transparent 48%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: clamp(75px, 10vw, 140px) 6vw;
  opacity: 0;
  transform: translateY(25px);
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
.hero-copy h1,
.page-hero h1,
.menu-hero h1,
.contact-intro h1 {
  margin: 8px 0 28px;
  font:
    600 clamp(58px, 8.2vw, 120px)/0.86 "Playfair Display",
    serif;
  letter-spacing: -0.045em;
}
.hero-copy h1 em,
.page-hero h1 em,
.menu-hero h1 em,
.contact-intro h1 em,
h2 em {
  color: var(--yellow);
  font-weight: 600;
}
.hero-copy > p:not(.eyebrow),
.page-hero > div > p:not(.eyebrow),
.menu-hero > div > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 20px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 10px;
  font-weight: 700;
}
.eyebrow.dark {
  color: #297f4d;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #07130d;
  background: linear-gradient(135deg, var(--yellow), #ffae26);
  box-shadow: 0 18px 45px rgba(255, 199, 37, 0.22);
}
.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
.button-light {
  color: var(--forest);
  background: #fff;
}
.full {
  width: 100%;
}
.hero-note {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 35px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 17, 10, 0.48);
  backdrop-filter: blur(14px);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.pulse,
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(182, 228, 80, 0.15);
}
.split-section {
  padding: clamp(85px, 11vw, 155px) 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: var(--paper);
}
.split-section h2,
.photo-copy h2,
.hours-section h2,
.event-rental h2,
.booking-banner h2,
.contact-rental h2,
.section-heading h2 {
  margin: 0;
  font:
    600 clamp(45px, 5.4vw, 78px)/0.98 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
}
.split-section h2 em,
.photo-copy h2 em,
.hours-section h2 em,
.contact-rental h2 em {
  color: var(--green);
}
.split-section .lead {
  color: var(--ink);
  font:
    600 clamp(20px, 2vw, 28px)/1.4 "Playfair Display",
    serif;
}
.split-section p:not(.lead) {
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  gap: 24px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--green);
  color: #1e7142;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 700;
}
.photo-story {
  padding: clamp(75px, 9vw, 130px) 5vw;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.72fr;
  gap: clamp(25px, 4vw, 65px);
  align-items: center;
  background: #e8ede5;
}
.photo-story figure {
  margin: 0;
}
.photo-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-large img {
  aspect-ratio: 0.82;
}
.photo-tall img {
  aspect-ratio: 0.7;
}
.photo-story figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.feature-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.feature-list article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list article > span {
  color: var(--green);
  font-size: 10px;
}
.feature-list h3 {
  margin: 0 0 4px;
  font-size: 15px;
}
.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.event-rental {
  position: relative;
  min-height: 690px;
  padding: 8vw 7vw;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 19, 10, 0.88), rgba(4, 19, 10, 0.38)),
    url("assets/images/lunch-box/5272.webp") center/cover;
}
.event-rental > div {
  max-width: 780px;
}
.event-rental p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}
.event-rental .button {
  margin-top: 20px;
}
.hours-section {
  padding: clamp(80px, 10vw, 145px) 7vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  background: var(--paper);
}
.hours-section > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}
.hours-section address {
  margin: 18px 0;
  color: var(--muted);
  font-style: normal;
}
.hours-section address a:hover {
  color: var(--green);
}
.hours-list {
  border-top: 1px solid var(--line);
}
.hours-list div {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.hours-list span {
  color: var(--muted);
}
.hours-list strong {
  font-weight: 600;
}
.site-footer {
  padding: 65px 6vw 28px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 55px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--forest);
}
.site-footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-brand img {
  width: 230px;
}
.footer-brand > p {
  margin: 12px 0;
}
.footer-label {
  margin: 0 0 12px !important;
  color: var(--lime) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 9px;
  font-weight: 700;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  grid-column: 1/-1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.page-hero,
.menu-hero {
  min-height: 580px;
  padding: 100px 7vw;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.page-hero > div,
.menu-hero > div {
  max-width: 920px;
}
.events-hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 11, 0.9), rgba(5, 20, 11, 0.25)),
    url("assets/images/lunch-box/4884.webp") center/cover;
}
.events-section,
.menu-section {
  padding: clamp(75px, 9vw, 130px) 6vw;
  background: var(--paper);
}
.section-heading {
  max-width: 850px;
  margin-bottom: 50px;
}
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(5, 21, 12, 0.08);
}
.event-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}
.event-card-copy {
  padding: 25px;
}
.event-date {
  color: #28804c;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 10px;
  font-weight: 700;
}
.event-card h3 {
  margin: 8px 0;
  font:
    600 28px/1.08 "Playfair Display",
    serif;
}
.event-time {
  font-size: 12px;
  font-weight: 700;
}
.event-description {
  color: var(--muted);
}
.loading-card,
.empty-state {
  grid-column: 1/-1;
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}
.booking-banner {
  padding: clamp(70px, 9vw, 125px) 7vw;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  color: #fff;
  background: linear-gradient(135deg, #0f7d42, #074223);
}
.booking-banner p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.74);
}
.menu-hero {
  background:
    radial-gradient(
      circle at 76% 40%,
      rgba(255, 210, 47, 0.18),
      transparent 25%
    ),
    linear-gradient(120deg, #07130d, #153d25);
}
.cart-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 700;
}
.cart-button strong {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--yellow);
}
.order-board-section {
  padding: 55px 6vw;
  background: #e8ede5;
}
.order-board-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 25px;
}
.order-board-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-board-heading h2 {
  margin: 0;
  font:
    600 32px "Playfair Display",
    serif;
}
.order-board-heading .eyebrow {
  margin: 0;
}
.order-board-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.order-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.order-ticket {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.order-ticket-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.order-ticket h3 {
  margin: 0;
  font-size: 15px;
}
.status {
  padding: 5px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 8px;
  font-weight: 700;
}
.status.received {
  color: #8b5d00;
  background: #fff2c8;
}
.status.in-progress {
  color: #075e31;
  background: #d8f6e4;
}
.status.ready {
  color: #fff;
  background: #0c9850;
}
.order-ticket p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.menu-card {
  min-height: 245px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.menu-card h3 {
  margin: 0;
  font:
    600 28px "Playfair Display",
    serif;
}
.menu-card-price {
  font-weight: 700;
}
.menu-card p {
  max-width: 500px;
  color: var(--muted);
}
.menu-tag {
  align-self: flex-start;
  margin-top: auto;
  color: #25814a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
  font-weight: 700;
}
.add-button {
  align-self: flex-end;
  margin-top: -32px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 21px;
}
.add-button:hover {
  background: var(--green);
}
.cart-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -25px 0 70px rgba(0, 0, 0, 0.2);
  transform: translateX(105%);
  transition: transform 0.35s ease;
}
.cart-open .cart-drawer {
  transform: none;
}
.scrim {
  position: fixed;
  z-index: 70;
  inset: 0;
  pointer-events: none;
  background: rgba(3, 12, 7, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-open .scrim {
  opacity: 1;
  pointer-events: auto;
}
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  margin: 0;
  font:
    600 36px "Playfair Display",
    serif;
}
.cart-head button,
.dialog-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
}
.cart-items {
  flex: 1;
  overflow: auto;
}
.cart-empty {
  padding: 45px 0;
  color: var(--muted);
  text-align: center;
}
.cart-item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}
.cart-item h3,
.cart-item p {
  margin: 0;
}
.cart-item h3 {
  font-size: 14px;
}
.cart-item p {
  color: var(--muted);
  font-size: 12px;
}
.quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quantity button {
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}
.cart-footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cart-footer > p {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 18px;
}
.checkout-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 38px;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.checkout-dialog::backdrop {
  background: rgba(3, 12, 7, 0.68);
}
.checkout-dialog h2 {
  font:
    600 38px "Playfair Display",
    serif;
}
.dialog-close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.checkout-dialog label {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  font-size: 11px;
  font-weight: 700;
}
.checkout-dialog input,
.checkout-dialog textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  outline: none;
}
.checkout-dialog input:focus,
.checkout-dialog textarea:focus {
  border-color: var(--green);
}
.age-check {
  grid-template-columns: auto 1fr !important;
  align-items: start;
}
.age-check input {
  width: auto;
}
.form-message {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
}
.form-message.error {
  color: #a8261d;
}
.form-message.success {
  color: #14713d;
}
.contact-intro {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  color: #fff;
  background: var(--forest);
}
.contact-intro > div {
  padding: 8vw 6vw;
  align-self: center;
}
.contact-intro > div > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}
.contact-intro > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-cards {
  padding: 0 6vw 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper);
}
.contact-cards article {
  min-height: 280px;
  padding: 35px;
  border: 1px solid var(--line);
}
.contact-cards article > span {
  color: var(--green);
  font-size: 10px;
}
.contact-cards h2 {
  margin: 35px 0 12px;
  font:
    600 clamp(21px, 2.2vw, 32px)/1.15 "Playfair Display",
    serif;
  overflow-wrap: anywhere;
}
.contact-cards p:not(.footer-label) {
  color: var(--muted);
}
.contact-cards a:last-child {
  color: #237948;
  font-size: 11px;
  font-weight: 700;
}
.contact-map {
  padding: clamp(70px, 9vw, 120px) 6vw;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(40px, 7vw, 95px);
  align-items: center;
  background: var(--paper);
}
.contact-map h2 {
  margin: 0;
  font:
    600 clamp(44px, 5vw, 72px)/0.98 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
}
.contact-map h2 em {
  color: var(--green);
}
.contact-map p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0;
  color: var(--muted);
}
.contact-map iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-rental {
  padding: clamp(75px, 9vw, 125px) 7vw;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  background: #e8ede5;
}
.contact-rental > div > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 84px;
  }
  .brand {
    width: 185px;
    height: 58px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 5vw 30px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--forest);
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a,
  .cart-button {
    justify-content: center;
    text-align: center;
  }
  .hero {
    min-height: calc(100vh - 84px);
  }
  .photo-story {
    grid-template-columns: 1fr 1fr;
  }
  .photo-copy {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-board {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-intro {
    grid-template-columns: 1fr;
  }
  .contact-intro > img {
    height: 480px;
  }
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Centered public heroes and simplified home presentation. */
.page-hero,
.menu-hero,
.legal-hero,
.menu-order-hero,
.status-hero,
.events-title-band,
.contact-intro {
  justify-content: center;
  text-align: center;
}

.page-hero,
.menu-hero,
.legal-hero {
  align-items: center;
}

.page-hero > div,
.menu-hero > div,
.legal-hero > div,
.menu-order-hero > div,
.status-hero > div,
.events-title-band > div,
.contact-intro > div {
  margin-inline: auto;
}

.page-hero p:not(.eyebrow),
.menu-hero p:not(.eyebrow),
.legal-hero p:not(.eyebrow),
.menu-order-hero > div > p:not(.eyebrow),
.status-hero > div > p:not(.eyebrow),
.events-title-band p:not(.eyebrow),
.contact-intro p:not(.eyebrow) {
  margin-inline: auto;
}

.menu-order-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url("assets/images/lunch-box/4121.webp") center 58% / cover;
}

.menu-hero-actions {
  justify-content: center;
}

body[data-page="contact"] .contact-intro,
body[data-page="events"] .events-title-band {
  min-height: 150px;
  height: 150px;
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background: #090909;
}

body[data-page="contact"] .contact-intro > div,
body[data-page="events"] .events-title-band > div {
  width: 100%;
  padding: 0;
}

body[data-page="events"] .events-title-band h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.95;
}

body[data-page="events"] .event-card {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

body[data-page="events"] .event-date {
  color: #ed1c24;
}

body[data-page="events"] .booking-banner {
  padding: clamp(72px, 9vw, 120px) 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  background: #090909;
  text-align: center;
}

body[data-page="events"] .booking-banner > div {
  max-width: 900px;
}

body[data-page="events"] .booking-banner h2 {
  margin-bottom: 20px;
}

body[data-page="events"] .booking-banner p:not(.eyebrow) {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

.food-gallery-section {
  padding: clamp(72px, 8vw, 112px) 6vw;
  background: #f7f6f2;
}

.food-gallery-heading {
  max-width: 1050px;
  margin: 0 auto clamp(38px, 5vw, 68px);
  text-align: center;
}

.food-gallery-heading h2 {
  margin: 0;
  font-size: clamp(45px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.food-gallery-heading h2 em {
  color: #ed1c24;
  font-style: normal;
}

.food-gallery {
  width: min(1320px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
}

.food-gallery img {
  width: 100%;
  height: clamp(190px, 22vw, 300px);
  display: block;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.home-order-cta {
  padding: clamp(86px, 10vw, 140px) 7vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background: #090909;
  text-align: center;
}

.home-order-cta h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.home-order-cta h2 em {
  color: #ed1c24;
  font-style: normal;
}

.home-order-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.home-order-actions .button {
  min-width: 170px;
  margin: 0;
}

@media (max-width: 820px) {
  .food-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .food-gallery img {
    height: clamp(170px, 44vw, 270px);
  }
}

@media (max-width: 560px) {
  body[data-page="contact"] .contact-intro,
  body[data-page="events"] .events-title-band {
    min-height: 120px;
    height: 120px;
    padding: 20px 18px;
  }

  .food-gallery-section {
    padding: 58px 14px;
  }

  .food-gallery {
    gap: 10px;
  }

  .food-gallery img {
    height: 180px;
    border-radius: 11px;
  }

  .home-order-cta {
    padding: 72px 20px;
  }

  .home-order-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .home-order-actions .button {
    width: 100%;
  }
}

/* White homepage hero and dedicated catering experience. */
.home-hero {
  min-height: clamp(520px, 70vh, 720px);
  align-items: center;
  color: #111;
  background: #fff;
}

.home-hero .hero-media,
.home-hero .hero-shade {
  display: none;
}

.home-hero .hero-copy {
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
  color: #111;
  text-shadow: none;
}

.home-hero .hero-copy h1 {
  color: #111;
}

.home-hero .hero-copy h1 em {
  color: #ed1c24;
}

.home-hero .hero-copy > p:not(.eyebrow) {
  color: #5f5f5f;
}

.home-hero .eyebrow {
  color: #ed1c24;
}

.home-hero .button-ghost,
.home-hero .button-ghost:hover {
  border-color: #111 !important;
  color: #111 !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
}

.home-hero .button-ghost:hover {
  background: #f0f0f0 !important;
}

.catering-hero {
  min-height: 310px;
  padding: 70px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #090909;
  text-align: center;
}

.catering-hero > div {
  width: min(980px, 100%);
}

.catering-hero h1 {
  margin: 6px 0 18px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.catering-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.catering-catalog {
  padding: clamp(72px, 8vw, 115px) 6vw;
  background: #f7f6f2;
}

.catering-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(42px, 5vw, 68px);
  text-align: center;
}

.catering-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(44px, 5.5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.catering-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: #666;
  line-height: 1.65;
}

.catering-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.catering-card {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.catering-card-media {
  height: clamp(240px, 28vw, 380px);
  overflow: hidden;
  background: #ecebe7;
}

.catering-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.catering-card-copy {
  padding: clamp(24px, 3vw, 38px);
}

.catering-card-copy > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.catering-card-copy .eyebrow {
  margin: 0;
}

.catering-card-copy > div:first-child > span {
  font-size: 13px;
  font-weight: 800;
}

.catering-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.catering-card-copy > p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.catering-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #444;
  font-size: 13px;
}

.catering-card .text-link {
  border-color: #ed1c24;
  color: #ed1c24;
}

.catering-cta {
  padding: clamp(82px, 9vw, 130px) 7vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background: #090909;
  text-align: center;
}

.catering-cta h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.catering-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.catering-cta .button {
  margin-top: 32px;
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 540px;
  }

  .catering-hero {
    min-height: 260px;
    padding: 56px 20px;
  }

  .catering-grid {
    grid-template-columns: 1fr;
  }

  .catering-card-media {
    height: 280px;
  }
}
@media (max-width: 680px) {
  .hero-copy {
    padding: 75px 22px 125px;
  }
  .hero-copy h1,
  .page-hero h1,
  .menu-hero h1,
  .contact-intro h1 {
    font-size: clamp(50px, 16vw, 76px);
  }
  .hero-note {
    left: 22px;
    right: auto;
  }
  .split-section,
  .hours-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .photo-story {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  .photo-story .photo-copy {
    grid-column: 1;
  }
  .photo-large img,
  .photo-tall img {
    aspect-ratio: 1.1;
  }
  .event-rental {
    min-height: 620px;
    padding: 80px 24px;
    background-attachment: scroll;
  }
  .booking-banner,
  .contact-rental {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .page-hero,
  .menu-hero {
    min-height: 500px;
    padding: 70px 24px;
  }
  .events-section,
  .menu-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .events-grid,
  .menu-grid,
  .order-board,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .order-board-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-intro > div {
    padding: 75px 24px;
  }
  .contact-intro > img {
    height: 350px;
  }
  .contact-cards {
    padding: 0 20px 80px;
  }
  .contact-cards article {
    min-height: 230px;
  }
  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .checkout-dialog {
    padding: 28px 20px;
  }
  .menu-card {
    padding: 25px;
  }
  .event-card h3 {
    font-size: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.our-story,
.photo-story,
.garden-feature,
.event-rental,
.hours-section,
.events-section,
.booking-banner,
.contact-cards,
.contact-map,
.contact-rental {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

@media (max-width: 760px) {
  .contact-map {
    grid-template-columns: 1fr;
    padding: 65px 22px;
  }
  .contact-map iframe {
    min-height: 420px;
  }
}

/* Direct menu and events layouts */
.events-top {
  padding-top: clamp(65px, 8vw, 105px);
}
.events-top .section-heading h1,
.menu-section .section-heading h1 {
  margin: 0;
  font:
    600 clamp(46px, 5.5vw, 76px)/1 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
}
.order-board {
  grid-template-columns: repeat(3, 1fr);
}
.order-board-heading > div > div {
  display: block;
}
.order-board-heading > div > div .eyebrow {
  margin-bottom: 4px;
}
.add-button {
  width: auto;
  height: auto;
  margin-top: 22px;
  align-self: flex-start;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.add-button span {
  font-size: 18px;
  line-height: 1;
}
.footer-brand img {
  height: 105px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 680px) {
  .events-top {
    padding-top: 50px;
  }
  .order-board {
    grid-template-columns: 1fr;
  }
  .add-button {
    width: 100%;
    justify-content: space-between;
  }
  .footer-brand img {
    height: 95px;
  }
}

/* Refined hierarchy for the public menu, events and home story */
.home-hero {
  background: var(--forest);
}
.home-hero .hero-media {
  z-index: 0;
  opacity: 1;
  filter: saturate(0.88) contrast(0.96);
  object-position: center 58%;
}
.home-hero .hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 15, 8, 0.78) 0%,
      rgba(3, 15, 8, 0.52) 37%,
      rgba(3, 15, 8, 0.14) 74%,
      rgba(3, 15, 8, 0.04) 100%
    ),
    linear-gradient(0deg, rgba(3, 15, 8, 0.54), transparent 52%);
}
.feature-list article {
  display: block;
}
.garden-feature {
  padding: clamp(75px, 9vw, 125px) 7vw;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  background: var(--paper);
}
.garden-feature img {
  width: 100%;
  max-height: 700px;
  aspect-ratio: 0.82;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.garden-feature h2 {
  margin: 0;
  font:
    600 clamp(44px, 5.2vw, 74px)/0.98 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
}
.garden-feature h2 em {
  color: var(--green);
}
.garden-feature p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.events-title-band {
  min-height: 260px;
  padding: 48px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(255, 210, 47, 0.16),
      transparent 25%
    ),
    linear-gradient(125deg, #07130d, #123b22);
}
.events-title-band h1 {
  margin: 0 0 8px;
  font:
    600 clamp(58px, 7vw, 96px)/0.9 "Playfair Display",
    serif;
  letter-spacing: -0.045em;
}
.events-title-band p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}
.events-title-band .button {
  flex: none;
}
.events-top {
  padding-top: 60px;
}
.events-top .section-heading {
  margin-bottom: 30px;
}
.events-top .section-heading h2 {
  font-size: clamp(38px, 4.5vw, 60px);
}
.events-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}
.event-card {
  display: grid;
  grid-template-columns: minmax(300px, 42%) 1fr;
  min-height: 360px;
}
.event-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  min-height: 360px;
}
.event-card-copy {
  padding: clamp(30px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card h3 {
  font-size: clamp(32px, 4vw, 52px);
}
.event-description {
  max-width: 660px;
  font-size: 15px;
}

.order-board-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.order-board-heading {
  margin-bottom: 30px;
}
.order-board-heading > p {
  max-width: 510px;
  text-align: right;
}
.order-board {
  gap: 18px;
}
.order-ticket {
  position: relative;
  min-height: 245px;
  padding: 25px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(6, 31, 16, 0.09);
}
.order-ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: #e0ad23;
}
.order-ticket.status-ready::before {
  background: var(--green);
}
.order-ticket-main {
  display: flex;
  align-items: center;
  gap: 15px;
}
.order-ticket-main small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 8px;
  font-weight: 700;
}
.order-ticket-main h3 {
  font:
    600 25px "Playfair Display",
    serif;
}
.order-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 15px;
  color: #856100;
  background: #fff3c5;
}
.order-icon::before {
  content: "✦";
  font-size: 20px;
}
.status-ready .order-icon {
  color: #fff;
  background: var(--green);
}
.order-items {
  min-height: 44px;
  margin: 24px 0 !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 600;
}
.order-progress {
  display: grid;
  gap: 9px;
}
.order-progress > span {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ece8;
}
.order-progress i {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: #dfac22;
}
.status-ready .order-progress i {
  width: 100%;
  background: var(--green);
}
.order-progress strong {
  color: #765900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}
.status-ready .order-progress strong {
  color: #15733f;
}

@media (max-width: 760px) {
  .events-title-band {
    min-height: 230px;
    padding: 42px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
  .events-title-band .button {
    width: 100%;
  }
  .event-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .event-card img {
    height: 250px;
    min-height: 0;
  }
  .event-card-copy {
    padding: 28px 23px;
  }
  .order-board-heading > p {
    text-align: left;
  }
  .order-ticket {
    min-height: 220px;
  }
  .garden-feature {
    grid-template-columns: 1fr;
    padding: 65px 22px;
  }
  .garden-feature img {
    max-height: 540px;
  }
}

/* Complete mobile navigation and touch layout */
@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }
  .site-header {
    position: sticky;
    min-height: 82px;
    height: 82px;
    padding: 10px 20px;
    grid-template-columns: 1fr auto;
    background: #090909;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .brand {
    position: relative;
    z-index: 52;
    width: 170px;
    height: 60px;
  }
  .menu-toggle {
    position: relative;
    z-index: 52;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
  }
  .menu-toggle span {
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .main-nav {
    position: fixed;
    z-index: 51;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 82px);
    min-height: calc(100vh - 82px);
    padding: 24px 22px max(30px, env(safe-area-inset-bottom));
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: #fff;
    background: #090909;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease,
      visibility 0.24s;
  }
  .main-nav.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .main-nav > a:not(.nav-cta) {
    display: block;
    flex: none;
    width: 100%;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-align: left;
    font:
      600 clamp(25px, 7vw, 38px)/1.1 "Playfair Display",
      serif;
    text-transform: none;
    letter-spacing: -0.02em;
  }
  .main-nav > a:not(.nav-cta).active {
    color: #ed1c24;
    border-color: rgba(255, 255, 255, 0.12);
  }
  .main-nav .nav-cta,
  .main-nav .cart-button {
    min-height: 56px;
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 14px;
    color: var(--forest) !important;
    background: var(--yellow);
    text-align: left;
  }
  .main-nav .cart-button strong {
    background: var(--forest);
    color: #fff;
  }
  .hero {
    min-height: calc(100svh - 82px);
  }
  .hero-copy {
    padding: 68px 24px 84px;
  }
  .hero-copy h1 {
    font-size: clamp(51px, 14vw, 76px);
  }
  .home-hero .hero-media {
    object-position: 58% center;
  }
  .split-section,
  .photo-story,
  .hours-section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }
  .button-row .button {
    width: 100%;
  }
  .site-footer {
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 150px;
    height: 56px;
  }
  .site-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(47px, 14.5vw, 66px);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .split-section h2,
  .photo-copy h2,
  .hours-section h2,
  .event-rental h2,
  .booking-banner h2,
  .contact-rental h2,
  .section-heading h2 {
    font-size: clamp(39px, 12vw, 54px);
  }
  .order-board-section,
  .events-section,
  .menu-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .menu-card {
    min-height: 230px;
    padding: 23px 19px;
  }
  .menu-card-top {
    gap: 15px;
  }
  .menu-card h3 {
    font-size: 25px;
  }
  .cart-drawer {
    padding: 22px 18px;
  }
  .checkout-dialog {
    max-height: calc(100svh - 20px);
    overflow: auto;
  }
}

/* Cart stays quiet while customers keep adding, then opens on demand */
body[data-page="menu"] .main-nav {
  padding-right: 190px;
}
.header-cart {
  position: absolute;
  z-index: 53;
  top: 50%;
  right: 4vw;
  min-width: 155px;
  justify-content: space-between;
  transform: translateY(-50%);
}
.header-cart .cart-preview-total {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  letter-spacing: 0;
}
.header-cart.cart-bump {
  animation: cartPulse 0.38s ease;
}
@keyframes cartPulse {
  50% {
    box-shadow: 0 0 0 8px rgba(255, 210, 47, 0.2);
    border-color: var(--yellow);
  }
}
.cart-toast {
  position: fixed;
  z-index: 90;
  right: 28px;
  bottom: 28px;
  max-width: 340px;
  padding: 13px 18px;
  border-radius: 13px;
  color: #fff;
  background: var(--forest);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.cart-toast.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) and (min-width: 981px) {
  body[data-page="menu"] .main-nav {
    gap: 15px;
    padding-right: 175px;
  }
  .header-cart {
    right: 2vw;
  }
}

@media (max-width: 980px) {
  body[data-page="menu"] {
    padding-bottom: 92px;
  }
  body[data-page="menu"] .main-nav {
    padding-right: 22px;
  }
  .header-cart {
    position: fixed;
    z-index: 60;
    top: auto;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 16px;
    width: auto;
    min-height: 62px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #07130d, #123d23);
    box-shadow: 0 18px 55px rgba(4, 22, 11, 0.3);
    transform: none;
  }
  .header-cart .cart-preview-total {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
  }
  .header-cart strong {
    width: 29px;
    height: 29px;
  }
  .cart-drawer {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(82dvh, 720px);
    padding: 25px 20px max(22px, env(safe-area-inset-bottom));
    border-radius: 25px 25px 0 0;
    transform: translateY(105%);
  }
  .cart-open .cart-drawer {
    transform: none;
  }
  .cart-toast {
    right: 18px;
    bottom: 94px;
    left: 18px;
    max-width: none;
    text-align: center;
  }
}

/* Shared brand actions, founder story and social branding */
:root {
  --cta-green: #10aa57;
}
.site-footer {
  background: var(--forest);
}
.button,
.button-primary,
.button-ghost,
.button-light {
  border: 1px solid var(--cta-green);
  color: #fff;
  background: var(--cta-green);
  box-shadow: 0 18px 45px rgba(5, 66, 34, 0.22);
}
.button:hover,
.button-primary:hover,
.button-ghost:hover,
.button-light:hover {
  border-color: #0b8d49;
  background: #0b8d49;
}
.nav-cta {
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: var(--cta-green);
}
.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: #0b8d49;
}
.add-button {
  color: #fff;
  background: var(--cta-green);
}
.add-button:hover {
  background: #0b8d49;
}
.header-cart {
  border-color: var(--cta-green);
  background: var(--cta-green);
}
.header-cart:hover {
  background: #0b8d49;
}
.cart-button strong {
  color: var(--cta-green);
  background: #fff;
}

.our-story {
  padding: clamp(78px, 10vw, 145px) 7vw;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  background: #e8ede5;
}
.story-portrait {
  margin: 0;
}
.story-portrait img {
  width: 100%;
  max-height: 780px;
  aspect-ratio: 0.81;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-portrait figcaption {
  margin-top: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.story-copy {
  max-width: 650px;
}
.story-kicker {
  margin: 0;
  color: var(--muted);
  font:
    600 22px/1.2 "Playfair Display",
    serif;
}
.story-copy h2 {
  margin: 2px 0 25px;
  font:
    600 clamp(55px, 7vw, 98px)/0.9 "Playfair Display",
    serif;
  letter-spacing: -0.045em;
  color: var(--cta-green);
}
.story-lead {
  color: var(--ink) !important;
  font:
    600 clamp(20px, 2vw, 28px)/1.4 "Playfair Display",
    serif;
}
.story-copy > p:not(.eyebrow):not(.story-kicker):not(.story-lead) {
  color: var(--muted);
}
.story-copy .button {
  margin-top: 18px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.social-link svg {
  width: 24px;
  height: 24px;
  flex: none;
  overflow: visible;
}
.social-link.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.social-link.instagram .social-dot {
  fill: currentColor;
  stroke: none;
}
.social-link.facebook svg {
  fill: currentColor;
}
.social-link span {
  border-bottom: 1px solid transparent;
}
.social-link:hover span {
  border-color: currentColor;
}

@media (max-width: 980px) {
  .main-nav .nav-cta,
  .main-nav .cart-button {
    border-color: var(--cta-green);
    color: #fff !important;
    background: var(--cta-green);
  }
  .main-nav .cart-button strong {
    color: var(--cta-green);
    background: #fff;
  }
  .header-cart {
    border-color: var(--cta-green);
    background: var(--cta-green);
  }
  .home-hero .hero-media {
    object-position: 66% center;
  }
  .home-hero .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(3, 15, 8, 0.94) 0%,
        rgba(3, 15, 8, 0.82) 48%,
        rgba(3, 15, 8, 0.42) 100%
      ),
      linear-gradient(0deg, rgba(3, 15, 8, 0.88), rgba(3, 15, 8, 0.08) 72%);
  }
  .home-hero .hero-copy {
    max-width: 720px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  }
  .our-story {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 680px) {
  .our-story {
    grid-template-columns: 1fr;
    padding: 65px 22px;
    gap: 42px;
  }
  .story-portrait {
    width: 100%;
    overflow: hidden;
  }
  .story-portrait img {
    width: 100%;
    height: clamp(330px, 62svh, 440px);
    max-height: 440px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 18%;
  }
  .story-copy h2 {
    font-size: clamp(53px, 18vw, 78px);
  }
  .story-copy .button {
    width: 100%;
  }
  .home-hero .hero-copy {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .home-hero .hero-copy h1 {
    margin-bottom: 20px;
    line-height: 0.9;
  }
  .home-hero .button-row {
    margin-top: 25px;
  }
}

@media (max-width: 420px) {
  .home-hero .hero-media {
    object-position: 70% center;
  }
  .home-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 15, 8, 0.96), rgba(3, 15, 8, 0.78)),
      linear-gradient(0deg, rgba(3, 15, 8, 0.9), rgba(3, 15, 8, 0.25));
  }
}

/* Image-forward ordering and dedicated live status */
.menu-order-hero {
  position: relative;
  min-height: 540px;
  padding: clamp(70px, 8vw, 120px) 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(4, 18, 10, 0.95) 0%,
      rgba(4, 18, 10, 0.72) 52%,
      rgba(4, 18, 10, 0.28) 100%
    ),
    url("assets/images/lunch-box/4121.webp") center 58% / cover;
}
.menu-order-hero > div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.menu-order-hero h1,
.status-hero h1 {
  margin: 8px 0 24px;
  font:
    600 clamp(60px, 7.2vw, 106px)/0.88 "Playfair Display",
    serif;
  letter-spacing: -0.05em;
}
.menu-order-hero h1 em,
.status-hero h1 em {
  color: var(--yellow);
  font-weight: 600;
}
.menu-order-hero > div > p:not(.eyebrow),
.status-hero > div > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}
.menu-order-hero > aside {
  position: relative;
  z-index: 1;
  min-width: 250px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(5, 22, 12, 0.66);
  backdrop-filter: blur(14px);
}
.menu-order-hero > aside span,
.menu-order-hero > aside strong {
  display: block;
}
.menu-order-hero > aside span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.menu-order-hero > aside strong {
  margin-top: 5px;
  font-size: 13px;
}
.menu-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.menu-hero-actions .button {
  margin: 0;
}
.order-status-link {
  min-height: 54px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 999px;
  color: var(--forest);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition:
    background 0.2s,
    color 0.2s;
}
.order-status-link:hover {
  color: #fff;
  background: transparent;
}
.order-status-link b {
  display: none;
}
.modern-menu {
  padding-top: 90px;
}
.menu-section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto 48px;
}
.menu-section-head h2 {
  margin: 0;
  font:
    600 clamp(48px, 5vw, 74px)/0.96 "Playfair Display",
    serif;
  letter-spacing: -0.04em;
}
.menu-section-head > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}
.category-nav {
  position: sticky;
  z-index: 20;
  top: 96px;
  margin: 0 -6vw 60px;
  padding: 15px 6vw;
  display: flex;
  gap: 10px;
  overflow: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar {
  display: none;
}
.category-nav a {
  flex: none;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}
.category-nav a:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}
.menu-catalog {
  max-width: 1260px;
  margin: auto;
}
.menu-category {
  margin-bottom: 78px;
  scroll-margin-top: 175px;
}
.menu-category-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.menu-category-heading p {
  margin: 0;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.menu-category-heading h2 {
  margin: 2px 0 15px;
  font:
    600 38px "Playfair Display",
    serif;
}
.menu-category-heading > span {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.modern-menu .menu-card {
  min-height: 228px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 24, 0.11);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(5, 21, 12, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.modern-menu .menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(5, 21, 12, 0.11);
}
.menu-card-media {
  grid-column: 2;
  grid-row: 1;
}
.menu-card-media img,
.menu-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
}
.menu-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 210, 47, 0.48),
      transparent 34%
    ),
    linear-gradient(145deg, #186b3d, #081b10);
}
.menu-photo-placeholder::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.menu-photo-placeholder span {
  position: absolute;
  left: 16px;
  bottom: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.menu-photo-placeholder strong {
  font:
    italic 600 72px "Playfair Display",
    serif;
  color: var(--yellow);
}
.menu-card-body {
  grid-column: 1;
  grid-row: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.modern-menu .menu-card-top {
  gap: 18px;
}
.modern-menu .menu-card h3 {
  font:
    600 24px/1.08 "Playfair Display",
    serif;
}
.modern-menu .menu-card-price {
  flex: none;
  font-size: 13px;
}
.modern-menu .menu-card-body > p {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.menu-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.modern-menu .menu-tag {
  margin: 0;
}
.modern-menu .add-button {
  width: auto;
  height: 38px;
  margin: 0;
  padding: 0 6px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}
.modern-menu .add-button b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 17px;
}
.cart-item {
  grid-template-columns: 64px 1fr auto;
  align-items: center;
}
.cart-item > img,
.cart-item-placeholder {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}
.cart-item-placeholder {
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--forest);
  font:
    600 25px "Playfair Display",
    serif;
}
.status-promo {
  padding: clamp(70px, 8vw, 115px) 7vw;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  color: #fff;
  background:
    radial-gradient(
      circle at 75% 15%,
      rgba(255, 210, 47, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #0d6134, #071a0e);
}
.status-promo h2 {
  margin: 0 0 15px;
  font:
    600 clamp(44px, 5vw, 70px)/0.96 "Playfair Display",
    serif;
}
.status-promo p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.status-hero {
  min-height: 500px;
  padding: 90px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(182, 228, 80, 0.15),
      transparent 30%
    ),
    linear-gradient(130deg, #06150b, #123e23);
}
.status-hero > div:first-child {
  max-width: 820px;
}
.status-live-card {
  min-width: 250px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.status-live-card .live-dot {
  flex: none;
}
.status-live-card strong,
.status-live-card small {
  display: block;
}
.status-live-card small {
  color: rgba(255, 255, 255, 0.6);
}
.status-page {
  padding: clamp(65px, 8vw, 110px) 6vw;
  background: #f2f5f0;
}
.status-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1260px;
  margin: auto;
}
.status-page-heading h2 {
  margin: 0;
  font:
    600 clamp(42px, 4vw, 62px) "Playfair Display",
    serif;
}
.status-page-heading > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--green);
  color: #187542;
  font-size: 11px;
  font-weight: 700;
}
.status-page-heading > a span {
  margin-left: 18px;
}
.status-steps {
  max-width: 900px;
  margin: 55px auto;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 15px;
}
.status-steps > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
}
.status-steps b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}
.status-steps i {
  height: 2px;
  background: #cfd8d0;
}
.status-board-modern {
  max-width: 1260px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.status-order-card {
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(6, 31, 16, 0.07);
}
.status-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.status-order-head > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.status-order-head > strong {
  padding: 6px 9px;
  border-radius: 999px;
  color: #775900;
  background: #fff0b7;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-step-2 .status-order-head > strong {
  color: #17663b;
  background: #d9f3e2;
}
.status-step-3 .status-order-head > strong {
  color: #fff;
  background: var(--green);
}
.status-order-person {
  padding: 30px 0 22px;
}
.status-order-person small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.status-order-person h3 {
  margin: 2px 0 12px;
  font:
    600 34px "Playfair Display",
    serif;
}
.status-order-person p {
  min-height: 40px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.status-order-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.status-order-track i {
  height: 7px;
  border-radius: 999px;
  background: #e3e8e3;
}
.status-step-1 .status-order-track i:nth-child(1),
.status-step-2 .status-order-track i:nth-child(-n + 2),
.status-step-3 .status-order-track i {
  background: var(--green);
}
.status-order-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.status-empty {
  grid-column: 1/-1;
  padding: 70px 25px;
  border: 1px dashed #b7c4b9;
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}
.status-empty > span {
  width: 50px;
  height: 50px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 20px;
}
.status-empty h3 {
  margin: 15px 0 5px;
  font:
    600 30px "Playfair Display",
    serif;
}
.status-empty p {
  color: var(--muted);
}
.status-empty a {
  color: var(--green);
  font-weight: 700;
}
.status-privacy {
  max-width: 1260px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

@media (max-width: 1050px) {
  .menu-order-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .menu-order-hero > aside {
    min-width: 0;
  }
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .status-board-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .menu-order-hero {
    min-height: 0;
    padding: 65px 22px 75px;
  }
  .menu-order-hero h1,
  .status-hero h1 {
    font-size: clamp(53px, 15vw, 76px);
  }
  .menu-order-hero > div > p:not(.eyebrow) {
    font-size: 15px;
  }
  .menu-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .order-status-link {
    justify-content: center;
  }
  .modern-menu {
    padding: 62px 16px;
  }
  .menu-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
  .category-nav {
    top: 82px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .menu-category {
    margin-bottom: 58px;
    scroll-margin-top: 160px;
  }
  .modern-menu .menu-card {
    grid-template-columns: minmax(0, 1fr) 132px;
    min-height: 205px;
  }
  .menu-card-media img,
  .menu-photo-placeholder {
    min-height: 205px;
  }
  .menu-card-body {
    padding: 20px 17px;
  }
  .modern-menu .menu-card h3 {
    font-size: 21px;
  }
  .modern-menu .menu-card-body > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .modern-menu .add-button span {
    display: none;
  }
  .modern-menu .add-button {
    padding-left: 6px;
  }
  .status-promo {
    align-items: flex-start;
    flex-direction: column;
    padding: 65px 22px;
  }
  .status-promo .button {
    width: 100%;
  }
  .status-hero {
    min-height: 0;
    padding: 70px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
  .status-page {
    padding: 60px 16px;
  }
  .status-page-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .status-steps {
    margin: 40px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .status-steps i {
    display: none;
  }
  .status-board-modern {
    grid-template-columns: 1fr;
  }
  .status-order-card {
    padding: 21px;
  }
  .cart-item {
    grid-template-columns: 54px 1fr;
  }
  .cart-item .quantity {
    grid-column: 2;
  }
  .site-footer {
    padding-bottom: 110px;
  }
}

/* Photo-first ordering: compact filters, modern type, no system-style activity dots */
.live-dot,
.pulse {
  display: none !important;
}
body[data-page="menu"],
body[data-page="status"] {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
}
body[data-page="menu"] h1,
body[data-page="menu"] h2,
body[data-page="menu"] h3,
body[data-page="menu"] button,
body[data-page="menu"] input,
body[data-page="menu"] textarea,
body[data-page="status"] h1,
body[data-page="status"] h2,
body[data-page="status"] h3,
body[data-page="status"] button {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
}
body[data-page="menu"] .main-nav > a:not(.nav-cta),
body[data-page="status"] .main-nav > a:not(.nav-cta) {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
}
body[data-page="menu"] em,
body[data-page="status"] em {
  font-style: normal;
}
.menu-order-hero h1,
.status-hero h1 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.menu-section-head h2,
.menu-category-heading h2,
.status-promo h2,
.status-page-heading h2,
.status-order-person h3,
.status-empty h3,
.cart-head h2,
.checkout-dialog h2 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-style: normal;
  letter-spacing: -0.04em;
}

.category-nav {
  position: static;
  max-width: 1260px;
  margin: 0 auto 58px;
  padding: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  overflow: visible;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  backdrop-filter: none;
}
.category-nav a {
  padding: 9px 14px;
  border-radius: 9px;
  background: #fff;
  font-size: 10px;
  line-height: 1;
}
.category-nav a:hover,
.category-nav a:focus-visible {
  color: var(--forest);
  border-color: var(--yellow);
  background: var(--yellow);
}

.menu-items-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
}
.modern-menu .menu-card {
  min-height: 0;
  padding: 0;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.modern-menu .menu-card:hover {
  transform: none;
  box-shadow: none;
}
.menu-card-media {
  position: relative;
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 18px;
  background: #e7e8e3;
}
.menu-card-media img,
.menu-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.28s ease;
}
.modern-menu .menu-card:hover .menu-card-media img {
  transform: scale(1.025);
}
.menu-photo-placeholder {
  background: linear-gradient(145deg, #232b26, #08130d);
}
.menu-photo-placeholder::after {
  display: none;
}
.menu-photo-placeholder strong {
  font:
    700 64px/1 "Space Grotesk",
    "DM Sans",
    sans-serif;
  font-style: normal;
  color: var(--yellow);
}
.menu-photo-placeholder span {
  right: 16px;
  left: 16px;
  bottom: 15px;
  text-align: center;
}
.menu-card-body {
  grid-column: auto;
  grid-row: auto;
  padding: 15px 2px 4px;
  display: block;
}
.modern-menu .menu-card-top {
  align-items: baseline;
  gap: 16px;
}
.modern-menu .menu-card h3 {
  font:
    700 20px/1.18 "Space Grotesk",
    "DM Sans",
    sans-serif;
  letter-spacing: -0.025em;
}
.modern-menu .menu-card-price {
  font-size: 13px;
  font-weight: 700;
}
.modern-menu .menu-card-body > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.modern-menu .add-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  color: var(--forest);
  background: var(--yellow);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.modern-menu .add-button:hover {
  color: #fff;
  background: var(--forest);
}
.cart-item-placeholder {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-style: normal;
}

.status-steps b {
  border-radius: 8px;
  background: var(--forest);
}
.status-empty > span {
  border-radius: 12px;
  background: var(--forest);
}

@media (max-width: 1050px) {
  .menu-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .category-nav {
    margin: 0 0 42px;
    padding: 0 0 15px;
    gap: 8px;
  }
  .category-nav a {
    padding: 9px 11px;
  }
  .modern-menu .menu-card {
    min-height: 0;
    display: block;
  }
  .menu-card-media img,
  .menu-photo-placeholder {
    min-height: 0;
  }
  .menu-card-body {
    padding: 13px 2px 3px;
  }
  .modern-menu .menu-card-body > p {
    display: block;
    overflow: visible;
  }
  .modern-menu .add-button {
    right: 10px;
    bottom: 10px;
    width: 42px;
    height: 42px;
    padding: 0;
  }
}
@media (max-width: 560px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .menu-card-media {
    aspect-ratio: 1.18;
  }
}

/* Phone-first ordering shell */
@media (max-width: 980px) {
  body[data-page="menu"] {
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
    overscroll-behavior-y: contain;
  }
  body[data-page="menu"] button,
  body[data-page="menu"] a {
    touch-action: manipulation;
  }
  body[data-page="menu"] .header-cart {
    position: fixed;
    z-index: 65;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    min-height: calc(50px + env(safe-area-inset-bottom));
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px 14px 0 0;
    justify-content: flex-start;
    gap: 10px;
    color: #fff;
    background: var(--forest);
    box-shadow: 0 -10px 30px rgba(3, 15, 8, 0.22);
    transform: none;
  }
  body[data-page="menu"] .header-cart > span:first-child {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  body[data-page="menu"] .header-cart .cart-preview-total {
    margin-left: auto;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
  }
  body[data-page="menu"] .header-cart strong {
    width: 26px;
    height: 26px;
    flex: none;
    color: var(--forest);
    background: var(--yellow);
    font-size: 11px;
  }
  body[data-page="menu"] .cart-toast {
    bottom: calc(60px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 600px) {
  body[data-page="menu"] .site-header {
    min-height: 72px;
    padding: 7px 14px;
  }
  body[data-page="menu"] .brand {
    width: 145px;
    height: 52px;
  }
  body[data-page="menu"] .menu-toggle {
    width: 44px;
    height: 44px;
  }
  body[data-page="menu"] .main-nav {
    top: 72px;
    height: calc(100dvh - 72px);
  }
  .menu-order-hero {
    padding: 48px 16px 58px;
    gap: 28px;
  }
  .menu-order-hero h1 {
    font-size: clamp(47px, 14vw, 66px);
  }
  .menu-order-hero > div > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.55;
  }
  .menu-order-hero > aside {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
  }
  .modern-menu {
    padding: 48px 14px;
  }
  .menu-section-head h2 {
    font-size: clamp(39px, 12vw, 54px);
  }
  .category-nav {
    gap: 7px;
    margin-bottom: 36px;
  }
  .category-nav a {
    min-height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
  }
  .menu-category {
    margin-bottom: 48px;
    content-visibility: auto;
    contain-intrinsic-size: 680px;
  }
  .menu-category-heading {
    margin-bottom: 16px;
  }
  .menu-category-heading h2 {
    font-size: 30px;
  }
  .menu-category-heading > span {
    padding-bottom: 14px;
  }
  .menu-items-grid {
    gap: 26px;
  }
  .menu-card-media {
    border-radius: 14px;
  }
  .modern-menu .menu-card h3 {
    font-size: 19px;
  }
  .modern-menu .menu-card-body > p {
    font-size: 12px;
    line-height: 1.45;
  }
  .cart-drawer {
    height: min(88dvh, 720px);
    padding-top: 20px;
  }
  .site-footer {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
}


/* Transparent Lunch Box identity and final non-green action palette. */
.brand img,
.footer-brand img {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand img {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
}

.button-ghost,
.button-light,
.button-ghost:hover,
.button-light:hover {
  color: #111 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2) !important;
}

.button-ghost:hover,
.button-light:hover {
  background: #ececec !important;
}

.header-cart,
.main-nav .cart-button,
.header-cart:hover,
.main-nav .cart-button:hover {
  color: #111 !important;
  border-color: #fff !important;
  background: #fff !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24) !important;
}

.header-cart:hover,
.main-nav .cart-button:hover {
  background: #ececec !important;
}

.header-cart .cart-preview-total,
.main-nav .cart-button .cart-preview-total {
  color: rgba(17, 17, 17, 0.7) !important;
}

.header-cart strong,
.main-nav .cart-button strong {
  color: #fff !important;
  background: #111 !important;
}

/* Final Lunch Box component overrides */
.site-header { background: rgba(8, 8, 8, 0.96); }
.brand { height: 74px; }
.brand img { background: #fff; border-radius: 8px; padding: 3px 8px; }
.main-nav > a:hover,
.main-nav > a.active { border-color: #ed1c24; }
.nav-cta,
.nav-cta:hover { background: #ed1c24; border-color: #ed1c24 !important; }
.home-hero .hero-media { object-position: center 48%; filter: saturate(0.93) contrast(1.04); }
.home-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.26) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}
.button-primary { color: #fff; background: #ed1c24; }
.button-primary:hover { background: #bd1017; }
.eyebrow,
.eyebrow.dark,
.text-link,
.feature-list article > span { color: #ed1c24; }
.private-events,
.status-promo { background: #ed1c24; }
.private-events .eyebrow,
.status-promo .eyebrow { color: #fff; }
.site-footer { background: #090909; }
.footer-brand img { background: #fff; border-radius: 10px; padding: 5px; }
.menu-card-badge,
.custom-badge { background: #ed1c24 !important; color: #fff !important; }
.category-nav button.active { background: #ed1c24; border-color: #ed1c24; }
.cart-item-placeholder { background: #ed1c24; color: #fff; }

@media (max-width: 760px) {
  .brand { width: 155px; height: 58px; }
  .home-hero .hero-media { object-position: 53% center; }
}

/* Compact, consistent menu controls and phone dialogs */
body[data-page="menu"] button {
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
body[data-page="menu"] button:focus {
  outline: none;
}
body[data-page="menu"] button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(7, 19, 13, 0.2);
}
.modern-menu .add-button,
.modern-menu .add-button:hover,
.modern-menu .add-button:active {
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 19, 13, 0.16);
  border-radius: 10px;
  color: var(--forest);
  background: var(--yellow);
  box-shadow: 0 4px 12px rgba(7, 19, 13, 0.14);
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  transform: none;
}
.modern-menu .add-button:hover {
  background: #f6c900;
}
.modern-menu .add-button:active {
  box-shadow: 0 2px 6px rgba(7, 19, 13, 0.12);
  transform: translateY(1px);
}
.dialog-close,
.cart-head .icon-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #d8ddd7;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  z-index: 3;
}
.cart-head .icon-close {
  position: relative;
  top: auto;
  right: auto;
}
.dialog-close span,
.icon-close span {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
}
.dialog-close span::before,
.dialog-close span::after,
.icon-close span::before,
.icon-close span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.dialog-close span::before,
.icon-close span::before {
  transform: rotate(45deg);
}
.dialog-close span::after,
.icon-close span::after {
  transform: rotate(-45deg);
}
.dialog-close:hover,
.cart-head .icon-close:hover {
  border-color: #bfc7c0;
  background: #f2f4f0;
}
.checkout-dialog {
  position: relative;
  max-height: calc(100dvh - 20px);
  margin: auto;
  overflow: auto;
  overscroll-behavior: contain;
}
.checkout-dialog .button {
  min-height: 48px;
  border-radius: 10px;
  box-shadow: none;
}

@media (max-width: 600px) {
  .modern-menu .add-button,
  .modern-menu .add-button:hover,
  .modern-menu .add-button:active {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
  }
  .checkout-dialog,
  .customize-dialog {
    width: calc(100% - 12px);
    max-width: 420px;
    max-height: calc(100dvh - 12px);
    margin: auto;
    padding: 16px;
    border-radius: 14px;
    overflow: auto;
  }
  .checkout-dialog .dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
  .checkout-dialog > .eyebrow {
    margin: 0 48px 7px 0;
    font-size: 8px;
  }
  .checkout-dialog h2 {
    max-width: calc(100% - 42px);
    margin: 0 0 14px;
    font-size: 27px;
    line-height: 1.06;
    letter-spacing: -0.035em;
  }
  .checkout-dialog label {
    gap: 4px;
    margin: 8px 0;
    font-size: 10px;
  }
  .checkout-dialog input,
  .checkout-dialog textarea {
    min-height: 42px;
    padding: 9px 11px;
    border-radius: 9px;
    font-size: 16px;
  }
  .checkout-dialog textarea {
    min-height: 58px;
    max-height: 72px;
  }
  .checkout-dialog .age-check {
    min-height: 34px;
    margin: 7px 0 10px;
    gap: 8px;
    line-height: 1.35;
  }
  .checkout-dialog .age-check input {
    width: 18px;
    min-height: 18px;
    height: 18px;
    margin-top: 1px;
  }
  .checkout-dialog .button {
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 9px;
  }
  .checkout-dialog .form-message {
    min-height: 0;
    margin: 7px 0 0;
    font-size: 10px;
  }
  .customize-dialog[open] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .customize-dialog .customize-description {
    margin: -5px 44px 10px 0;
    font-size: 11px;
    line-height: 1.4;
  }
  .customize-dialog form {
    min-height: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .customize-groups {
    min-height: 0;
    padding: 2px 2px 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 9px;
  }
  .customize-group {
    padding: 10px 8px;
    border-radius: 9px;
  }
  .customize-group legend {
    font-size: 11px;
  }
  .customize-group > p {
    margin-bottom: 7px;
    font-size: 10px;
  }
  .customize-group > div {
    gap: 5px;
  }
  .customize-group label {
    min-height: 44px;
    padding: 7px 8px;
    gap: 8px;
  }
  .customize-group input {
    width: 18px;
    min-height: 18px;
    height: 18px;
  }
  .customize-dialog .form-message {
    margin: 5px 0;
  }
  .customize-dialog #addCustomized {
    flex: none;
  }
}

/* Straightforward menu and status layout */
body[data-page="menu"],
body[data-page="status"],
body[data-page="menu"] h1,
body[data-page="menu"] h2,
body[data-page="menu"] h3,
body[data-page="menu"] button,
body[data-page="menu"] input,
body[data-page="menu"] textarea,
body[data-page="status"] h1,
body[data-page="status"] h2,
body[data-page="status"] h3,
body[data-page="status"] button,
body[data-page="menu"] .main-nav > a:not(.nav-cta),
body[data-page="status"] .main-nav > a:not(.nav-cta) {
  font-family: "Inter", "DM Sans", sans-serif;
}
.menu-order-hero,
.status-hero {
  justify-content: flex-start;
}
.menu-order-hero > div,
.status-hero > div:first-child {
  max-width: 760px;
}
.menu-order-hero h1,
.status-hero h1,
.menu-section-head h2,
.status-promo h2,
.status-page-heading h2,
.status-order-person h3,
.status-empty h3,
.cart-head h2,
.checkout-dialog h2 {
  font-family: "Inter", "DM Sans", sans-serif;
}

.category-nav button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.category-nav button:hover,
.category-nav button:focus-visible,
.category-nav button.active {
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}
.menu-catalog {
  max-width: 1440px;
}
.bottle-service-section {
  margin-top: 86px;
  padding-top: 54px;
  border-top: 2px solid var(--forest);
}
.bottle-service-heading {
  margin-bottom: 28px;
}
.bottle-service-heading h2 {
  margin: 3px 0 8px;
  font-size: clamp(32px, 4vw, 52px);
}
.bottle-service-heading > span {
  color: var(--muted);
}
.bottle-subcategory + .bottle-subcategory {
  margin-top: 42px;
}
.bottle-subcategory > h3 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}
.bottle-service-card {
  border-color: rgba(24, 107, 61, 0.28) !important;
}
.tip-picker {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.tip-picker legend {
  padding: 0 6px;
  font-weight: 750;
}
.tip-picker > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}
.tip-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.tip-options button {
  min-height: 42px;
  color: #000;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.tip-options button.active {
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}
.tip-picker .custom-tip {
  margin-top: 12px;
}
.checkout-total {
  margin-top: 15px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.coupon-entry {
  margin: 16px 0;
  padding: 0;
  border: 0;
}
.coupon-entry legend {
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
}
.coupon-entry > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.coupon-entry button {
  min-width: 84px;
  padding: 0 16px;
  border: 1px solid var(--forest);
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
  font-weight: 700;
  cursor: pointer;
}
.coupon-entry button:disabled {
  opacity: 0.55;
}
.coupon-entry > p {
  min-height: 18px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.coupon-entry > p.success {
  color: var(--green);
}
.coupon-entry > p.error {
  color: #a32626;
}
.checkout-discount {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--green);
  font-size: 13px;
}
.checkout-discount[hidden] {
  display: none;
}
.menu-items-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 20px;
}
.menu-photo-placeholder {
  background: #e5e6e1;
}
.menu-photo-placeholder span {
  position: static;
  padding: 20px;
  color: #5f675f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
.status-hero {
  min-height: 440px;
  background: linear-gradient(120deg, #06150b, #174829);
}

@media (max-width: 1240px) {
  .menu-items-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .menu-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .category-nav button {
    min-height: 40px;
    padding: 0 12px;
  }
}

/* Site typography: Sora headings, Inter everywhere else */
html,
body,
button,
input,
textarea,
select,
a,
p,
label,
.main-nav > a:not(.nav-cta),
.split-section .lead,
.story-kicker,
.story-lead,
.cart-item-placeholder {
  font-family: "Inter", Arial, sans-serif !important;
}
h1,
h2,
h3,
h1 em,
h2 em,
h3 em,
.hero-copy h1,
.page-hero h1,
.menu-hero h1,
.contact-intro h1,
.split-section h2,
.photo-copy h2,
.hours-section h2,
.event-rental h2,
.booking-banner h2,
.contact-rental h2,
.section-heading h2,
.events-title-band h1,
.menu-order-hero h1,
.status-hero h1,
.menu-section-head h2,
.menu-category-heading h2,
.status-promo h2,
.status-page-heading h2,
.status-order-person h3,
.status-empty h3,
.cart-head h2,
.checkout-dialog h2,
.event-card h3,
.menu-card h3 {
  font-family: "Sora", "Inter", Arial, sans-serif !important;
  font-style: normal;
}

/* Featured menu items and Drink of the Night */
.menu-card-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(7, 19, 13, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}
.menu-card-badge.night-badge {
  color: #312200;
  background: var(--yellow);
}
.menu-card-badge.custom-badge {
  color: #fff;
  background: #176b3d;
}
.customize-dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(88dvh, 850px);
  overflow-y: auto;
}
.customize-description {
  margin: -6px 0 22px;
  color: var(--muted);
}
.customize-groups {
  display: grid;
  gap: 15px;
}
.customize-group {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.customize-group legend {
  padding: 0 7px;
  font-weight: 800;
}
.customize-group legend span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.customize-group > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
}
.customize-group > div {
  display: grid;
  gap: 7px;
}
.customize-group label {
  min-height: 52px;
  margin: 0;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border-radius: 8px;
  background: #f4f6f2;
  cursor: pointer;
}
.customize-group input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--green);
}
.customize-group label span strong,
.customize-group label span small {
  display: block;
}
.customize-group label span small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
.customize-group label b {
  font-size: 11px;
}
.customize-group label:has(input:checked) {
  outline: 2px solid var(--green);
  background: #e8f4ec;
}
.customize-dialog .form-message {
  min-height: 20px;
  margin: 12px 0;
}
.cart-options {
  color: #206b40 !important;
  font-weight: 600;
}
.modern-menu .menu-card.drink-of-night {
  padding: 8px 8px 12px;
  border-radius: 22px;
  background: #fff5d3;
  box-shadow: 0 18px 42px rgba(91, 64, 0, 0.13);
}
.modern-menu .menu-card.drink-of-night:hover {
  box-shadow: 0 20px 48px rgba(91, 64, 0, 0.18);
}
.modern-menu .menu-card.drink-of-night .menu-card-media {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}
.modern-menu .menu-card.drink-of-night .menu-card-body {
  padding-right: 8px;
  padding-left: 8px;
}
.modern-menu .menu-card.drink-of-night h3 {
  color: #6c4a00;
}
@media (max-width: 600px) {
  .customize-dialog {
    width: calc(100% - 16px);
    max-height: 92dvh;
    padding: 25px 16px 18px;
  }
  .customize-group {
    padding: 13px 10px;
  }
  .customize-group legend span {
    display: block;
    margin: 3px 0 0;
  }
}

/* Policy pages and cookie choices */
.legal-links {
  grid-column: 1/4;
  grid-row: 2;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-links a,
.legal-links button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal-links a:hover,
.legal-links button:hover {
  color: #fff;
}
.footer-credit {
  grid-column: 4;
  grid-row: 2;
  width: 100%;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}
.footer-credit a {
  color: #fff;
  font-weight: 700;
}
.footer-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-credit a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
.legal-hero {
  padding: clamp(70px, 9vw, 120px) 7vw;
  color: #fff;
  background: linear-gradient(125deg, #07130d, #174829);
}
.legal-hero > div {
  max-width: 920px;
}
.legal-hero h1 {
  margin: 8px 0 20px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}
.legal-content {
  padding: clamp(55px, 8vw, 100px) 7vw;
  background: var(--paper);
}
.legal-document {
  max-width: 900px;
  margin: auto;
}
.legal-updated {
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.legal-document section {
  margin: 0 0 42px;
  scroll-margin-top: 110px;
}
.legal-document h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.legal-document h3 {
  margin: 24px 0 8px;
  font-size: 17px;
}
.legal-document p,
.legal-document li {
  color: #4f5c53;
  line-height: 1.75;
}
.legal-document ul,
.legal-document ol {
  padding-left: 22px;
}
.legal-document a {
  color: #176b3d;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-callout {
  padding: 20px 22px;
  border-left: 4px solid var(--yellow);
  background: #f3f4ee;
}
.legal-contact {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1180px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #fff;
  background: #07130d;
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.32);
}
.cookie-banner h2 {
  margin: 0 0 5px;
  font-size: 18px;
}
.cookie-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}
.cookie-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 9px;
}
.cookie-actions button {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
}
.cookie-deny {
  color: #fff;
  background: transparent;
}
.cookie-accept {
  color: #07130d;
  background: #fff;
}
.cookie-actions button:focus-visible,
.legal-links a:focus-visible,
.legal-links button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
@media (max-width: 980px) {
  .legal-links {
    grid-column: 1;
    grid-row: 3;
  }
  .footer-credit {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (max-width: 760px) {
  .legal-links {
    gap: 10px 18px;
  }
  .legal-hero {
    padding: 58px 20px;
  }
  .legal-hero p:not(.eyebrow) {
    font-size: 15px;
  }
  .legal-content {
    padding: 48px 18px;
  }
  .legal-document section {
    margin-bottom: 34px;
  }
  .cookie-banner {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-actions button {
    width: 100%;
    min-height: 48px;
    padding: 10px;
  }
}
@media (max-width: 390px) {
  .cookie-actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .legal-links,
  .footer-credit {
    grid-column: 1;
    grid-row: auto;
  }
  .footer-credit {
    padding-top: 0;
    border-top: 0;
    text-align: left;
  }
}
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #10251b;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Final phone dialog sizing: keep these last so older responsive rules cannot win. */
@media (max-width: 600px) {
  body[data-page="menu"] .customize-dialog[open] {
    width: calc(100% - 12px);
    max-width: 420px;
    max-height: calc(100dvh - 12px);
    margin: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
  }
  body[data-page="menu"] .customize-dialog form {
    min-height: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  body[data-page="menu"] .customize-dialog .customize-groups {
    min-height: 0;
    padding: 2px 2px 8px;
    overflow-y: auto;
    gap: 9px;
  }
  body[data-page="menu"] .customize-dialog .customize-group {
    padding: 10px 8px;
    border-radius: 9px;
  }
  body[data-page="menu"] .customize-dialog .customize-group legend span {
    display: inline;
    margin: 0 0 0 6px;
  }
}

/* Menu actions and dialogs: final overrides for reliable phone ordering. */
body[data-page="menu"] .modern-menu .add-button,
body[data-page="menu"] .modern-menu .add-button:hover,
body[data-page="menu"] .modern-menu .add-button:active {
  right: 8px;
  bottom: 8px;
  width: auto;
  min-width: 64px;
  height: 34px;
  min-height: 34px;
  padding: 0 5px 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: #07130d;
  box-shadow: 0 10px 28px rgba(3, 15, 8, 0.28);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
body[data-page="menu"] .modern-menu .add-button span {
  display: inline;
}
body[data-page="menu"] .modern-menu .add-button b {
  width: 22px;
  height: 22px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07130d;
  background: var(--yellow);
}
body[data-page="menu"] .modern-menu .add-button svg {
  width: 13px;
  height: 13px;
  overflow: visible;
}
body[data-page="menu"] .modern-menu .add-button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}
body[data-page="menu"] .modern-menu .add-button:hover {
  color: #07130d;
  background: var(--yellow);
  border-color: var(--yellow);
}
body[data-page="menu"] .modern-menu .add-button:hover b {
  color: #fff;
  background: #07130d;
}
body[data-page="menu"] .modern-menu .add-button:active {
  transform: translateY(1px);
  box-shadow: 0 5px 16px rgba(3, 15, 8, 0.24);
}

body[data-page="menu"] .checkout-dialog[open] {
  position: fixed;
  inset: 0;
  margin: auto;
}

/* Dense event list for a busy calendar */
body[data-page="events"] .events-section {
  padding-top: 42px;
  padding-bottom: 55px;
}
body[data-page="events"] .events-top .section-heading {
  margin-bottom: 22px;
}
body[data-page="events"] .events-grid {
  gap: 14px;
}
body[data-page="events"] .booking-banner h2 {
  margin: 0 0 24px;
}
body[data-page="events"] .booking-banner p:not(.eyebrow) {
  margin: 0;
  line-height: 1.6;
}
body[data-page="events"] .event-card {
  min-height: 275px;
  max-height: 275px;
  grid-template-columns: minmax(260px, 34%) 1fr;
  overflow: hidden;
}
body[data-page="events"] .event-card img {
  width: 100%;
  height: 275px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
}
body[data-page="events"] .event-card-copy {
  min-width: 0;
  padding: 24px clamp(26px, 3.5vw, 48px);
}
body[data-page="events"] .event-card h3 {
  margin: 6px 0 8px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
}
body[data-page="events"] .event-date,
body[data-page="events"] .event-time {
  margin: 0;
}
body[data-page="events"] .event-description {
  max-width: 760px;
  margin: 12px 0 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  body[data-page="events"] .events-section {
    padding: 35px 14px 45px;
  }
  body[data-page="events"] .event-card {
    min-height: 0;
    max-height: none;
    grid-template-columns: 1fr;
  }
  body[data-page="events"] .event-card img {
    height: 187px;
    min-height: 0;
  }
  body[data-page="events"] .event-card-copy {
    padding: 20px;
  }
  body[data-page="events"] .event-card h3 {
    font-size: 26px;
  }
  body[data-page="events"] .booking-banner h2 {
    margin-bottom: 18px;
  }
}

/* High-volume pickup board: compact horizontal rows */
body[data-page="status"] .status-page {
  padding: 24px 4vw 42px;
}
body[data-page="status"] .status-page-heading,
body[data-page="status"] .status-board-modern,
body[data-page="status"] .status-privacy {
  width: 100%;
  max-width: 1500px;
}
body[data-page="status"] .status-page-heading {
  margin-bottom: 16px;
  align-items: center;
}
body[data-page="status"] .status-page-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}
body[data-page="status"] .status-board-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
body[data-page="status"] .status-order-card {
  min-height: 88px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 210px minmax(320px, 1fr) 180px 190px;
  grid-template-areas: "head person track note";
  align-items: center;
  gap: 22px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(6, 31, 16, 0.045);
}
body[data-page="status"] .status-order-head {
  grid-area: head;
}
body[data-page="status"] .status-order-head > span {
  font-size: 10px;
}
body[data-page="status"] .status-order-person {
  grid-area: person;
  min-width: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(100px, 0.45fr) minmax(180px, 1.55fr);
  grid-template-areas: "label items" "name items";
  align-items: center;
  column-gap: 18px;
}
body[data-page="status"] .status-order-person small {
  grid-area: label;
}
body[data-page="status"] .status-order-person h3 {
  grid-area: name;
  margin: 1px 0 0;
  font-size: 22px;
  line-height: 1.05;
}
body[data-page="status"] .status-order-person p {
  grid-area: items;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body[data-page="status"] .status-order-track {
  grid-area: track;
}
body[data-page="status"] .status-order-track i {
  height: 6px;
}
body[data-page="status"] .status-order-note {
  grid-area: note;
  margin: 0;
  font-size: 10px;
  line-height: 1.35;
}
body[data-page="status"] .status-privacy {
  margin-top: 16px;
}

@media (max-width: 1050px) {
  body[data-page="status"] .status-order-card {
    grid-template-columns: 190px minmax(0, 1fr);
    grid-template-areas:
      "head person"
      "track note";
    gap: 12px 20px;
  }
}

@media (max-width: 680px) {
  body[data-page="status"] .status-page {
    padding: 22px 14px 38px;
  }
  body[data-page="status"] .status-page-heading h2 {
    font-size: 38px;
  }
  body[data-page="status"] .status-order-card {
    min-height: 0;
    padding: 14px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "person"
      "track"
      "note";
    gap: 11px;
  }
  body[data-page="status"] .status-order-person {
    grid-template-columns: minmax(90px, 0.5fr) minmax(0, 1.5fr);
  }
  body[data-page="status"] .status-order-person p {
    white-space: normal;
  }
}

/* Compact contact flow: hero, map, then visit details */
body[data-page="contact"] .contact-intro {
  min-height: 150px;
  height: 150px;
  display: flex;
  align-items: center;
}
body[data-page="contact"] .contact-intro > div {
  width: 100%;
  padding: 24px 6vw;
}
body[data-page="contact"] .contact-intro h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.95;
}
body[data-page="contact"] .contact-map {
  padding: 20px 6vw 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body[data-page="contact"] .contact-map iframe {
  min-height: 350px;
  height: 350px;
  border-radius: var(--radius) var(--radius) 0 0;
}
body[data-page="contact"] .contact-map > div {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fff;
}
body[data-page="contact"] .contact-map h2 {
  font-size: clamp(28px, 2.8vw, 40px);
}
body[data-page="contact"] .contact-map p:not(.eyebrow) {
  margin: 8px 0 0;
}
body[data-page="contact"] .contact-map .button {
  flex: none;
}
body[data-page="contact"] .contact-cards {
  padding: 0 6vw 32px;
}
body[data-page="contact"] .contact-cards article {
  min-height: 0;
  padding: 20px 28px;
}
body[data-page="contact"] .contact-cards h2 {
  margin: 14px 0 8px;
}
body[data-page="contact"] .contact-cards h2 > a:last-child {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

@media (max-width: 680px) {
  body[data-page="contact"] .contact-intro {
    min-height: 0;
    height: 120px;
  }
  body[data-page="contact"] .contact-intro > div {
    padding: 20px 22px;
  }
  body[data-page="contact"] .contact-intro h1 {
    font-size: 36px;
  }
  body[data-page="contact"] .contact-map {
    padding: 18px 18px 12px;
  }
  body[data-page="contact"] .contact-map iframe {
    min-height: 280px;
    height: 280px;
  }
  body[data-page="contact"] .contact-map > div {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  body[data-page="contact"] .contact-map .button {
    width: 100%;
  }
  body[data-page="contact"] .contact-cards {
    padding: 0 18px 45px;
  }
  body[data-page="contact"] .contact-cards article {
    min-height: 0;
    padding: 20px 22px;
  }
}

@media (max-width: 600px) {
  body[data-page="menu"] .modern-menu .add-button,
  body[data-page="menu"] .modern-menu .add-button:hover,
  body[data-page="menu"] .modern-menu .add-button:active {
    right: 8px;
    bottom: 8px;
    min-width: 66px;
    height: 34px;
    min-height: 34px;
  }
  body[data-page="menu"] .customize-dialog[open] {
    position: fixed;
    inset: 0;
    width: calc(100% - 20px);
    height: min(720px, calc(100dvh - 20px));
    max-height: calc(100dvh - 20px);
    margin: auto;
    padding: 20px 16px 16px;
    overflow: hidden;
    border-radius: 18px;
  }
}

/* Final Lunch Box palette: ordering controls use clean white and black. */
body[data-page="menu"] .modern-menu .add-button,
body[data-page="menu"] .modern-menu .add-button:hover,
body[data-page="menu"] .modern-menu .add-button:active {
  border-color: #111;
  background: #fff;
  color: #111;
}

body[data-page="menu"] .modern-menu .add-button b,
body[data-page="menu"] .modern-menu .add-button:hover b {
  background: #111;
  color: #fff;
}

body[data-page="menu"] .modern-menu .add-button svg,
body[data-page="menu"] .modern-menu .add-button svg path {
  color: #111;
  fill: currentColor;
}

/* Final alignment and palette pass. */
.button-primary,
.button-primary:hover,
.nav-cta,
.nav-cta:hover {
  border-color: #ed1c24 !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24) !important;
}

.button-primary:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.72) !important;
}

.home-hero {
  justify-content: center;
}

.home-hero .hero-copy {
  width: min(980px, 100%);
  max-width: none;
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.home-hero .hero-copy > p:not(.eyebrow) {
  margin-inline: auto;
}

.home-hero .button-row {
  justify-content: center;
}

.home-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 60%);
}

.menu-section-head,
.category-nav {
  width: min(1260px, 100%);
}

.menu-section-head {
  max-width: 1260px;
}

@media (min-width: 981px) {
  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  }

  .site-header .brand {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .main-nav,
  body[data-page="menu"] .main-nav {
    grid-column: 2;
    justify-content: center;
    padding-right: 0;
  }

  .site-header .header-cart {
    position: static;
    grid-column: 3;
    justify-self: end;
    transform: none;
  }
}

/* Checkout starts with pickup timing, followed by contact and order review. */
#checkoutDialog {
  width: min(620px, calc(100% - 28px));
  overflow-x: hidden;
}
#checkoutDialog .checkout-section {
  min-width: 0;
  min-inline-size: 0;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
#checkoutDialog .checkout-section > legend {
  padding: 0 7px;
  font-size: 15px;
  font-weight: 800;
}
.checkout-section-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}
.checkout-timing-options {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#checkoutDialog .checkout-timing-options label {
  margin: 0;
  display: block;
  cursor: pointer;
}
.checkout-timing-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-timing-options label > span {
  min-height: 76px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}
.checkout-timing-options label > span strong {
  font-size: 14px;
}
.checkout-timing-options label > span small {
  color: var(--muted);
  font-weight: 500;
}
.checkout-timing-options input:checked + span {
  border-color: #111;
  color: #fff;
  background: #111;
  box-shadow: 0 0 0 2px #111;
}
.checkout-timing-options input:checked + span small {
  color: rgba(255, 255, 255, .72);
}
.checkout-timing-options input:disabled + span {
  opacity: .42;
  cursor: not-allowed;
}
#checkoutDialog .checkout-time-select {
  margin: 12px 0;
  opacity: .45;
  transition: opacity 160ms ease;
}
#checkoutDialog .checkout-time-select.active {
  opacity: 1;
}
#checkoutDialog select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
#checkoutDialog .cart-fulfillment-summary {
  margin: 12px 0 0;
}
.checkout-contact {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.checkout-contact legend,
.checkout-contact label:first-of-type {
  grid-column: 1 / -1;
}
.checkout-review-line {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.checkout-review-line div {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.checkout-review-line small {
  color: var(--muted);
}
.checkout-add-more {
  margin: 12px 0 4px;
  padding: 0;
  border: 0;
  color: #111;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 600px) {
  #checkoutDialog {
    width: calc(100% - 12px);
    max-width: 420px;
  }
  #checkoutDialog .checkout-section {
    margin-bottom: 14px;
    padding: 13px;
  }
  #checkoutDialog .checkout-section > legend {
    font-size: 13px;
  }
  .checkout-timing-options label > span {
    min-height: 68px;
    padding: 11px;
  }
  .checkout-contact {
    display: block;
  }
}

@media (max-width: 760px) {
  .menu-section-head,
  .category-nav {
    width: 100%;
  }

  .category-nav {
    margin-right: 0;
    margin-left: 0;
  }
}

/* Keep the final centered-hero treatment after all legacy page rules. */
.page-hero,
.menu-hero,
.legal-hero,
.menu-order-hero,
.status-hero,
.events-title-band,
.contact-intro {
  justify-content: center;
  text-align: center;
}

.page-hero,
.menu-hero,
.legal-hero,
.menu-order-hero,
.status-hero,
.events-title-band,
.contact-intro {
  align-items: center;
}

.page-hero > div,
.menu-hero > div,
.legal-hero > div,
.menu-order-hero > div,
.status-hero > div,
.events-title-band > div,
.contact-intro > div {
  margin-inline: auto;
}

.page-hero p:not(.eyebrow),
.menu-hero p:not(.eyebrow),
.legal-hero p:not(.eyebrow),
.menu-order-hero > div > p:not(.eyebrow),
.status-hero > div > p:not(.eyebrow),
.events-title-band p:not(.eyebrow),
.contact-intro p:not(.eyebrow) {
  margin-inline: auto;
}

.menu-order-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url("assets/images/lunch-box/4121.webp") center 58% / cover;
}

.menu-hero-actions {
  justify-content: center;
}

body[data-page="contact"] .contact-intro,
body[data-page="events"] .events-title-band {
  min-height: 150px;
  height: 150px;
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background: #090909;
}

body[data-page="contact"] .contact-intro > div,
body[data-page="events"] .events-title-band > div {
  width: 100%;
  padding: 0;
}

body[data-page="events"] .events-title-band h1 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.95;
}

body[data-page="events"] .event-card {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

body[data-page="events"] .event-date {
  color: #ed1c24;
}

body[data-page="events"] .booking-banner {
  padding: clamp(72px, 9vw, 120px) 7vw;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  background: #090909;
  text-align: center;
}

body[data-page="events"] .booking-banner > div {
  max-width: 900px;
}

body[data-page="events"] .booking-banner p:not(.eyebrow) {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 560px) {
  body[data-page="contact"] .contact-intro,
  body[data-page="events"] .events-title-band {
    min-height: 120px;
    height: 120px;
    padding: 20px 18px;
  }
}

/* Full-bleed homepage food hero. */
body[data-page="home"] .home-hero {
  min-height: clamp(520px, 70vh, 720px);
  align-items: center;
  color: #fff;
  background: #111;
}

body[data-page="home"] .home-hero .hero-media {
  display: block;
  object-position: center 42%;
  filter: saturate(0.96) contrast(1.05);
}

body[data-page="home"] .home-hero .hero-shade {
  display: block;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 60%);
}

body[data-page="home"] .home-hero .hero-copy {
  width: min(1200px, 100%);
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

body[data-page="home"] .home-hero .hero-copy h1 {
  color: #fff;
  font-size: clamp(22px, 7.25vw, 104px);
  white-space: nowrap;
}

body[data-page="home"] .home-hero .hero-copy h1 em,
body[data-page="home"] .home-hero .eyebrow {
  color: #ed1c24;
}

body[data-page="home"] .home-hero .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

body[data-page="home"] .home-hero .button-ghost,
body[data-page="home"] .home-hero .button-ghost:hover {
  border-color: #111 !important;
  color: #111 !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
}

/* Final navigation layout: four primary links centered, page action at right. */
.site-header .main-nav .nav-cta,
.site-header .main-nav .nav-cta:hover {
  box-sizing: border-box;
  height: 42px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #ed1c24 !important;
  border-radius: 999px;
  color: #fff !important;
  background: #ed1c24 !important;
  box-shadow: 0 8px 18px rgba(237, 28, 36, 0.2) !important;
}

.site-header .main-nav .nav-cta:hover {
  color: #fff !important;
  border-color: #ff434a !important;
  background: #ff434a !important;
}

.site-header .main-nav .nav-cta:focus-visible {
  outline: 2px solid #ed1c24;
  outline-offset: 5px;
  box-shadow: none !important;
}

body[data-page="menu"] .site-header .main-nav .nav-cta {
  display: none !important;
}

@media (min-width: 981px) {
  .site-header .main-nav .nav-cta {
    position: absolute;
    top: 50%;
    right: 4vw;
    transform: translateY(-50%);
  }

  body[data-page="menu"] .site-header .header-cart {
    box-sizing: border-box;
    width: auto;
    height: 42px;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 999px;
  }

  body[data-page="menu"] .site-header .header-cart strong {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 980px) {
  .site-header .main-nav .nav-cta,
  .site-header .main-nav .nav-cta:hover {
    position: static;
    display: block;
    height: auto;
    min-height: 56px;
    margin-top: 12px;
    padding: 18px 20px;
    text-align: left;
  }

  body[data-page="menu"] .site-header .main-nav .nav-cta {
    display: none !important;
  }
}

/* Keep the single-line homepage headline compact and readable. */
body[data-page="home"] .home-hero .hero-copy h1 {
  line-height: 1.03;
  letter-spacing: -0.022em;
}

/* Consistent, readable spacing for large display copy across the site. */
.page-hero h1,
.menu-hero h1,
.menu-order-hero h1,
.status-hero h1,
.contact-intro h1,
.events-title-band h1,
.catering-hero h1,
.split-section h2,
.photo-copy h2,
.hours-section h2,
.event-rental h2,
.booking-banner h2,
.contact-rental h2,
.section-heading h2,
.food-gallery-heading h2,
.home-order-cta h2,
.catering-heading h2,
.catering-cta h2,
.menu-section-head h2,
.menu-category-heading h2,
.status-promo h2,
.status-page-heading h2 {
  line-height: 1.03;
  letter-spacing: -0.022em;
}

.catering-card h3,
.event-card h3,
.menu-card h3,
.status-order-person h3,
.status-empty h3,
.cart-head h2,
.checkout-dialog h2 {
  line-height: 1.12;
  letter-spacing: -0.015em;
}

/* Pickup, delivery, live truck location, and scheduling */
.fulfillment-shell {
  position: sticky;
  z-index: 39;
  top: 96px;
  color: #fff;
  background: #202124;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.fulfillment-inner {
  min-height: 72px;
  padding: 10px max(4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fulfillment-location {
  width: auto;
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 17px;
}
.location-status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #a7a7a7;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .08);
}
.location-open .location-status-dot { background: #4ad67b; box-shadow: 0 0 0 5px rgba(74, 214, 123, .15); }
.location-unavailable .location-status-dot { background: #f1a33c; box-shadow: 0 0 0 5px rgba(241, 163, 60, .14); }
.fulfillment-location > div { min-width: 0; display: grid; gap: 1px; }
.location-meta-row { min-width: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 2px 12px; }
.fulfillment-location small,
.pickup-timing small {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.fulfillment-location strong {
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.location-meta-row > span {
  overflow: hidden;
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.location-meta-row > a {
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.location-meta-row > a:hover { border-color: #fff; }
.location-meta-row > a[hidden] { display: none; }
.fulfillment-control { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; }
.fulfillment-control > span { justify-self: end; margin-right: 18px; font-size: 11px; font-weight: 700; }
.fulfillment-toggle {
  grid-column: 2;
  width: 230px;
  padding: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
}
.fulfillment-toggle button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, .65);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}
.fulfillment-toggle button.active {
  color: #fff;
  background: var(--red);
}
.pickup-timing {
  min-height: 62px;
  padding: 9px max(4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #151618;
}
.pickup-timing > div:first-child { display: grid; }
.pickup-timing > div:first-child strong { font-size: 12px; }
.timing-options { display: flex; align-items: center; gap: 8px; }
.timing-options label { margin: 0; display: block; }
.timing-options input { position: absolute; opacity: 0; pointer-events: none; }
.timing-options label span,
.timing-options select {
  min-height: 38px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}
.timing-options input:checked + span { border-color: #fff; background: #fff; color: #171717; }
.timing-options input:disabled + span { opacity: .4; cursor: not-allowed; }
.timing-options select { min-width: 210px; appearance: auto; }
.timing-options select:disabled { opacity: .4; }

.delivery-dialog {
  width: min(560px, calc(100% - 30px));
  padding: clamp(28px, 5vw, 48px);
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .38);
}
.delivery-dialog::backdrop { background: rgba(0, 0, 0, .68); backdrop-filter: blur(5px); }
.delivery-dialog h2 { margin: 0 0 10px; font-size: clamp(30px, 5vw, 45px); line-height: 1.05; }
.delivery-dialog > p:not(.eyebrow) { color: var(--muted); }
.delivery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 24px;
  line-height: 1;
}
.delivery-partners { margin: 24px 0 18px; display: grid; gap: 12px; }
.delivery-partner {
  min-height: 78px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #fff;
  background: #111;
}
.delivery-partner.ubereats { color: #fff; background: #173d2a; }
.delivery-partner span { display: grid; }
.delivery-partner strong { font-size: 20px; }
.delivery-partner small { color: rgba(255, 255, 255, .65); }
.delivery-partner b { font-size: 11px; }
.delivery-partner.unavailable { color: var(--ink); background: #f1efeb; cursor: not-allowed; opacity: .68; }
.delivery-partner.unavailable small { color: var(--muted); }
.delivery-note { font-size: 11px; }
.delivery-pickup { margin-top: 22px; }
.cart-fulfillment-summary {
  margin-bottom: 14px;
  padding: 13px 14px;
  display: grid;
  border-radius: 12px;
  background: #f1efeb;
}
.cart-fulfillment-summary small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 8px; font-weight: 800; }
.cart-fulfillment-summary strong { font-size: 12px; }

@media (max-width: 980px) {
  .fulfillment-shell { top: 82px; }
  .fulfillment-inner { align-items: center; padding-top: 12px; padding-bottom: 12px; }
  .fulfillment-toggle { width: min(230px, 58vw); }
  .fulfillment-location { padding: 4px 2px 0; }
  .pickup-timing { align-items: stretch; flex-direction: column; gap: 9px; }
  .timing-options { width: 100%; }
  .timing-options label { flex: 1; }
  .timing-options label span { justify-content: center; }
  .timing-options select { min-width: 0; flex: 1.5; }
}
@media (max-width: 560px) {
  .fulfillment-control { display: flex; justify-content: center; }
  .fulfillment-control > span { display: none; }
  .fulfillment-toggle { width: 100%; }
  .fulfillment-location { grid-template-columns: auto minmax(0, 1fr); }
  .timing-options { display: grid; grid-template-columns: 1fr 1fr; }
  .timing-options select { grid-column: 1 / -1; width: 100%; }
  .delivery-partner { align-items: flex-start; flex-direction: column; gap: 8px; }
}

/* Homepage pickup address belongs with the ordering call to action. */
.home-hero .hero-location {
  margin-top: 22px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
  text-shadow: none;
  backdrop-filter: blur(12px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.home-hero .hero-location:hover { transform: translateY(-1px); border-color: #fff; background: rgba(0, 0, 0, .82); }
.home-hero .hero-location:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.home-hero .hero-location > svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: #ed1c24;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-hero .hero-location > div { display: grid; gap: 1px; text-align: left; }
.home-hero .hero-location small {
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-hero .hero-location strong { color: #fff; font-size: 15px; line-height: 1.35; }
.home-hero .hero-location + .button-row { margin-top: 22px; }

@media (max-width: 560px) {
  .home-hero .hero-location {
    width: min(330px, 100%);
    padding: 13px 15px;
    border-radius: 18px;
  }
  .home-hero .hero-location strong { font-size: 13px; }
}

/* Give every public page the visual density of an 80% browser zoom on larger
   screens. Keeping the mobile layout at its native scale preserves tap targets
   and avoids making checkout controls uncomfortably small. */
@media (min-width: 981px) {
  body {
    zoom: 0.8;
  }

  /* Viewport-height units are resolved before CSS zoom is applied. */
  .hero {
    min-height: calc(125vh - 96px);
  }

  .home-hero {
    min-height: clamp(650px, 87.5vh, 900px);
  }
}
