:root {
  --ink: #2b1208;
  --ink-soft: #3d1b0d;
  --panel: #4a2212;
  --cream: #fdebd0;
  --cream-muted: #e0b689;
  --mango: #f3d2aa;
  --caramel: #d09f6d;
  --cocoa: #5d2a10;
  --milk-chocolate: #935a38;
  --vanilla: #fdebd0;
  --line: rgba(253, 235, 208, 0.19);
  --line-strong: rgba(253, 235, 208, 0.36);
  --page-pad: clamp(22px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 77% 12%, rgba(224, 182, 137, 0.16), transparent 30%),
    var(--ink);
  color: var(--cream);
  font-family: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--mango);
  outline-offset: 4px;
}

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

.preview-ribbon {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(253, 235, 208, 0.28);
  background: #5d2a10;
  color: #fdebd0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  min-height: 108px;
  grid-template-columns: minmax(260px, 0.9fr) auto minmax(290px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(93, 42, 16, 0.2);
  background: rgba(253, 235, 208, 0.96);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.wordmark > img {
  width: clamp(160px, 13vw, 180px);
  height: auto;
  flex: 0 0 auto;
}

.wordmark-tagline {
  display: block;
  width: 100%;
  color: var(--cocoa);
  font-size: 9.3px;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.7vw, 44px);
  color: var(--cocoa);
  font-size: 14px;
}

.desktop-nav a,
.location-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.location-link:hover {
  color: var(--milk-chocolate);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.mobile-contact-link {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--cocoa);
  font-size: 11px;
  font-weight: 720;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6f3a20;
  font-size: 12px;
  white-space: nowrap;
}

.location-link svg {
  color: var(--milk-chocolate);
}

.header-order,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  font-weight: 680;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-order {
  position: relative;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--cocoa);
  background: var(--cocoa);
  color: var(--cream);
  cursor: pointer;
  white-space: nowrap;
}

.header-order b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
}

.header-order:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  border-color: var(--mango);
  background: rgba(253, 235, 208, 0.13);
}

.header-order:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - 134px));
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(43, 18, 8, 0.74), transparent 34%),
    linear-gradient(to right, rgba(43, 18, 8, 0.12), transparent 28%, transparent 72%, rgba(43, 18, 8, 0.12));
  content: "";
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: product-in 850ms 100ms ease both;
}

.hero-video {
  background: #2b1208;
}

.hero-cinematic-light,
.hero-particles {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-cinematic-light {
  inset: -28% -45%;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(255, 239, 218, 0.03) 43%,
    rgba(255, 231, 201, 0.19) 49%,
    rgba(255, 247, 232, 0.07) 54%,
    transparent 63%
  );
  mix-blend-mode: screen;
  animation: hero-light-sweep 10s ease-in-out infinite;
}

