:root {
  --gold: #f4b63f;
  --gold-deep: #a76509;
  --gold-soft: #ffe2a2;
  --ink: #070808;
  --ink-soft: #111414;
  --cream: #fff7e9;
  --cream-deep: #ead6b2;
  --white: #ffffff;
  --muted: #6b6254;
  --red: #c64125;
  --green: #1f7a43;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --page-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
}

body.menu-open,
body.cart-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

section[id],
footer[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(300px, 340px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(8, 9, 9, 0.92)),
    repeating-linear-gradient(120deg, rgba(244, 182, 63, 0.07) 0 1px, transparent 1px 26px);
  color: var(--white);
  border-bottom: 1px solid rgba(244, 182, 63, 0.26);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: 0;
}

.brand-mark img[data-logo] {
  width: 186px;
  height: auto;
}

.service-status-badge {
  flex: 0 0 auto;
  width: 102px;
  max-width: 28vw;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 26px 0 22px;
  color: rgba(255, 255, 255, 0.94);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--gold);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(244, 182, 63, 0.42);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  border-radius: 999px;
}

.gold-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.gold-button {
  color: #171003;
  background: linear-gradient(180deg, #ffd26e, var(--gold) 54%, #d9901c);
  border: 1px solid #ffd67a;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(244, 182, 63, 0.22);
}

.outline-button {
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--gold);
}

.gold-button:hover,
.outline-button:hover {
  transform: translateY(-1px);
}

.outline-button:hover {
  background: rgba(244, 182, 63, 0.12);
}

.gold-button:disabled,
.outline-button:disabled,
.gold-button.is-disabled,
.outline-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
  transform: none;
}

.small-button {
  min-height: 38px;
  padding: 0 20px;
  font-size: 13px;
}

.tiny-button {
  min-height: 28px;
  padding: 0 14px;
  font-size: 12px;
}

.full-button {
  width: 100%;
}

.cart-glyph {
  position: relative;
  width: 18px;
  height: 16px;
  display: inline-block;
}

.cart-glyph::before {
  position: absolute;
  inset: 2px 3px 5px 1px;
  content: "";
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewX(-8deg);
}

.cart-glyph::after {
  position: absolute;
  left: 5px;
  right: 2px;
  bottom: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  box-shadow: 0 0 0 1.5px currentColor, 8px 0 0 1.5px currentColor;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(520px, 1.18fr);
  min-height: 452px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, #050606 0%, #050606 35%, rgba(5, 6, 6, 0.9) 43%, rgba(5, 6, 6, 0.14) 70%),
    repeating-linear-gradient(115deg, rgba(244, 182, 63, 0.08) 0 1px, transparent 1px 30px);
}

.hero-section::before {
  position: absolute;
  left: -120px;
  top: -68px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(244, 182, 63, 0.08);
  background:
    linear-gradient(25deg, transparent 48%, rgba(244, 182, 63, 0.22) 49%, transparent 51%) 0 0 / 34px 34px,
    linear-gradient(155deg, transparent 48%, rgba(244, 182, 63, 0.2) 49%, transparent 51%) 0 0 / 42px 42px;
  transform: rotate(-18deg);
  opacity: 0.48;
  pointer-events: none;
}

.hero-section::after {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 28px;
  content: "";
  background: var(--cream);
  clip-path: ellipse(56% 60% at 50% 100%);
  z-index: 3;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 590px;
  padding: 42px 0 48px clamp(28px, 7.2vw, 104px);
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 0.91;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-copy h1 .hero-title-accent {
  color: var(--gold);
}

.script-word {
  margin: 2px 0 15px;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(43px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 4px 18px rgba(244, 182, 63, 0.16);
}

.hero-description {
  max-width: 430px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  flex-wrap: nowrap;
  gap: 12px;
}

.hero-actions .gold-button,
.hero-actions .outline-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
  white-space: nowrap;
}

.ordering-status {
  max-width: 430px;
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-badges span::before {
  width: 18px;
  height: 18px;
  content: "";
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 36%, 100% 36%, 68% 57%, 80% 95%, 50% 72%, 20% 95%, 32% 57%, 0 36%, 39% 36%);
}

.hero-media {
  position: relative;
  min-height: 452px;
  margin-left: -28px;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(5, 6, 6, 0.72) 0%,
    rgba(5, 6, 6, 0.52) 13%,
    rgba(5, 6, 6, 0.22) 31%,
    rgba(5, 6, 6, 0.05) 50%,
    rgba(5, 6, 6, 0) 70%
  );
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cream-band,
.dark-band {
  position: relative;
  overflow: hidden;
  padding-inline: clamp(22px, 7vw, 96px);
}

.cream-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 247, 233, 0.94)),
    var(--cream);
}

.cream-band::before,
.cream-band::after {
  position: absolute;
  width: 250px;
  height: 250px;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  background:
    linear-gradient(25deg, transparent 48%, var(--gold-deep) 49%, transparent 51%) 0 0 / 32px 32px,
    linear-gradient(155deg, transparent 48%, var(--gold-deep) 49%, transparent 51%) 0 0 / 40px 40px;
}

