:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-strong: #ffffff;
  --color-surface-dark: #2f1d10;
  --color-text: #251913;
  --color-text-soft: #6b594c;
  --color-primary: #6b3d15;
  --color-primary-strong: #2f1d10;
  --color-accent: #b85b18;
  --color-accent-soft: #f5ede5;
  --color-border: rgba(71, 44, 26, 0.11);
  --color-success: #206946;
  --color-error: #b13b2c;
  --shadow-soft: 0 28px 72px rgba(47, 29, 16, 0.08);
  --shadow-card: 0 16px 38px rgba(47, 29, 16, 0.06);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(184, 91, 24, 0.045), transparent 18%),
    radial-gradient(circle at top right, rgba(107, 61, 21, 0.03), transparent 20%),
    var(--color-bg);
}

body.modal-open {
  overflow: hidden;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 18px 0 72px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(56, 36, 13, 0.97), rgba(113, 54, 0, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-soft);
  color: #fff6ef;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 88, 0, 0.24), transparent 70%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 6px 0;
}

.order-topbar {
  position: static;
  top: auto;
  z-index: auto;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.sr-order-jumpbar {
  width: min(calc(100% - 32px), var(--container));
  min-height: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 14px auto 0;
  padding: 0 4px 12px;
}

.sr-order-jumpbar a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary-strong);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 29, 16, 0.05);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sr-order-jumpbar a:hover,
.sr-order-jumpbar a:focus-visible {
  border-color: rgba(107, 61, 21, 0.24);
  background: #ffffff;
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(47, 29, 16, 0.08);
}

.order-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 20px;
  margin: 6px 0 22px;
  padding: 24px;
  border: 1px solid rgba(58, 38, 21, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(140deg, rgba(47, 29, 16, 0.98), rgba(91, 55, 24, 0.96)),
    #2f1d10;
  box-shadow: 0 22px 52px rgba(47, 29, 16, 0.13);
  color: #fff6ef;
}

.order-intro-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  max-width: 38rem;
}

.order-intro .eyebrow {
  margin-bottom: 0;
  color: rgba(255, 214, 176, 0.84);
}

.order-intro-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 5.4vw, 4.75rem);
  line-height: 0.92;
}

.order-intro-copy > p:not(.eyebrow) {
  margin: 0;
  max-width: 35rem;
  color: rgba(255, 241, 229, 0.82);
  font-size: 1.02rem;
  line-height: 1.62;
}

.order-app-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.order-app-facts li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(255, 214, 176, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 246, 239, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.order-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.order-intro-actions .button {
  min-height: 46px;
  padding: 12px 17px;
}

.order-intro-panel {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.order-service-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 214, 176, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.order-service-panel .eyebrow {
  margin: 0;
}

.order-service-panel h2 {
  margin: 0;
  max-width: 100%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1;
}

.service-style-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-style-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  min-height: 108px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.service-style-option:hover,
.service-style-option:focus-within {
  border-color: rgba(255, 214, 176, 0.34);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 14px 26px rgba(15, 8, 4, 0.12);
  transform: translateY(-1px);
}

.service-style-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-accent);
}

.service-style-option:has(input:checked) {
  border-color: rgba(255, 214, 176, 0.48);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 214, 176, 0.1);
}

.service-style-option span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.service-style-option strong {
  color: #fff6ef;
  font-size: 0.96rem;
  line-height: 1.25;
}

.service-style-option small,
.service-style-note {
  color: rgba(255, 241, 229, 0.72);
  line-height: 1.45;
}

.service-style-option small {
  font-size: 0.84rem;
}

.service-style-note {
  margin: 0;
  font-size: 0.88rem;
}