.hero-particles {
  inset: 0;
  background:
    radial-gradient(circle at 9% 72%, rgba(255, 218, 169, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 29%, rgba(255, 231, 201, 0.55) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 31% 82%, rgba(255, 210, 147, 0.56) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 18%, rgba(255, 239, 218, 0.45) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 75%, rgba(255, 219, 172, 0.55) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 73% 24%, rgba(255, 236, 210, 0.48) 0 1px, transparent 2px),
    radial-gradient(circle at 87% 63%, rgba(255, 205, 139, 0.56) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 94% 31%, rgba(255, 238, 215, 0.42) 0 1px, transparent 2px);
  filter: drop-shadow(0 0 8px rgba(255, 215, 163, 0.45));
  opacity: 0.54;
  animation: hero-particle-drift 8s ease-in-out infinite alternate;
}

@keyframes hero-light-sweep {
  0%,
  15% {
    opacity: 0;
    transform: translateX(-24%);
  }

  38%,
  62% {
    opacity: 0.8;
  }

  85%,
  100% {
    opacity: 0;
    transform: translateX(24%);
  }
}

@keyframes hero-particle-drift {
  from {
    transform: translate3d(-4px, 8px, 0) scale(1);
  }

  to {
    transform: translate3d(7px, -12px, 0) scale(1.015);
  }
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 var(--page-pad) 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 74px 6vw 84px var(--page-pad);
  animation: reveal-up 700ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--caramel);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(70px, 7.3vw, 116px);
  font-weight: 810;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.hero h1 span {
  display: block;
  margin-top: 0.12em;
  background: linear-gradient(120deg, #fdebd0, #d09f6d 76%);
  background-clip: text;
  color: transparent;
}

.hero h1.hero-slogan {
  max-width: 760px;
  font-size: clamp(64px, 6.4vw, 102px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero-description {
  max-width: 490px;
  margin: 30px 0 0;
  color: #e0d2c3;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.46;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.primary-button,
.secondary-button {
  min-width: 176px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary-button {
  background: linear-gradient(135deg, #fdebd0, #d09f6d);
  box-shadow: 0 18px 52px rgba(224, 182, 137, 0.2);
  color: #421d0b;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(243, 210, 170, 0.3);
}

.secondary-button {
  border-color: rgba(247, 235, 221, 0.45);
  background: rgba(247, 235, 221, 0.025);
  color: var(--cream);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(to right, var(--ink) 0%, transparent 16%),
    linear-gradient(to top, var(--ink) 0%, transparent 24%),
    #110b09;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(243, 210, 170, 0.2);
  filter: blur(80px);
}

.hero-product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  animation: product-in 850ms 100ms ease both;
}

.hero-product-tag,
.hero-fresh-tag {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line-strong);
  background: rgba(43, 18, 8, 0.76);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(15px);
}

.hero-product-tag {
  right: 7%;
  bottom: 9%;
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 14px;
  padding: 14px 17px;
  border-radius: 16px;
}

.hero-product-tag > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(253, 235, 208, 0.48);
  border-radius: 10px;
  color: var(--mango);
  font-size: 10px;
}

.hero-product-tag p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 15px;
  font-weight: 680;
}

.hero-product-tag small {
  margin-bottom: 2px;
  color: #a8988a;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-fresh-tag {
  top: 12%;
  right: 8%;
  display: grid;
  min-width: 112px;
  place-items: center;
  padding: 15px 17px;
  border-radius: 50%;
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: rotate(6deg);
}

.hero-fresh-tag > span {
  margin-bottom: 3px;
  color: var(--mango);
  font-size: 18px;
}

.hero-fresh-tag small {
  color: #ae9d8e;
  font-size: 9px;
  font-weight: 500;
}

.service-bar {
  position: relative;
  z-index: 5;
  display: grid;
  max-width: 1480px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 19px;
  background: rgba(61, 27, 13, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.service {
  display: grid;
  min-height: 94px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease;
}

.service:first-child {
  border-radius: 18px 0 0 18px;
}

.service:last-child {
  border-right: 0;
  border-radius: 0 18px 18px 0;
}

.service:hover,
.service.active {
  background: rgba(253, 235, 208, 0.09);
}

.service-copy {
  display: flex;
  flex-direction: column;
}

.service strong {
  font-size: 16px;
}

.service small {
  margin-top: 3px;
  color: #96877b;
  font-size: 11px;
}

.service-arrow {
  color: #866f5d;
  font-size: 18px;
}

.menu-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 116px var(--page-pad) 130px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #a8998c;
  font-size: 14px;
  line-height: 1.7;
}

.menu-browser {
  margin-top: 50px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(253, 235, 208, 0.035);
}

.menu-search {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(253, 235, 208, 0.06);
  color: var(--cream-muted);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.menu-search:focus-within {
  border-color: var(--cream);
  background: rgba(253, 235, 208, 0.09);
}

.menu-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: 17px;
}

.menu-search input::placeholder {
  color: #b58e70;
}

.menu-search input::-webkit-search-cancel-button {
  filter: invert(1) sepia(0.25);
}

.category-row {
  display: flex;
  gap: 10px;
  margin: 14px 0 0;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.category-row button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #a99a8d;
  cursor: pointer;
  font-size: 13px;
  font-weight: 670;
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.category-row button:hover,
.category-row button.active {
  border-color: rgba(253, 235, 208, 0.72);
  background: var(--cream);
  color: var(--ink);
}

.category-row .category-menu-button {
  width: 48px;
  flex: 0 0 48px;
  padding: 0;
  color: var(--cream);
}

.menu-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 66px 0 28px;
}

.menu-category-heading p {
  margin: 0 0 8px;
  color: var(--caramel);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-category-heading h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 45px);
  letter-spacing: -0.045em;
}

.menu-category-heading h3::after {
  display: block;
  width: 94px;
  height: 3px;
  margin-top: 14px;
  border-radius: 99px;
  background: var(--cream);
  content: "";
}

.menu-category-heading > span {
  color: #b58e70;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(160deg, rgba(93, 42, 16, 0.72), rgba(43, 18, 8, 0.96));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(253, 235, 208, 0.38);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #3b190c;
}

.product-image-wrap::after {
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(to top, rgba(43, 18, 8, 0.78), transparent);
  content: "";
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.035);
}

.menu-placeholder {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 22%, rgba(253, 235, 208, 0.2), transparent 30%),
    linear-gradient(145deg, #5d2a10, #2b1208);
  text-align: center;
}

.menu-placeholder::before {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(253, 235, 208, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(253, 235, 208, 0.025),
    0 0 0 72px rgba(253, 235, 208, 0.018);
  content: "";
}

.menu-placeholder > * {
  position: relative;
  z-index: 1;
}

.menu-placeholder > span {
  color: var(--caramel);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-placeholder > strong {
  max-width: 250px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.2vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.menu-placeholder > small {
  padding: 7px 11px;
  border: 1px solid rgba(253, 235, 208, 0.24);
  border-radius: 999px;
  color: var(--cream-muted);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-placeholder.pistachio {
  background:
    radial-gradient(circle at 32% 22%, rgba(183, 166, 102, 0.22), transparent 31%),
    linear-gradient(145deg, #51301c, #241107);
}

.menu-placeholder.mango {
  background:
    radial-gradient(circle at 30% 22%, rgba(226, 154, 63, 0.24), transparent 31%),
    linear-gradient(145deg, #603017, #291208);
}

.dessert-art {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(243, 210, 170, 0.26), transparent 35%),
    linear-gradient(145deg, #5d2a10, #2b1208);
}

.dessert-cup {
  position: relative;
  display: flex;
  width: 44%;
  min-width: min(150px, 70%);
  height: 70%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 18% 18% 12% 12%;
  box-shadow:
    inset 12px 0 22px rgba(255, 255, 255, 0.1),
    0 30px 50px rgba(0, 0, 0, 0.45);
  transform: perspective(600px) rotateY(-4deg);
}

.dessert-cup::before {
  position: absolute;
  z-index: 3;
  top: -2px;
  right: -7%;
  left: -7%;
  height: 11%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.dessert-cup span {
  display: block;
  height: 30%;
  background: #f4dfae;
}

.dessert-cup span:nth-child(2) {
  height: 25%;
  background: #fff4e3;
}

.dessert-cup span:nth-child(3) {
  height: 34%;
  background: #d09f6d;
}

.dessert-art.pistachio .dessert-cup span:first-child,
.dessert-art.pistachio .dessert-cup span:nth-child(3) {
  background: #935a38;
}

.dessert-art.pistachio {
  background:
    radial-gradient(circle at 50% 42%, rgba(253, 235, 208, 0.24), transparent 35%),
    linear-gradient(145deg, #5d2a10, #2b1208);
}

.dessert-cup b {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 0;
  left: 0;
  color: #27150d;
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-body > h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pack-options {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7px;
  margin-top: 12px;
}

.pack-option {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 7px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(253, 235, 208, 0.025);
  color: var(--cream-muted);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pack-option:hover {
  border-color: var(--cream);
  transform: translateY(-1px);
}

.pack-option:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.pack-option > span {
  font-size: 7px;
  font-weight: 790;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.pack-option > small {
  overflow: hidden;
  max-width: 100%;
  color: var(--caramel);
  font-size: 6px;
  font-weight: 670;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pack-option.active {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.pack-option.active > small {
  color: #7c472b;
}

.product-description {
  display: -webkit-box;
  min-height: 78px;
  margin: 15px 0 22px;
  overflow: hidden;
  color: #d0ad8e;
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.product-price del {
  margin-bottom: 2px;
  color: #957b68;
  font-size: 9px;
  line-height: 1;
}

.product-price > strong {
  color: var(--cream);
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  white-space: nowrap;
}

.product-price > .price-coming-soon {
  max-width: 105px;
  color: var(--caramel);
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
}

.product-price > small {
  margin-top: 4px;
  color: var(--caramel);
  font-size: 6px;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-order-row > button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 15px;
  border: 1px solid var(--cream);
  border-radius: 9px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-order-row > button:hover {
  transform: translateY(-2px);
  background: #e0b689;
}

.product-order-row > button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.product-order-row > button span {
  font-size: 15px;
  line-height: 1;
}

.menu-empty {
  grid-column: 1 / -1;
  padding: 70px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 17px;
  text-align: center;
}

.menu-empty h3 {
  margin: 0;
  font-size: 28px;
}

.menu-empty p {
  margin: 10px 0 22px;
  color: var(--cream-muted);
  font-size: 13px;
}

.menu-empty button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
}

.floating-cart {
  position: fixed;
  z-index: 25;
  right: 24px;
  bottom: 24px;
  display: none;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 12px 0 16px;
  border: 1px solid rgba(253, 235, 208, 0.54);
  border-radius: 999px;
  background: #5d2a10;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.floating-cart b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--mango);
  color: var(--ink);
  font-size: 11px;
}

.cart-layer {
  position: fixed;
  z-index: 70;
  inset: 0;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(3, 2, 2, 0.7);
  cursor: default;
  backdrop-filter: blur(7px);
  animation: fade-in 220ms ease both;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(470px, 94vw);
  height: 100%;
  flex-direction: column;
  border-left: 1px solid var(--line-strong);
  background: #130d0a;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.5);
  animation: drawer-in 320ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cart-header {
  display: flex;
  min-height: 115px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.cart-header .eyebrow {
  margin-bottom: 5px;
}

.cart-header h2 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.05em;
}

.cart-header > button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
}

.empty-cart {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 44px;
  text-align: center;
}

.empty-cart > span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(253, 235, 208, 0.4);
  border-radius: 50%;
  background: rgba(253, 235, 208, 0.09);
  color: var(--mango);
}

.empty-cart h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.empty-cart p {
  margin: 10px 0 25px;
  color: #95877c;
  font-size: 13px;
}

.empty-cart button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
}

.cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px;
}

.cart-line {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-line h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.cart-pack-label {
  display: block;
  margin: -1px 0 6px;
  color: #aa9483;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.cart-line p {
  margin: 0;
  color: var(--mango);
  font-size: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.quantity-control span {
  min-width: 12px;
  font-size: 12px;
  text-align: center;
}

.cart-summary {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
  background: #18100d;
}

.cart-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  font-size: 14px;
}

.cart-summary p strong {
  color: var(--mango);
  font-size: 20px;
}

.cart-summary > small {
  display: block;
  margin: 7px 0 18px;
  color: #83766c;
  font-size: 10px;
}

.cart-summary > button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdebd0, #d09f6d);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.cart-summary em {
  display: block;
  margin-top: 10px;
  color: #796b61;
  font-size: 9px;
  font-style: normal;
  text-align: center;
}

.cart-placeholder {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #935a38, #421d0b);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cart-summary .checkout-notice {
  display: block;
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(253, 235, 208, 0.28);
  border-radius: 9px;
  background: rgba(253, 235, 208, 0.08);
  color: #e0b689;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.brand-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #fdebd0;
  border-bottom: 1px solid #d09f6d;
  background: linear-gradient(90deg, #fdebd0, #e0b689);
  color: #421d0b;
}

.brand-ticker > div {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  min-height: 72px;
  align-items: center;
  gap: 26px;
  padding: 0 26px;
  animation: ticker 24s linear infinite;
}

.brand-ticker span {
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 780;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-ticker b {
  font-size: 14px;
}

.craft-section {
  display: grid;
  max-width: 1600px;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  margin: 0 auto;
  padding: 140px var(--page-pad);
}

.craft-number {
  padding-top: 8px;
  color: #685d55;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.craft-main h2,
.catering-copy h2,
.events-intro h2,
.delivery-section h2,
.location-card h2 {
  margin: 0;
  font-size: clamp(48px, 6.3vw, 96px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.craft-lead {
  max-width: 780px;
  margin: 38px 0 60px;
  color: #ad9d8f;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.55;
}

.craft-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.craft-pillars article {
  min-height: 230px;
  padding: 25px 28px 28px 0;
  border-right: 1px solid var(--line);
}

.craft-pillars article + article {
  padding-left: 28px;
}

.craft-pillars article:last-child {
  border-right: 0;
}

.craft-pillars h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.craft-pillars p {
  max-width: 280px;
  margin: 0;
  color: #8d8178;
  font-size: 12px;
  line-height: 1.7;
}

.catering-section {
  display: grid;
  min-height: 830px;
  grid-template-columns: minmax(0, 1.06fr) minmax(450px, 0.94fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(253, 235, 208, 0.06), transparent 35%),
    #3a190c;
}

.catering-visuals {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #291006;
}

.catering-visuals::after {
  position: absolute;
  inset: 0;
  border: 36px solid rgba(13, 9, 8, 0.24);
  content: "";
  pointer-events: none;
}

.catering-image {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0c0807;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.catering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-image-main {
  top: 8%;
  left: 7%;
  width: 67%;
  height: 68%;
  border-radius: 30px;
  transform: rotate(-2deg);
}

.catering-image-small {
  width: 35%;
  height: 37%;
  border-radius: 24px;
}

.catering-image-small.one {
  top: 10%;
  right: 5%;
  transform: rotate(5deg);
}

.catering-image-small.two {
  right: 8%;
  bottom: 7%;
  transform: rotate(-4deg);
}

.catering-orbit {
  position: absolute;
  z-index: 4;
  bottom: 9%;
  left: 9%;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(253, 235, 208, 0.5);
  border-radius: 50%;
  background: rgba(43, 18, 8, 0.84);
  color: var(--mango);
  font-size: 32px;
  font-weight: 770;
  line-height: 0.8;
  backdrop-filter: blur(12px);
}

.catering-orbit small {
  margin-top: -28px;
  color: #a89482;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catering-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--page-pad);
}

.catering-copy h2 {
  font-size: clamp(52px, 5.4vw, 84px);
}

.catering-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 32px 0 0;
  color: #aa9a8d;
  font-size: 16px;
  line-height: 1.75;
}

.catering-copy ul {
  display: grid;
  gap: 15px;
  margin: 34px 0 38px;
  padding: 0;
  color: #d9c9b9;
  font-size: 12px;
  list-style: none;
}

.catering-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.catering-copy li span {
  color: var(--mango);
}

.catering-copy > button {
  display: inline-flex;
  width: max-content;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(253, 235, 208, 0.52);
  border-radius: 13px;
  background: rgba(253, 235, 208, 0.1);
  color: var(--mango);
  cursor: pointer;
  font-size: 13px;
  font-weight: 690;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.catering-copy > button:hover {
  transform: translateY(-2px);
  background: rgba(253, 235, 208, 0.16);
}

.events-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 140px var(--page-pad);
}

.events-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.events-intro h2 {
  max-width: 1100px;
  font-size: clamp(48px, 6vw, 92px);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 62px;
}

.events-grid article {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 25px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 210, 170, 0.18), transparent 27%),
    linear-gradient(150deg, #5d2a10, #2b1208 70%);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.events-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 88% 12%, rgba(224, 182, 137, 0.2), transparent 30%),
    linear-gradient(150deg, #4a2212, #2b1208 70%);
}

.events-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 235, 208, 0.36);
}

.events-grid article > span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--caramel);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.events-grid h3 {
  max-width: 590px;
  margin: 58px 0 20px;
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.events-grid p {
  max-width: 540px;
  margin: 0 0 35px;
  color: #9f9186;
  font-size: 13px;
  line-height: 1.75;
}

.events-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mango);
  font-size: 12px;
  font-weight: 680;
}

.events-grid a svg {
  transition: transform 180ms ease;
}

.events-grid a:hover svg {
  transform: translateX(4px);
}

.delivery-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
  padding: 120px var(--page-pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(253, 235, 208, 0.07), transparent 45%),
    #3a190c;
}

.delivery-section h2 {
  font-size: clamp(48px, 6vw, 88px);
}

.delivery-copy > p {
  max-width: 590px;
  margin: 0;
  color: #aa9a8e;
  font-size: 15px;
  line-height: 1.75;
}

.delivery-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.delivery-partners span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(247, 235, 221, 0.025);
  font-size: 12px;
  font-weight: 690;
}

.location-section {
  display: grid;
  min-height: 700px;
  grid-template-columns: 0.82fr 1.18fr;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 95px var(--page-pad);
  border-right: 1px solid var(--line);
}

.location-card h2 {
  font-size: clamp(52px, 6vw, 88px);
}

.contact-social-links {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.contact-social-links a {
  display: flex;
  min-width: 0;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 11px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(253, 235, 208, 0.055);
  color: var(--cream);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-social-links a:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-3px);
}

.contact-social-links svg {
  width: 28px;
  height: 28px;
}

.contact-social-links span {
  overflow: hidden;
  max-width: 100%;
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.coverage-copy {
  max-width: 560px;
  margin: 32px 0 0;
  color: #d0ad8e;
  font-size: 15px;
  line-height: 1.75;
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.county-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(253, 235, 208, 0.07);
  color: var(--cream);
  font-size: 11px;
  font-weight: 720;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.contact-links a {
  display: flex;
  min-width: 0;
  min-height: 84px;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(253, 235, 208, 0.04);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.contact-links a:hover {
  border-color: var(--cream);
  background: rgba(253, 235, 208, 0.08);
}

.contact-links small {
  color: var(--caramel);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  margin-top: 7px;
  overflow: hidden;
  color: var(--cream);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #4a2212;
}

.map-frame {
  border: 0;
  pointer-events: none;
}

.map-frame-overview {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  filter: grayscale(1) sepia(1) saturate(2.2) hue-rotate(330deg) brightness(0.56) contrast(1.28);
  opacity: 0.92;
  transform: scale(1.035);
}

.map-tone {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 30% 24%, rgba(253, 235, 208, 0.17), transparent 32%),
    linear-gradient(145deg, rgba(53, 19, 7, 0.2), rgba(91, 40, 17, 0.58));
  box-shadow: inset 0 0 100px rgba(35, 12, 4, 0.45);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.map-lens {
  --handle-angle: 28deg;
  position: absolute;
  z-index: 4;
  width: clamp(160px, 14vw, 210px);
  aspect-ratio: 1;
}

.map-lens::after {
  position: absolute;
  z-index: -1;
  top: 52%;
  left: calc(100% - 10px);
  width: clamp(90px, 11vw, 165px);
  height: 12px;
  border: 1px solid rgba(253, 235, 208, 0.72);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(253, 235, 208, 0.92), rgba(208, 156, 110, 0.82));
  box-shadow: 0 12px 34px rgba(31, 10, 3, 0.34);
  content: "";
  transform: rotate(var(--handle-angle));
  transform-origin: 0 50%;
}

.map-lens-la {
  top: 14%;
  left: 17%;
}

.map-lens-oc {
  --handle-angle: 205deg;
  right: 14%;
  bottom: 12%;
}

.map-lens-oc::after {
  top: 42%;
  left: 10px;
}

.map-lens-window {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(253, 235, 208, 0.92);
  border-radius: 50%;
  background: #5d2b16;
  box-shadow:
    0 26px 72px rgba(28, 8, 2, 0.48),
    inset 0 0 0 7px rgba(44, 17, 7, 0.4);
}

.map-lens-window::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 247, 236, 0.32), transparent 35%);
  box-shadow: inset 0 0 38px rgba(35, 10, 3, 0.48);
  content: "";
  pointer-events: none;
}

.map-lens-frame {
  position: absolute;
  top: -42px;
  left: -42px;
  width: calc(100% + 84px);
  height: calc(100% + 84px);
  filter: grayscale(1) sepia(1) saturate(1.7) hue-rotate(332deg) brightness(0.82) contrast(1.24);
  transform: scale(1.08);
}

.map-lens-tone {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(98, 45, 21, 0.16);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.map-lens-label {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  display: flex;
  min-width: 88px;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  padding: 7px 12px;
  border: 1px solid rgba(253, 235, 208, 0.56);
  border-radius: 999px;
  background: rgba(52, 18, 7, 0.88);
  box-shadow: 0 10px 28px rgba(20, 6, 2, 0.28);
  color: var(--cream);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.map-lens-label b {
  font-size: 20px;
  letter-spacing: -0.05em;
}

.map-lens-label small {
  color: var(--caramel);
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.map-service-note {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 3%;
  color: rgba(253, 235, 208, 0.1);
  font-size: clamp(64px, 8vw, 122px);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.map-credit {
  position: absolute;
  z-index: 6;
  right: 10px;
  bottom: 9px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(45, 16, 6, 0.78);
  color: rgba(253, 235, 208, 0.72);
  font-size: 8px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.site-footer {
  display: grid;
  min-height: 360px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  padding: 55px var(--page-pad);
  border-top: 1px solid rgba(93, 42, 16, 0.2);
  background: var(--cream);
  color: var(--cocoa);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 0;
}

.footer-wordmark img {
  display: block;
  width: min(240px, 100%);
  height: auto;
}

.footer-wordmark-tagline {
  display: block;
  width: 100%;
  color: var(--cocoa);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand > p:first-of-type {
  margin-top: 18px;
}

.site-footer > div:first-child p,
.footer-meta p,
.footer-meta small {
  color: #6f3a20;
  font-size: 10px;
}

.footer-brand .footer-social-label {
  margin: 28px 0 11px;
  color: var(--cocoa);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(93, 42, 16, 0.34);
  border-radius: 50%;
  background: rgba(93, 42, 16, 0.06);
  color: var(--cocoa);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--cocoa);
  color: var(--cream);
}

.site-footer nav {
  display: flex;
  max-width: 360px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  color: var(--cocoa);
  font-size: 12px;
}

.site-footer nav a:hover {
  color: var(--milk-chocolate);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-meta p {
  color: var(--cocoa);
}

.footer-meta a {
  margin-top: 9px;
  color: #6f3a20;
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--ink);
}

.footer-meta small {
  display: block;
  margin-top: 8px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-in {
  from {
    opacity: 0;
    transform: scale(1.045) translateX(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes drawer-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

  .location-link {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  }

  .service-bar {
    margin-right: 20px;
    margin-left: 20px;
  }

  .catering-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .catering-copy {
    padding-right: clamp(48px, 6vw, 90px);
    padding-left: clamp(48px, 6vw, 90px);
  }

  .site-footer {
    gap: 38px;
  }
}

@media (max-width: 900px) {
  .preview-ribbon {
    min-height: 23px;
    font-size: 8px;
  }

  .site-header {
    min-height: 92px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-contact-link {
    display: inline-flex;
  }

  .header-actions {
    gap: 10px;
  }

  .header-order span {
    display: none;
  }

  .header-order {
    min-width: 48px;
    padding: 0 13px;
  }

  .hero {
    min-height: 700px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(70px, 15vw, 110px);
  }

  .hero h1.hero-slogan {
    font-size: clamp(64px, 12vw, 94px);
  }

  .hero-visual {
    min-height: 620px;
  }

  .service-bar {
    margin-top: 0;
  }

  .service {
    min-height: 82px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .service-arrow {
    display: none;
  }

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

  .product-image-wrap {
    height: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .craft-section {
    grid-template-columns: 1fr;
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .craft-number {
    display: none;
  }

  .craft-pillars {
    grid-template-columns: 1fr;
  }

  .craft-pillars article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .craft-pillars article:last-child {
    border-bottom: 0;
  }

  .catering-section {
    grid-template-columns: 1fr;
  }

  .catering-visuals {
    min-height: 650px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catering-copy {
    padding: 90px var(--page-pad);
  }

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

  .delivery-section {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-map {
    min-height: 560px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 34px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
  }

  .site-header {
    min-height: 84px;
  }

  .wordmark {
    max-width: 145px;
  }

  .wordmark > img {
    width: 135px;
    height: auto;
  }

  .wordmark-tagline {
    font-size: 7.1px;
    letter-spacing: 0.11em;
  }

  .footer-wordmark {
    padding: 0;
  }

  .footer-wordmark img {
    width: min(210px, 100%);
  }

  .footer-wordmark-tagline {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero-copy {
    padding-top: 62px;
    padding-bottom: 48px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-actions {
    display: grid;
    width: calc(100% - 36px);
    margin: 0 18px 48px;
  }

  .hero h1 {
    font-size: clamp(60px, 19vw, 86px);
  }

  .hero h1.hero-slogan {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-description {
    margin-top: 23px;
    font-size: 17px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-product {
    object-position: 55% center;
  }

  .hero-fresh-tag {
    top: 9%;
    right: 5%;
    min-width: 92px;
    padding: 12px;
  }

  .hero-product-tag {
    right: 18px;
    bottom: 21px;
    left: 18px;
    min-width: auto;
  }

  .service-bar {
    grid-template-columns: 1fr;
    margin: 14px 14px 0;
  }

  .service,
  .service:first-child,
  .service:last-child {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 13px 18px;
  }

  .service:first-child {
    border-radius: 18px 18px 0 0;
  }

  .service:last-child {
    border-bottom: 0;
    border-radius: 0 0 18px 18px;
  }

  .menu-section {
    padding: 76px 12px 100px;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .menu-browser {
    margin-top: 34px;
    padding: 10px;
    border-radius: 15px;
  }

  .menu-search {
    min-height: 54px;
    padding: 0 14px;
    border-radius: 11px;
  }

  .menu-search input {
    font-size: 15px;
  }

  .category-row {
    margin-top: 10px;
  }

  .category-row button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .category-row .category-menu-button {
    width: 44px;
    flex-basis: 44px;
  }

  .menu-category-heading {
    align-items: end;
    margin: 44px 0 18px;
  }

  .menu-category-heading h3 {
    font-size: 27px;
  }

  .menu-category-heading h3::after {
    width: 74px;
    margin-top: 11px;
  }

  .product-grid {
    gap: 10px;
  }

  .product-image-wrap {
    height: auto;
    aspect-ratio: 1.06 / 1;
  }

  .menu-placeholder {
    gap: 8px;
    padding: 13px;
  }

  .menu-placeholder > span,
  .menu-placeholder > small {
    font-size: 5px;
  }

  .menu-placeholder > strong {
    font-size: 16px;
  }

  .product-body {
    padding: 12px;
  }

  .product-body > h3 {
    font-size: 17px;
  }

  .pack-options {
    gap: 4px;
    margin-top: 9px;
  }

  .pack-option {
    min-height: 39px;
    gap: 3px;
    padding: 6px 4px;
    border-radius: 7px;
  }

  .pack-option > span {
    font-size: 6px;
  }

  .pack-option > small {
    font-size: 5px;
  }

  .product-description {
    min-height: 82px;
    margin: 12px 0 16px;
    font-size: 11px;
    line-height: 1.52;
    -webkit-line-clamp: 5;
  }

  .product-order-row {
    gap: 7px;
  }

  .product-price > strong {
    font-size: 16px;
  }

  .product-price del {
    font-size: 8px;
  }

  .product-price > small {
    max-width: 72px;
    overflow: hidden;
    font-size: 5px;
    text-overflow: ellipsis;
  }

  .product-order-row > button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 10px;
  }

  .floating-cart {
    display: flex;
  }

  .brand-ticker {
    min-height: 58px;
  }

  .brand-ticker > div {
    gap: 22px;
    font-size: 12px;
  }

  .craft-section,
  .events-section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .craft-main h2,
  .events-intro h2 {
    font-size: 48px;
  }

  .craft-lead {
    font-size: 17px;
  }

  .craft-pillars {
    margin-top: 50px;
  }

  .craft-pillars article {
    padding: 26px 0;
  }

  .catering-visuals {
    min-height: 520px;
  }

  .catering-image-main {
    width: min(68vw, 330px);
    height: min(78vw, 380px);
  }

  .catering-image-small {
    width: 145px;
    height: 185px;
  }

  .catering-image-small.one {
    right: 1%;
  }

  .catering-image-small.two {
    left: 1%;
  }

  .catering-orbit {
    width: 86px;
    height: 86px;
    font-size: 9px;
  }

  .catering-copy {
    padding: 76px 18px;
  }

  .catering-copy h2 {
    font-size: 50px;
  }

  .events-grid article {
    min-height: auto;
    padding: 30px;
  }

  .events-grid h3 {
    margin-top: 42px;
    font-size: 32px;
  }

  .delivery-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .delivery-section h2 {
    font-size: 46px;
  }

  .location-card {
    padding: 78px 18px;
  }

  .contact-social-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-social-links a {
    min-height: 82px;
  }

  .location-card h2 {
    font-size: 50px;
  }

  .coverage-copy {
    margin-top: 24px;
    font-size: 14px;
  }

  .contact-links {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .contact-links a {
    min-height: 76px;
  }

  .location-map {
    min-height: 430px;
  }

  .map-frame-overview {
    inset: -8%;
    width: 116%;
    height: 116%;
  }

  .map-lens {
    width: 138px;
  }

  .map-lens::after {
    width: 82px;
    height: 9px;
  }

  .map-lens-la {
    top: 11%;
    left: 8%;
  }

  .map-lens-oc {
    right: 7%;
    bottom: 13%;
  }

  .map-lens-frame {
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
  }

  .map-lens-label {
    bottom: 12px;
    min-width: 72px;
    gap: 4px;
    padding: 5px 9px;
  }

  .map-lens-label b {
    font-size: 17px;
  }

  .map-lens-label small {
    font-size: 6px;
  }

  .map-service-note {
    right: 4%;
    bottom: 4%;
    font-size: 52px;
  }

  .map-credit {
    font-size: 7px;
  }

  .site-footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 18px 28px;
    justify-content: start;
  }
}

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

  .hero-cinematic-light,
  .hero-particles {
    display: none;
  }
}

/* WordPress and WooCommerce integration */
[hidden] {
  display: none !important;
}

img {
  max-width: 100%;
}

body.creamix-cart-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

.custom-logo {
  display: block;
  width: clamp(160px, 13vw, 180px);
  height: auto;
}

.product-card[hidden] {
  display: none;
}

.creamix-cart-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.creamix-cart-content .cart-lines {
  width: 100%;
}

.creamix-cart-content .cart-summary {
  margin-top: auto;
}

.creamix-checkout-button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdebd0, #d09f6d);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.creamix-checkout-button:hover {
  background: linear-gradient(135deg, #fff4e3, #e0b689);
  color: var(--ink);
}

.empty-cart a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
}

.creamix-import-empty {
  background: rgba(253, 235, 208, 0.05);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.creamix-commerce-page {
  min-height: 65vh;
  padding: clamp(54px, 8vw, 110px) var(--page-pad);
  background:
    radial-gradient(circle at 82% 8%, rgba(224, 182, 137, 0.14), transparent 28%),
    var(--ink);
}

.creamix-commerce-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.creamix-content-shell {
  width: min(900px, 100%);
}

.creamix-content-card {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(74, 34, 18, 0.62);
}

.creamix-content-card h1,
.creamix-commerce-page h1,
.creamix-commerce-page h2,
.creamix-commerce-page h3 {
  color: var(--cream);
}

.creamix-content-card h1 {
  margin-top: 0;
  font-size: clamp(38px, 7vw, 74px);
  letter-spacing: -0.05em;
}

.creamix-commerce-page .woocommerce-breadcrumb,
.creamix-commerce-page .woocommerce-result-count,
.creamix-commerce-page label,
.creamix-commerce-page p,
.creamix-commerce-page address,
.creamix-commerce-page .product_meta {
  color: var(--cream-muted);
}

.creamix-commerce-page .woocommerce-breadcrumb a,
.creamix-commerce-page a:not(.button) {
  color: var(--mango);
}

.creamix-commerce-page .woocommerce-notices-wrapper,
.creamix-commerce-page .woocommerce-message,
.creamix-commerce-page .woocommerce-info,
.creamix-commerce-page .woocommerce-error {
  margin-bottom: 24px;
}

.creamix-commerce-page .woocommerce-message,
.creamix-commerce-page .woocommerce-info,
.creamix-commerce-page .woocommerce-error {
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(253, 235, 208, 0.08);
  color: var(--cream);
  list-style: none;
}

.creamix-commerce-page .button,
.creamix-commerce-page button.button,
.creamix-commerce-page input.button,
.creamix-commerce-page #place_order {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--cream);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.creamix-commerce-page .button:hover,
.creamix-commerce-page button.button:hover,
.creamix-commerce-page input.button:hover,
.creamix-commerce-page #place_order:hover {
  background: var(--caramel);
  color: var(--ink);
}

.creamix-commerce-page input[type="text"],
.creamix-commerce-page input[type="email"],
.creamix-commerce-page input[type="tel"],
.creamix-commerce-page input[type="number"],
.creamix-commerce-page input[type="password"],
.creamix-commerce-page select,
.creamix-commerce-page textarea,
.creamix-commerce-page .select2-selection {
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(253, 235, 208, 0.08);
  color: var(--cream);
}

.creamix-commerce-page textarea {
  min-height: 120px;
}

.creamix-commerce-page table {
  width: 100%;
  border-collapse: collapse;
  color: var(--cream);
}

.creamix-commerce-page table th,
.creamix-commerce-page table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.creamix-commerce-page .shop_table,
.creamix-commerce-page .woocommerce-checkout-review-order,
.creamix-commerce-page .cart_totals,
.creamix-commerce-page .woocommerce-order-details,
.creamix-commerce-page .woocommerce-customer-details {
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(74, 34, 18, 0.55);
}

.creamix-commerce-page .woocommerce form .form-row {
  margin: 0 0 18px;
}

.creamix-commerce-page .woocommerce form .form-row label {
  display: block;
  margin-bottom: 7px;
}

.creamix-commerce-page .woocommerce form .form-row-wide,
.creamix-commerce-page .woocommerce form .form-row input.input-text,
.creamix-commerce-page .woocommerce form .form-row textarea {
  width: 100%;
}

.creamix-commerce-page .col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.creamix-commerce-page .col2-set .col-1,
.creamix-commerce-page .col2-set .col-2 {
  width: auto;
}

.creamix-commerce-page #payment {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(19, 13, 10, 0.6);
}

.creamix-commerce-page #payment ul.payment_methods {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.creamix-commerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.creamix-commerce-page ul.products::before,
.creamix-commerce-page ul.products::after {
  display: none;
}

.creamix-commerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(74, 34, 18, 0.62);
}

.creamix-commerce-page ul.products li.product img {
  border-radius: 12px;
}

.creamix-commerce-page ul.products .woocommerce-loop-product__title {
  color: var(--cream);
}

.creamix-commerce-page .price,
.creamix-commerce-page .amount {
  color: var(--mango);
}

.creamix-commerce-page div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
}

.creamix-commerce-page div.product div.images,
.creamix-commerce-page div.product div.summary {
  width: auto;
  float: none;
}

.creamix-commerce-page div.product div.images img {
  border-radius: 18px;
}

.creamix-commerce-page .quantity .qty {
  width: 78px;
}

.creamix-commerce-page .woocommerce-tabs,
.creamix-commerce-page .related,
.creamix-commerce-page .upsells {
  grid-column: 1 / -1;
  margin-top: 45px;
}

.creamix-commerce-page .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.creamix-commerce-page .woocommerce-tabs ul.tabs li {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .creamix-commerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creamix-commerce-page div.product,
  .creamix-commerce-page .col2-set {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 620px) {
  .creamix-commerce-page {
    padding: 48px 14px 70px;
  }

  .creamix-commerce-page table.shop_table_responsive tr td,
  .creamix-commerce-page table.shop_table_responsive tr th {
    padding: 12px 8px;
  }
}
