: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;
  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);
}

.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;
}

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

.filter-tabs {
  display: flex;
  justify-self: end;
  gap: 8px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-tabs button {
  min-height: 40px;
  padding: 8px 14px;
  background: transparent;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 900;
}

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

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

.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-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 9px;
  height: 100%;
  padding: 16px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.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(320px, 0.9fr) minmax(0, 1fr);
  gap: 22px;
}

.retail-spotlight {
  position: relative;
  min-height: 540px;
  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: 28px;
}

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

.retail-spotlight h3 {
  margin: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.retail-spotlight p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.8);
}

.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: 16px;
  width: min(520px, 100%);
  height: 100%;
  padding: 22px;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-checkout-form {
  max-width: none;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  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: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.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;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  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: 1fr auto;
  gap: 14px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.cart-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.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-summary {
  display: grid;
  gap: 10px;
  flex: 0 0 auto;
  padding: 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 10px;
}

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

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

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

.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 {
    min-height: 480px;
  }
}

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

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

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

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

  .brand strong {
    font-size: 1.05rem;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    font-size: 0.74rem;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 6px;
    overflow: visible;
    padding: 8px 0 2px;
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 8px;
    background: rgba(31, 27, 22, 0.06);
    border: 1px solid rgba(31, 27, 22, 0.08);
    border-radius: 6px;
    font-size: 0.88rem;
    line-height: 1;
  }

  .menu-toggle {
    display: none;
  }

  .cart-button {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 70;
    gap: 7px;
    min-width: 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 0.92rem;
    box-shadow: 0 12px 28px rgba(31, 27, 22, 0.22);
  }

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

  .cart-button strong {
    position: absolute;
    right: -4px;
    top: -5px;
    min-width: 20px;
    height: 20px;
    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;
  }

  .filter-tabs {
    justify-self: start;
    max-width: 100%;
    overflow-x: auto;
  }

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

  .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;
  }
}
