:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #6b625a;
  --paper: #fffaf2;
  --surface: #ffffff;
  --line: #eadfce;
  --espresso: #3a2417;
  --roast: #8f3f24;
  --cream: #f5e7cf;
  --sage: #69735b;
  --blue: #234a59;
  --gold: #c9852f;
  --shadow: 0 18px 60px rgba(31, 27, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -ms-overflow-style: none;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(234, 223, 206, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(68, 45, 30, 0.14);
  box-shadow: 0 6px 16px rgba(31, 27, 22, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--roast);
}

.cart-button,
.button,
.filter-tabs button,
.icon-button,
.menu-toggle {
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 82px;
  height: 46px;
  padding: 8px 10px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-weight: 800;
}

.cart-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-button strong {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 280px;
  align-items: end;
  padding: clamp(38px, 4vw, 50px) clamp(18px, 5vw, 72px) 20px;
  overflow: hidden;
  color: white;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(31, 27, 22, 0.9) 0%, rgba(31, 27, 22, 0.56) 47%, rgba(31, 27, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(31, 27, 22, 0.72) 0%, rgba(31, 27, 22, 0.1) 42%);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-band h2,
.checkout-copy h2,
.visit h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 840px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.hero-actions,
.catering-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 900;
}

.button.primary {
  background: var(--roast);
  color: white;
}

.button.primary:hover {
  background: #702e1b;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.section .button.secondary,
.visit .button.secondary,
.catering .button.secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.full {
  width: 100%;
}

.hero-panel {
  justify-self: end;
  width: min(390px, 100%);
  margin-top: 28px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-panel span,
.hero-panel strong,
.hero-panel small {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-panel span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  margin-top: 6px;
}

.hero-panel small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.quick-order {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.quick-order a {
  min-height: 96px;
  padding: 22px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.quick-order a:last-child {
  border-right: 0;
}

.quick-order span,
.quick-order strong {
  display: block;
}

.quick-order span {
  color: var(--roast);
  font-weight: 900;
}

.quick-order strong {
  margin-top: 6px;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.section,
.checkout-section,
.visit {
  padding: clamp(54px, 8vw, 88px) clamp(18px, 5vw, 72px);
}

.retail-section {
  scroll-margin-top: -28px;
}

.intro,
.section-heading,
.checkout-section,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.checkout-section {
  max-width: 1120px;
  grid-template-columns: minmax(260px, 0.62fr) minmax(520px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  margin: 0 auto;
  border-radius: 18px;
}

.section h2,
.feature-band h2,
.checkout-copy h2,
.visit h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.intro > p,
.feature-band p,
.catering p,
.checkout-copy p,
.visit p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.visit-copy {
  display: grid;
  gap: 10px;
  align-content: center;
  max-width: 440px;
}

.visit-copy .eyebrow {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.visit-copy h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.03;
}

.visit-address {
  width: fit-content;
  padding-left: 14px;
  border-left: 3px solid var(--copper);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.visit-carousel {
  position: relative;
  justify-self: end;
  width: min(440px, 100%);
  height: clamp(190px, 22vw, 260px);
  overflow: hidden;
  border: 1px solid rgba(68, 45, 30, 0.16);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(31, 27, 22, 0.14);
}

.visit {
  padding-top: clamp(34px, 5vw, 54px);
  padding-bottom: clamp(34px, 5vw, 54px);
}

.visit-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: visitCarousel 24s ease-in-out infinite;
  will-change: opacity, transform;
}

.visit-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.visit-carousel img:nth-child(2) {
  animation-delay: 6s;
}

.visit-carousel img:nth-child(3) {
  animation-delay: 12s;
}

.visit-carousel img:nth-child(4) {
  animation-delay: 18s;
}

@keyframes visitCarousel {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }

  6%,
  24% {
    opacity: 1;
    transform: scale(1);
  }

  31%,
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visit-carousel img {
    animation: none;
  }

  .visit-carousel img:first-child {
    opacity: 1;
  }
}

.menu-section {
  background: #f8f0e4;
}

.section-heading {
  margin-bottom: 34px;
}

.menu-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.menu-search {
  max-width: 720px;
  color: var(--ink);
}

.menu-search span {
  color: var(--roast);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-search input {
  min-height: 48px;
  border-radius: 999px;
  padding: 11px 18px;
  box-shadow: 0 8px 24px rgba(31, 27, 22, 0.05);
}

.checkout-copy {
  display: grid;
  max-width: 390px;
  gap: 12px;
  align-content: center;
}

.filter-tabs {
  display: flex;
  justify-self: end;
  flex-wrap: nowrap;
  gap: 4px;
  max-width: 100%;
  padding: 6px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.menu-section .section-heading {
  grid-template-columns: 1fr;
  align-items: start;
}

.menu-section .filter-tabs {
  justify-self: stretch;
}

.filter-tabs button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  padding: 10px 10px;
  background: transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.filter-tabs button.active {
  background: var(--ink);
  color: white;
}

.subcategory-tabs {
  display: none;
  flex-wrap: nowrap;
  gap: 6px;
  max-width: 100%;
  padding: 5px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  border-radius: 8px;
  scrollbar-width: none;
}

.subcategory-tabs.visible {
  display: flex;
}

.subcategory-tabs::-webkit-scrollbar {
  display: none;
}

.subcategory-tabs button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 34px;
  padding: 7px 10px;
  background: transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.subcategory-tabs button.active {
  background: var(--roast);
  color: white;
}

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

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

.menu-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-pagination:empty {
  display: none;
}

.menu-pagination p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-pagination div {
  display: flex;
  gap: 8px;
}

.menu-pagination button {
  min-height: 38px;
  padding: 8px 14px;
  background: var(--ink);
  border-radius: 999px;
  color: white;
  font-weight: 900;
}

.menu-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(31, 27, 22, 0.06);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card img.product-image-custom {
  padding: 14px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.product-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 9px;
  height: 100%;
  padding: 16px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card .button {
  margin-top: 8px;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  background: var(--espresso);
  color: white;
}

.feature-band img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.feature-band > div {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: clamp(42px, 6vw, 82px);
}

.feature-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.feature-band .button {
  justify-self: start;
  margin-top: 6px;
}

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

.retail-spotlight {
  position: relative;
  height: 340px;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: var(--ink);
}

.retail-spotlight::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(31, 27, 22, 0.88), rgba(31, 27, 22, 0.08) 72%);
}

.retail-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retail-spotlight div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 20px;
}

.retail-spotlight span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.retail-spotlight h3 {
  margin: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.retail-spotlight p {
  max-width: 330px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
}

.catering {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 0;
  align-items: center;
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
  background: var(--blue);
  color: white;
}

.catering p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.catering .eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
}

.quote-form,
.checkout-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 620px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(31, 27, 22, 0.1);
}

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

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  min-width: 0;
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf9;
  color: var(--ink);
  font-size: 0.95rem;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.checkout-help {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.checkout-section {
  align-items: center;
  background: #f8f0e4;
}

@media (max-width: 980px) {
  .checkout-section {
    grid-template-columns: 1fr;
  }

  .checkout-copy,
  .checkout-form {
    max-width: 100%;
  }

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

.visit {
  align-items: center;
  background: var(--surface);
}

.visit-actions {
  justify-self: end;
  margin-top: 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  justify-content: end;
  background: rgba(31, 27, 22, 0.48);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(500px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  height: 100%;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-panel *,
.cart-panel *::before,
.cart-panel *::after {
  box-sizing: border-box;
}

.cart-checkout-form {
  width: calc(100% - 44px);
  max-width: none;
  min-width: 0;
  gap: 12px;
  margin: 0 22px 18px;
  padding: 16px;
  border-radius: 14px;
  box-shadow: none;
}

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

.cart-checkout-title {
  display: grid;
  gap: 4px;
}

.cart-checkout-title h3 {
  margin: 0;
  font-size: 1rem;
}

.cart-checkout-form textarea {
  min-height: 70px;
}

.cart-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-family: var(--body-font, Arial, sans-serif);
  font-size: 1.18rem;
  font-weight: 900;
}

.toast-cart-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.toast-cart-title h2 {
  overflow-wrap: anywhere;
}

.toast-cart-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(183, 128, 28, 0.16);
  border-radius: 50%;
  color: var(--gold);
}

.toast-cart-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0;
  flex: 0 0 auto;
  padding: 0;
}

.cart-empty {
  margin: 0;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(64px, auto);
  gap: 12px;
  padding: 22px;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.cart-item > img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--surface);
}

.cart-item h3,
.cart-item p {
  margin: 0;
  overflow-wrap: anywhere;
}

.cart-item h3 {
  font-size: 0.98rem;
}

.cart-item p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
}

.cart-item-actions > button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.35rem;
  cursor: pointer;
}

.cart-modifiers {
  display: grid;
  gap: 4px;
  margin: 9px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  list-style: none;
  overflow-wrap: anywhere;
}

.cart-modifiers span,
.cart-instructions span {
  color: var(--ink);
  font-weight: 900;
}

.cart-modifiers strong {
  color: var(--roast);
  font-weight: 900;
}

.cart-instructions {
  margin-top: 8px !important;
  color: var(--muted);
  font-size: 0.78rem !important;
  line-height: 1.35;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  min-width: 0;
}

.quantity button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.cart-suggestions {
  padding: 28px 22px;
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.cart-suggestions:empty {
  display: none;
}

.cart-suggestions h3 {
  margin: 0 0 14px;
  font-size: 1.02rem;
}

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

.cart-suggestion {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-height: 90px;
  padding: 12px;
  min-width: 0;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 8px;
}

.cart-suggestion strong,
.cart-suggestion span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.cart-suggestion span {
  margin-top: 6px;
}

.cart-suggestion button {
  align-self: end;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.cart-summary {
  display: grid;
  gap: 10px;
  flex: 0 0 auto;
  padding: 22px 22px 10px;
  min-width: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cart-summary .total {
  color: var(--roast);
  font-size: 1.25rem;
}

.cart-note {
  margin: 0 22px 22px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.toast-checkout-button {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  width: auto;
  max-width: none;
  margin: 0 22px 12px;
  background: var(--gold);
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
}

.toast-checkout-button strong {
  flex: 0 0 auto;
  padding-left: 12px;
}

.customize-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(31, 27, 22, 0.58);
}

.customize-modal.open {
  display: flex;
}

.toast-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  padding: 18px;
  background: rgba(28, 22, 17, 0.58);
  backdrop-filter: blur(6px);
}

.toast-checkout-modal.open {
  display: grid;
  place-items: center;
}

.toast-checkout-panel {
  display: flex;
  flex-direction: column;
  width: min(1120px, 100%);
  height: min(860px, calc(100vh - 36px));
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(68, 45, 31, 0.16);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(36, 24, 14, 0.28);
}

.toast-checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(68, 45, 31, 0.14);
}

.toast-checkout-header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.toast-checkout-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-checkout-panel iframe {
  flex: 1;
  width: 100%;
  min-height: 0;
  border: 0;
  background: white;
}

.toast-checkout-help {
  margin: 0;
  padding: 10px 18px 14px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
  background: rgba(255, 250, 242, 0.92);
}

.customize-panel {
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  max-height: min(880px, 92vh);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.customize-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.customize-header h2,
.customize-header p {
  margin: 0;
}

.customize-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.customize-header p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.customize-body {
  display: grid;
  gap: 14px;
  padding: 18px 22px;
  overflow-y: auto;
}

.modifier-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.modifier-group legend {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
  padding: 0;
  color: var(--ink);
  font-weight: 900;
}

.modifier-group legend small {
  color: var(--roast);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.modifier-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 9px 10px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.25;
}

.modifier-option span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modifier-option input {
  width: 16px;
  min-width: 16px;
  min-height: 16px;
  accent-color: var(--roast);
}

.modifier-option strong {
  flex: 0 0 auto;
  color: var(--roast);
  font-size: 0.8rem;
}

.special-instructions {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.customize-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.customize-footer span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customize-footer strong {
  color: var(--roast);
  font-size: 1.35rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-icon.facebook svg,
.social-icon.tiktok svg,
.social-icon.yelp svg {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.46);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.scroll-indicator {
  position: fixed;
  top: 0;
  right: 8px;
  z-index: 120;
  width: 6px;
  height: 72px;
  border-radius: 999px;
  background: rgba(58, 36, 23, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 180ms ease;
}

.scroll-indicator.visible {
  opacity: 1;
}

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

  .retail-layout,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .retail-spotlight {
    height: 300px;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    padding: 9px 10px;
    overflow: hidden;
  }

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

  .brand > span:last-child {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 0.85rem;
  }

  .brand strong {
    font-size: 0.92rem;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    font-size: 0.66rem;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .cart-button {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    gap: 7px;
    min-width: 54px;
    width: 54px;
    height: 38px;
    padding: 0;
    font-size: 0.82rem;
    box-shadow: none;
  }

  .cart-button svg {
    width: 19px;
    height: 19px;
  }

  .cart-button strong {
    position: static;
    min-width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 320px;
    max-width: 100vw;
    padding-right: 24px;
    padding-left: 24px;
    padding-top: 66px;
  }

  .hero-content,
  .hero-panel,
  .intro > *,
  .section-heading > *,
  .feature-band > div,
  .catering > div,
  .visit > * {
    max-width: 100%;
    min-width: 0;
  }

  .hero p:not(.eyebrow),
  .intro > p {
    max-width: 31ch;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-panel {
    justify-self: start;
  }

  .intro,
  .section-heading,
  .checkout-section,
  .visit,
  .catering {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .menu-section .section-heading {
    gap: 10px;
    margin-bottom: 12px;
  }

  .menu-section .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
    line-height: 0.98;
  }

  .menu-tools {
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
    padding: 8px;
    overflow: hidden;
    background: rgba(255, 250, 242, 0.78);
    border: 1px solid rgba(68, 45, 31, 0.1);
    border-radius: 16px;
  }

  .menu-search {
    width: 100%;
    max-width: 100%;
    border-radius: 999px;
  }

  .menu-search input {
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .filter-tabs {
    justify-self: stretch;
    display: grid;
    grid-template-columns: 0.55fr 1.12fr 0.72fr 1.18fr 1.28fr;
    gap: 3px;
    max-width: 100%;
    overflow: visible;
    padding: 0 0 6px;
    border: 0;
    border-radius: 0;
  }

  .filter-tabs button {
    min-width: 0;
    min-height: 38px;
    padding: 7px 3px;
    border-radius: 8px;
    font-size: clamp(0.66rem, 2.45vw, 0.82rem);
    line-height: 1.02;
    white-space: nowrap;
  }

  .filter-tabs::-webkit-scrollbar,
  .subcategory-tabs::-webkit-scrollbar {
    display: none;
  }

  .subcategory-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
  }

  .subcategory-tabs button {
    min-width: 0;
    min-height: 34px;
    padding: 6px 4px;
    border-radius: 10px;
    font-size: clamp(0.62rem, 2.3vw, 0.76rem);
    line-height: 1.08;
    white-space: normal;
  }

  .menu-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-pagination div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .product-grid.compact,
  .quick-order,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card img {
    aspect-ratio: 1.16 / 1;
  }

  .product-card img.product-image-custom {
    padding: 10px;
  }

  .product-body {
    gap: 8px;
    padding: 14px;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .product-card .button {
    min-height: 42px;
    margin-top: 5px;
  }

  .customize-modal {
    align-items: stretch;
    padding: 8px;
  }

  .customize-panel {
    max-height: calc(100vh - 16px);
    border-radius: 10px;
  }

  .toast-checkout-modal {
    padding: 0;
  }

  .toast-checkout-panel {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }

  .toast-checkout-header {
    align-items: start;
    padding: 14px;
  }

  .toast-checkout-actions {
    flex-direction: column-reverse;
    align-items: end;
  }

  .toast-checkout-actions .button {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .cart-item {
    grid-template-columns: 46px minmax(0, 1fr) minmax(52px, auto);
    gap: 10px;
    padding: 14px;
  }

  .cart-item > img {
    width: 46px;
    height: 46px;
  }

  .cart-item-actions {
    gap: 6px;
  }

  .cart-item-actions > button,
  .quantity button {
    width: 26px;
    height: 26px;
  }

  .quantity {
    gap: 7px;
  }

  .cart-header,
  .cart-suggestions,
  .cart-summary {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .cart-checkout-form,
  .cart-note {
    width: calc(100% - 32px);
    margin-right: 16px;
    margin-left: 16px;
  }

  .toast-checkout-button {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .customize-header,
  .customize-body,
  .customize-footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .modifier-options {
    grid-template-columns: 1fr;
  }

  .modifier-group legend,
  .customize-footer {
    align-items: start;
    flex-direction: column;
  }

  .customize-footer .button {
    width: 100%;
  }

  .quick-order a,
  .quick-order a:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-order a:last-child {
    border-bottom: 0;
  }

  .catering {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .catering h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .feature-band img {
    min-height: 280px;
  }

  .visit-actions {
    justify-self: start;
  }

  .visit-carousel {
    justify-self: start;
    width: min(340px, 100%);
    height: 150px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav,
  .social-icons {
    gap: 10px;
  }
}
