:root {
  --forest: #183d32;
  --forest-deep: #0c2922;
  --forest-soft: #265346;
  --cream: #fff9ef;
  --sand: #f3e8d4;
  --gold: #dca63a;
  --orange: #e66a2b;
  --orange-dark: #c9531c;
  --white: #ffffff;
  --ink: #1d2420;
  --muted: #66716b;
  --line: rgba(24, 61, 50, 0.12);
  --shadow-sm: 0 10px 30px rgba(16, 43, 35, 0.08);
  --shadow-lg: 0 28px 70px rgba(16, 43, 35, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;

  --hero-bg: #fbf0e0;
  --hero-ink: #241a12;
  --hero-muted: #7a6d61;
  --hero-red: #9c2b1a;
  --hero-red-dark: #7c2113;
  --hero-red-soft: rgba(156, 43, 26, 0.45);
  --hero-gold-dot: #d9a441;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  font-family: "DM Sans", sans-serif;
}

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

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

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.page-ingredients {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.page-ingredient {
  position: absolute;
  display: block;
  width: var(--ingredient-size, 82px);
  height: calc(var(--ingredient-size, 82px) * 0.66);
  opacity: var(--ingredient-opacity, 0.68);
  transform: rotate(var(--ingredient-rotate, 0deg));
  will-change: transform;
}

.page-ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(36, 26, 18, 0.08));
  transform-origin: center;
}

.page-ingredient-tomato {
  --ingredient-size: 88px;
}

.page-ingredient-rice {
  --ingredient-size: 66px;
  --ingredient-opacity: 0.55;
}

.page-ingredient-vegis {
  --ingredient-size: 74px;
  --ingredient-opacity: 0.62;
}

.page-ingredient-1 { top: 5.2%; left: 3.5%; --ingredient-rotate: -18deg; --ingredient-float: 7.1s; }
.page-ingredient-2 { top: 9.5%; right: 8%; --ingredient-rotate: 12deg; --ingredient-float: 6.3s; }
.page-ingredient-3 { top: 14.4%; left: 8%; --ingredient-rotate: -12deg; --ingredient-float: 7.8s; }
.page-ingredient-4 { top: 21%; right: 4%; --ingredient-rotate: -8deg; --ingredient-float: 6.8s; }
.page-ingredient-5 { top: 27%; left: 2.5%; --ingredient-rotate: 18deg; --ingredient-float: 7.4s; }
.page-ingredient-6 { top: 33%; right: 7%; --ingredient-rotate: 10deg; --ingredient-float: 8.2s; }
.page-ingredient-7 { top: 40%; left: 6%; --ingredient-rotate: -14deg; --ingredient-float: 6.6s; }
.page-ingredient-8 { top: 47%; right: 2.5%; --ingredient-rotate: -20deg; --ingredient-float: 7.2s; }
.page-ingredient-9 { top: 54%; left: 3%; --ingredient-rotate: 14deg; --ingredient-float: 8s; }
.page-ingredient-10 { top: 61%; right: 9%; --ingredient-rotate: 16deg; --ingredient-float: 6.4s; }
.page-ingredient-11 { top: 68%; left: 7%; --ingredient-rotate: 21deg; --ingredient-float: 7.6s; }
.page-ingredient-12 { top: 75%; right: 4%; --ingredient-rotate: -12deg; --ingredient-float: 8.4s; }
.page-ingredient-13 { top: 82%; left: 2%; --ingredient-rotate: -6deg; --ingredient-float: 6.9s; }
.page-ingredient-14 { top: 89%; right: 8%; --ingredient-rotate: 16deg; --ingredient-float: 7.5s; }
.page-ingredient-15 { top: 95%; left: 10%; --ingredient-rotate: -10deg; --ingredient-float: 8.1s; }

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffd883;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--forest-deep);
  font-family: "DM Sans", sans-serif;
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 7rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.05;
}

.word-reveal-inner {
  display: inline-block;
  will-change: transform;
}