.cream-band::before {
  left: -96px;
  top: 8px;
}

.cream-band::after {
  right: -90px;
  bottom: -40px;
  transform: rotate(180deg);
}

.dark-band {
  color: var(--white);
  background:
    repeating-linear-gradient(115deg, rgba(244, 182, 63, 0.055) 0 1px, transparent 1px 32px),
    linear-gradient(180deg, #080a0a, #0d100f);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  padding-top: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(167, 101, 9, 0.18);
}

.story-copy,
.feature-grid,
.steps-grid,
.testimonial-grid,
.gallery-strip {
  position: relative;
  z-index: 1;
}

.story-copy h2,
.catering-copy h2,
.location-copy h2,
.section-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.story-copy h2 {
  max-width: 460px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.94;
}

.story-copy h2::first-line,
.catering-copy h2::first-line {
  color: var(--ink);
}

.story-copy p {
  max-width: 520px;
  margin: 10px 0 12px;
  color: #211b14;
  font-size: 16px;
}

.story-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
}

.story-copy strong::before {
  width: 14px;
  height: 14px;
  content: "";
  background: var(--gold-deep);
  transform: rotate(45deg);
  border-radius: 3px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 170px;
  padding: 20px 18px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(167, 101, 9, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(70, 45, 10, 0.13);
}

.feature-icon,
.step-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  color: var(--gold-deep);
  border: 2px solid var(--gold-deep);
  border-radius: 50%;
}

.feature-icon::before,
.step-icon::before {
  font-size: 32px;
  line-height: 1;
}

.feature-icon[data-icon="palm"]::before {
  content: "♧";
}

.feature-icon[data-icon="leaf"]::before {
  content: "◒";
}

.feature-icon[data-icon="users"]::before {
  content: "●●●";
  font-size: 17px;
  letter-spacing: -3px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.05;
}

.feature-card p {
  margin: 0 auto;
  max-width: 190px;
  color: #31281d;
  font-size: 14px;
}

.menu-band {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section-title {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin: 0 auto 12px;
  text-align: center;
}

.section-title-row {
  grid-template-columns: 1fr auto;
  justify-items: start;
  align-items: end;
  max-width: var(--page-max);
  gap: 18px;
  text-align: left;
}

.section-title-row h2::before,
.section-title-row h2::after {
  display: none;
}

.section-title span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.section-title h2::before,
.section-title h2::after {
  width: clamp(40px, 8vw, 130px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title h2::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ink-title h2 {
  color: var(--ink);
}

.menu-category-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: var(--page-max);
  margin: 0 auto 16px;
}

.menu-category-tabs button {
  min-height: 36px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 182, 63, 0.42);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.menu-category-tabs button.active,
.menu-category-tabs button:hover {
  color: #160f04;
  background: var(--gold);
}

.menu-groups {
  display: grid;
  gap: 22px;
}

.menu-category-section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.menu-category-title {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
}

.menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--page-max);
  margin: 0 auto;
  align-items: stretch;
}

.menu-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, #171313, #090909);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
  border-bottom: 1px solid rgba(244, 182, 63, 0.36);
}

.menu-card img[data-lightbox-src] {
  cursor: zoom-in;
}

.menu-card img[data-lightbox-src]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

.menu-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 5px;
  padding: 9px 10px 11px;
  text-align: center;
}

.menu-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
}

.menu-card p {
  min-height: 46px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.18;
}

.menu-card strong {
  align-self: end;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.menu-card .gold-button {
  align-self: end;
}

.full-menu-band {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 26px;
}

.full-menu-band .menu-groups {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  justify-items: center;
}

.full-menu-band .menu-category-section {
  width: 100%;
  justify-items: center;
}

.full-menu-band .menu-category-title {
  text-align: center;
}

.full-menu-band .menu-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.full-menu-band .menu-card {
  grid-template-rows: 119px minmax(0, 1fr);
  flex: 0 0 188px;
  height: 290px;
  max-height: 290px;
  max-width: 188px;
}

.full-menu-band .menu-card img {
  height: 119px;
  aspect-ratio: auto;
}

.full-menu-band .menu-card-body {
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 3px;
  padding: 8px 9px 9px;
}

.full-menu-band .menu-card h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 18px;
  line-height: 0.98;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.full-menu-band .menu-card p {
  min-height: 0;
  overflow: hidden;
  font-size: 11.5px;
  line-height: 1.16;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
}

.full-menu-band .menu-card strong {
  font-size: 18px;
  line-height: 1;
}

.full-menu-band .menu-card .gold-button {
  width: 100%;
  min-height: 32px;
  padding: 0 10px;
  font-size: 12px;
}

.full-menu-band .menu-category-tabs button {
  color: #3a2b14;
  background: rgba(255, 255, 255, 0.64);
}

.full-menu-band .menu-category-tabs button.active,
.full-menu-band .menu-category-tabs button:hover {
  color: #160f04;
  background: var(--gold);
}

.steps-band {
  padding-top: 14px;
  padding-bottom: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
}

.step-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 1px;
  height: 58px;
  content: "";
  background: rgba(167, 101, 9, 0.38);
  transform: translateY(-50%);
}

