:root {
  --ink: #2b1712;
  --ink-soft: #4a3028;
  --cream: #f4ecdc;
  --cream-deep: #e7d7bd;
  --paper: #fffaf1;
  --red: #c94228;
  --red-dark: #932d1b;
  --gold: #efb735;
  --gold-pale: #f7d978;
  --green: #28633c;
  --green-dark: #173e27;
  --white: #ffffff;
  --muted: #72645a;
  --line: rgba(43, 23, 18, 0.18);
  --shadow: 0 24px 70px rgba(43, 23, 18, 0.16);
  --radius: 18px;
  --display: "Archivo Black", Impact, "Arial Narrow", sans-serif;
  --body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}
body.order-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.announcement p { margin: 0; }
.text-button {
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  padding: 0;
  font-weight: 800;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(244, 236, 220, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  text-decoration: none;
}
.brand-wordmark {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.primary-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: max-content;
  gap: clamp(16px, 3vw, 38px);
}
.header-order { justify-self: end; }
.primary-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.primary-nav a:hover { color: var(--red); }
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 12px 22px;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(43, 23, 18, 0.18); }
.button:active { transform: translateY(0); }
.button--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.button--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.button--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button--cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.button--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.button--ghost { background: transparent; color: var(--ink); border-color: transparent; }
.button--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.75); }
.button--large { min-height: 56px; padding-inline: 28px; }
.button--full { width: 100%; }

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(62px, 8vw, 130px) clamp(24px, 6vw, 92px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow--red { color: var(--red); }
.eyebrow--gold { color: #b57900; }
.eyebrow--green { color: var(--green); }
.hero h1,
.section-heading h2,
.feature-copy h2,
.campaign h2,
.values h2,
.sustainability h2,
.safety h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(3.5rem, 7.4vw, 8.8rem);
  line-height: 0.96;
}
.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.68);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-points li::before { content: "✓"; color: var(--gold); margin-right: 7px; }
.hero-art {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  background: var(--red);
  isolation: isolate;
}
.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
  opacity: 0.45;
}
.hero-art::after {
  inset: auto -100px -180px auto;
  width: 420px;
  height: 420px;
  border: 58px solid rgba(43,23,18,0.18);
  border-radius: 50%;
  background: none;
}
.hero-art img { position: relative; z-index: 2; width: min(95%, 850px); filter: drop-shadow(0 36px 35px rgba(43,23,18,0.32)); }
.sun-disc {
  position: absolute;
  width: min(58vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
}
.hero-stamp {
  position: absolute;
  top: 8%;
  right: 7%;
  z-index: 4;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: rotate(8deg);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 0.9;
  text-align: center;
}
.ingredient {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.86rem;
  transform: rotate(-5deg);
  box-shadow: 5px 5px 0 var(--ink);
}
.ingredient--1 { left: 7%; bottom: 19%; }
.ingredient--2 { right: 8%; bottom: 22%; transform: rotate(5deg); }
.ingredient--3 { left: 12%; top: 17%; transform: rotate(3deg); }

.ticker {
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--gold);
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 15px 0;
  animation: ticker 30s linear infinite;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.star { color: var(--red); }
@keyframes ticker { to { transform: translateX(-50%); } }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
}
.feature-split--cream { background: var(--paper); }
.feature-image {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(30px, 5vw, 78px);
  overflow: hidden;
}
.feature-image--builder { background: var(--gold); }
.feature-image--builder::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 3px solid rgba(43,23,18,0.24);
  pointer-events: none;
}
.feature-image img { width: min(100%, 760px); filter: drop-shadow(0 30px 30px rgba(43,23,18,0.2)); }
.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(52px, 8vw, 120px);
}
.feature-copy h2,
.campaign h2,
.values h2,
.sustainability h2,
.safety h2,
.contact h2,
.section-heading h2 { font-size: clamp(3rem, 5.6vw, 6.8rem); }
.feature-copy p:not(.eyebrow) { max-width: 630px; margin: 26px 0 32px; font-size: 1.08rem; color: var(--muted); }