p {
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(230, 106, 43, 0.24);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-outline:hover {
  background: var(--white);
  color: var(--forest-deep);
}

.button-dark {
  background: var(--forest);
  color: var(--white);
}

.button-full {
  width: 100%;
  border-radius: var(--radius-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(24, 61, 50, 0.08);
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

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

.brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.brand-logo-frame {
  display: flex;
  align-items: center;
  height: 70px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 100px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand-logo-frame.img-missing {
  width: 66px;
  border: 1.5px dashed var(--hero-red-soft);
  border-radius: 50%;
  background: rgba(156, 43, 26, 0.06);
}

.brand-logo-frame.img-missing::after {
  content: "🔥";
  font-size: 1.2rem;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--hero-red);
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a {
  color: var(--hero-ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav > a:hover {
  color: var(--hero-red);
}

.main-nav .nav-order {
  border-radius: 999px;
  background: var(--hero-red);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 700;
}

.main-nav .nav-order:hover {
  background: var(--hero-red-dark);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 80px;
  background: var(--hero-bg);
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  max-width: 1150px;
  margin: 0 0 16px;
  color: var(--hero-ink);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  white-space: nowrap;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.05s forwards;
}

.hero-title-accent {
  color: var(--hero-red);
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 0 8px;
  color: var(--hero-muted);
  font-size: 0.95rem;
  white-space: nowrap;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.2s forwards;
}

.hero-trust {
  margin: 0 0 8px;
  color: var(--hero-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.32s forwards;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 28px auto 32px;
}

.hero-garnish {
  position: absolute;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  transform: rotate(var(--garnish-rotate, 0deg));
  will-change: transform, opacity;
}

.hero-garnish img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  will-change: transform;
}

.hero-garnish-chili-left,
.hero-garnish-chili-right {
  width: 96px;
  height: 64px;
}

.hero-garnish-herb-left,
.hero-garnish-herb-right {
  width: 84px;
  height: 58px;
}

.hero-garnish-chili-left {
  top: 6%;
  left: -150px;
  --garnish-rotate: -18deg;
  --garnish-delay: 0.35s;
  --garnish-float: 6.8s;
}

.hero-garnish-herb-left {
  top: 56%;
  left: -170px;
  --garnish-rotate: -8deg;
  --garnish-delay: 0.55s;
  --garnish-float: 7.4s;
}

.hero-garnish-rice-left-1,
.hero-garnish-rice-left-2,
.hero-garnish-rice-right-1,
.hero-garnish-rice-right-2 {
  width: 74px;
  height: 50px;
}

.hero-garnish-rice-left-1 {
  top: 32%;
  left: -110px;
  --garnish-rotate: 12deg;
  --garnish-delay: 0.75s;
  --garnish-float: 5.8s;
}

.hero-garnish-rice-left-2 {
  top: 80%;
  left: -190px;
  --garnish-rotate: -10deg;
  --garnish-delay: 0.95s;
  --garnish-float: 6.5s;
}

.hero-garnish-rice-right-1 {
  top: 10%;
  right: -130px;
  --garnish-rotate: -6deg;
  --garnish-delay: 0.45s;
  --garnish-float: 6.2s;
}

.hero-garnish-herb-right {
  top: 40%;
  right: -175px;
  --garnish-rotate: 8deg;
  --garnish-delay: 0.65s;
  --garnish-float: 7.1s;
}

.hero-garnish-chili-right {
  top: 66%;
  right: -150px;
  --garnish-rotate: 18deg;
  --garnish-delay: 0.85s;
  --garnish-float: 6.9s;
}

.hero-garnish-rice-right-2 {
  top: 90%;
  right: -100px;
  --garnish-rotate: 10deg;
  --garnish-delay: 1.05s;
  --garnish-float: 5.9s;
}

.hero-fork {
  margin-right: clamp(-70px, -6vw, -20px);
}

.hero-spoon {
  margin-left: clamp(-70px, -6vw, -20px);
}

.hero-utensil {
  width: clamp(170px, 18vw, 300px);
  height: clamp(300px, 25vw, 360px);
  opacity: 0;
}

.hero-spoon {
  width: clamp(210px, 22vw, 360px);
  height: clamp(340px, 29vw, 410px);
}

.hero-fork-frame,
.hero-spoon-frame {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
}

.hero-fork-frame img,
.hero-spoon-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-fork-frame.img-missing,
.hero-spoon-frame.img-missing {
  position: relative;
  border: 1.5px dashed var(--hero-red-soft);
  border-radius: 999px;
  background: rgba(156, 43, 26, 0.05);
}

.hero-fork-frame.img-missing::after,
.hero-spoon-frame.img-missing::after {
  content: "Fork image";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  color: var(--hero-red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px 0;
}

.hero-spoon-frame.img-missing::after {
  content: "Spoon image";
}

.hero-ring {
  position: relative;
  width: clamp(290px, 31vw, 460px);
  height: clamp(290px, 31vw, 460px);
  border: 2px dashed var(--hero-red-soft);
  border-radius: 50%;
  opacity: 0;
}

.hero-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hero-red);
  transform: translate(-50%, -50%);
}

.hero-dot-gold {
  background: var(--hero-gold-dot);
  width: 10px;
  height: 10px;
}

.hero-dot-1 { top: 0%; left: 50%; }
.hero-dot-2 { top: 14.6%; left: 85.36%; }
.hero-dot-3 { top: 50%; left: 100%; }
.hero-dot-4 { top: 85.36%; left: 85.36%; }
.hero-dot-5 { top: 100%; left: 50%; }
.hero-dot-6 { top: 85.36%; left: 14.64%; }
.hero-dot-7 { top: 50%; left: 0%; }
.hero-dot-8 { top: 14.6%; left: 14.64%; }

.hero-ring-label {
  position: absolute;
  color: var(--hero-ink);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-ring-label-fresh {
  top: 50%;
  left: 0%;
  transform: translate(calc(-100% - 14px), -50%);
}

.hero-ring-label-bold {
  top: 50%;
  left: 100%;
  transform: translate(14px, -50%);
}

.hero-ring-label-authentic {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 14px);
}

.hero-plate-frame {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  overflow: hidden;
}

.hero-plate-spin {
  position: absolute;
  inset: 0;
}

.hero-plate-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.35);
  transition: opacity 900ms ease-in-out;
}

.hero-plate-img.is-active {
  opacity: 1;
}

.hero-plate-frame.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--hero-red-soft);
  background: var(--sand);
}

.hero-plate-frame.img-missing::after {
  content: "Jollof rice plate image";
  max-width: 60%;
  color: var(--hero-red);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px;
  margin-top: 68px;
  transform: translateX(-78px);
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 1.5s forwards;
}

/* Drawer + corner-bracket hover buttons — adapted from a Uiverse.io
   component by dexter-st, recoloured to the Bosly Foods palette. */
.hero-btn-container {
  --corner-color: rgba(36, 26, 18, 0.16);
  --corner-dist: 26px;
  --corner-multiplier: 1.5;
  --timing-function: cubic-bezier(0, 0, 0, 2.5);
  --duration: 250ms;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary {
  --btn-bg: var(--hero-red);
  --btn-bg-hover: var(--hero-red-dark);
  --btn-text: var(--white);
  --drawer-bg: var(--hero-ink);
  --drawer-text: var(--white);
}

.hero-btn-outline {
  --btn-bg: var(--white);
  --btn-bg-hover: var(--hero-bg);
  --btn-text: var(--hero-red);
  --drawer-bg: var(--hero-red);
  --drawer-text: var(--white);
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: calc(var(--corner-dist) * 2);
  border-radius: 16px;
  border: none;
  padding: 0.3em 1.2em;
  text-decoration: none;

  background: linear-gradient(#fff2, #0001), var(--btn-bg);
  box-shadow:
    1px 1px 2px -1px #fff inset,
    0 2px 1px #00000010,
    0 4px 2px #00000010,
    0 8px 4px #00000010,
    0 16px 8px #00000010;

  transition: transform var(--duration) var(--timing-function),
    filter var(--duration) var(--timing-function),
    background var(--duration) var(--timing-function);
  cursor: pointer;
}

.hero-btn-drawer {
  position: absolute;
  display: flex;
  justify-content: center;
  pointer-events: none;

  min-height: 32px;
  border-radius: 16px;
  border: none;
  padding: 0.25em 1em;
  font-size: 0.76rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
  color: var(--drawer-text);

  background: linear-gradient(#fff2, #0001), var(--drawer-bg);
  opacity: 0;

  transition: transform calc(0.5 * var(--duration)) ease,
    filter var(--duration) var(--timing-function),
    opacity calc(0.5 * var(--duration)) ease;
  filter: blur(2px);
}

.hero-btn-transition-top {
  top: 0;
  left: 0;
  border-radius: 12px 12px 0 0;
  align-items: start;
}

.hero-btn-transition-bottom {
  bottom: 0;
  right: 0;
  border-radius: 0 0 12px 12px;
  align-items: end;
}

.hero-btn-text {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--btn-text);

  transition: transform var(--duration) var(--timing-function);
}

.hero-btn-corner {
  position: absolute;
  width: 32px;
  fill: none;
  stroke: var(--corner-color);
  pointer-events: none;
  transition: transform var(--duration) var(--timing-function),
    filter var(--duration) var(--timing-function);
}

.hero-btn-corner:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translate(calc(-1 * var(--corner-dist)), calc(-1 * var(--corner-dist))) rotate(90deg);
}

.hero-btn-corner:nth-of-type(2) {
  top: 0;
  right: 0;
  transform: translate(var(--corner-dist), calc(-1 * var(--corner-dist))) rotate(180deg);
}

.hero-btn-corner:nth-of-type(3) {
  bottom: 0;
  right: 0;
  transform: translate(var(--corner-dist), var(--corner-dist)) rotate(-90deg);
}

.hero-btn-corner:nth-of-type(4) {
  bottom: 0;
  left: 0;
  transform: translate(calc(-1 * var(--corner-dist)), var(--corner-dist)) rotate(0deg);
}

.hero-btn-container:has(.hero-btn:hover),
.hero-btn-container:has(.hero-btn:focus-visible) {
  --corner-color: rgba(36, 26, 18, 0.3);
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn,
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn {
  transform: scale(1.05);
  filter: drop-shadow(0 16px 16px rgba(36, 26, 18, 0.14));
  background: linear-gradient(#fff2, #0001), var(--btn-bg-hover);
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn-transition-top,
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn-transition-top {
  transform: translateY(-24px) rotateZ(4deg);
  filter: blur(0px);
  animation: heroBtnHue 3s infinite linear;
  opacity: 1;
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn-transition-bottom,
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn-transition-bottom {
  transform: translateY(24px) rotateZ(4deg);
  filter: blur(0px);
  animation: heroBtnHue 3s infinite linear;
  opacity: 1;
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn-text,
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn-text {
  transform: scale(1.05);
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn-corner:nth-of-type(1),
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn-corner:nth-of-type(1) {
  transform: translate(
      calc(-1 * var(--corner-multiplier) * var(--corner-dist)),
      calc(-1 * var(--corner-multiplier) * var(--corner-dist))
    ) rotate(90deg);
  filter: drop-shadow(-10px 10px 1px var(--corner-color)) drop-shadow(-20px 20px 2px var(--corner-color));
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn-corner:nth-of-type(2),
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn-corner:nth-of-type(2) {
  transform: translate(
      calc(var(--corner-multiplier) * var(--corner-dist)),
      calc(-1 * var(--corner-multiplier) * var(--corner-dist))
    ) rotate(180deg);
  filter: drop-shadow(-10px 10px 1px var(--corner-color)) drop-shadow(-20px 20px 2px var(--corner-color));
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn-corner:nth-of-type(3),
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn-corner:nth-of-type(3) {
  transform: translate(
      calc(var(--corner-multiplier) * var(--corner-dist)),
      calc(var(--corner-multiplier) * var(--corner-dist))
    ) rotate(-90deg);
  filter: drop-shadow(-10px 10px 1px var(--corner-color)) drop-shadow(-20px 20px 2px var(--corner-color));
}

.hero-btn-container:has(.hero-btn:hover) .hero-btn-corner:nth-of-type(4),
.hero-btn-container:has(.hero-btn:focus-visible) .hero-btn-corner:nth-of-type(4) {
  transform: translate(
      calc(-1 * var(--corner-multiplier) * var(--corner-dist)),
      calc(var(--corner-multiplier) * var(--corner-dist))
    ) rotate(0deg);
  filter: drop-shadow(-10px 10px 1px var(--corner-color)) drop-shadow(-20px 20px 2px var(--corner-color));
}

.hero-btn-container:has(.hero-btn:active) .hero-btn {
  transform: scale(0.95);
  filter: drop-shadow(0 10px 4px rgba(36, 26, 18, 0.12));
}

.hero-btn-container:has(.hero-btn:active) .hero-btn-transition-top,
.hero-btn-container:has(.hero-btn:active) .hero-btn-transition-bottom {
  transform: translateY(0px) scale(0.5);
}

@keyframes heroBtnHue {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(-40deg);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-ingredient img {
    animation: pageIngredientFloat var(--ingredient-float, 7s) ease-in-out
      infinite;
  }

  .page-ingredient:nth-child(even) img {
    animation-direction: reverse;
  }

  .hero-garnish {
    animation: heroGarnishIn 0.9s cubic-bezier(0.16, 1, 0.3, 1)
      var(--garnish-delay, 0.45s) both;
  }

  .hero-garnish img {
    animation: heroGarnishFloat var(--garnish-float, 6.5s) ease-in-out
      calc(var(--garnish-delay, 0.45s) + 0.9s) infinite;
  }

  .hero-fork {
    animation: heroSlideInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }

  .hero-spoon {
    animation: heroSlideInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }

  .hero-ring {
    animation: heroDropIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
  }

  .hero-plate-spin {
    animation: heroSpin 26s linear 1.5s infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-garnish,
  .hero-fork,
  .hero-spoon,
  .hero-ring {
    opacity: 1;
  }
}

@keyframes pageIngredientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(4deg);
  }
}

@keyframes heroGarnishIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.82)
      rotate(calc(var(--garnish-rotate, 0deg) - 10deg));
  }
  65% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.04)
      rotate(calc(var(--garnish-rotate, 0deg) + 2deg));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1)
      rotate(var(--garnish-rotate, 0deg));
  }
}

@keyframes heroGarnishFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(3deg);
  }
}

@keyframes heroSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-140px) rotate(-14deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes heroSlideInRight {
  from {
    opacity: 0;
    transform: translateX(140px) rotate(14deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes heroDropIn {
  from {
    opacity: 0;
    transform: translateY(-140px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.announcement {
  background: var(--gold);
}

.announcement-inner {
  padding-block: 23px;
  text-align: center;
}

.announcement p {
  margin: 0;
  color: #31250e;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1rem;
}

.fav-section {
  overflow: hidden;
}

.fav-heading {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.fav-heading h2 {
  margin-bottom: 0;
  color: var(--hero-ink);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.fav-heading .eyebrow {
  color: var(--gold);
}

.fav-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fav-track::-webkit-scrollbar {
  display: none;
}

.fav-card {
  position: relative;
  flex: 0 0 calc((100% - 28px) / 2);
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  background: var(--sand);
}

.fav-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fav-card.img-missing {
  background: linear-gradient(135deg, var(--sand), #e7d5b8);
}

.fav-card.img-missing::before {
  content: "🍽️";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.5;
}

.fav-card-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fav-card-red .fav-card-scrim {
  background: linear-gradient(
    to top,
    rgba(124, 33, 19, 0.96) 0%,
    rgba(124, 33, 19, 0.55) 32%,
    transparent 62%
  );
}

.fav-card-dark .fav-card-scrim {
  background: linear-gradient(
    to top,
    rgba(10, 8, 6, 0.94) 0%,
    rgba(10, 8, 6, 0.5) 32%,
    transparent 62%
  );
}

.fav-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.fav-badge svg {
  width: 100%;
  height: 100%;
}

.fav-badge-price {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  white-space: nowrap;
}

.fav-card-content {
  position: absolute;
  left: 24px;
  right: 90px;
  bottom: 24px;
  color: var(--white);
}

.fav-card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fav-card-content h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.fav-card-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.fav-card-icon svg {
  width: 20px;
  height: 20px;
}

.fav-card-icon:hover {
  background: var(--white);
  color: var(--hero-red);
  transform: translateY(-2px);
}

.fav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.fav-nav {
  display: grid;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--hero-ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.fav-nav svg {
  width: 18px;
  height: 18px;
}

.fav-nav:hover {
  border-color: var(--hero-red);
  background: var(--hero-red);
  color: var(--white);
}

.fav-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.fav-dot {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--hero-red-soft);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.fav-dot.active {
  transform: scale(1.2);
  border-color: var(--hero-red);
  background: var(--hero-red);
}

.fav-price-footnote {
  margin: 18px auto 0;
  color: var(--hero-muted);
  font-size: 0.82rem;
  text-align: center;
}

.pricing-section {
  background: var(--hero-bg);
}

.price-heading {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.price-heading h2 {
  margin-bottom: 12px;
  color: var(--hero-ink);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-heading p {
  color: var(--hero-muted);
  font-size: 1rem;
}

.eyebrow-dashed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.eyebrow-dashed::before,
.eyebrow-dashed::after {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

.price-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: var(--white);
}

.price-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: none;
  color: var(--hero-ink);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease;
  white-space: nowrap;
}

.price-tab::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hero-red);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.price-tab.active::before {
  opacity: 1;
  transform: scale(1);
}

.price-panel {
  display: none;
}

.price-panel.active {
  display: block;
}

.price-list {
  max-width: 900px;
  margin: 0 auto;
}

.price-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line);
}

.price-list .price-row:last-child {
  border-bottom: 0;
}

.price-row-media {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  background: #14100c;
}

.price-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-row-media.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--hero-red-soft);
  background: var(--sand);
}

.price-row-media.img-missing::after {
  content: "🍲";
  font-size: 1.2rem;
}

.price-row-info h3 {
  margin: 0 0 3px;
  color: var(--hero-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.price-row-tag {
  display: block;
  color: var(--hero-muted);
  font-size: 0.84rem;
}

.price-row-price {
  color: var(--hero-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--hero-red);
  border-radius: 999px;
  padding: 0 24px;
  background: transparent;
  color: var(--hero-red);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.price-chip:hover {
  background: var(--hero-red);
  color: var(--white);
  transform: translateY(-2px);
}

.price-row-multi {
  grid-template-columns: 60px minmax(0, 1fr) auto;
}

.price-row-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.price-chip-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.78rem;
}

.price-chip-wide {
  padding: 0 20px;
}

.price-footnote {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--hero-muted);
  font-size: 0.85rem;
}

.price-help-card {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 40px auto 0;
  border: 1.5px solid var(--hero-red-soft);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  background: var(--white);
}

.price-help-icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--hero-red-soft);
  border-radius: 50%;
  color: var(--hero-red);
}

.price-help-icon svg {
  width: 22px;
  height: 22px;
}

.price-help-copy {
  flex: 1;
  min-width: 180px;
}

.price-help-copy strong {
  display: block;
  margin-bottom: 2px;
  color: var(--hero-ink);
}

.price-help-copy span {
  color: var(--hero-muted);
  font-size: 0.92rem;
}

.price-help-cta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #25b556;
  border-radius: 999px;
  padding: 12px 22px;
  color: #1f9e4b;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.price-help-cta svg {
  width: 18px;
  height: 18px;
}

.price-help-cta:hover {
  background: #25b556;
  color: var(--white);
}

.payment-section {
  padding: 70px 0;
  background: var(--sand);
}

.payment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 56px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.payment-card > div {
  max-width: 640px;
}

.payment-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.payment-cta {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.payment-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.promise-section {
  background: var(--hero-bg);
}

.promise-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promise-image {
  position: relative;
}

.promise-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.promise-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 48px);
  border-radius: 999px;
  padding: 12px 22px 12px 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.promise-badge-icon {
  display: grid;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--hero-bg);
  color: var(--hero-red);
}

.promise-badge-icon svg {
  width: 20px;
  height: 20px;
}

.promise-badge-copy strong,
.promise-badge-copy span {
  display: block;
}

.promise-badge-copy strong {
  color: var(--hero-ink);
  font-size: 1rem;
  font-weight: 800;
}

.promise-badge-copy span {
  margin-top: 2px;
  color: var(--hero-muted);
  font-size: 0.82rem;
}

.promise-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--hero-red);
}

.promise-content h2 {
  margin: 10px 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.promise-subhead {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
}

.promise-body {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.promise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.promise-btn-solid {
  background: var(--hero-bg);
  color: var(--hero-ink);
}

.promise-btn-solid:hover {
  background: var(--white);
}

.promise-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.promise-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 54px;
}

.promise-item {
  display: flex;
  flex-direction: column;
}

.promise-num {
  color: var(--gold);
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
}

.promise-item h3 {
  margin: 10px 0 6px;
  color: var(--hero-ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
}

.promise-item p {
  margin: 0;
  color: var(--hero-muted);
  font-size: 0.94rem;
}

.catering-section {
  padding: 80px 0;
  background: var(--cream);
}

.catering-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: var(--radius-lg);
  padding: 62px;
  background:
    linear-gradient(100deg, rgba(12, 41, 34, 0.98), rgba(24, 61, 50, 0.84)),
    url("images/catering-buffet.jpg")
      center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.catering-card > div {
  max-width: 720px;
}

.catering-card h2 {
  color: var(--white);
}

.catering-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.order-section {
  background: var(--sand);
}

.order-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.order-intro {
  position: sticky;
  top: 120px;
}

.order-intro > p {
  color: var(--muted);
  font-size: 1rem;
}

.contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-panel > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.contact-panel small,
.contact-panel strong {
  display: block;
}

.contact-panel small {
  margin-bottom: 5px;
  color: var(--muted);
}

.contact-panel strong {
  color: var(--forest-deep);
}

.order-form {
  border: 1px solid rgba(24, 61, 50, 0.1);
  border-radius: var(--radius-lg);
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 6px 0 0;
  font-size: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 18px;
  color: var(--forest-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d7ddd9;
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 400;
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(230, 106, 43, 0.1);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cart-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 60;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease;
}

.cart-float:hover {
  transform: translateY(-2px);
}

.cart-float-icon {
  font-size: 1.4rem;
}

.cart-float-count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0 4px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 32, 26, 0.5);
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.cart-drawer.open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
}

.cart-drawer-head h3 {
  margin: 0;
  font-size: 1.4rem;
}

.cart-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest-deep);
  font-size: 0.95rem;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

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

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

.cart-line-info {
  display: grid;
}

.cart-line-info strong {
  color: var(--forest-deep);
  font-size: 0.95rem;
}

.cart-line-info span {
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.qty-btn {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest-deep);
  font-weight: 800;
  cursor: pointer;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
}

.cart-remove {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-remove:hover {
  color: var(--orange-dark);
}

.cart-line-price {
  grid-column: 2;
  justify-self: end;
  color: var(--forest-deep);
  font-weight: 800;
  font-size: 0.9rem;
}

.cart-drawer-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 20px 24px 24px;
}

.cart-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
}

.cart-drawer-total strong {
  color: var(--forest-deep);
  font-size: 1.3rem;
}

.cart-clear-link {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.cart-clear-link:hover {
  color: var(--orange-dark);
}

.form-cart-summary {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  background: var(--cream);
}

.form-cart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-cart-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.order-cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 0.9rem;
}

.form-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-weight: 800;
  color: var(--forest-deep);
}