.step-icon {
  width: 58px;
  height: 58px;
  margin: 0;
}

.step-icon::before {
  content: "▣";
  font-size: 28px;
}

.step-card:nth-child(2) .step-icon::before {
  content: "▱";
}

.step-card:nth-child(3) .step-icon::before {
  content: "▢";
}

.step-content {
  position: relative;
}

.step-count {
  position: absolute;
  left: -24px;
  top: -5px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--gold-deep);
  border-radius: 50%;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: #2f271f;
  font-size: 13px;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(460px, 0.58fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.upcoming-stops {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
}

.upcoming-stops h3 {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.stop-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 182, 63, 0.32);
  border-radius: var(--radius);
}

.stop-card strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.stop-card span,
.stop-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.location-copy {
  position: relative;
  z-index: 1;
  max-width: 390px;
  justify-self: end;
}

.location-copy span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.location-copy h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1;
}

.location-status-badge {
  display: block;
  width: 138px;
  max-width: 156px;
  margin: 0 0 12px;
}

.location-copy p {
  display: flex;
  gap: 10px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.location-copy p::before {
  color: var(--gold);
  font-weight: 900;
}

.location-copy p:nth-of-type(1)::before {
  content: "●";
}

.location-copy p:nth-of-type(2)::before {
  content: "◷";
}

.location-copy p:nth-of-type(3)::before {
  content: "☎";
}

.stop-alert-button {
  width: max-content;
  min-height: 34px;
  margin-top: 8px;
  padding: 0 14px;
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(244, 182, 63, 0.48);
  font-size: 12px;
}

.stop-alert-button:hover {
  background: rgba(244, 182, 63, 0.12);
}

.map-frame,
.map-image {
  display: block;
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  aspect-ratio: 541 / 143;
  border: 1px solid rgba(244, 182, 63, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.map-image {
  object-fit: cover;
}

.map-frame {
  min-height: 210px;
  background: #1b1b1b;
}

.catering-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(260px, 0.36fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 12px;
}

.catering-copy {
  position: relative;
  z-index: 1;
  justify-self: end;
  max-width: 440px;
}

.catering-copy h2 {
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 0.95;
}

.catering-copy h2 span,
.story-copy h2 span {
  color: var(--gold-deep);
}

.catering-copy p {
  margin: 8px 0 0;
  color: #272016;
}

.catering-band img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  justify-self: center;
}

.catering-band .gold-button {
  position: relative;
  z-index: 1;
  justify-self: start;
}

.gallery-band {
  padding-top: 26px;
  padding-bottom: 30px;
}

.compact-title {
  margin-bottom: 8px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(6, minmax(74px, 1fr)) 0.95fr;
  gap: 10px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: center;
}

.gallery-thumb {
  display: block;
  width: 100%;
  height: 84px;
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.68);
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 226, 162, 0.18) inset,
    0 8px 20px rgba(0, 0, 0, 0.34);
  cursor: zoom-in;
}

.gallery-thumb img,
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.testimonials-band {
  padding-top: 28px;
  padding-bottom: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 78px);
  max-width: 940px;
  margin: 0 auto;
}

.testimonial-grid.is-carousel {
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, calc((100% - 36px) / 3));
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  padding: 0 2px 10px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(167, 101, 9, 0.46) transparent;
  -webkit-overflow-scrolling: touch;
}

.testimonial-grid.is-carousel .testimonial-card {
  scroll-snap-align: start;
}

.testimonial-card {
  min-height: 82px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(167, 101, 9, 0.36);
  border-radius: var(--radius);
}

.stars {
  color: var(--gold-deep);
  letter-spacing: 0.14em;
  font-size: 15px;
}

.testimonial-card blockquote {
  margin: 4px 0 5px;
  color: #4b4032;
  font-size: 12px;
  line-height: 1.2;
}

.testimonial-card cite {
  display: block;
  color: #2a2118;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(150px, 0.45fr) minmax(250px, 0.65fr) minmax(250px, 0.7fr);
  gap: 30px;
  align-items: center;
  padding: 28px clamp(28px, 8vw, 118px) 34px;
  color: var(--white);
  background:
    repeating-linear-gradient(115deg, rgba(244, 182, 63, 0.052) 0 1px, transparent 1px 30px),
    #070808;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.site-footer img[data-footer-logo] {
  width: 240px;
  height: auto;
}

.site-footer .footer-status-badge {
  width: 112px;
  max-width: 34vw;
}

.site-footer p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 80px));
  gap: 3px 16px;
  font-size: 12px;
}

.footer-art {
  width: min(100%, 410px);
  justify-self: end;
}

.footer-alert-button {
  margin-top: 10px;
}

.site-footer small {
  position: absolute;
  bottom: 10px;
  left: 50%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  transform: translateX(-50%);
}