.order-intro-copy > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.is-ready .order-intro-copy > * {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .order-intro-copy > *:nth-child(1) { transition-delay: 70ms; }
body.is-ready .order-intro-copy > *:nth-child(2) { transition-delay: 130ms; }
body.is-ready .order-intro-copy > *:nth-child(3) { transition-delay: 190ms; }
body.is-ready .order-intro-copy > *:nth-child(4) { transition-delay: 250ms; }
body.is-ready .order-intro-copy > *:nth-child(5) { transition-delay: 310ms; }

.order-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-step-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-items: start;
  min-height: 112px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

body.is-ready .order-step-card {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .order-step-card:nth-child(1) { transition-delay: 150ms; }
body.is-ready .order-step-card:nth-child(2) { transition-delay: 220ms; }
body.is-ready .order-step-card:nth-child(3) { transition-delay: 290ms; }

.order-step-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff6ef;
  font-weight: 800;
}

.order-step-content {
  display: grid;
  gap: 4px;
}

.order-step-content strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.order-step-content span {
  color: rgba(255, 241, 229, 0.76);
  font-size: 0.84rem;
  line-height: 1.55;
}

.order-step-card[data-state="current"] {
  border-color: rgba(255, 214, 176, 0.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(15, 8, 4, 0.12);
}

.order-step-card[data-state="current"] .order-step-number {
  background: linear-gradient(135deg, rgba(255, 214, 176, 0.22), rgba(255, 255, 255, 0.2));
}

.order-step-card[data-state="complete"] {
  border-color: rgba(32, 105, 70, 0.32);
  background: rgba(32, 105, 70, 0.16);
}

.order-step-card[data-state="complete"] .order-step-number {
  background: rgba(32, 105, 70, 0.92);
}

.order-step-card[data-state="upcoming"] {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark--logo {
  width: 132px;
  height: auto;
  aspect-ratio: 640 / 517;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
  overflow: visible;
}

.brand-mark--logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-text span,
.topbar-link {
  color: rgba(255, 246, 239, 0.76);
}

.order-topbar .brand-text span,
.order-topbar .topbar-link {
  color: var(--color-text-soft);
}

.topbar-link {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.order-topbar .topbar-link {
  background: rgba(113, 54, 0, 0.06);
  border: 1px solid rgba(113, 54, 0, 0.1);
}

.order-topbar .topbar-link-primary {
  background: var(--color-primary-strong);
  color: #fff7ef;
}

.order-topbar .brand-mark {
  border-color: transparent;
  background: transparent;
  color: var(--color-primary-strong);
}

.order-topbar .brand-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.topbar-link-secondary {
  display: none;
}

.topbar-link:hover,
.topbar-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.order-topbar .topbar-link:hover,
.order-topbar .topbar-link:focus-visible {
  background: rgba(113, 54, 0, 0.12);
}

.order-topbar .topbar-link-primary:hover,
.order-topbar .topbar-link-primary:focus-visible {
  background: var(--color-primary);
}

#total-value.is-placeholder {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 54px 10px 18px;
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.summary-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.is-ready .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .hero-copy > *:nth-child(1) { transition-delay: 60ms; }
body.is-ready .hero-copy > *:nth-child(2) { transition-delay: 120ms; }
body.is-ready .hero-copy > *:nth-child(3) { transition-delay: 180ms; }
body.is-ready .hero-copy > *:nth-child(4) { transition-delay: 240ms; }
body.is-ready .hero-copy > *:nth-child(5) { transition-delay: 300ms; }

.hero-text {
  max-width: 42rem;
  margin: 18px 0 0;
  color: rgba(255, 246, 239, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions,
.submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 246, 239, 0.82);
}

.hero-card,
.summary-card,
.menu-category,
.checkout-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.hero-card {
  position: relative;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 252, 247, 0.08);
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.is-ready .hero-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 180ms;
}

.card-label {
  margin: 0 0 22px;
  color: var(--color-accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

.hero-media {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-media-feature,
.hero-media-thumb {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-media-feature {
  aspect-ratio: 4 / 3;
}

.hero-media-feature img,
.hero-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-media-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-media-thumb:hover,
.hero-media-thumb:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(56, 36, 13, 0.18);
}

.hero-media-feature:hover img,
.hero-media-thumb:hover img {
  transform: scale(1.04);
}

.hero-stat + .hero-stat {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
  display: block;
  font-size: 1.05rem;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 246, 239, 0.8);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button-primary {
  background: linear-gradient(135deg, #7a4719, #2f1d10);
  color: #fffaf4;
  box-shadow: 0 16px 30px rgba(47, 29, 16, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 36px rgba(47, 29, 16, 0.22);
}

.button-secondary {
  background: #ffffff;
  color: var(--color-primary-strong);
  border-color: rgba(71, 44, 26, 0.12);
  box-shadow: 0 10px 22px rgba(47, 29, 16, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(107, 61, 21, 0.22);
  background: #ffffff;
}

.button-block {
  width: 100%;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.52fr) minmax(0, 1.58fr) minmax(320px, 0.84fr);
  gap: 32px;
  margin-top: 12px;
}

.trust-strip {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.planning-help-strip {
  position: relative;
}

.trust-card,
.testimonial-card,
.checkout-reassurance {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.trust-card {
  padding: 24px 26px;
}

.trust-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--color-text);
  line-height: 1;
}

.trust-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.trust-card p:last-child {
  margin: 10px 0 0;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.planning-help-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.planning-help-card-copy {
  min-width: 0;
}

.planning-help-full {
  display: grid;
  gap: 18px;
  max-height: 1400px;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  transform: translateY(0);
  transition:
    max-height 0.3s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.planning-help-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(47, 29, 16, 0.05);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height 0.28s ease,
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease,
    padding 0.18s ease;
}

.planning-help-compact-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.planning-help-compact-label {
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.planning-help-compact-copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.55;
}

.planning-help-compact-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.planning-help-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.planning-help-quicklink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary-strong);
  font-size: 0.84rem;
  font-weight: 700;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.planning-help-quicklink:hover,
.planning-help-quicklink:focus-visible {
  border-color: rgba(107, 61, 21, 0.22);
  background: #ffffff;
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(47, 29, 16, 0.06);
}

.planning-help-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 36px 0 16px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary-strong);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.planning-help-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.planning-help-toggle:hover,
.planning-help-toggle:focus-visible {
  border-color: rgba(107, 61, 21, 0.22);
  background: #ffffff;
  color: var(--color-primary);
  transform: translateY(-1px);
}

.planning-help-toggle[data-state="expanded"]::after {
  transform: translateY(-20%) rotate(225deg);
}

.planning-help-toggle--compact {
  justify-self: end;
}

.planning-help-strip.is-collapsed .planning-help-full {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
}

.planning-help-strip.is-collapsed .planning-help-compact {
  max-height: 240px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.trust-grid,
.testimonials-grid {
  display: grid;
  gap: 16px;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid-item,
.checkout-reassurance-item {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(71, 44, 26, 0.09);
  border-radius: 20px;
  background: #ffffff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.trust-grid-item:hover,
.trust-grid-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(107, 61, 21, 0.18);
  box-shadow: 0 16px 28px rgba(47, 29, 16, 0.08);
}

.trust-grid-item strong,
.checkout-reassurance-item strong {
  color: var(--color-text);
  font-size: 1rem;
}

.trust-grid-item span,
.checkout-reassurance-item span,
.testimonial-card p {
  color: var(--color-text-soft);
  line-height: 1.6;
}

.testimonial-card {
  margin: 0;
  padding: 22px 24px;
}

.testimonial-card p {
  margin: 0;
  font-size: 1rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 12px;
  color: var(--color-primary);
  font-style: normal;
  font-weight: 700;
}

.menu-sidebar {
  position: relative;
}

.menu-sidebar-card {
  position: sticky;
  top: 18px;
  padding: 22px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.menu-sidebar-nav {
  display: grid;
  gap: 10px;
}

.menu-sidebar-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(71, 44, 26, 0.1);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-sidebar-link:hover,
.menu-sidebar-link:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(107, 61, 21, 0.18);
  box-shadow: 0 14px 22px rgba(47, 29, 16, 0.06);
}

.menu-sidebar-link.is-active {
  border-color: rgba(107, 61, 21, 0.22);
  background: rgba(107, 61, 21, 0.06);
  box-shadow: inset 0 0 0 1px rgba(107, 61, 21, 0.06);
}

.menu-sidebar-link.is-secondary {
  opacity: 0.62;
}

.section-heading {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.section-heading-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.section-heading-meta .eyebrow {
  margin-bottom: 0;
}

.section-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(107, 61, 21, 0.08);
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 94px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), rgba(184, 91, 24, 0));
}

.section-heading h1,
.section-heading h2,
.summary-heading h2 {
  color: var(--color-text);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.summary-heading {
  margin-bottom: 20px;
}

.section-heading p:last-child {
  margin: 10px 0 0;
  max-width: 44rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.menu-categories {
  display: grid;
  gap: 18px;
}

.add-on-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(32, 105, 70, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(32, 105, 70, 0.08), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.add-on-guide > div:first-child {
  display: grid;
  gap: 6px;
}

.add-on-guide .eyebrow {
  margin: 0;
  color: var(--color-success);
}

.add-on-guide strong {
  color: var(--color-primary-strong);
  font-size: 1.04rem;
}

.add-on-guide span {
  max-width: 48rem;
  color: var(--color-text-soft);
  line-height: 1.55;
}

.add-on-guide-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.add-on-guide-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(32, 105, 70, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-success);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.add-on-guide-links a:hover,
.add-on-guide-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(32, 105, 70, 0.28);
  box-shadow: 0 10px 22px rgba(32, 105, 70, 0.08);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.menu-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(71, 44, 26, 0.11);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.menu-filter-chip:hover,
.menu-filter-chip:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(107, 61, 21, 0.18);
  box-shadow: 0 12px 22px rgba(47, 29, 16, 0.05);
}

.menu-filter-chip.is-active {
  border-color: rgba(107, 61, 21, 0.22);
  background: rgba(107, 61, 21, 0.06);
  box-shadow: inset 0 0 0 1px rgba(107, 61, 21, 0.06);
}

.menu-filter-chip.is-secondary {
  opacity: 0.62;
}

.service-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(143, 59, 34, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(253, 251, 212, 0.92), rgba(255, 255, 255, 0.98)),
    var(--color-surface-strong);
  box-shadow: var(--shadow-card);
}

.checkout-reassurance {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-banner-label {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-banner h3 {
  margin: 0;
  font-size: 1.28rem;
}

.service-banner p:last-child {
  margin: 10px 0 0;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.service-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-surface-dark);
  color: #fff6ef;
  font-weight: 700;
  white-space: nowrap;
}

.order-readiness-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}

.order-readiness-drawer {
  margin: 0 0 22px;
  border: 1px solid rgba(71, 44, 26, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(47, 29, 16, 0.05);
  overflow: hidden;
}

.order-readiness-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 12px 16px;
  color: var(--color-primary-strong);
  cursor: pointer;
  list-style: none;
}

.order-readiness-drawer summary::-webkit-details-marker {
  display: none;
}

.order-readiness-drawer summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(107, 61, 21, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.order-readiness-drawer[open] summary::after {
  content: "-";
}

.order-readiness-drawer summary span {
  font-weight: 800;
}

.order-readiness-drawer summary small {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.order-readiness-drawer .order-readiness-strip {
  margin: 0;
  padding: 0 16px 16px;
}

.order-readiness-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.order-readiness-card .eyebrow {
  margin: 0;
}

.order-readiness-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1;
}

.order-readiness-card p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.62;
}

.order-readiness-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.order-readiness-links a,
.order-readiness-link-primary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(107, 61, 21, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary-strong);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.order-readiness-link-primary {
  width: max-content;
  max-width: 100%;
  background: var(--color-surface-dark);
  color: #fff6ef;
}

.order-readiness-links a:hover,
.order-readiness-links a:focus-visible,
.order-readiness-link-primary:hover,
.order-readiness-link-primary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(107, 61, 21, 0.28);
  box-shadow: 0 12px 24px rgba(47, 29, 16, 0.08);
}
.menu-category {
  padding: 22px;
  border: 1px solid rgba(71, 44, 26, 0.09);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(47, 29, 16, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.menu-category[data-category-id="packages"] {
  border-color: rgba(107, 61, 21, 0.18);
  box-shadow: 0 18px 40px rgba(47, 29, 16, 0.08);
}

body[data-order-stage="choose-base"] .menu-category[data-category-id]:not([data-category-id="packages"]) {
  opacity: 0.72;
  box-shadow: 0 8px 24px rgba(47, 29, 16, 0.03);
}

.menu-category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.menu-category-title {
  margin: 0;
  font-size: 1.4rem;
}

.menu-category-copy {
  margin: 8px 0 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.menu-category-step {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(107, 61, 21, 0.08);
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-category-state {
  margin: 10px 0 0;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

body[data-order-stage="choose-base"] .menu-category[data-category-id]:not([data-category-id="packages"]) .menu-category-state {
  color: var(--color-text-soft);
}

.menu-category-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px dashed rgba(71, 44, 26, 0.18);
  border-radius: 18px;
  background: rgba(107, 61, 21, 0.03);
}

.menu-category-preview-copy {
  display: grid;
  gap: 8px;
}

.menu-category-preview-copy strong {
  color: var(--color-primary-strong);
  font-size: 1rem;
}

.menu-category-preview-copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.menu-category-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-category-preview-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(71, 44, 26, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text-soft);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.menu-items {
  display: grid;
  gap: 14px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(71, 44, 26, 0.08);
  border-radius: var(--radius-lg);
  background: #ffffff;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}

.menu-item.package-card {
  grid-template-columns: 1fr;
  position: relative;
  padding-top: 20px;
}

.menu-item.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 91, 24, 0.92), rgba(107, 61, 21, 0));
}

.menu-item:hover,
.menu-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(107, 61, 21, 0.16);
  box-shadow: 0 18px 32px rgba(47, 29, 16, 0.08);
}

.menu-item-selected {
  border-color: rgba(32, 105, 70, 0.24);
  box-shadow: 0 18px 34px rgba(32, 105, 70, 0.09), inset 0 0 0 1px rgba(32, 105, 70, 0.12);
  background:
    linear-gradient(135deg, rgba(32, 105, 70, 0.08), rgba(255, 255, 255, 0.98)),
    var(--color-surface-strong);
}

body[data-order-stage="choose-base"] .menu-category[data-category-id]:not([data-category-id="packages"]) .menu-item {
  background: rgba(255, 255, 255, 0.88);
}

.menu-item-main {
  display: grid;
  gap: 14px;
}

.menu-item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.menu-item-heading > div {
  min-width: 0;
  flex: 1 1 auto;
}

.menu-item-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.menu-item-heading h3 {
  margin: 0;
  font-size: 1.1rem;
}

.item-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(107, 61, 21, 0.14);
  border-radius: 999px;
  background: rgba(107, 61, 21, 0.06);
  color: var(--color-primary-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-item-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--color-primary);
}

.menu-item-description {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.package-best-for {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(71, 44, 26, 0.08);
  border-radius: 14px;
  background: rgba(107, 61, 21, 0.04);
  color: var(--color-primary-strong);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.package-feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(192, 88, 0, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(192, 88, 0, 0.96), rgba(113, 54, 0, 0.96));
  color: #fff7ef;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-inclusions {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid rgba(71, 44, 26, 0.08);
}

.package-inclusions-label {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-inclusions-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-inclusions-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  line-height: 1.5;
}

.package-inclusions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.variant-group {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.variant-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.variant-option:hover,
.variant-option:focus-within {
  transform: translateY(-1px);
  border-color: rgba(107, 61, 21, 0.18);
  box-shadow: 0 12px 22px rgba(47, 29, 16, 0.05);
}

.variant-option input {
  accent-color: var(--color-primary);
}

.menu-item-controls {
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 14px;
}

.menu-item.package-card .menu-item-controls {
  justify-items: start;
  align-content: start;
}

.package-reveal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(71, 44, 26, 0.1);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.package-reveal-copy {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.package-reveal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-surface-dark);
  color: #fff6ef;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.package-reveal-button[aria-expanded="true"] {
  background: var(--color-primary);
}

.package-reveal-button:hover,
.package-reveal-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(47, 29, 16, 0.16);
}

.premium-menu-modal,
.guest-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(43, 33, 23, 0.56);
  backdrop-filter: blur(8px);
}

.premium-menu-modal[hidden],
.guest-menu-modal[hidden] {
  display: none;
}

.premium-menu-dialog,
.guest-menu-dialog {
  width: min(980px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(43, 33, 23, 0.24);
}

.premium-menu-dialog-header,
.guest-menu-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.premium-menu-dialog-header h2,
.guest-menu-dialog-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.premium-menu-dialog-copy,
.guest-menu-dialog-copy {
  max-width: 52rem;
  margin: 10px 0 0;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.premium-menu-close {
  min-width: 88px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary-strong);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.premium-menu-close:hover,
.premium-menu-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(107, 61, 21, 0.18);
  box-shadow: 0 12px 22px rgba(47, 29, 16, 0.06);
}

.premium-menu-status {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--color-success);
  font-weight: 700;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.premium-menu-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.premium-menu-items {
  display: grid;
  gap: 14px;
}

.guest-menu-dialog {
  width: min(1040px, 100%);
}

.guest-menu-form {
  display: grid;
  gap: 18px;
}

.guest-menu-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guest-menu-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(71, 44, 26, 0.1);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.guest-menu-share-box {
  display: grid;
  gap: 8px;
}

.guest-menu-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.guest-menu-status.is-visible {
  display: block;
}

.guest-menu-status.is-success {
  background: rgba(32, 105, 70, 0.12);
  color: var(--color-success);
}

.guest-menu-status.is-error {
  background: rgba(177, 59, 44, 0.12);
  color: var(--color-error);
}

.guest-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: 999px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-item:hover .qty-control,
.menu-item:focus-within .qty-control {
  border-color: rgba(107, 61, 21, 0.16);
  box-shadow: 0 10px 20px rgba(47, 29, 16, 0.05);
}

.qty-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(107, 61, 21, 0.08);
  color: var(--color-primary-strong);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.qty-button:hover,
.qty-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(107, 61, 21, 0.14);
}

.qty-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.qty-input {
  width: 64px;
  min-width: 64px;
  height: 34px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: center;
  font-weight: 700;
  caret-color: var(--color-primary-strong);
  cursor: text;
}

.qty-input:focus {
  outline: none;
  background: rgba(107, 61, 21, 0.08);
  border-radius: 10px;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.item-total {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.menu-panel {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.summary-panel {
  position: relative;
}

.summary-card {
  position: sticky;
  top: 18px;
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 24px;
  background: #ffffff;
  border-color: rgba(71, 44, 26, 0.1);
  box-shadow: 0 18px 40px rgba(47, 29, 16, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card[data-order-stage="customize"] {
  box-shadow: 0 22px 48px rgba(47, 29, 16, 0.1);
}

.summary-heading h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  line-height: 1.02;
}

.summary-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px;
}

.summary-footer {
  position: relative;
  margin-top: 12px;
  padding-top: 14px;
  background: transparent;
}

.summary-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(88, 52, 36, 0.12);
}

.summary-total-note {
  margin: 7px 0 0;
  color: var(--color-text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.guest-menu-open[data-state="locked"] {
  border-color: rgba(71, 44, 26, 0.18);
  background: rgba(107, 61, 21, 0.04);
  color: var(--color-text-soft);
}

.summary-guidance {
  margin: 10px 0 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.summary-heading-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.summary-heading-top .eyebrow {
  margin-bottom: 0;
}

.summary-progress-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(107, 61, 21, 0.08);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-empty {
  padding: 18px;
  border: 1px dashed rgba(71, 44, 26, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-soft);
  background: rgba(107, 61, 21, 0.03);
  line-height: 1.55;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.cart-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(71, 44, 26, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cart-item:hover,
.cart-item:focus-within {
  transform: translateY(-1px);
  border-color: rgba(107, 61, 21, 0.16);
  box-shadow: 0 14px 24px rgba(47, 29, 16, 0.06);
}

.cart-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-row strong {
  font-size: 0.98rem;
}

.cart-meta,
.cart-option-list,
.submit-note {
  margin: 0;
  max-width: 44rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  font-size: 0.95rem;
}

.checkout-reassurance {
  margin-top: 18px;
  padding: 18px;
  background: #ffffff;
}

.cart-option-list {
  font-size: 0.92rem;
}

.totals {
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(86, 48, 35, 0.12);
}

.chef-service-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(71, 44, 26, 0.1);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.chef-service-copy {
  display: grid;
  gap: 6px;
}

.chef-service-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
  min-width: 0;
}

.chef-service-card > strong {
  justify-self: start;
}

.chef-service-title {
  font-weight: 700;
  color: var(--color-text);
}

.chef-service-copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.55;
}

.chef-service-card.is-complimentary {
  border-color: rgba(32, 105, 70, 0.2);
  background: rgba(32, 105, 70, 0.1);
}

.service-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
  width: 100%;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.service-toggle input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--color-primary);
}

.service-toggle span {
  line-height: 1.35;
}

.summary-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(32, 105, 70, 0.1);
  color: var(--color-success);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.summary-status-badge::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-success);
  color: #fff;
  font-size: 0.75rem;
}

.summary-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.summary-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.summary-toggle input:not(:checked) + .summary-status-badge {
  background: rgba(86, 48, 35, 0.08);
  color: var(--color-text-soft);
}

.summary-toggle input:not(:checked) + .summary-status-badge::before {
  content: "";
  background: rgba(86, 48, 35, 0.22);
}

.total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-text-soft);
}

.total-row + .total-row {
  margin-top: 10px;
}

.total-row-grand {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 1.18rem;
}

.summary-primary-action {
  display: grid;
  gap: 10px;
}

#summary-checkout-link {
  position: relative;
  min-height: 52px;
}

#summary-checkout-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

#summary-checkout-link[data-cta-mode="menu"] {
  background: #ffffff;
  color: var(--color-primary-strong);
  border-color: rgba(71, 44, 26, 0.12);
  box-shadow: 0 10px 22px rgba(47, 29, 16, 0.04);
}

#summary-checkout-link[data-cta-mode="menu"]:hover,
#summary-checkout-link[data-cta-mode="menu"]:focus-visible {
  border-color: rgba(107, 61, 21, 0.22);
  box-shadow: 0 16px 28px rgba(47, 29, 16, 0.07);
}

#summary-checkout-link[data-cta-mode="checkout"] {
  box-shadow: 0 20px 34px rgba(47, 29, 16, 0.18);
}

.summary-action-note {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.summary-optional-tools {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(71, 44, 26, 0.08);
  border-radius: 18px;
  background: rgba(107, 61, 21, 0.03);
}

.summary-optional-label {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guest-menu-open {
  margin-top: 0;
}

.guest-menu-summary-note {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}
.checkout-panel {
  margin-top: 30px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(47, 29, 16, 0.08);
}

.mobile-checkout-bar {
  display: none;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease var(--motion-delay, 0ms),
    transform 0.65s ease var(--motion-delay, 0ms);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 22px;
}

.checkout-next-step {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(32, 105, 70, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(32, 105, 70, 0.06), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.checkout-next-step strong {
  color: var(--color-primary-strong);
  font-size: 0.98rem;
  line-height: 1.3;
}

.checkout-next-step span {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.setup-field {
  gap: 10px;
}

.setup-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.setup-choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: var(--radius-md);
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.setup-choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(107, 61, 21, 0.2);
  box-shadow: 0 16px 28px rgba(47, 29, 16, 0.06);
}

.setup-choice-card.is-selected {
  border-color: rgba(32, 105, 70, 0.24);
  box-shadow: 0 16px 30px rgba(32, 105, 70, 0.1), inset 0 0 0 1px rgba(32, 105, 70, 0.12);
  background:
    linear-gradient(135deg, rgba(32, 105, 70, 0.08), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.setup-choice-card.is-invalid {
  border-color: rgba(177, 59, 44, 0.7);
  box-shadow: 0 0 0 4px rgba(177, 59, 44, 0.08);
}

.setup-choice-card input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}

.setup-choice-copy {
  display: grid;
  gap: 8px;
}

.setup-choice-copy strong {
  color: var(--color-text);
}

.setup-choice-copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.field-help {
  color: var(--color-text-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.inline-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(32, 105, 70, 0.14);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.inline-note strong {
  color: var(--color-text);
}

.inline-note p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.preference-field {
  gap: 10px;
}

.preference-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(71, 44, 26, 0.12);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.preference-card-copy {
  display: grid;
  gap: 8px;
}

.preference-card-copy strong {
  color: var(--color-text);
}

.preference-card-copy p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.field span {
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
  min-height: 56px;
  line-height: 1.2;
  border: 1px solid rgba(86, 48, 35, 0.16);
  border-radius: 14px;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 56px;
}

.field textarea {
  min-height: 120px;
  padding: 14px 16px;
  line-height: 1.45;
}

.field input[readonly] {
  background: rgba(107, 61, 21, 0.04);
  color: var(--color-text);
}

.checkout-form .field input,
.checkout-form .field select,
.checkout-form .field textarea {
  padding-left: 14px;
  padding-right: 14px;
}

.checkout-form .field input,
.checkout-form .field select {
  height: 50px;
  min-height: 50px;
}

.checkout-form .field .setup-choice-card input[type="radio"],
.checkout-form .field .preference-card .service-toggle input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  padding: 0;
  border-radius: 999px;
  flex: 0 0 18px;
}

.checkout-form .field textarea {
  min-height: 108px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.checkout-form .field input[readonly] {
  height: 50px;
  min-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(143, 59, 34, 0.5);
  box-shadow: 0 0 0 4px rgba(143, 59, 34, 0.08);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(177, 59, 44, 0.7);
  box-shadow: 0 0 0 4px rgba(177, 59, 44, 0.08);
}

.field-error {
  min-height: 1em;
  color: var(--color-error);
  font-size: 0.82rem;
}

.field-hidden {
  display: none;
}

.menu-item-required {
  border-color: rgba(32, 105, 70, 0.24);
  box-shadow: inset 0 0 0 1px rgba(32, 105, 70, 0.12);
  background:
    linear-gradient(135deg, rgba(32, 105, 70, 0.08), rgba(255, 255, 255, 0.98)),
    var(--color-surface-strong);
}

.item-badge-required {
  border-color: rgba(32, 105, 70, 0.18);
  background: rgba(32, 105, 70, 0.12);
  color: var(--color-success);
}

.menu-item-note,
.cart-note {
  margin: 0;
  color: var(--color-primary-strong);
  line-height: 1.55;
}

.menu-item-note {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(32, 105, 70, 0.08);
  font-size: 0.92rem;
}

.cart-note {
  font-size: 0.9rem;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(32, 105, 70, 0.12);
  color: var(--color-success);
}

.form-status.is-error {
  background: rgba(177, 59, 44, 0.12);
  color: var(--color-error);
}

.guest-menu-success-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(32, 105, 70, 0.18);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.guest-menu-success-panel[hidden] {
  display: none;
}

.guest-menu-success-panel.is-error {
  border-color: rgba(177, 59, 44, 0.22);
  background: #ffffff;
}

.guest-menu-success-copy {
  display: grid;
  gap: 6px;
}

.guest-menu-success-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
  color: var(--color-primary-strong);
}

.guest-menu-success-copy p:not(.eyebrow) {
  max-width: 58rem;
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.guest-menu-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guest-menu-success-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.guest-menu-success-status.is-visible {
  display: block;
}

.guest-menu-success-status.is-success {
  background: rgba(32, 105, 70, 0.12);
  color: var(--color-success);
}

.guest-menu-success-status.is-error {
  background: rgba(177, 59, 44, 0.12);
  color: var(--color-error);
}
@media (max-width: 1320px) {
  .order-intro {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planning-help-compact,
  .planning-help-card-head {
    grid-template-columns: 1fr;
  }

  .planning-help-compact-actions,
  .planning-help-quicklinks {
    justify-items: start;
    justify-content: flex-start;
  }

  .planning-help-toggle,
  .planning-help-toggle--compact {
    justify-self: start;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.82fr);
  }

  .menu-sidebar {
    display: none;
  }

  .menu-filters {
    position: static;
    z-index: auto;
    margin: 0 -6px 18px;
    padding: 10px 6px 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(71, 44, 26, 0.08);
    backdrop-filter: blur(12px);
    -webkit-overflow-scrolling: touch;
  }

  .menu-filters::-webkit-scrollbar {
    display: none;
  }

  .menu-filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-item-controls {
    justify-items: start;
    align-content: start;
  }
}

@media (max-width: 1040px) {
  .order-intro {
    gap: 18px;
  }

  .hero-content,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    display: none;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 10px;
    padding-bottom: 126px;
  }

  .order-intro {
    gap: 14px;
    margin-bottom: 16px;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .order-intro-copy h1 {
    max-width: 10ch;
    font-size: 2.36rem;
    line-height: 0.96;
  }

  .order-intro-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .order-app-facts {
    gap: 6px;
  }

  .order-app-facts li {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .order-intro-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .order-intro-actions .button {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .order-service-panel {
    gap: 8px;
    padding: 11px;
    border-radius: 18px;
  }

  .order-service-panel h2 {
    max-width: 100%;
    font-size: 1.4rem;
    line-height: 1.04;
  }

  .service-style-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-style-option {
    min-height: 0;
    padding: 10px;
  }

  .service-style-option small {
    display: none;
  }

  .service-style-note {
    font-size: 0.8rem;
  }

  .order-intro-panel .order-step-list {
    display: none;
  }

  .order-readiness-drawer {
    margin-bottom: 16px;
  }

  .order-readiness-drawer summary {
    align-items: flex-start;
    gap: 10px;
    min-height: 0;
    padding: 12px;
  }

  .order-readiness-drawer summary small {
    display: none;
  }

  .add-on-guide {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .add-on-guide-links {
    justify-content: flex-start;
  }

  .section-heading-meta,
  .summary-heading-top {
    align-items: flex-start;
  }

  .hero {
    padding: 14px;
    border-radius: 28px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }

  .order-topbar {
    width: 100%;
    padding: 16px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: stretch;
  }

  .sr-order-jumpbar {
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .sr-order-jumpbar a {
    flex: 1 1 148px;
  }

  .topbar-link {
    flex: 1 1 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .order-topbar .brand {
    width: 100%;
    align-items: flex-start;
  }

  .order-topbar .brand-text strong,
  .order-topbar .brand-text span,
  .section-heading p:last-child,
  .hero-copy p {
    overflow-wrap: anywhere;
  }

  .order-topbar .brand-text span {
    display: none;
  }

  .order-topbar .brand-mark--logo {
    width: min(118px, 42vw);
    height: auto;
  }

  .topbar-link-secondary {
    display: inline-flex;
    justify-content: center;
  }

  .hero-content {
    gap: 18px;
    padding: 34px 6px 10px;
  }

  .hero-copy {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding-right: 6px;
    padding-left: 6px;
  }

  .hero-media {
    margin-bottom: 18px;
  }

  .hero-media-feature {
    aspect-ratio: 16 / 10;
  }

  .hero-media-strip {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-media-strip::-webkit-scrollbar {
    display: none;
  }

  .hero-media-thumb {
    flex: 0 0 120px;
    aspect-ratio: 1 / 1;
  }

  .hero-copy h1 {
    max-width: 7.2ch;
    font-size: 2.12rem;
    line-height: 0.98;
  }

  .section-heading h1,
  .section-heading h2 {
    max-width: 9ch;
    font-size: 2.24rem;
    line-height: 1;
  }

  .hero-copy p {
    max-width: 100%;
  }

  .section-heading p:last-child {
    width: auto;
    max-width: 28ch;
  }

  .menu-item,
  .menu-category-header,
  .package-reveal-bar,
  .cart-item-row,
  .service-banner,
  .chef-service-card,
  .submit-row,
  .hero-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-item-controls {
    justify-items: start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-next-steps {
    grid-template-columns: 1fr;
  }

  .checkout-next-step {
    min-height: auto;
  }

  .setup-choice-grid {
    grid-template-columns: 1fr;
  }

  .checkout-panel,
  .summary-card,
  .menu-category {
    padding: 20px;
  }

  .trust-grid,
  .testimonials-grid,
  .checkout-reassurance,
  .order-readiness-strip {
    grid-template-columns: 1fr;
  }

  .planning-help-strip {
    margin-bottom: 6px;
  }

  .planning-help-compact {
    padding: 14px 16px;
  }

  .planning-help-quicklinks {
    gap: 8px;
  }

  .trust-card,
  .testimonial-card {
    padding: 20px;
  }

  .summary-card {
    max-height: none;
    display: block;
  }

  .summary-scroll {
    overflow: visible;
    padding-right: 0;
  }

  .summary-heading h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .summary-guidance,
  .summary-action-note,
  .guest-menu-summary-note {
    max-width: 32ch;
  }

  .menu-category-preview {
    padding: 16px;
  }

  .menu-category-preview-tags {
    gap: 8px;
  }

  .menu-item,
  .summary-card,
  .checkout-panel {
    scroll-margin-bottom: 110px;
  }

  .mobile-checkout-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(118px, 1fr);
    gap: 8px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(113, 54, 0, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(56, 36, 13, 0.14);
    backdrop-filter: blur(12px);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body[data-mobile-cta-state="default"] .mobile-checkout-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-checkout-total {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 0 8px;
  }

  .mobile-checkout-total span {
    color: var(--color-text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-checkout-total strong {
    color: var(--color-text);
    font-size: 1.2rem;
    line-height: 1;
  }

  .mobile-checkout-total strong.is-placeholder,
  #total-value.is-placeholder {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .mobile-checkout-button {
    border: 0;
    cursor: pointer;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.92rem;
    line-height: 1.08;
    white-space: normal;
  }

  .mobile-checkout-button.is-muted {
    opacity: 0.72;
    box-shadow: none;
  }

  .premium-menu-modal {
    align-items: end;
    padding: 0;
  }

  .premium-menu-dialog,
  .guest-menu-dialog {
    width: 100%;
    max-height: min(92vh, 100%);
    padding: 22px 18px calc(22px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 24px 0 0;
  }

  .premium-menu-dialog-header,
  .guest-menu-dialog-header {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-menu-close {
    width: 100%;
  }

  .guest-menu-form-grid,
  .guest-menu-options {
    grid-template-columns: 1fr;
  }

  .guest-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guest-menu-success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .package-inclusions-list {
    grid-template-columns: 1fr;
  }

  .menu-filters {
    margin: 0 -4px 16px;
    padding: 8px 4px 10px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding-bottom: 118px;
  }

  .mobile-checkout-bar {
    grid-template-columns: minmax(0, 0.9fr) minmax(106px, 1fr);
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-checkout-button {
    width: 100%;
    max-width: 100%;
  }

  .mobile-checkout-total {
    padding: 0 4px;
  }

  .mobile-checkout-total strong,
  .mobile-checkout-total strong.is-placeholder {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .order-intro-copy > *,
  .order-step-card,
  .hero-copy > *,
  .hero-card,
  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