.form-cart-total strong {
  font-size: 1.15rem;
}

.payment-total-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--forest-deep);
  font-weight: 700;
}

.payment-total-box strong {
  font-size: 1.4rem;
}

.site-footer {
  padding: 75px 0 25px;
  border-top: 1px solid rgba(24, 61, 50, 0.08);
  background: rgba(255, 249, 239, 0.94);
  color: var(--hero-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.8fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand .brand-copy strong {
  color: var(--hero-ink);
}

.footer-brand .brand-copy small {
  color: var(--hero-muted);
}

.footer-grid p {
  max-width: 380px;
  margin-top: 18px;
  color: var(--hero-muted);
}

.footer-links {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--hero-red);
}

.footer-links a,
.footer-links span {
  color: var(--hero-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--hero-red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--hero-muted);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .page-ingredients,
  .hero-garnish {
    display: none;
  }

  .hero-title,
  .hero-subtitle,
  .hero-trust {
    white-space: normal;
  }

  .hero-actions {
    margin-top: 32px;
    gap: 18px;
    transform: none;
  }

  .hero-btn-container {
    --corner-dist: 18px;
  }

  .hero-btn {
    min-width: 160px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease,
      visibility 0s linear 220ms;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 220ms ease,
      visibility 0s linear 0s;
  }

  .main-nav > a:not(.nav-order) {
    padding: 15px 14px;
    border-radius: 12px;
    transition: background 150ms ease, color 150ms ease;
  }

  .main-nav > a:not(.nav-order):not(:last-of-type) {
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.nav-order):hover {
    background: var(--hero-bg);
    color: var(--hero-red);
  }

  .main-nav .nav-order {
    text-align: center;
    margin-top: 10px;
  }

  .payment-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }

  .hero-visual {
    gap: 16px;
  }

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

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

  .promise-image img {
    min-height: 420px;
  }

  .promise-content {
    padding: 44px 36px;
  }

  .promise-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .order-intro {
    position: static;
  }

  .catering-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 40px 0 80px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
  }

  .hero-utensil {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 54px;
  }

  .hero-btn-primary {
    display: none;
  }

  .hero-btn-container {
    width: 100%;
    max-width: 300px;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fav-card {
    flex-basis: 100%;
    aspect-ratio: 1 / 1.1;
  }

  .fav-track {
    gap: 16px;
  }

  .fav-badge {
    width: 80px;
    height: 80px;
    top: 14px;
    right: 14px;
  }

  .fav-badge-price {
    font-size: 1.05rem;
  }

  .fav-card-content {
    right: 76px;
  }

  .fav-card-icon {
    width: 42px;
    height: 42px;
  }

  .promise-image img {
    min-height: 340px;
  }

  .promise-badge {
    left: 14px;
    bottom: 14px;
    padding: 10px 16px 10px 10px;
  }

  .promise-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .catering-card {
    padding: 34px 26px;
  }

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

  .price-tabs {
    display: flex;
    width: 100%;
  }

  .price-tab {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .price-row {
    grid-template-columns: 46px 1fr auto;
    grid-template-areas:
      "media info  info"
      "price price chip";
    row-gap: 8px;
    padding: 14px 4px;
  }

  .price-row-media {
    grid-area: media;
    width: 46px;
    height: 46px;
  }

  .price-row-info {
    grid-area: info;
  }

  .price-row-price {
    grid-area: price;
    align-self: center;
  }

  .price-row .price-chip {
    grid-area: chip;
    justify-self: end;
  }

  .price-row-multi {
    grid-template-areas:
      "media info  info"
      "sizes sizes sizes";
  }

  .price-row-multi .price-row-sizes {
    grid-area: sizes;
    justify-content: flex-start;
  }

  .price-help-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .price-help-cta {
    width: 100%;
    justify-content: center;
  }

  .payment-card {
    padding: 30px 24px;
  }

  .order-form {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-icon {
    width: 43px;
    height: 43px;
  }

  .hero-ring {
    width: clamp(220px, 58vw, 320px);
    height: clamp(220px, 58vw, 320px);
  }

  .promise-image img {
    min-height: 300px;
  }

  .promise-badge-copy span {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .cart-float {
    right: 16px;
    bottom: 84px;
    width: 52px;
    height: 52px;
  }

  .cart-drawer-panel {
    width: 100%;
  }
}

.checkout-steps {
  margin: 1.4rem 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.75rem;
}

.checkout-steps li {
  padding-left: 0.25rem;
  line-height: 1.55;
}

.payment-handoff {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(24, 61, 50, 0.18);
  border-radius: 14px;
  background: rgba(220, 166, 58, 0.09);
}

.payment-handoff p {
  margin: 0 0 0.9rem;
  line-height: 1.55;
}