.cart-panel,
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.cart-panel[aria-hidden="false"],
.checkout-modal[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

.cart-panel-backdrop,
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-panel[aria-hidden="false"] .cart-panel-backdrop,
.checkout-modal[aria-hidden="false"] .modal-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  width: min(430px, 92vw);
  height: 100%;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(180deg, #101212, #060707);
  border-left: 1px solid rgba(244, 182, 63, 0.45);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-panel[aria-hidden="false"] .cart-drawer {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 182, 63, 0.22);
}

.cart-head span,
.checkout-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-head h2,
.checkout-card h2 {
  margin: 3px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.close-button {
  font-size: 26px;
}

.cart-lines {
  overflow: auto;
  padding: 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cart-line img {
  width: 58px;
  height: 46px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-line h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.cart-line p {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 28px 34px 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 182, 63, 0.44);
  border-radius: var(--radius);
}

.cart-qty button {
  height: 30px;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cart-qty span {
  text-align: center;
  font-weight: 900;
}

.cart-empty {
  display: none;
  place-items: center;
  min-height: 150px;
  color: rgba(255, 255, 255, 0.74);
}

.cart-empty.is-visible {
  display: grid;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 182, 63, 0.26);
  font-size: 18px;
}

.cart-summary strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.cart-note {
  min-height: 20px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.checkout-modal {
  display: grid;
  place-items: center;
  padding: 22px;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.image-lightbox.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox[aria-hidden="false"] {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(94vw, 980px);
  max-height: 86vh;
  object-fit: contain;
  background: #090909;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.52);
  border-color: rgba(244, 182, 63, 0.52);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(244, 182, 63, 0.54);
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: clamp(14px, 4vw, 42px);
}

.lightbox-next {
  right: clamp(14px, 4vw, 42px);
}

.checkout-card {
  position: relative;
  z-index: 1;
  width: min(500px, 96vw);
  max-height: 92vh;
  overflow: auto;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(180deg, #111414, #080909);
  border: 1px solid rgba(244, 182, 63, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.checkout-card form,
.login-panel form,
.admin-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.required-mark {
  color: #c62828;
  font-style: normal;
  font-weight: 900;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid rgba(167, 101, 9, 0.28);
  border-radius: var(--radius);
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 182, 63, 0.22);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.14);
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #160f04;
  background: linear-gradient(180deg, #ffd26e, var(--gold) 56%, #d9901c);
  border: 1px solid #ffd67a;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.square-status,
.form-message,
.save-toast {
  min-height: 20px;
  color: var(--gold-soft);
  font-size: 13px;
}

.square-card-container {
  min-height: 88px;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
}

.admin-body {
  min-height: 100vh;
  background:
    repeating-linear-gradient(115deg, rgba(244, 182, 63, 0.05) 0 1px, transparent 1px 32px),
    #070808;
}

.admin-shell {
  min-height: 100vh;
  padding: 38px clamp(18px, 5vw, 70px);
}

.login-panel {
  width: min(440px, 100%);
  margin: 8vh auto 0;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(180deg, #111414, #070808);
  border: 1px solid rgba(244, 182, 63, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-panel img {
  width: 270px;
  max-width: 100%;
  margin-bottom: 18px;
}

.login-panel h1,
.dashboard-header h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.login-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.dashboard {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(180deg, #111414, #070808);
  border: 1px solid rgba(244, 182, 63, 0.34);
  border-radius: var(--radius);
}

.dashboard-header img {
  width: 250px;
  max-width: 100%;
  margin-bottom: 8px;
}

.dashboard-header p {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.admin-user-pill {
  align-self: center;
  max-width: 260px;
  padding: 9px 12px;
  overflow: hidden;
  color: var(--gold-soft);
  background: rgba(244, 182, 63, 0.1);
  border: 1px solid rgba(244, 182, 63, 0.28);
  border-radius: 999px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}

.admin-user-pill.is-impersonating {
  color: #160f04;
  background: var(--gold);
}

.dashboard-actions-bottom {
  justify-content: flex-end;
  padding-top: 18px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
  padding: 6px;
  background: rgba(255, 247, 233, 0.08);
  border: 1px solid rgba(244, 182, 63, 0.24);
  border-radius: var(--radius);
}

.admin-tabs button {
  min-height: 40px;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.admin-tabs button.active {
  color: #140d03;
  background: var(--gold);
  border-color: var(--gold);
}

.admin-form {
  color: var(--ink);
}

.admin-panel {
  display: none;
  padding: 24px;
  background: var(--cream);
  border: 1px solid rgba(167, 101, 9, 0.22);
  border-radius: var(--radius);
}

.admin-panel.active {
  display: grid;
  gap: 18px;
}

.admin-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.wide-field {
  grid-column: 1 / -1;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
}

.switch-field {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: 180px;
}

.switch-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.switch-field i {
  position: relative;
  display: inline-block;
  width: 72px;
  height: 38px;
  flex: 0 0 auto;
  background: #e9e9e9;
  border: 1px solid rgba(120, 120, 120, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.switch-field i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease;
}

.switch-field input:checked + i {
  background: #11d256;
  border-color: #11d256;
}

.switch-field input:checked + i::after {
  transform: translateX(34px);
}

.switch-field input:focus-visible + i {
  outline: 3px solid rgba(244, 182, 63, 0.42);
  outline-offset: 3px;
}

.switch-field input:disabled + i {
  cursor: not-allowed;
  opacity: 0.55;
}

label.is-locked {
  opacity: 0.58;
}

.toggle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.toggle-grid label,
.menu-item-editor {
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.menu-editor {
  display: grid;
  gap: 14px;
}

.menu-editor-group {
  display: grid;
  gap: 12px;
}

.menu-editor-group h3 {
  margin: 4px 0 0;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.menu-item-editor {
  display: grid;
  gap: 12px;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-item-editor.is-newly-added {
  background: rgba(255, 245, 220, 0.96);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 182, 63, 0.24), 0 16px 34px rgba(0, 0, 0, 0.14);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.menu-item-media {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
}

.menu-item-media img {
  width: 160px;
  aspect-ratio: 1.62;
  object-fit: cover;
  background: #130f0a;
  border: 1px solid rgba(167, 101, 9, 0.28);
  border-radius: var(--radius);
}

.menu-item-media > div {
  display: grid;
  gap: 10px;
}

.menu-item-media small {
  min-height: 18px;
  color: #6b5b42;
  font-weight: 700;
}

.readonly-id {
  color: #6b5b42;
  font-size: 12px;
  font-weight: 800;
}

.menu-item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.menu-item-grid label:nth-of-type(2) {
  grid-column: span 2;
}

.asset-control-grid,
.asset-library-grid,
.gallery-editor,
.testimonial-editor,
.ingredient-editor,
.pricing-profile-editor,
.user-editor {
  display: grid;
  gap: 14px;
}

.asset-control-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asset-library-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.asset-field,
.asset-library-card,
.gallery-item-editor,
.testimonial-item-editor,
.ingredient-card,
.pricing-profile-card,
.user-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.asset-field h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.ingredient-dashboard {
  display: grid;
  gap: 16px;
}

.ingredient-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ingredient-metrics article {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(167, 101, 9, 0.2);
  border-radius: var(--radius);
}

.ingredient-metrics span {
  color: #6b5b42;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ingredient-metrics strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.ingredient-table-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(167, 101, 9, 0.2);
  border-radius: var(--radius);
}

.ingredient-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(160px, 0.7fr) minmax(140px, 0.6fr);
  gap: 10px;
  padding: 14px;
  background: rgba(244, 182, 63, 0.14);
  border-bottom: 1px solid rgba(167, 101, 9, 0.18);
}

.ingredient-toolbar input,
.ingredient-toolbar select {
  width: 100%;
}

.ingredient-table-wrap {
  overflow-x: auto;
}

.ingredient-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

.ingredient-table th {
  padding: 13px 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
  background: #11100d;
}

.ingredient-table td {
  padding: 13px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  vertical-align: middle;
  border-top: 1px solid rgba(167, 101, 9, 0.14);
}

.ingredient-table tr:nth-child(even) td {
  background: rgba(255, 246, 230, 0.54);
}

.ingredient-table td strong,
.ingredient-table td b,
.ingredient-table td small {
  display: block;
}

.ingredient-table td strong {
  font-size: 14px;
}

.ingredient-table td b {
  color: var(--gold-deep);
  font-size: 14px;
}

.ingredient-table td small {
  color: #6b5b42;
  font-size: 11px;
  font-weight: 800;
}

.ingredient-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 30px;
  padding: 0 14px;
  color: #7a6849;
  background: #e8e3d8;
  border: 1px solid rgba(123, 101, 66, 0.22);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.ingredient-status-pill::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.ingredient-status-pill.is-active {
  color: #0f601f;
  background: #bff5ad;
  border-color: rgba(25, 151, 54, 0.28);
}

.ingredient-status-pill.is-inactive {
  color: #6f6047;
  background: #e6e1d7;
}

.ingredient-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ingredient-row-actions .outline-button {
  width: auto;
  color: #171003;
  background: rgba(255, 248, 235, 0.84);
}

.ingredient-row-actions .ghost-button {
  width: auto;
}

.danger-button {
  color: #982419;
  border-color: rgba(198, 65, 37, 0.44);
}

.ingredient-filter-empty {
  padding: 14px;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.68);
  border: 0;
}

.admin-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(680px, 94vw);
  max-height: min(760px, 90vh);
  overflow: auto;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, #101212, #060707);
  border: 1px solid rgba(244, 182, 63, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-modal-head {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-right: 34px;
}

.admin-modal-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 40px);
}

.admin-modal-head p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.ingredient-modal-grid label,
.ingredient-modal-status {
  color: var(--white);
}

.ingredient-modal-status {
  display: grid;
  align-content: start;
  gap: 8px;
}

.ingredient-modal-status span {
  font-size: 13px;
  font-weight: 900;
}

.ingredient-modal-actions {
  justify-content: flex-end;
  margin-top: 2px;
}

.testimonial-editor {
  gap: 10px;
}

.testimonial-item-editor {
  display: grid;
  gap: 10px;
}

.testimonial-item-editor blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.testimonial-item-editor cite {
  color: #6b5b42;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.testimonial-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-row-actions .outline-button,
.testimonial-row-actions .ghost-button {
  width: auto;
}

.testimonial-row-actions .outline-button {
  color: #171003;
  background: rgba(255, 248, 235, 0.84);
}

.testimonial-modal-grid textarea {
  min-height: 132px;
}

.testimonial-modal-actions {
  justify-content: flex-end;
}

.asset-field img,
.asset-library-card img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: contain;
  background: #140f08;
  border: 1px solid rgba(167, 101, 9, 0.22);
  border-radius: var(--radius);
}

.asset-library-card strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-library-card span {
  color: #6b5b42;
  font-size: 12px;
  font-weight: 700;
}

.asset-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 236px;
  overflow: auto;
  padding: 8px;
  background: rgba(255, 247, 233, 0.72);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.asset-choice-thumb {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 6px;
  color: #3a2b14;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}

.asset-choice-thumb:hover,
.asset-choice-thumb:focus-visible {
  border-color: rgba(244, 182, 63, 0.72);
  box-shadow: 0 0 0 2px rgba(244, 182, 63, 0.16);
}

.asset-choice-thumb.is-selected {
  background: rgba(244, 182, 63, 0.18);
  border-color: var(--gold);
}

.asset-choice-thumb img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: #140f08;
  border-radius: 6px;
}

.asset-choice-thumb span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
}

.mini-empty {
  grid-column: 1 / -1;
}

.stop-editor {
  display: grid;
  gap: 14px;
}

.stop-item-editor {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.stop-menu-availability {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 247, 233, 0.62);
  border: 1px solid rgba(167, 101, 9, 0.16);
  border-radius: var(--radius);
}

.stop-menu-availability-head {
  display: grid;
  gap: 3px;
}

.stop-menu-availability-head strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.stop-menu-availability-head small {
  color: #6f5a3e;
  font-weight: 800;
}

.stop-menu-switch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stop-menu-switch {
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(167, 101, 9, 0.16);
  border-radius: var(--radius);
}

.stop-menu-switch > span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.stop-menu-switch strong,
.stop-menu-switch small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stop-menu-switch strong {
  color: #1d1509;
  font-size: 14px;
  font-weight: 900;
}

.stop-menu-switch small {
  color: #7c6444;
  font-size: 12px;
  font-weight: 800;
}

.compact-empty {
  margin: 0;
  padding: 8px 0 0;
}

.compact-head {
  margin-top: 6px;
}

.stop-calendar-preview {
  display: grid;
  gap: 12px;
}

.stop-calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stop-calendar-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-left: 5px solid var(--gold-deep);
  border-radius: var(--radius);
}

.stop-calendar-card span {
  width: max-content;
  max-width: 100%;
  padding: 3px 8px;
  color: #160f04;
  background: rgba(244, 182, 63, 0.36);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.stop-calendar-card strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.stop-calendar-card p,
.stop-calendar-card small,
.stop-calendar-card em {
  margin: 0;
  color: #5f5240;
  font-size: 13px;
  font-weight: 800;
}

.stop-calendar-card em {
  color: var(--gold-deep);
  font-style: normal;
}

.stop-calendar-card.is-today {
  border-left-color: var(--green);
}

.stop-calendar-card.is-past {
  opacity: 0.62;
}

.user-status {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-admin-card {
  border-color: rgba(244, 182, 63, 0.46);
  box-shadow: 0 0 0 2px rgba(244, 182, 63, 0.1);
}

.primary-admin-note {
  margin: 0;
  padding: 10px 12px;
  color: #4b3716;
  background: rgba(244, 182, 63, 0.16);
  border: 1px solid rgba(167, 101, 9, 0.2);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
}

.permission-matrix {
  display: grid;
  gap: 12px;
}

.permission-matrix fieldset {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(167, 101, 9, 0.22);
  border-radius: var(--radius);
}

.permission-matrix legend {
  padding: 0 8px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.permission-grid .checkbox-label {
  align-items: flex-start;
  padding: 8px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(167, 101, 9, 0.14);
  border-radius: var(--radius);
  font-size: 12px;
}

.permission-fields-fieldset {
  background: rgba(255, 247, 233, 0.46);
}

.permission-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.permission-category-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.permission-category-card h4 {
  margin: 0;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.permission-category-card .permission-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.user-actions {
  justify-content: flex-start;
}

.notification-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 16px;
  align-items: start;
}

.notification-card,
.notification-history {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.notification-card h3 {
  margin: 0;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.notification-stats {
  display: grid;
  gap: 8px;
}

.notification-stats div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 247, 233, 0.72);
  border: 1px solid rgba(167, 101, 9, 0.14);
  border-radius: var(--radius);
  font-weight: 900;
}

.notification-stats span {
  color: #6f5a3e;
}

.notification-stats strong {
  color: var(--ink);
}

.notification-table b {
  color: var(--gold-deep);
}

.link-button {
  min-height: 34px;
  padding: 0;
  color: var(--gold);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.upload-button {
  display: none;
}

.ghost-button {
  min-height: 34px;
  padding: 0 14px;
  color: #5f1f16;
  background: transparent;
  border: 1px solid rgba(198, 65, 37, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-product-list {
  display: grid;
  gap: 10px;
  max-height: 78vh;
  overflow: auto;
  padding: 10px;
  background: rgba(255, 247, 233, 0.64);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.pricing-product-button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}

.pricing-product-button:hover,
.pricing-product-button.active {
  background: rgba(244, 182, 63, 0.2);
  border-color: var(--gold);
}

.pricing-product-button img {
  width: 58px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #140f08;
  border-radius: 8px;
}

.pricing-product-button span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.pricing-product-button strong,
.pricing-product-button small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-product-button small {
  color: #6b5b42;
  font-size: 12px;
  font-weight: 800;
}

.pricing-product-detail {
  min-width: 0;
}

.costing-product-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(180deg, #111414, #070808);
  border: 1px solid rgba(244, 182, 63, 0.34);
  border-radius: var(--radius);
}

.costing-product-head img {
  width: 150px;
  aspect-ratio: 1.55;
  object-fit: cover;
  background: #070808;
  border: 1px solid rgba(244, 182, 63, 0.34);
  border-radius: var(--radius);
}

.costing-product-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.costing-product-head h3 {
  margin: 2px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
}

.costing-product-head p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.costing-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.costing-card h3 {
  margin: 0;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.save-cost-button {
  min-width: 220px;
  color: #171003;
  background: linear-gradient(180deg, #ffd26e, var(--gold) 54%, #d9901c);
  border-color: #ffd67a;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 10px 24px rgba(167, 101, 9, 0.28);
}

.save-cost-button:hover {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.55), 0 12px 28px rgba(167, 101, 9, 0.34);
}

.recipe-lines {
  display: grid;
  gap: 12px;
}

.recipe-line {
  display: grid;
  grid-template-columns: minmax(180px, 1.15fr) minmax(120px, 0.7fr) minmax(100px, 0.55fr) minmax(160px, 0.75fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  background: rgba(255, 247, 233, 0.62);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.recipe-costs {
  display: grid;
  gap: 4px;
  color: #6b5b42;
  font-size: 12px;
  font-weight: 800;
}

.recipe-costs strong {
  color: var(--ink);
}

.recipe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.costing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.cost-summary-card,
.cost-input-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  min-height: 86px;
  padding: 14px;
  background: rgba(255, 247, 233, 0.7);
  border: 1px solid rgba(167, 101, 9, 0.18);
  border-radius: var(--radius);
}

.cost-summary-card span,
.cost-input-card span {
  color: #6b5b42;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cost-summary-card strong {
  align-self: end;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.cost-summary-card.strong {
  color: #140d03;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  border-color: rgba(83, 55, 9, 0.34);
}

.cost-summary-card.strong span {
  color: rgba(20, 13, 3, 0.72);
}

.suggested-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.suggested-price-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(180deg, #121414, #070808);
  border: 1px solid rgba(244, 182, 63, 0.42);
  border-radius: var(--radius);
}

.suggested-price-card > span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--gold-soft);
  font-weight: 900;
}

.suggested-price-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.suggested-price-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.manual-price-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.manual-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.manual-preview article {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: rgba(255, 247, 233, 0.74);
  border: 1px solid rgba(167, 101, 9, 0.16);
  border-radius: var(--radius);
}

.manual-preview span {
  color: #6b5b42;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.manual-preview strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.pricing-warning {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  color: #55170f;
  background: rgba(198, 65, 37, 0.12);
  border: 1px solid rgba(198, 65, 37, 0.3);
  border-radius: var(--radius);
  font-weight: 900;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cost-summary-card > .pricing-badge {
  align-self: end;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  min-height: 32px;
  box-sizing: border-box;
  padding: 8px 10px;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
  line-height: 1.05;
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 0;
}

.pricing-badge.healthy,
.pricing-badge.suggested {
  color: #10350d;
  background: #baf4a6;
}

.pricing-badge.low {
  color: #442b00;
  background: #ffd66e;
}

.pricing-badge.below {
  color: #fff7ec;
  background: #a72a1e;
}

.price-history-table div {
  grid-template-columns: minmax(140px, 0.9fr) minmax(110px, 0.8fr) auto auto minmax(100px, 0.8fr);
}

.ingredient-card,
.pricing-profile-card {
  background: rgba(255, 255, 255, 0.74);
}

.square-admin-note {
  padding: 14px;
  color: #3a2b14;
  background: rgba(244, 182, 63, 0.22);
  border: 1px solid rgba(167, 101, 9, 0.22);
  border-radius: var(--radius);
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sales-kpi,
.sales-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(167, 101, 9, 0.2);
  border-radius: var(--radius);
}

.sales-kpi {
  display: grid;
  gap: 5px;
}

.sales-kpi span,
.sales-kpi small,
.admin-help-text,
.empty-state {
  color: #6b5b42;
}

.sales-kpi strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.sales-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sales-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.mini-table {
  display: grid;
  gap: 8px;
}

.mini-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(167, 101, 9, 0.16);
}

.mini-table span {
  color: #6b5b42;
  font-size: 12px;
}

.mini-table b {
  color: var(--gold-deep);
}

.admin-help-text,
.empty-state {
  margin: 0;
  font-size: 13px;
}

.save-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  min-width: 230px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  font-weight: 900;
}

.save-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(270px, 310px) auto auto;
  }

  .brand-mark img[data-logo] {
    width: 170px;
  }

  .service-status-badge {
    width: 92px;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .costing-grid,
  .suggested-price-grid,
  .manual-preview,
  .ingredient-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 70px;
  }

  .brand-mark img[data-logo] {
    width: 154px;
  }

  .service-status-badge {
    width: 84px;
  }

  .nav-toggle {
    display: inline-grid;
    order: 3;
  }

  .header-order {
    order: 2;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    z-index: 45;
    display: grid;
    gap: 0;
    padding: 10px;
    background: #070808;
    border: 1px solid rgba(244, 182, 63, 0.4);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    font-size: 15px;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    left: 12px;
    right: auto;
    bottom: 8px;
    width: 52px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.92), rgba(5, 6, 6, 0.55) 54%, rgba(5, 6, 6, 0.82)),
      var(--ink);
  }

  .hero-copy {
    max-width: 640px;
    padding: 42px 24px 22px;
  }

  .hero-media {
    min-height: 300px;
    order: -1;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(5, 6, 6, 0.05), rgba(5, 6, 6, 0.8));
  }

  .story-band,
  .location-band,
  .catering-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps-grid,
  .upcoming-stops {
    grid-template-columns: 1fr;
  }

  .testimonial-grid:not(.is-carousel) {
    grid-template-columns: 1fr;
  }

  .testimonial-grid.is-carousel {
    grid-auto-columns: minmax(240px, 82vw);
    max-width: 100%;
  }

  .location-copy,
  .catering-copy {
    justify-self: start;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .catering-band .gold-button {
    justify-self: start;
  }

  .gallery-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .scroll-top-button {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-art {
    justify-self: start;
  }

  .form-grid,
  .menu-item-grid,
  .menu-item-media,
  .asset-control-grid,
  .asset-library-grid,
  .toggle-grid,
  .sales-grid,
  .permission-grid,
  .permission-category-grid,
  .asset-choice-grid,
  .stop-calendar-grid,
  .stop-menu-switch-grid,
  .notification-layout,
  .pricing-layout,
  .costing-grid,
  .suggested-price-grid,
  .manual-price-grid,
  .manual-preview,
  .ingredient-metrics,
  .ingredient-toolbar,
  .sales-columns {
    grid-template-columns: 1fr;
  }

  .pricing-product-list {
    max-height: none;
  }

  .costing-product-head,
  .recipe-line,
  .price-history-table div {
    grid-template-columns: 1fr;
  }

  .costing-product-head img {
    width: 100%;
    max-width: 320px;
  }

  .recipe-actions,
  .manual-price-grid .gold-button {
    justify-content: flex-start;
  }

  .permission-category-card .permission-grid {
    grid-template-columns: 1fr;
  }

  .menu-item-media img {
    width: 100%;
  }

  .menu-item-grid label:nth-of-type(2) {
    grid-column: auto;
  }

  .section-title-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand-mark {
    gap: 8px;
  }

  .brand-mark img[data-logo] {
    width: 128px;
  }

  .service-status-badge {
    width: 70px;
  }

  .header-order {
    min-width: 44px;
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .header-order .cart-glyph {
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stop-alert-button {
    width: 100%;
  }

  .gold-button,
  .outline-button {
    width: 100%;
  }

  .story-copy h2,
  .catering-copy h2,
  .location-copy h2 {
    font-size: 34px;
  }

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

  .full-menu-band .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .full-menu-band .menu-card {
    grid-template-rows: 100px minmax(0, 1fr);
    flex-basis: auto;
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: 1;
  }

  .full-menu-band .menu-card img {
    height: 100px;
  }

  .full-menu-band .menu-card-body {
    gap: 2px;
    padding: 5px 6px 6px;
  }

  .full-menu-band .menu-card h3 {
    font-size: 14px;
    line-height: 0.95;
  }

  .full-menu-band .menu-card p {
    font-size: 9.6px;
    line-height: 1.08;
    -webkit-line-clamp: 2;
  }

  .full-menu-band .menu-card strong {
    font-size: 14px;
  }

  .full-menu-band .menu-card .gold-button {
    min-height: 26px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
  }

  .upcoming-stops {
    display: none;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 54px;
  }

  .site-footer img[data-footer-logo] {
    width: 188px;
  }

  .site-footer .footer-status-badge {
    width: 82px;
  }

  .site-footer small {
    left: 24px;
    right: 24px;
    text-align: center;
    transform: none;
  }

  .dashboard-header,
  .panel-head,
  .menu-item-head {
    display: grid;
    justify-content: stretch;
  }

  .dashboard-actions {
    justify-content: start;
  }
}

@media (max-width: 380px) {
  .brand-mark {
    gap: 6px;
  }

  .brand-mark img[data-logo] {
    width: 110px;
  }

  .service-status-badge {
    width: 60px;
  }

  .site-footer img[data-footer-logo] {
    width: 172px;
  }

  .site-footer .footer-status-badge {
    width: 72px;
  }
}