.menu-section { padding: clamp(70px, 9vw, 140px) clamp(20px, 6vw, 92px); background: var(--cream); }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 40px;
  max-width: 1460px;
  margin: 0 auto 48px;
}
.section-heading > p { max-width: 620px; margin: 0 0 5px; color: var(--muted); font-size: 1.03rem; }
.section-heading--center { display: block; max-width: 940px; text-align: center; }
.section-heading--center > p:last-child { margin: 22px auto 0; }
.menu-tabs {
  max-width: 1460px;
  display: flex;
  gap: 10px;
  margin: 0 auto 32px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.menu-tabs button {
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}
.menu-tabs button[aria-selected="true"] { background: var(--ink); color: var(--white); }
.menu-grid {
  max-width: 1460px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}
.menu-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}
.menu-card-visual {
  position: relative;
  min-height: 225px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--card-color, var(--gold));
  border-bottom: 2px solid var(--ink);
}
.menu-card-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.menu-card-visual img { position: relative; z-index: 1; width: 80%; max-height: 220px; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(43,23,18,0.22)); }
.menu-card-body { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.menu-card-top { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.menu-card h3 { margin: 0; font-family: var(--display); font-size: 1.55rem; line-height: 1; text-transform: uppercase; }
.menu-price { font-weight: 800; white-space: nowrap; }
.menu-card p { margin: 14px 0 22px; color: var(--muted); }
.menu-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.menu-tags span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.menu-card .button { margin-top: auto; }
.menu-note { max-width: 1460px; margin: 34px auto 0; padding: 18px 20px; border-left: 5px solid var(--red); background: rgba(255,255,255,0.46); color: var(--muted); }

.campaign {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  color: var(--white);
}
.campaign--red { background: var(--red); }
.campaign-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(54px, 8vw, 120px); }
.campaign-copy p:not(.eyebrow) { max-width: 600px; margin: 25px 0 32px; font-size: 1.08rem; color: rgba(255,255,255,0.8); }
.campaign-art { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--ink); }
.campaign-art::before { content: ""; position: absolute; inset: -20%; background: repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.04) 20px 22px); transform: rotate(-7deg); }
.campaign-art img { position: relative; z-index: 2; width: min(88%, 760px); filter: drop-shadow(0 32px 24px rgba(0,0,0,.4)); }
.protein-number { position: absolute; z-index: 1; font-family: var(--display); font-size: clamp(12rem, 27vw, 33rem); line-height: 0.8; color: rgba(239,183,53,0.18); }

.catering { padding: clamp(76px, 10vw, 150px) clamp(20px, 6vw, 92px); background: var(--paper); }
.catering-grid { max-width: 1280px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 52px auto 0; }
.catering-card { min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(32px, 5vw, 68px); border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); }
.catering-card--gold { background: var(--gold); }
.catering-card--green { background: var(--green); color: var(--white); }
.card-kicker { margin: 0 0 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.catering-card h3 { margin: 0; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 5.8rem); line-height: .92; text-transform: uppercase; }
.catering-card ul { margin: 28px 0 42px; padding-left: 22px; font-size: 1.04rem; }
.catering-card li + li { margin-top: 10px; }
.catering-card .button { align-self: flex-start; }

.values { padding: clamp(76px, 10vw, 150px) clamp(20px, 6vw, 92px); background: var(--ink); color: var(--white); }
.values-intro { max-width: 1080px; }
.values-intro > p:last-child { max-width: 750px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 64px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.value-card { min-height: 330px; padding: 34px; background: var(--ink); }
.value-number { display: inline-block; color: var(--gold); font-family: var(--display); font-size: 1.2rem; }
.value-card h3 { margin: 70px 0 16px; font-family: var(--display); font-size: 1.8rem; text-transform: uppercase; }
.value-card p { margin: 0; color: rgba(255,255,255,.68); }

.sustainability { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 720px; background: var(--gold-pale); }
.sustainability-art { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--green); color: var(--white); }
.sustainability-art span { position: relative; z-index: 2; font-family: var(--display); font-size: clamp(4rem, 9vw, 10rem); line-height: .82; text-align: center; transform: rotate(-5deg); }
.leaf { position: absolute; width: 260px; height: 460px; border-radius: 100% 0 100% 0; background: rgba(239,183,53,.85); transform: rotate(34deg); }
.leaf--1 { left: -50px; top: -80px; }
.leaf--2 { right: -90px; bottom: -120px; transform: rotate(204deg); background: rgba(255,255,255,.14); }
.leaf--3 { width: 140px; height: 260px; right: 5%; top: 8%; transform: rotate(72deg); background: rgba(201,66,40,.8); }
.sustainability-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 8vw, 120px); }
.sustainability-copy > p:not(.eyebrow) { max-width: 660px; margin: 28px 0 34px; color: var(--muted); font-size: 1.08rem; }
.commitment-list { border-top: 2px solid var(--ink); }
.commitment-list div { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.commitment-list span { color: var(--muted); }

.safety { padding: clamp(76px, 10vw, 150px) clamp(20px, 6vw, 92px); background: var(--cream); }
.safety-heading { max-width: 1160px; }
.safety-heading > p:last-child { max-width: 780px; margin: 28px 0 0; color: var(--muted); font-size: 1.05rem; }
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 60px; }
.safety-grid article { padding: 32px; border: 2px solid var(--ink); background: var(--paper); }
.safety-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); font-family: var(--display); }
.safety-grid h3 { margin: 54px 0 14px; font-family: var(--display); font-size: 1.45rem; text-transform: uppercase; }
.safety-grid p { margin: 0; color: var(--muted); }


/* SECTION: HOMEPAGE — LEAVE US A REVIEW */
.review-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 540px;
  background: var(--green);
  color: var(--white);
  overflow: hidden;
}
.review-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(72px, 8vw, 120px) clamp(24px, 7vw, 110px);
}
.review-cta h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.review-cta-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  line-height: 1.7;
}
.review-cta-art {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
}
.review-cta-art::before,
.review-cta-art::after {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
  opacity: .2;
}
.review-cta-art::before { width: 430px; height: 430px; }
.review-cta-art::after { width: 300px; height: 300px; }
.review-stars {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: .08em;
}
.review-cta-art span,
.review-cta-art strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
}
.review-cta-art span { font-size: clamp(1.2rem, 2vw, 1.8rem); }
.review-cta-art strong {
  margin-top: 8px;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: .86;
  transform: rotate(-4deg);
}

/* SECTION: HOMEPAGE — VISIT OR CONTACT US */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 620px;
  background: var(--paper);
  overflow: hidden;
}
.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 128px) clamp(24px, 6vw, 96px);
}
.contact h2 {
  max-width: 760px;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.045em;
}
.contact-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 850px;
  margin-top: 42px;
}
.contact-detail {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.contact-detail-label {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-detail address,
.contact-detail p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.65;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}
.contact-actions .button { min-height: 52px; }
.button--contact-light {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(43, 23, 18, .28);
}
.button--contact-light:hover {
  border-color: var(--ink);
  background: var(--cream);
}
.contact-art {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.contact-art::before {
  position: absolute;
  width: clamp(300px, 34vw, 540px);
  height: clamp(300px, 34vw, 540px);
  border: 3px solid var(--gold);
  border-radius: 50%;
  content: "";
  opacity: .75;
}
.contact-art::after {
  position: absolute;
  width: clamp(220px, 26vw, 410px);
  height: clamp(220px, 26vw, 410px);
  border-radius: 50%;
  background: var(--gold);
  content: "";
  opacity: .12;
}
.contact-art-city {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .85;
  letter-spacing: -.03em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}
.contact-art-region {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; padding: clamp(50px, 8vw, 110px); }
.contact-form label,
.order-form label,
.field-label { display: flex; flex-direction: column; gap: 8px; font-size: .86rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
}
textarea { resize: vertical; }
.form-help { margin: -5px 0 0; color: var(--muted); font-size: .8rem; font-weight: 500; }
.form-help--center { text-align: center; margin-top: 10px; }

/* SECTION: SITE FOOTER — CLEAN NAVIGATION */
.site-footer {
  padding: 52px clamp(20px, 6vw, 92px) 26px;
  background: var(--ink);
  color: var(--white);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding: 0 0 48px;
}
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links h2 { margin: 0 0 10px; color: var(--gold); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a,
.footer-links button { width: fit-content; border: 0; background: transparent; color: var(--white); padding: 0; text-decoration: none; font-weight: 700; cursor: pointer; }
.footer-links a:hover,
.footer-links button:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.5); font-size: .78rem; }

.order-shell { position: fixed; inset: 0; z-index: 1000; }
.order-backdrop { position: absolute; inset: 0; background: rgba(15, 7, 5, .76); backdrop-filter: blur(4px); }
.order-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(720px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  background: var(--paper);
  box-shadow: -20px 0 70px rgba(0,0,0,.35);
  animation: slide-in 220ms ease-out;
}
@keyframes slide-in { from { transform: translateX(100%); } }
.order-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px 18px; border-bottom: 1px solid var(--line); }
.order-header h2 { margin: 0; font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1; text-transform: uppercase; }
.order-header .eyebrow { margin-bottom: 8px; }
.icon-button { width: 46px; height: 46px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: transparent; font-size: 2rem; line-height: 1; cursor: pointer; }
.order-progress { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); }
.order-progress button { display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-right: 1px solid var(--line); background: var(--cream); padding: 13px 8px; color: var(--muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.order-progress button:last-child { border-right: 0; }
.order-progress button span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.order-progress button[aria-current="step"] { background: var(--gold); color: var(--ink); }
.order-content { overflow-y: auto; padding: 30px 28px 40px; }
.step-heading h3 { margin: 0; font-family: var(--display); font-size: 2rem; text-transform: uppercase; }
.step-heading p { margin: 8px 0 0; color: var(--muted); }
.builder-group { margin-top: 30px; }
.builder-group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.builder-group-heading h4 { margin: 0; font-size: 1rem; }
.builder-group-heading span { color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-card { position: relative; min-height: 78px; display: flex; flex-direction: column; justify-content: center; gap: 4px; border: 2px solid var(--line); border-radius: 8px; background: var(--white); padding: 14px 38px 14px 14px; cursor: pointer; }
.choice-card:hover { border-color: var(--ink); }
.choice-card.is-selected { border-color: var(--red); background: #fff3ed; box-shadow: inset 0 0 0 1px var(--red); }
.choice-card strong { font-size: .9rem; }
.choice-card small { color: var(--muted); }
.choice-card .choice-check { position: absolute; top: 12px; right: 12px; width: 18px; height: 18px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: 50%; font-size: .7rem; }
.choice-card.is-selected .choice-check { border-color: var(--red); background: var(--red); color: var(--white); }
.field-label { margin-top: 28px; }
.builder-total { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin: 24px 0 18px; padding: 18px; background: var(--cream); border: 2px solid var(--ink); }
.builder-total div { display: flex; flex-direction: column; }
.builder-total span { color: var(--muted); font-size: .75rem; text-transform: uppercase; }
.builder-total > strong { font-size: 1.35rem; }
.cart-items { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 18px; border: 2px solid var(--line); background: var(--white); }
.cart-item h4 { margin: 0; font-size: 1rem; }
.cart-item p { margin: 7px 0 0; color: var(--muted); font-size: .84rem; }
.cart-item-actions { display: flex; align-items: center; gap: 6px; margin-top: 14px; }
.qty-button { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--ink); background: transparent; cursor: pointer; }
.remove-button { border: 0; background: transparent; color: var(--red); font-size: .8rem; font-weight: 800; cursor: pointer; }
.cart-item-price { font-weight: 800; white-space: nowrap; }
.empty-cart { margin: 30px 0; padding: 28px; text-align: center; background: var(--cream); }
.empty-cart p { color: var(--muted); }
.cart-totals { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.cart-totals div { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; }
.cart-totals .cart-total { margin-top: 8px; padding-top: 14px; border-top: 2px solid var(--ink); font-size: 1.15rem; }
.order-form { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-span-2 { grid-column: 1 / -1; }
.order-form fieldset { margin: 0; padding: 0; border: 0; }
.order-form legend { margin-bottom: 10px; font-size: .86rem; font-weight: 800; }
.segmented-control { display: grid; grid-template-columns: 1fr 1fr; }
.segmented-control input,
.payment-options input { position: absolute; opacity: 0; pointer-events: none; }
.segmented-control label { display: block; }
.segmented-control span { display: block; border: 2px solid var(--ink); padding: 13px; text-align: center; cursor: pointer; }
.segmented-control label + label span { border-left: 0; }
.segmented-control input:checked + span { background: var(--ink); color: var(--white); }
.payment-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.payment-options label { display: block; }
.payment-options span { min-height: 54px; display: grid; place-items: center; border: 2px solid var(--line); padding: 9px; text-align: center; cursor: pointer; }
.payment-options input:checked + span { border-color: var(--red); background: #fff3ed; }
.delivery-fields { display: flex; flex-direction: column; gap: 16px; padding: 18px; background: var(--cream); }
.check-row { flex-direction: row !important; align-items: flex-start; font-weight: 500 !important; }
.check-row input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; }
.form-errors { color: #9f2413; font-weight: 700; }
.form-errors ul { margin: 0; padding-left: 20px; }

/* SECTION: ORDER FORM — CONFIRMATION DELIVERY */
.confirmation-fieldset { margin-top: 2px !important; }
.confirmation-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.confirmation-options label { display: block; }
.confirmation-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.confirmation-options span {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
  cursor: pointer;
}
.confirmation-options strong { font-size: .9rem; }
.confirmation-options small { color: var(--muted); font-weight: 500; line-height: 1.4; }
.confirmation-options input:checked + span {
  border-color: var(--red);
  background: #fff3ed;
  box-shadow: inset 0 0 0 1px var(--red);
}
.confirmation-options input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.confirmation-status {
  width: min(100%, 520px);
  margin: 18px 0 8px;
  padding: 18px 20px 18px 38px;
  background: var(--cream);
  color: var(--ink);
  text-align: left;
  line-height: 1.55;
}
.confirmation-status:empty { display: none; }
.confirmation-status li + li { margin-top: 8px; }

.review-card { margin-top: 24px; border: 2px solid var(--ink); background: var(--white); }
.review-section { padding: 18px; border-bottom: 1px solid var(--line); }
.review-section:last-child { border-bottom: 0; }
.review-section h4 { margin: 0 0 10px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.review-item { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.review-item p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; }
.review-total { font-size: 1.15rem; font-weight: 800; }
.submit-status { margin: 18px 0; }
.submit-status.is-error { padding: 14px; background: #ffe4dd; color: #812516; }
.order-success { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.success-mark { width: 90px; height: 90px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 3rem; }
.order-success h3 { margin: 0; font-family: var(--display); font-size: 2.6rem; line-height: 1; text-transform: uppercase; }
.order-success > p:not(.eyebrow):not(.order-number) { max-width: 480px; color: var(--muted); }
.order-number { padding: 9px 13px; background: var(--cream); font-weight: 800; letter-spacing: .08em; }
.order-success .button { margin-top: 10px; }
.order-footer { display: flex; justify-content: space-between; gap: 14px; padding: 18px 28px; border-top: 1px solid var(--line); background: var(--paper); }
.order-footer .button:last-child { margin-left: auto; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 2000; transform: translateX(-50%); max-width: min(90vw, 520px); padding: 14px 18px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); font-weight: 700; }

@media (max-width: 1120px) {
  .primary-nav { gap: 15px; }
  .primary-nav a { font-size: .74rem; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); }
  .values-grid, .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 14px; }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 2px solid var(--ink);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .header-order { justify-self: end; }
  .hero, .feature-split, .campaign, .sustainability, .review-cta, .contact { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; }
  .hero-art { min-height: 590px; }
  .feature-split .feature-image { min-height: 540px; }
  .feature-copy { min-height: 560px; }
  .campaign-art { min-height: 560px; order: -1; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .catering-grid { grid-template-columns: 1fr; }
  .sustainability-art { min-height: 600px; }
  .contact-form { min-height: 620px; }
  /* SECTION: HOMEPAGE CONTACT — TABLET LAYOUT */
  .review-cta-art, .contact-art { min-height: 430px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .announcement { align-items: center; justify-content: center; padding-inline: 14px; font-size: .75rem; text-align: center; }
  .site-header { min-height: 70px; padding: 9px 14px; }
  .brand img { width: 44px; height: 44px; }
  .brand-wordmark { font-size: 1rem; }
  .header-order { min-height: 42px; padding: 9px 12px; font-size: .72rem; }
  .hero-copy { min-height: auto; padding: 72px 22px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.4rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-art { min-height: 470px; }
  .hero-stamp { width: 84px; height: 84px; font-size: 1rem; }
  .ingredient { font-size: .68rem; }
  .feature-copy, .campaign-copy, .sustainability-copy, .contact-copy, .contact-form { padding: 64px 22px; }
  .feature-copy h2, .campaign h2, .values h2, .sustainability h2, .safety h2, .contact h2, .section-heading h2 { font-size: clamp(2.8rem, 14vw, 4.8rem); }
  .menu-section, .catering, .values, .safety { padding: 72px 18px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 410px; }
  .catering-card { min-height: 470px; padding: 34px 24px; }
  .values-grid, .safety-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 270px; }
  .value-card h3 { margin-top: 40px; }
  .commitment-list div { grid-template-columns: 1fr; gap: 7px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-header { padding: 18px 16px 14px; }
  .order-progress button { flex-direction: column; gap: 4px; font-size: .64rem; }
  .order-content { padding: 24px 16px 34px; }
  .order-footer { padding: 14px 16px; }
  .choice-grid, .form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: auto; }
  .payment-options, .confirmation-options { grid-template-columns: 1fr; }
  /* SECTION: HOMEPAGE CONTACT — MOBILE LAYOUT */
  .review-cta-copy, .contact-copy { padding: 72px 22px; }
  .contact-details { grid-template-columns: 1fr; gap: 24px; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .button { width: 100%; }
  .review-cta-art, .contact-art { min-height: 340px; padding: 32px 20px; }
  .contact-art-city { font-size: clamp(3.8rem, 18vw, 6rem); }
  .footer-links { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

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

/* Good Eats business-information update */
.official-logo { object-fit: contain; filter: none !important; }
.brand .official-logo { width: 58px; height: 51px; }
/* SECTION: LOCATION PAGE — LOCATION BUTTONS */
.location-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.payment-options { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width:700px){ .payment-options { grid-template-columns:1fr; } .brand .official-logo{width:50px;height:44px;} }


/* SECTION: VERSION 4.4 — UNIVERSAL MOBILE VIEWPORT CONTAINMENT */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
header,
footer,
nav,
aside,
article,
form,
fieldset,
.site-header > *,
.hero > *,
.feature-split > *,
.section-heading > *,
.campaign > *,
.catering-grid > *,
.values-grid > *,
.sustainability > *,
.safety-grid > *,
.review-cta > *,
.contact > *,
.contact-details > *,
.footer-links > *,
.order-panel > *,
.order-content > *,
.choice-grid > *,
.form-grid > *,
.payment-options > *,
.confirmation-options > * {
  min-width: 0;
}

input,
select,
textarea,
button,
.button {
  max-width: 100%;
  min-width: 0;
}

.button,
.primary-nav a,
.footer-links a,
.footer-links button {
  overflow-wrap: anywhere;
  white-space: normal;
}

.order-panel {
  max-width: 100vw;
  overflow-x: hidden;
}

.order-content,
.order-form,
.review-card,
.cart-items,
.cart-item,
.delivery-fields,
.confirmation-status {
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 640px) {
  /* Keep the complete header inside narrow phone viewports. */
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    width: 100%;
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand-wordmark {
    min-width: 0;
    font-size: .92rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .header-order {
    min-height: 40px;
    padding: 8px 10px;
    font-size: .68rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  /* Avoid an internal horizontal scroller for menu filters on phones. */
  .menu-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .menu-tabs button {
    flex: 1 1 auto;
    min-width: 0;
  }

  .hero-copy,
  .feature-copy,
  .campaign-copy,
  .sustainability-copy,
  .review-cta-copy,
  .contact-copy,
  .contact-form,
  .menu-section,
  .catering,
  .values,
  .safety {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .feature-copy h2,
  .campaign h2,
  .values h2,
  .sustainability h2,
  .safety h2,
  .review-cta h2,
  .contact h2,
  .section-heading h2,
  .catering-card h3,
  .value-card h3,
  .safety-grid h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions .button,
  .contact-actions .button,
  .catering-card .button {
    max-width: 100%;
  }

  .menu-card,
  .catering-card,
  .value-card,
  .safety-grid article {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .menu-card-top,
  .builder-group-heading,
  .review-item,
  .cart-totals div {
    min-width: 0;
  }

  .menu-card h3,
  .menu-card p,
  .choice-card strong,
  .choice-card small,
  .cart-item h4,
  .cart-item p,
  .review-item,
  .confirmation-options strong,
  .confirmation-options small {
    overflow-wrap: anywhere;
  }

  .order-header {
    min-width: 0;
    gap: 10px;
  }

  .order-header > div,
  .order-header h2 {
    min-width: 0;
  }

  .order-header h2 {
    overflow-wrap: anywhere;
  }

  .order-progress button {
    min-width: 0;
    padding-inline: 4px;
    overflow-wrap: anywhere;
  }

  .order-progress button span {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }

  .order-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .order-footer .button {
    flex: 1 1 130px;
    min-width: 0;
    padding-inline: 10px;
  }

  .order-footer .button:last-child {
    margin-left: 0;
  }

  .builder-group-heading {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cart-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 520px) {
  .brand-wordmark {
    display: none;
  }

  .brand .official-logo,
  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-art {
    min-height: 410px;
  }

  .sun-disc {
    width: min(82vw, 390px);
  }

  .hero-stamp {
    width: 72px;
    height: 72px;
    font-size: .82rem;
  }

  .review-cta-art,
  .contact-art {
    min-height: 300px;
  }

  .review-cta-art strong,
  .contact-art-city {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-price {
    justify-self: start;
    white-space: normal;
  }

  .review-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 9px;
  }

  .header-order {
    padding-inline: 8px;
    font-size: .64rem;
  }

  .hero-copy,
  .feature-copy,
  .campaign-copy,
  .sustainability-copy,
  .review-cta-copy,
  .contact-copy,
  .contact-form {
    padding-inline: 18px;
  }

  .menu-section,
  .catering,
  .values,
  .safety {
    padding-inline: 16px;
  }

  .order-content {
    padding-inline: 12px;
  }

  .order-footer {
    padding-inline: 12px;
  }
}
