:root {
  --ink: #241610;
  --night: #160f0b;
  --paper: #fff7e6;
  --cream: #ffeec2;
  --red: #c8252b;
  --gold: #ffc526;
  --orange: #f88718;
  --pink: #e44688;
  --blue: #19a9b1;
  --sky: #bcebf3;
  --green: #446b25;
  --matcha: #a8bd58;
  --purple: #a4346e;
  --teal: #56a4ac;
  --shadow: 0 10px 0 rgba(36, 22, 16, .18);
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

/* Full-page snap only on desktop with a mouse/trackpad. On touch devices and
   small screens it fights native scrolling and makes tall sections (the
   220vh ingredients block, the footer) impossible to scroll through, so there
   we let the page scroll freely. `proximity` (not `mandatory`) and no
   `scroll-snap-stop` keep it gentle even on desktop. */
@media (min-width: 821px) and (pointer: fine) {
  html { scroll-snap-type: y proximity; }
  #main > section { scroll-snap-align: start; }
  .ft { scroll-snap-align: start; }
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(36, 22, 16, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36, 22, 16, .03) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 34px;
  overflow: hidden;
  background: var(--gold);
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  width: max-content;
  gap: 28px;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker span::after {
  content: "*";
  margin-left: 28px;
  color: var(--red);
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  transition: background .2s ease, padding .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 247, 230, .9);
  box-shadow: 0 4px 0 rgba(36, 22, 16, .08);
  backdrop-filter: blur(12px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 76px;
  flex: 0 0 auto;
  color: var(--gold);
}

.brand-orbit {
  position: absolute;
  inset: 0;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: 0 5px 0 rgba(36, 22, 16, .22);
  transform: rotate(-4deg);
}

.brand-text {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .72;
  letter-spacing: 0;
  text-transform: lowercase;
  font-size: 1.7rem;
  transform: rotate(1deg);
}

.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  background: white;
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 7px;
  box-shadow: var(--shadow);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .86rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--red);
  color: white;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 0 rgba(36, 22, 16, .18);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 34px 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, .30) 0 8%, transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(36, 22, 16, .10) 0 20%, transparent 50%),
    var(--teal);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 38px;
  background: url("data:image/svg+xml,%3Csvg width='1440' height='64' viewBox='0 0 1440 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 32C120 5 240 5 360 32C480 59 600 59 720 32C840 5 960 5 1080 32C1200 59 1320 59 1440 32V64H0V32Z' fill='%23fff7e6'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
}

.hero-title {
  margin: 0;
  line-height: .85;
  text-transform: lowercase;
}

.wave-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 6.9rem;
  letter-spacing: 0;
  color: var(--gold);
  text-shadow: 4px 0 var(--ink), -4px 0 var(--ink), 0 4px var(--ink), 0 -4px var(--ink), 8px 10px rgba(36, 22, 16, .16);
}

.wave-word span {
  display: inline-block;
  animation: wobble 2.8s ease-in-out infinite;
}

.wave-word span:nth-child(2) { animation-delay: .08s; }
.wave-word span:nth-child(3) { animation-delay: .16s; }
.wave-word span:nth-child(4) { animation-delay: .24s; }
.wave-word span:nth-child(5) { animation-delay: .32s; }

.wave-word-pink {
  color: var(--pink);
  margin-left: 42px;
}

.hero-title em {
  display: inline-block;
  margin-top: 20px;
  background: white;
  border: 3px solid var(--ink);
  border-radius: 8px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  padding: 8px 16px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.hero-lede {
  max-width: 620px;
  margin: 32px 0 0;
  font-size: 1.24rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 1000;
  text-transform: uppercase;
  transition: transform .16s ease, box-shadow .16s ease;
}

.button::after {
  content: "->";
  margin-left: 10px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 0 rgba(36, 22, 16, .18);
}

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

.button-secondary {
  background: var(--gold);
}

.button-light {
  background: white;
  color: var(--ink);
}

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

.pack-shot {
  position: absolute;
  inset: 20px 0 auto auto;
  width: 92%;
  border: 4px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--red);
  transform: rotate(2deg);
  background: white;
}

.mascot-badge {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 38%;
  border: 4px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: -10px 12px 0 var(--blue);
  transform: rotate(-5deg);
  background: var(--sky);
}

.claim {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 13px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: white;
  box-shadow: 0 7px 0 rgba(36, 22, 16, .18);
  font-weight: 1000;
  text-transform: uppercase;
}

.claim-one {
  top: 6px;
  right: 10%;
  background: var(--gold);
}

.claim-two {
  left: 4%;
  top: 44%;
  background: var(--matcha);
}

.claim-three {
  right: 1%;
  bottom: 8%;
  background: var(--pink);
  color: white;
}

.fruit-swarm {
  position: absolute;
  z-index: 1;
  width: 310px;
  height: 310px;
  pointer-events: none;
  opacity: .92;
  animation: float 8s ease-in-out infinite;
}

.fruit-swarm-a {
  left: -72px;
  top: 148px;
}

.fruit-swarm-b {
  right: -80px;
  bottom: 44px;
  animation-delay: -3s;
}

.leaf { fill: #2e7a43; stroke: var(--ink); stroke-width: 5; }
.leaf-two { fill: #76ad3f; }
.leaf-three { fill: #a6c957; }
.berry { fill: #3345a0; stroke: var(--ink); stroke-width: 5; }
.berry-detail,
.stem,
.apricot-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
}
.apricot { fill: var(--orange); stroke: var(--ink); stroke-width: 5; }
.fig { fill: #813188; stroke: var(--ink); stroke-width: 5; }
.seed { fill: #ff9b8a; }

.band {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.band-red {
  background: var(--red);
  color: white;
}

.promise-row {
  display: flex;
  width: max-content;
  gap: 40px;
  text-transform: uppercase;
  font-weight: 1000;
  font-size: 2.8rem;
  white-space: nowrap;
  animation: ticker 24s linear infinite reverse;
}

.promise-row span::after {
  content: ".";
  color: var(--gold);
  margin-left: 40px;
}

.scroll-mascot {
  position: relative;
  min-height: 240vh;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 197, 38, .22), transparent 24%),
    linear-gradient(135deg, #160f0b 0%, #2b1511 46%, #7e151c 100%);
  color: white;
  border-bottom: 4px solid var(--ink);
}

.scroll-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  gap: 34px;
  align-items: center;
  padding: 120px 34px 74px;
  overflow: hidden;
}

.scroll-stage::before {
  content: "munch munch";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 100%;
  text-align: center;
  font-size: clamp(4rem, 16vw, 15rem);
  line-height: .74;
  font-weight: 1000;
  text-transform: lowercase;
  color: rgba(255, 255, 255, .05);
  letter-spacing: 0;
  pointer-events: none;
}

.scroll-copy,
.scroll-video-shell {
  position: relative;
  z-index: 2;
}

.scroll-copy .section-kicker {
  color: var(--gold);
}

.scroll-copy h2 {
  font-size: clamp(3.1rem, 7vw, 7.2rem);
  max-width: 780px;
}

.scroll-copy p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.16rem;
  font-weight: 750;
}

.scroll-video-shell {
  min-height: 680px;
  display: grid;
  place-items: center;
}

/* Transparent mascot, lives only in the hero: right side on desktop, faded backdrop on mobile. */
.mascot-video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 12vw, 220px);
  width: min(44vw, 560px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  pointer-events: none;
}

.mascot-video__inner {
  width: 100%;
  will-change: transform, opacity;
}

.mascot-video video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .3));
}

.alpha-source-video {
  display: none;
}

.motion-rings {
  position: absolute;
  width: min(62vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 20deg, var(--gold), var(--pink), var(--blue), var(--matcha), var(--gold));
  opacity: .88;
  filter: saturate(1.1);
  animation: slowSpin 18s linear infinite;
}

.motion-rings::before,
.motion-rings::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  background:
    radial-gradient(circle at center, #fffaf0 0 52%, rgba(255, 250, 240, .92) 60%, rgba(255, 250, 240, .18) 71%, transparent 72%);
}

.motion-rings::after {
  inset: 70px;
  border: 2px solid rgba(255, 255, 255, .28);
  background: transparent;
}

.motion-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  text-transform: uppercase;
}

.motion-card strong {
  color: var(--gold);
  font-size: 1.18rem;
}

.motion-card span {
  color: rgba(255, 255, 255, .78);
  font-size: .72rem;
  font-weight: 900;
}

.motion-card-a {
  left: 3%;
  top: 21%;
}

.motion-card-b {
  right: 0;
  top: 38%;
}

.motion-card-c {
  left: 14%;
  bottom: 12%;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: center;
  padding: 92px 34px;
  max-width: 1240px;
  margin: 0 auto;
}

.story-media {
  border: 4px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: -12px 12px 0 var(--gold);
  background: var(--sky);
  transform: rotate(-1deg);
}

.story-media video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.story-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

h2 {
  margin: 0;
  max-width: 800px;
  font-size: 4.2rem;
  line-height: .95;
  letter-spacing: 0;
}

.story-copy > p:not(.section-kicker),
.section-heading > p:not(.section-kicker),
.factory-copy > p,
.contact-copy > p {
  max-width: 680px;
  font-size: 1.12rem;
  font-weight: 750;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.value-grid article,
.factory-track article {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: 0 7px 0 rgba(36, 22, 16, .16);
}

.value-grid strong,
.factory-track span {
  display: inline-flex;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 3px 8px;
  font-weight: 1000;
}

h3 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
  line-height: 1.05;
}

p {
  margin: 0;
}

.flavors {
  padding: 92px 34px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, .45)),
    repeating-linear-gradient(90deg, #ffeec2 0 34px, #fff7e6 34px 68px);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
}

.flavor-lab {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
}

.flavor-orbit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-content: center;
}

.flavor-token,
.flavor-row {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-weight: 1000;
  box-shadow: 0 6px 0 rgba(36, 22, 16, .16);
}

.flavor-token {
  aspect-ratio: 1;
  font-size: 1.45rem;
}

.flavor-token.is-active,
.flavor-row.is-active {
  background: var(--red);
  color: white;
}

.flavor-card {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border: 4px solid var(--ink);
  border-radius: 8px;
  padding: 28px;
  background: var(--blue);
  box-shadow: 12px 12px 0 var(--ink);
  transition: background .25s ease;
}

.bite-character {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 320px;
  margin: 0 auto;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 255, 255, .9) 0 4%, transparent 5%),
    radial-gradient(circle at 30% 70%, rgba(36, 22, 16, .18) 0 5%, transparent 6%),
    #efe6d0;
  box-shadow: inset -16px -20px 0 rgba(36, 22, 16, .12), 0 12px 0 rgba(36, 22, 16, .18);
  animation: bounceBite 3.2s ease-in-out infinite;
}

.bite-character::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: -18%;
  height: 28%;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 12px 12px;
  background: #d8a66a;
  box-shadow: inset 0 -10px 0 rgba(36, 22, 16, .12);
}

.bite-character::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 14%;
  background:
    radial-gradient(circle at 18% 50%, var(--accent, #3345a0) 0 12%, transparent 13%),
    radial-gradient(circle at 48% 50%, var(--accent, #3345a0) 0 12%, transparent 13%),
    radial-gradient(circle at 78% 50%, var(--accent, #3345a0) 0 12%, transparent 13%);
}

.bite-eye {
  position: absolute;
  top: 38%;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--ink);
}

.bite-eye::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 44%;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.bite-eye.left { left: 27%; }
.bite-eye.right { right: 27%; }

.bite-smile {
  position: absolute;
  left: 37%;
  top: 61%;
  width: 26%;
  height: 12%;
  border-bottom: 5px solid var(--ink);
  border-radius: 0 0 50px 50px;
}

.flavor-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: white;
  color: var(--red);
  font-weight: 1000;
  text-transform: uppercase;
}

.flavor-card h3 {
  font-size: 3.2rem;
  margin: 0 0 16px;
}

.flavor-card p:last-child {
  font-size: 1.12rem;
  font-weight: 800;
}

.flavor-list {
  display: grid;
  gap: 10px;
  align-content: center;
}

.flavor-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 14px;
}

.flavor-row small {
  font-weight: 900;
  opacity: .78;
}

.pack-runway {
  position: relative;
  padding: 92px 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff7e6 0%, #ffeec2 100%);
}

.pack-runway::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 4px;
  background: var(--ink);
  opacity: .12;
}

.runway-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(138px, 1fr));
  gap: 16px;
  align-items: end;
}

.runway-pack {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 16px;
  color: white;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 28%, var(--dot) 0 7%, transparent 8%),
    radial-gradient(circle at 82% 47%, var(--dot) 0 6%, transparent 7%),
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, .22) 0 18%, transparent 19%),
    linear-gradient(150deg, color-mix(in srgb, var(--pack) 82%, white), var(--pack));
  box-shadow: 0 14px 0 rgba(36, 22, 16, .16);
  transform-origin: center bottom;
  animation: pouchFloat 4.8s ease-in-out infinite;
}

.runway-pack:nth-child(2n) {
  transform: translateY(22px);
  animation-delay: -.9s;
}

.runway-pack:nth-child(3n) {
  transform: translateY(-16px);
  animation-delay: -1.8s;
}

.pack-top {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  height: 28px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .36) 0 10px, rgba(255, 255, 255, .12) 10px 20px);
  border: 2px solid rgba(36, 22, 16, .38);
}

.runway-pack::before {
  content: "munch\A munch";
  position: absolute;
  left: 16px;
  top: 58px;
  white-space: pre;
  color: var(--red);
  font-size: 1.42rem;
  font-weight: 1000;
  line-height: .72;
  text-shadow: 1px 1px rgba(255, 255, 255, .5);
}

.runway-pack::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 70px;
  aspect-ratio: 1;
  border: 3px solid rgba(36, 22, 16, .72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .8), transparent 18%),
    var(--dot);
  transform: translateX(-50%);
  box-shadow: 0 9px 0 rgba(36, 22, 16, .2);
}

.runway-pack strong {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.runway-pack em {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-style: normal;
  font-weight: 900;
  color: rgba(255, 255, 255, .8);
}

.factory {
  padding: 92px 34px;
  max-width: 1240px;
  margin: 0 auto;
}

.factory-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.factory-track article:nth-child(2) span { background: var(--pink); color: white; }
.factory-track article:nth-child(3) span { background: var(--matcha); }
.factory-track article:nth-child(4) span { background: var(--blue); color: white; }

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 82px 34px;
  background: var(--red);
  color: white;
}

.contact-copy {
  max-width: 900px;
}

.contact-band .section-kicker {
  color: var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 34px;
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.reveal,
.js .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.js .reveal.is-visible,
.js .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes wobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  35% { transform: translateY(-8px) rotate(-2deg); }
  70% { transform: translateY(5px) rotate(2deg); }
}

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

@keyframes bounceBite {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

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

@keyframes pouchFloat {
  0%, 100% { translate: 0 0; rotate: -1deg; }
  50% { translate: 0 -16px; rotate: 1.5deg; }
}

@media (max-width: 1080px) {
  /* Mascot sits behind the hero copy as a faded backdrop. */
  .mascot-video {
    inset: 0;
    width: 100%;
    right: auto;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: .14;
  }

  .mascot-video__inner {
    width: min(115vw, 700px);
  }

  .mascot-video video {
    filter: none;
  }

  .wave-word {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 138px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .scroll-stage,
  .story-split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .scroll-stage {
    padding-top: 112px;
  }

  .scroll-video-shell {
    min-height: 560px;
  }

  .runway-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .flavor-lab {
    grid-template-columns: 1fr;
  }

  .flavor-orbit {
    grid-template-columns: repeat(6, 1fr);
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: 86px;
    height: 58px;
  }

  .brand-text {
    font-size: 1.28rem;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 106px;
    display: grid;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero,
  .flavors,
  .factory,
  .pack-runway,
  .story-split,
  .scroll-stage,
  .contact-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .scroll-mascot {
    min-height: 220vh;
  }

  .scroll-stage {
    align-content: center;
    gap: 12px;
    padding-top: 104px;
    padding-bottom: 38px;
  }

  .scroll-copy h2 {
    font-size: 2.55rem;
  }

  .scroll-copy p:not(.section-kicker) {
    font-size: 1rem;
  }

  .scroll-video-shell {
    min-height: 420px;
  }

  .alpha-mascot {
    width: min(96vw, 430px);
    max-height: 48vh;
  }

  .motion-rings {
    width: 340px;
  }

  .motion-card {
    min-width: 112px;
    padding: 9px 10px;
  }

  .motion-card-a {
    left: 0;
    top: 10%;
  }

  .motion-card-b {
    right: 0;
    top: 28%;
  }

  .motion-card-c {
    left: 6%;
    bottom: 3%;
  }

  .hero {
    padding-top: 128px;
    min-height: auto;
  }

  .wave-word {
    font-size: 3.6rem;
    text-shadow: 3px 0 var(--ink), -3px 0 var(--ink), 0 3px var(--ink), 0 -3px var(--ink), 6px 8px rgba(36, 22, 16, .16);
  }

  .wave-word-pink {
    margin-left: 22px;
  }

  .hero-title em {
    font-size: 1.35rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-stage {
    min-height: 430px;
  }

  .pack-shot {
    width: 100%;
    box-shadow: 8px 8px 0 var(--red);
  }

  .mascot-badge {
    width: 44%;
  }

  .claim {
    font-size: .72rem;
    min-height: 34px;
  }

  .claim-one {
    top: 16px;
    left: 58%;
    right: auto;
  }

  .claim-two {
    left: 18px;
    top: 42%;
  }

  .claim-three {
    left: 52%;
    right: auto;
    bottom: 42px;
  }

  .fruit-swarm {
    width: 220px;
    height: 220px;
  }

  .fruit-swarm-a {
    left: -150px;
    top: 250px;
  }

  .fruit-swarm-b {
    right: -120px;
    bottom: 36px;
  }

  .promise-row {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .value-grid,
  .factory-track {
    grid-template-columns: 1fr;
  }

  .flavor-orbit {
    grid-template-columns: repeat(3, 1fr);
  }

  .flavor-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .flavor-card h3 {
    font-size: 2.1rem;
  }

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

  .runway-pack {
    min-height: 230px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Munch Munch — 2.5D parallax hero (hero-assets/section.png)
   ============================================================ */
:root {
  /* Yellow / mustard theme (matches the brand polo: mustard + red logo).
     Token names are kept from the original purple theme so the whole
     stylesheet recolors from these few values. Roles, not hues:
       --dark-purple  = darkest tone (deep backgrounds + dark text on accents)
       --deep/mid     = background gradient mids
       --electric     = warm tertiary accent (burnt orange)
       --neon-lime    = primary bright accent / headline highlight (golden yellow)
       --aqua-cyan    = secondary pop accent (logo red)
       --cream-white  = light body/heading text on the warm dark backgrounds */
  --dark-purple: #2A1A08;
  --deep-purple: #6A4410;
  --mid-purple: #9A6A16;
  --electric-purple: #EE7A1F;
  --neon-lime: #FFD23E;
  --aqua-cyan: #E23B2A;
  --cream-white: #FFF6E2;
}

/* Hero owns the top of the page; hide the legacy ticker + header. */
.top-strip,
.site-header { display: none !important; }

/* The hero's inline nav is replaced by the global sticky topbar. */
.mm-nav { display: none !important; }

/* ---- global sticky header ---- */
.mm-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  font-family: var(--font-display);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.mm-topbar.is-scrolled {
  background: rgba(42,26,8, .82);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
  padding-top: 10px; padding-bottom: 10px;
}
.mm-topbar__logo { display: grid; line-height: .8; font-weight: 700; letter-spacing: -.5px; }
.mm-topbar__top { font-size: clamp(20px, 1.9vw, 26px); color: var(--neon-lime); }
.mm-topbar__bot { font-size: clamp(20px, 1.9vw, 26px); color: var(--aqua-cyan); }
.mm-topbar__tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-white); margin-top: 3px; }
.mm-topbar__links {
  display: flex; gap: clamp(20px, 2.6vw, 40px); margin: 0 auto;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
}
.mm-topbar__links a { color: var(--cream-white); text-decoration: none; transition: color .2s; }
.mm-topbar__links a:hover { color: var(--neon-lime); }
.mm-topbar__cta {
  font-family: var(--font-body); font-weight: 800; font-size: 14px;
  color: var(--cream-white); text-decoration: none;
  padding: 9px 22px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, .35);
  transition: background .2s, border-color .2s, color .2s;
}
.mm-topbar__cta:hover { background: var(--neon-lime); border-color: var(--neon-lime); color: var(--dark-purple); }
.mm-topbar__toggle { display: none; }

@media (max-width: 820px) {
  .mm-topbar { gap: 14px; }
  .mm-topbar__toggle {
    display: grid; gap: 4px; order: 3; margin-left: auto;
    width: 42px; height: 42px; place-content: center;
    background: rgba(42,26,8, .5); border: 1.5px solid rgba(238,122,31, .5); border-radius: 12px; cursor: pointer;
  }
  .mm-topbar__toggle span { display: block; width: 20px; height: 2px; background: var(--cream-white); }
  .mm-topbar__links {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    flex-direction: column; gap: 4px; padding: 10px clamp(20px, 5vw, 64px) 18px;
    background: rgba(42,26,8, .96); backdrop-filter: blur(10px);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .mm-topbar.is-open .mm-topbar__links { transform: none; opacity: 1; pointer-events: auto; }
  .mm-topbar__cta { display: none; }
}

.mm-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 90% at 70% 30%, #9A6A16 0%, #6A4410 38%, #3A2208 66%, #2A1A08 100%);
  font-family: var(--font-display);
  color: var(--cream-white);
}

.mm-hero__bg {
  position: absolute;
  inset: -4%;
  z-index: 0;
  background: url("hero-assets/abg.png") center/cover no-repeat;
  opacity: .9;
  will-change: transform;
}
.mm-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(40% 38% at 22% 26%, rgba(238,122,31,.35), transparent 70%),
    radial-gradient(34% 32% at 82% 70%, rgba(226,59,42,.18), transparent 70%),
    radial-gradient(50% 40% at 60% 18%, rgba(255,210,62,.10), transparent 70%);
}

/* ---- top nav ---- */
.mm-nav {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
}
.mm-logo {
  display: grid;
  line-height: .82;
  font-weight: 700;
  letter-spacing: -.5px;
}
.mm-logo__top { font-size: 26px; color: var(--neon-lime); }
.mm-logo__bot { font-size: 26px; color: var(--aqua-cyan); }
.mm-logo__tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-white);
  margin-top: 3px;
}
.mm-nav__links {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
}
.mm-nav__links a { color: #F9EDCE; opacity: .9; transition: opacity .2s, color .2s; }
.mm-nav__links a:hover { opacity: 1; color: var(--neon-lime); }
.mm-nav__cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  color: #F9EDCE;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--electric-purple);
  background: rgba(42,26,8, .35);
  transition: background .2s, box-shadow .2s;
}
.mm-nav__cta:hover { background: rgba(238,122,31,.25); box-shadow: 0 0 22px rgba(238,122,31,.4); }
.mm-nav__toggle { display: none; }

/* ---- layout ---- */
.mm-hero__inner {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) 1.12fr;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: clamp(20px, 6vh, 76px) clamp(24px, 4vw, 56px) clamp(56px, 8vh, 104px);
}

/* ---- copy ---- */
.mm-hero__copy { max-width: 620px; }
.mm-hero__title {
  margin: 0 0 22px;
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 86px);
  line-height: .96;
  letter-spacing: -2px;
  white-space: nowrap;
}
.mm-hero__title .t-cream { color: var(--cream-white); }
.mm-hero__title .t-lime {
  color: var(--neon-lime);
  text-shadow: 0 0 34px rgba(255,210,62,.35);
}
.mm-hero__lede {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 21px);
  color: #F7EFE5;
  opacity: .92;
  max-width: 440px;
  margin: 0 0 30px;
}
.mm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.mm-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .2s ease;
}
.mm-btn:hover { transform: translateY(-2px); }
.mm-btn--lime {
  background: var(--neon-lime);
  color: #241609;
  box-shadow: 0 10px 30px rgba(255,210,62,.28);
}
.mm-btn--cream {
  background: var(--cream-white);
  color: #281809;
}
.mm-btn--cream svg { color: var(--electric-purple); }

.mm-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 470px;
}
.mm-feats li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  color: #F7EFE5;
  background: rgba(36,22,9, .55);
  border: 1px solid rgba(104,67,16, .55);
  border-radius: 999px;
  padding: 8px 14px 8px 11px;
}
.mm-feats svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--neon-lime);
}

/* ---- parallax art ---- */
.mm-hero__art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  perspective: 1000px;
}
.mm-layer {
  position: absolute;
  width: auto;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.4));
}
/* every fruit group is a full-size layer; pieces positioned individually.
   back groups sit at z2 (behind packs); front pieces at z6 (on the platform). */
.mm-nuts, .mm-chilis, .mm-mangos, .mm-straws, .mm-berries {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.mm-nuts img, .mm-chilis img, .mm-mangos img, .mm-straws img, .mm-berries img {
  position: absolute;
}

/* ---- peanuts: sparse, spread OUTWARD around the packs ---- */
.mm-nuts .nt { filter: drop-shadow(0 7px 9px rgba(0,0,0,.4)); }
.nt1  { width: 5.5%; top: -3%;  left: 38%; transform: rotate(20deg); }
.nt2  { width: 5%;   top: 4%;   left: 6%;  transform: rotate(-30deg); }
.nt3  { width: 4.5%; top: 30%;  left: -4%; transform: rotate(60deg); }
.nt4  { width: 4.5%; top: 16%;  right: -2%; transform: rotate(-15deg); }
.nt6  { width: 6%;   bottom: 8%; left: 6%;  transform: rotate(-10deg); }
.nt9  { width: 4.5%; bottom: 10%; right: -4%; transform: rotate(15deg); }
.nt12 { width: 4.5%; top: 54%;  left: -2%; transform: rotate(35deg); }
.nt13 { width: 5%;   bottom: 14%; right: 12%; transform: rotate(-20deg); }

/* ---- chilis: small, clustered around the mango pack (center) ---- */
.mm-chilis .ch { filter: drop-shadow(0 9px 12px rgba(0,0,0,.45)); }
.ch1 { width: 11%; top: 22%; left: 56%;  transform: rotate(18deg); }
.ch2 { width: 9%;  top: -4%; left: 50%;  transform: rotate(48deg); }
.ch3 { width: 10%; top: 6%;  left: 38%;  transform: rotate(-20deg); }

/* ---- mangos: halves + cubes, clustered around the mango pack (center/top) ---- */
.mm-mangos .mg { filter: drop-shadow(0 10px 14px rgba(0,0,0,.4)); }
.mg1 { width: 11%;  top: -6%; left: 44%; transform: rotate(-10deg); }
.mg2 { width: 9%;   top: 12%; left: 58%; transform: rotate(9deg); }
.mg3 { width: 8%;   top: -8%; left: 30%; transform: rotate(2deg); }
.mg4 { width: 4%;   top: 10%; left: 40%; transform: rotate(14deg); }
.mg6 { width: 3.5%; top: 26%; left: 50%; transform: rotate(-20deg); }
.mg8 { width: 7%;   top: -8%; left: 60%; transform: rotate(-8deg); }
.mg9 { width: 8%;   top: 20%; left: 34%; transform: rotate(12deg); }

/* ---- strawberries (back): clustered LEFT, by the strawberry-peanut pack ---- */
.mm-straws .st { filter: drop-shadow(0 10px 14px rgba(0,0,0,.45)); }
.st1 { width: 9%;  top: 8%;   left: 6%;   transform: rotate(12deg); }   /* upper-left */
.st2 { width: 8%;  bottom: 22%; left: 12%; transform: rotate(-18deg); } /* lower-left */
.st3 { width: 8%;  top: 42%;  left: -6%;  transform: rotate(8deg); }    /* far left mid */
.st5 { width: 8%;  top: -6%;  left: 20%;  transform: rotate(16deg); }   /* top-left high */
.st6 { width: 8%;  top: 64%;  left: -5%;  transform: rotate(-16deg); }  /* far left lower */
.st7 { width: 7%;  top: 30%;  left: 16%;  transform: rotate(20deg); }   /* left mid */

/* ---- blueberries (back): clustered RIGHT, by the blueberry-peanut pack ---- */
.mm-berries .bb { filter: drop-shadow(0 8px 12px rgba(0,0,0,.45)); }
.bb1  { width: 6%;   top: 2%;  right: 6%;   transform: rotate(-8deg); }
.bb2  { width: 7%;   top: 16%; right: -5%;  transform: rotate(7deg); }
.bb3  { width: 4.5%; top: -4%; right: 24%;  transform: rotate(0deg); }
.bb6  { width: 5%;   top: 32%; right: 4%;   transform: rotate(-6deg); }
.bb8  { width: 5.5%; bottom: 22%; right: 12%; transform: rotate(-4deg); }
.bb9  { width: 5%;   top: -6%; right: 40%;  transform: rotate(8deg); }
.bb11 { width: 5.5%; top: 64%; right: -2%;  transform: rotate(6deg); }
.bb13 { width: 5%;   top: 46%; right: 6%;   transform: rotate(10deg); }

/* ---- FRONT pieces resting in front of the packs (z6) ---- */
.mm-straw-front  { width: 11%;  bottom: 4%;  left: 16%;  z-index: 6; filter: drop-shadow(0 16px 16px rgba(0,0,0,.5)); }
.mm-berry-front  { width: 8%;   bottom: 5%;  right: 14%; left: auto; z-index: 6; filter: drop-shadow(0 14px 16px rgba(0,0,0,.5)); }
.mm-berry-front2 { width: 5%;   bottom: 3%;  right: 28%; left: auto; z-index: 6; filter: drop-shadow(0 10px 12px rgba(0,0,0,.5)); }
.mm-nut-front    { width: 5.5%; bottom: 2%;  left: 48%;  z-index: 6; filter: drop-shadow(0 10px 12px rgba(0,0,0,.5)); }

/* packs — three individual pouches, mango_chili largest & in front (z5).
   No stand: pouches are bottom-anchored and overlap, mango centered on top. */
.mm-packs {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.mm-pack {
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0 22px 26px rgba(11,2,40,.55));
}
.mm-pack--mango {
  width: 56%;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  z-index: 3;
}
.mm-pack--straw {
  width: 44%;
  left: -1%;
  bottom: 7%;
  z-index: 2;
  transform: rotate(-7deg);
}
.mm-pack--berry {
  width: 44%;
  right: -1%;
  bottom: 7%;
  z-index: 1;
  transform: rotate(7deg);
}

/* ---- scroll cue: fixed central green hump with curved label + arrow button ---- */
.mm-scroll {
  position: absolute;
  z-index: 25;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: clamp(280px, 26vw, 360px);
  aspect-ratio: 340 / 160;
}
.mm-scroll__arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.mm-scroll__hump { fill: var(--neon-lime); }
.mm-scroll__txt {
  fill: #2A1A08;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .2px;
  text-anchor: middle;
}
.mm-scroll__btn {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  width: clamp(44px, 3.4vw, 54px);
  height: clamp(44px, 3.4vw, 54px);
  border-radius: 999px;
  background: #261709;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(11,2,40,.45);
}
.mm-scroll__btn svg {
  width: 46%;
  height: 46%;
  color: var(--neon-lime);
  animation: mm-bob 1.8s ease-in-out infinite;
}
@keyframes mm-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---- bottom neon wave ---- */
.mm-wave {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(72px, 11vh, 130px);
  pointer-events: none;
}
.mm-wave svg { width: 100%; height: 100%; display: block; }
.mm-wave__path { transform-box: view-box; }
.mm-wave__path--back  { fill: #F2A81E; opacity: .75; animation: mm-wave-a 7s ease-in-out infinite; }
.mm-wave__path--front { fill: var(--neon-lime);      animation: mm-wave-b 5.5s ease-in-out infinite; }
@keyframes mm-wave-a {
  0%,100% { transform: translate(0, 4px); }
  50%     { transform: translate(-28px, -6px); }
}
@keyframes mm-wave-b {
  0%,100% { transform: translate(0, -3px); }
  50%     { transform: translate(26px, 6px); }
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .mm-nav__links { display: none; }
  .mm-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 60px;
    gap: 6px;
  }
  .mm-hero__copy { max-width: none; margin: 0 auto; }
  .mm-hero__title { white-space: normal; }
  .mm-hero__lede { margin-left: auto; margin-right: auto; }
  .mm-hero__actions, .mm-feats { justify-content: center; }
  .mm-hero__art { max-width: 560px; margin: 6px auto 0; aspect-ratio: 1 / 0.8; }
  .mm-scroll { display: none; }
}
@media (max-width: 520px) {
  .mm-logo__top, .mm-logo__bot { font-size: 22px; }
  .mm-feats li { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .mm-wave__path, .mm-scroll svg { animation: none; }
}

/* ============================================================
   Shared scattered-ingredient bits (Flavors + Ingredients)
   span = position + pop-in (entrance);  img = idle float.
   Two nested elements so the two transforms never clash.
   ============================================================ */
.mm-sc {
  position: absolute; left: calc(var(--x,50) * 1%); top: calc(var(--y,50) * 1%);
  z-index: 2; pointer-events: none; will-change: transform;
  opacity: 0; animation: mm-pop .55s cubic-bezier(.34,1.56,.64,1) forwards var(--delay,0s);
}
.mm-sc img {
  display: block; width: clamp(22px, calc(var(--w,5) * 1vw), 96px);
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.45));
  animation: mm-bobxy var(--fd,7s) ease-in-out infinite var(--delay,0s);
}
@keyframes mm-pop {
  from { opacity: 0; transform: translate(-50%,-50%) scale(.25); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
@keyframes mm-bobxy {
  0%,100% { transform: translateY(0) rotate(var(--r,0deg)); }
  50%     { transform: translateY(-13px) rotate(calc(var(--r,0deg) + 5deg)); }
}

/* ============================================================
   Flavors section — coverflow pack slider over a blurred,
   per-flavor background that crossfades on highlight change.
   ============================================================ */
.pk {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  background: #160a3a;
  color: var(--cream-white);
  font-family: var(--font-display);
  padding: clamp(20px, 3vw, 48px) clamp(16px, 4vw, 64px);
  gap: clamp(8px, 1.6vw, 22px);
}
/* blurred flavor background — two crossfading layers */
.pk__bg { position: absolute; inset: -8%; z-index: 0; }
.pk__bg-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(13px) saturate(1.15);
  transform: scale(1.1);
  opacity: 0;
  transition: opacity .9s ease;
}
.pk__bg-layer.is-on { opacity: 1; }
.pk__tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 92% at 50% 26%, rgba(42,26,8,.18), rgba(42,26,8,.66) 70%, rgba(15,4,42,.92));
}
.pk__scatter { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.pk__head { position: relative; z-index: 3; text-align: center; max-width: 900px; }
.pk__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 8px;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--neon-lime);
}
.pk__eyebrow > span { font-size: 16px; }
.pk__title {
  margin: 0; font-weight: 700; line-height: .94;
  font-size: clamp(34px, 5.2vw, 70px); letter-spacing: -1.4px;
  text-shadow: 0 6px 26px rgba(0,0,0,.4);
}
.pk__title .t-cream { color: var(--cream-white); }
.pk__title .t-lime { color: var(--neon-lime); text-shadow: 0 0 30px rgba(255,210,62,.35); }
.pk__lede {
  margin: 10px auto 0; max-width: 520px;
  font-family: var(--font-body); font-weight: 600; font-size: clamp(14px, 1.2vw, 17px);
  color: #F7EFE5; opacity: .92; text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

.pk__stage {
  position: relative; z-index: 3;
  width: 100%; max-width: 1240px;
  height: clamp(320px, 46vh, 540px);
  display: flex; align-items: center; justify-content: center;
}
.pk__track {
  position: relative; width: 100%; height: 100%;
  perspective: 1500px;
}
.pk__card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(176px, 21vw, 280px);
  margin: 0; padding: 0; border: 0; background: none;
  display: flex; flex-direction: column; align-items: center;
  transform: translate(-50%, -50%);
  transition: transform .55s cubic-bezier(.22,.61,.36,1), opacity .45s ease, filter .45s ease;
  cursor: pointer; will-change: transform, opacity;
}
.pk__pack {
  width: 100%; display: block;
  filter: drop-shadow(0 26px 32px rgba(0,0,0,.6));
  transition: filter .4s ease;
}
.pk__card.is-active .pk__pack { filter: drop-shadow(0 30px 40px rgba(0,0,0,.7)) drop-shadow(0 0 22px rgba(255,210,62,.35)); }

/* shared caption below the stage — only the highlighted flavor, so card heights
   never push text into the hint/dots (fixes the earlier overlap). */
.pk__caption {
  position: relative; z-index: 3; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-height: clamp(64px, 8vh, 86px);
}
.pk__cap-name {
  margin: 0; font-weight: 700; line-height: 1; color: var(--cream-white);
  font-size: clamp(22px, 2.6vw, 36px); text-shadow: 0 3px 16px rgba(0,0,0,.6);
}
.pk__cap-name span { font-size: .42em; font-weight: 700; opacity: .82; margin-left: 8px; }
.pk__tag {
  display: inline-block; padding: 5px 18px; border-radius: 999px;
  background: var(--c, var(--electric-purple)); color: #fff;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  letter-spacing: .4px; box-shadow: 0 8px 18px rgba(0,0,0,.4);
}

.pk__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: clamp(44px, 4vw, 58px); height: clamp(44px, 4vw, 58px);
  display: grid; place-items: center; border-radius: 999px;
  border: 3px solid var(--cream-white); color: var(--cream-white);
  background: rgba(42,26,8,.42); backdrop-filter: blur(4px); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.pk__nav:hover { background: var(--neon-lime); color: #2A1A08; border-color: var(--neon-lime); }
.pk__nav:active { transform: translateY(-50%) scale(.92); }
.pk__nav svg { width: 46%; height: 46%; }
.pk__nav--prev { left: clamp(2px, 1.5vw, 22px); }
.pk__nav--next { right: clamp(2px, 1.5vw, 22px); }

.pk__hint {
  position: relative; z-index: 3; margin: 0;
  font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: .4px;
  color: var(--neon-lime); opacity: .92; text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.pk__dots { position: relative; z-index: 3; display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; max-width: 320px; }
.pk__dots button {
  width: 11px; height: 11px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255,246,226,.32); cursor: pointer; transition: background .25s, transform .25s;
}
.pk__dots button:hover { background: rgba(255,246,226,.6); }
.pk__dots button[aria-selected="true"] { background: var(--neon-lime); transform: scale(1.3); box-shadow: 0 0 14px rgba(255,210,62,.6); }

/* =========================================================================
   Ingredients section — "Simple Ingredients. Big Personality."
   Left copy fixed; right stage is a one-ball-at-a-time slider with the
   ball's own ingredients scattered around it.
   ========================================================================= */
.xp {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% 30%, #9A6A16 0%, #6A4410 38%, #261709 66%, #2A1A08 100%);
  color: var(--cream-white);
  font-family: var(--font-display);
  padding: clamp(80px, 9vh, 120px) clamp(34px, 7vw, 140px) clamp(30px, 4vh, 56px);
}
.xp::before {
  content: ""; position: absolute; inset: -4%; z-index: 0; pointer-events: none;
  background: url("hero-assets/abg.png") center/cover no-repeat;
  opacity: .9;
}
.xp__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(46% 50% at 68% 30%, rgba(238,122,31,.38), transparent 70%),
    radial-gradient(38% 38% at 14% 80%, rgba(226,59,42,.16), transparent 70%),
    radial-gradient(56% 46% at 64% 82%, rgba(255,210,62,.14), transparent 70%);
}
.xp__inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  width: 100%; max-width: 1740px; margin: 0 auto;
}

/* ---- left: copy + feature cards ---- */
.xp__intro { max-width: 820px; }
.xp__badge {
  display: inline-block; margin: 0 0 clamp(16px, 1.6vw, 24px);
  font-family: var(--font-body); font-weight: 800; font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--neon-lime);
  padding: 10px 24px; border-radius: 999px; border: 2px solid rgba(255,210,62,.55);
}
.xp__title {
  margin: 0 0 clamp(18px, 1.8vw, 28px); font-weight: 700; line-height: .96;
  font-size: clamp(30px, 3.9vw, 62px); letter-spacing: -1.8px;
}
.xp__title .t-cream { color: var(--cream-white); display: block; white-space: nowrap; }
.xp__title .t-lime { color: var(--neon-lime); display: block; white-space: nowrap; text-shadow: 0 0 36px rgba(255,210,62,.32); }
.xp__lede {
  margin: 0 0 clamp(26px, 2.6vw, 40px); font-family: var(--font-body); font-weight: 600;
  font-size: clamp(16px, 1.4vw, 21px); color: #F7EFE5; opacity: .92; max-width: 520px;
}
.xp__feats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(8px, 0.8vw, 14px);
  max-width: 720px;
}
.xp__feats li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: clamp(14px, 1.3vw, 22px) 8px clamp(16px, 1.5vw, 24px);
  border: 1.6px solid rgba(238,122,31, .5); border-radius: 18px;
  background: linear-gradient(180deg, rgba(59,36,12, .42), rgba(40,24,9, .4));
  font-family: var(--font-body); font-weight: 700; font-size: clamp(11px, 0.85vw, 14px);
  color: #F6E9C4; line-height: 1.25;
}
.xp__feat-ic {
  position: relative; display: grid; place-items: center;
  width: clamp(40px, 3.6vw, 52px); height: clamp(40px, 3.6vw, 52px); color: var(--neon-lime);
}
.xp__feat-ic svg { width: 66%; height: 66%; }

/* ---- right: slider stage (ball + arrowed ingredient labels) ---- */
.xp__stage {
  position: relative;
  width: 100%; max-width: 820px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  cursor: grab; touch-action: pan-y;
}
.xp__stage:active { cursor: grabbing; }
.xp__canvas { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; pointer-events: none; }
.xp__slides { position: absolute; inset: 0; }
.xp__slide { position: absolute; inset: 0; }
.xp__flavor-name {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 1; pointer-events: none; opacity: 0;
  font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  font-size: clamp(14px, 1.4vw, 19px); color: var(--neon-lime);
}
.xp__ball {
  position: absolute; left: 50%; top: 50%; width: 78%; z-index: 6;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.6));
  transform: translate(-50%, -50%);
}
.xp__d, .xp__ing {
  position: absolute;
  left: calc(var(--x) * 1%); top: calc(var(--y) * 1%);
  width: calc(var(--w) * 1%); z-index: 2;
  transform: translate(-50%, -50%); pointer-events: none;
}
.xp__d { filter: drop-shadow(0 5px 8px rgba(0,0,0,.4)); }
.xp__ing { filter: drop-shadow(0 9px 12px rgba(0,0,0,.5)); }
.xp__label {
  position: absolute; top: calc(var(--ay) * 1%);
  z-index: 4; pointer-events: none; transform: translateY(-50%);
}
.xp__label--l { right: calc((100 - var(--ax)) * 1%); text-align: right; }
.xp__label--r { left: calc(var(--ax) * 1%); text-align: left; }
.xp__label-box { display: inline-block; padding: 0 6px; max-width: 168px; will-change: transform, filter, opacity; }
.xp__label--l .xp__label-box { transform-origin: 100% 50%; }
.xp__label--r .xp__label-box { transform-origin: 0% 50%; }
.xp__label-box b {
  display: block; font-weight: 700; font-size: clamp(17px, 1.8vw, 27px);
  text-transform: uppercase; letter-spacing: .4px; color: var(--cream-white);
  line-height: 1.02; text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.xp__label-box span {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: clamp(12px, 1.15vw, 15px); color: #EEDDA9; line-height: 1.2;
  margin-top: 4px; text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.xp__label--l .xp__label-box span { margin-left: auto; }
.xp__dots {
  position: absolute; left: 50%; bottom: 1%; transform: translateX(-50%);
  z-index: 8; display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; max-width: 86%;
}
.xp__dots button {
  width: 11px; height: 11px; padding: 0; border-radius: 999px;
  border: 1.6px solid var(--electric-purple); background: transparent; cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.xp__dots button[aria-selected="true"] {
  background: var(--neon-lime); border-color: var(--neon-lime);
  box-shadow: 0 0 14px rgba(255,210,62,.6); transform: scale(1.1);
}

/* hero-style scroll cue, sitting above all the fruit */
.xp__scroll-cue { z-index: 30; }

@media (max-width: 980px) {
  .pk__stage { height: clamp(300px, 52vh, 460px); }
  .xp { padding-top: clamp(76px, 11vh, 110px); scroll-snap-align: none; scroll-snap-stop: normal; }
  .xp__inner { grid-template-columns: 1fr; gap: 30px; justify-items: center; }
  .xp__intro { max-width: 600px; text-align: center; }
  .xp__feats { margin-left: auto; margin-right: auto; }
  .xp__lede { margin-left: auto; margin-right: auto; }
  .xp__stage { width: min(620px, 96%); }
}
@media (max-width: 560px) {
  .pk__card { width: clamp(150px, 56vw, 220px); }
  .xp__feats { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================================
   SNACK MOMENTS — "Made for Every Craving Break" (photo-backed flavor cards)
   ========================================================================= */
.sm {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #2D1B0A 0%, #271809 46%, #2A1A08 100%);
  color: var(--cream-white);
  font-family: var(--font-display);
  padding: clamp(48px, 6vw, 92px) clamp(20px, 5vw, 70px) clamp(26px, 4vh, 48px);
}
.sm::before {
  content: ""; position: absolute; inset: -4%; z-index: 0; pointer-events: none;
  background: url("hero-assets/abg.png") center/cover no-repeat; opacity: .55;
}
.sm__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 40% at 20% 18%, rgba(238,122,31,.30), transparent 70%),
    radial-gradient(40% 40% at 82% 22%, rgba(226,59,42,.16), transparent 70%);
}
.sm__head, .sm__grid { position: relative; z-index: 2; }

/* scattered fruit around the header */
.sm__scatter { position: absolute; inset: 0 0 auto 0; height: 42%; z-index: 1; pointer-events: none; }
.sm__s {
  position: absolute; left: calc(var(--x) * 1%); top: calc(var(--y) * 1%);
  width: calc(var(--w) * 1%); max-width: 90px; transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.45));
}

/* header */
.sm__head { text-align: center; max-width: 1240px; margin: 0 auto clamp(28px, 3.4vw, 52px); }
.sm__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: var(--font-body); font-weight: 800; font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 3px; text-transform: uppercase; color: var(--neon-lime);
  padding: 7px 18px; border-radius: 999px; border: 1.6px solid rgba(255,210,62,.5);
}
.sm__eyebrow i { font-style: normal; font-size: 10px; opacity: .9; }
.sm__title {
  margin: 0 0 16px; font-weight: 700; line-height: .98; white-space: nowrap;
  font-size: clamp(32px, 5vw, 70px); letter-spacing: -1.5px; color: var(--cream-white);
}
@media (max-width: 720px) { .sm__title { white-space: normal; } }
.sm__title .t-lime { color: var(--neon-lime); text-shadow: 0 0 32px rgba(255,210,62,.3); }
.sm__sub {
  margin: 0 auto; max-width: 620px; font-family: var(--font-body); font-weight: 600;
  font-size: clamp(15px, 1.3vw, 19px); color: #F5E8C1; opacity: .92; line-height: 1.45;
}

/* card grid */
.sm__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 24px);
  max-width: 1560px; margin: 0 auto;
}
.sm__card {
  position: relative; isolation: isolate;
  aspect-ratio: 87 / 142; border-radius: 26px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.16);
  box-shadow: 0 26px 50px rgba(0,0,0,.45);
  background: #271809;
}
.js .sm__card.reveal { transition-delay: calc(var(--d, 0) * 1ms); }
.sm__card:nth-child(2) { --d: 90; }
.sm__card:nth-child(3) { --d: 180; }
.sm__card:nth-child(4) { --d: 270; }
.sm__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.sm__tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,2,26,.82) 0%, rgba(8,2,26,.12) 24%, rgba(8,2,26,.05) 50%, rgba(8,2,26,.5) 78%, rgba(8,2,26,.88) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 62%, transparent), color-mix(in srgb, var(--accent) 42%, transparent));
}

/* card header (icon + title + desc) */
.sm__chead {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: flex-start; gap: 11px;
  padding: clamp(14px, 1.3vw, 20px);
}
.sm__ic {
  flex: none; width: clamp(38px, 3.4vw, 50px); height: clamp(38px, 3.4vw, 50px);
  border-radius: 50%; display: grid; place-items: center;
  background: var(--ic); color: var(--icfg);
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.sm__ic svg { width: 58%; height: 58%; }
.sm__chead h3 { margin: 2px 0 3px; font-weight: 700; font-size: clamp(17px, 1.7vw, 25px); line-height: 1; color: #fff; }
.sm__chead p { margin: 0; font-family: var(--font-body); font-weight: 600; font-size: clamp(11px, 1vw, 14px); line-height: 1.22; color: #F5E8C1; opacity: .94; }

/* pack + fruit stage */
.sm__stage { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.sm__pack {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 92%; z-index: 2; filter: drop-shadow(0 20px 30px rgba(0,0,0,.6));
}
.sm__f {
  position: absolute; left: calc(var(--x) * 1%); top: calc(var(--y) * 1%);
  width: calc(var(--w) * 1%); transform: translate(-50%, -50%); z-index: 1;
  filter: drop-shadow(0 7px 10px rgba(0,0,0,.5));
}
.sm__gf {
  position: absolute; right: 12%; top: 30%; z-index: 4;
  width: clamp(42px, 4vw, 58px); height: clamp(42px, 4vw, 58px);
  display: grid; place-items: center; text-align: center;
  border-radius: 50%; background: var(--neon-lime); color: #2A1A08;
  font-family: var(--font-body); font-weight: 800; font-size: clamp(8px, .8vw, 11px);
  line-height: 1.05; text-transform: uppercase; letter-spacing: .3px;
  box-shadow: 0 6px 16px rgba(0,0,0,.4); transform: rotate(8deg);
}

/* starburst badges */
.sm__burst {
  position: absolute; z-index: 4; display: grid; place-items: center; text-align: center;
  width: clamp(74px, 7vw, 100px); aspect-ratio: 1;
  font-family: var(--font-body); font-weight: 800; line-height: 1.04;
  font-size: clamp(10px, .95vw, 13px); text-transform: uppercase; letter-spacing: .2px;
  clip-path: polygon(50.0% 0.0%, 59.8% 13.3%, 75.0% 6.7%, 76.9% 23.1%, 93.3% 25.0%, 86.7% 40.2%, 100.0% 50.0%, 86.7% 59.8%, 93.3% 75.0%, 76.9% 76.9%, 75.0% 93.3%, 59.8% 86.7%, 50.0% 100.0%, 40.2% 86.7%, 25.0% 93.3%, 23.1% 76.9%, 6.7% 75.0%, 13.3% 59.8%, 0.0% 50.0%, 13.3% 40.2%, 6.7% 25.0%, 23.1% 23.1%, 25.0% 6.7%, 40.2% 13.3%);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.4));
}
.sm__burst--travel { left: 4%; top: 40%; background: #FFD23F; color: #2a1a00; transform: rotate(-12deg); }
.sm__burst--crowd  { right: 4%; bottom: 22%; background: #FF4FA3; color: #fff; transform: rotate(10deg); }
.sm__burst--fuel   { right: 4%; top: 16%; background: var(--neon-lime); color: #2A1A08; transform: rotate(9deg); }

/* testimonial cards */
.sm__quote {
  position: absolute; z-index: 4; width: 70%; max-width: 215px;
  background: #FBF6EC; color: #1c1336; border-radius: 16px;
  padding: 11px 13px; box-shadow: 0 14px 28px rgba(0,0,0,.4);
  font-family: var(--font-body);
}
.sm__quote--bl { left: 7%; bottom: 6%; transform: rotate(-2deg); }
.sm__quote--bc { left: 50%; bottom: 6%; transform: translateX(-50%) rotate(-1deg); }
.sm__quote--tr { right: 6%; top: 14%; transform: rotate(2deg); }
.sm__quote--br { right: 6%; bottom: 6%; transform: rotate(2deg); }
.sm__stars { display: block; font-size: 12px; color: #FFB400; letter-spacing: 1px; }
.sm__stars b { color: #1c1336; font-size: 12px; margin-left: 4px; }
.sm__quote blockquote { margin: 4px 0 7px; font-weight: 800; font-size: clamp(13px, 1.15vw, 16px); line-height: 1.12; color: #1c1336; }
.sm__quote figcaption { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 12px; color: #6F4812; }
.sm__quote figcaption img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex: none; }

/* bottom scroll cue — identical to the Flavor Crew (pk) section, no green band */
.sm__scroll { position: relative; z-index: 2; flex: 0 0 auto; }
.pk__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: max-content; margin: clamp(14px,1.8vw,26px) auto 0;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--neon-lime);
  text-decoration: none;
}
.pk__scroll svg { width: 30px; height: 30px; color: var(--neon-lime); animation: mm-bob 1.8s ease-in-out infinite; }

@media (max-width: 1080px) {
  .sm__grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 540px) {
  .sm__grid { grid-template-columns: 1fr; max-width: 360px; }
  .sm__card { aspect-ratio: 90 / 132; }
}
/* On wide screens the whole section fits exactly one viewport: the card grid
   flexes to fill the height between the header and the bottom scroll cue. */
@media (min-width: 1081px) {
  .sm {
    height: 100svh; min-height: 620px;
    display: flex; flex-direction: column;
    padding-top: clamp(74px, 9vh, 100px);
    padding-bottom: clamp(20px, 3vh, 36px);
    justify-content: flex-start;
  }
  .sm__head { flex: 0 0 auto; margin-bottom: clamp(6px, 1.3vh, 18px); }
  .sm__title { margin-bottom: clamp(8px, 1vh, 14px); font-size: clamp(34px, 4.4vw, 64px); }
  .sm__eyebrow { margin-bottom: clamp(8px, 1.2vh, 16px); }
  .sm__grid {
    flex: 1 1 auto; min-height: 0; align-items: stretch;
    max-width: 1480px; width: 100%;
  }
  .sm__card { aspect-ratio: auto; height: 100%; }
  .sm__scroll { margin-top: clamp(12px, 1.6vh, 22px); }
}

/* =========================================================================
   CONTACT / FOOTER — "Ready to Taste the Lineup?" + form panel + footer bar
   (paint splashes are improvised with gradients/blur for now)
   ========================================================================= */
.ft {
  position: relative; isolation: isolate; overflow: hidden;
  background: radial-gradient(130% 90% at 50% 0%, #2C1B0A 0%, #271809 48%, #231509 100%);
  color: var(--cream-white); font-family: var(--font-display);
}
/* improvised paint: soft colour glows, mostly top + right (like the artwork) */
.ft__paint {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(22% 30% at 60% 6%, rgba(255,62,165,.5), transparent 70%),
    radial-gradient(20% 26% at 82% 18%, rgba(255,210,62,.4), transparent 70%),
    radial-gradient(24% 30% at 94% 34%, rgba(255,138,30,.45), transparent 70%),
    radial-gradient(26% 30% at 74% 52%, rgba(238,122,31,.4), transparent 70%),
    radial-gradient(22% 28% at 96% 66%, rgba(226,59,42,.32), transparent 70%),
    radial-gradient(20% 24% at 64% 78%, rgba(255,210,30,.3), transparent 70%);
}
.ft__splat { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ft__splat span {
  position: absolute; left: calc(var(--x)*1%); top: calc(var(--y)*1%);
  width: calc(var(--w)*1%); aspect-ratio: 1; transform: translate(-50%,-50%);
  background: var(--c); border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  filter: blur(34px); opacity: .42; mix-blend-mode: screen;
}
.ft__fruit { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.ft__fruit img {
  position: absolute; left: calc(var(--x)*1%); top: calc(var(--y)*1%);
  width: calc(var(--w)*1%); max-width: 90px; transform: translate(-50%,-50%);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.5));
}

.ft__top {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  align-items: center; gap: clamp(28px, 4vw, 72px);
  max-width: 1500px; margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 5vw, 70px) clamp(8px, 1.4vw, 22px);
}

/* ---- left CTA ---- */
.ft__logo { display: grid; line-height: .8; font-weight: 700; letter-spacing: -.5px; margin-bottom: clamp(14px, 1.6vw, 24px); text-decoration: none; width: max-content; }
.ft__logo-top { font-size: clamp(26px, 2.4vw, 34px); color: var(--neon-lime); }
.ft__logo-bot { font-size: clamp(26px, 2.4vw, 34px); color: var(--aqua-cyan); }
.ft__logo-tag { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-white); margin-top: 4px; }
.ft__title { margin: 0 0 14px; font-weight: 700; line-height: .96; font-size: clamp(38px, 5vw, 72px); letter-spacing: -1.5px; color: var(--cream-white); }
.ft__sub { margin: 0 0 22px; font-family: var(--font-body); font-weight: 600; font-size: clamp(15px, 1.2vw, 18px); color: #F3E4B9; max-width: 420px; }
.ft__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.ft__connect { display: flex; align-items: center; gap: 11px; margin: clamp(18px,2vw,26px) 0 clamp(20px,2.4vw,30px); font-family: var(--font-body); }
.ft__connect-ic { flex: none; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; border: 1.5px solid rgba(255,210,62,.5); color: var(--neon-lime); }
.ft__connect-ic svg { width: 20px; height: 20px; }
.ft__connect-txt { font-weight: 800; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--neon-lime); line-height: 1.3; }
.ft__connect-txt a { display: block; text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 700; color: var(--cream-white); text-decoration: none; }
.ft__connect-txt a:hover { color: var(--neon-lime); }
.ft__sheets-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; font-family: var(--font-body); }
.ft__sheets-list a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--cream-white); text-decoration: none; border-bottom: 1.5px solid rgba(255,255,255,.25); padding-bottom: 1px; }
.ft__sheets-list a::before { content: "↓"; font-weight: 900; color: var(--neon-lime); }
.ft__sheets-list a:hover { color: var(--neon-lime); border-bottom-color: var(--neon-lime); }
.ft__packs { display: flex; align-items: flex-end; margin-top: 6px; }
.ft__packs img {
  width: 21%; margin-right: -3.5%; filter: drop-shadow(0 14px 22px rgba(0,0,0,.5));
  transition: transform .2s ease;
}
.ft__packs img:nth-child(odd) { transform: rotate(-3deg); }
.ft__packs img:nth-child(even) { transform: rotate(2deg) translateY(4px); }
.ft__packs img:hover { transform: translateY(-8px) rotate(0); z-index: 2; }
.ft__packs img.ft__pack--lead {
  width: 26.25%; z-index: 3; margin: 0 -3%;
  transform: rotate(0);
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.5));
}
.ft__packs img.ft__pack--lead:hover { transform: translateY(-8px) rotate(0); }

/* ---- right form panel ---- */
.ft__panel {
  position: relative;
  background: rgba(22, 6, 56, .72); backdrop-filter: blur(8px);
  border: 1px solid rgba(238,122,31, .42); border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  padding: clamp(22px, 2.4vw, 38px);
}
.ft__panel-title { margin: 0 0 8px; font-weight: 700; line-height: 1.04; font-size: clamp(22px, 2.2vw, 33px); color: var(--cream-white); }
.ft__panel-title .t-lime { color: var(--neon-lime); }
.ft__panel-sub { margin: 0 0 clamp(16px,1.6vw,22px); font-family: var(--font-body); font-weight: 600; font-size: clamp(13px,1vw,15px); color: #E3CB85; max-width: 420px; }
.ft__form { display: flex; flex-direction: column; gap: clamp(10px, 1vw, 14px); }
.ft__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1vw, 14px); }
.ft__form input, .ft__form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--cream-white); background: rgba(10, 3, 32, .6);
  border: 1.5px solid rgba(238,122,31, .35); border-radius: 12px;
  padding: 13px 16px; transition: border-color .2s, box-shadow .2s;
}
.ft__form textarea { resize: vertical; min-height: 84px; }
.ft__form input::placeholder, .ft__form textarea::placeholder { color: #B68937; }
.ft__form input:focus, .ft__form textarea:focus {
  outline: none; border-color: var(--neon-lime); box-shadow: 0 0 0 3px rgba(255,210,62,.15);
}
.ft__form .ft__btns { margin-top: 6px; }
.ft__form .mm-btn { cursor: pointer; border: none; }
.ft__form .mm-btn--cream { border: 1.5px solid rgba(255,255,255,.4); background: transparent; color: var(--cream-white); }
.ft__feats {
  list-style: none; margin: clamp(18px,2vw,26px) 0 0; padding: clamp(16px,1.8vw,22px) 0 0;
  border-top: 1px solid rgba(238,122,31,.28);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; text-align: center;
}
.ft__feats li {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: clamp(9px, .72vw, 11px);
  line-height: 1.2; color: #ECDBA4;
}
.ft__feats svg { width: clamp(22px, 2vw, 28px); height: clamp(22px, 2vw, 28px); color: var(--neon-lime); }

/* ---- lime wave + footer bar ---- */
.ft__wave { position: relative; z-index: 3; height: clamp(80px, 10vh, 120px); margin-top: clamp(-46px, -4vw, -24px); }
.ft__bar {
  position: relative; z-index: 2; background: #231509;
  display: flex; align-items: center; gap: clamp(18px, 3vw, 48px); flex-wrap: wrap;
  /* full-width dark bar; content stays centred within 1500px via the max() padding */
  padding: clamp(14px, 1.4vw, 20px) max(clamp(20px, 5vw, 70px), calc((100% - 1500px) / 2)) clamp(16px, 1.7vw, 25px);
}
.ft__logo--sm { margin-bottom: 0; }
.ft__logo--sm .ft__logo-top, .ft__logo--sm .ft__logo-bot { font-size: 22px; }
.ft__nav { display: flex; flex-wrap: wrap; gap: clamp(16px, 2vw, 34px); margin: 0 auto; font-family: var(--font-body); font-weight: 700; font-size: 15px; }
.ft__nav a { color: #F3E4B9; text-decoration: none; transition: color .2s; }
.ft__nav a:hover { color: var(--neon-lime); }
.ft__bar-right { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 22px); }
.ft__social { display: flex; gap: 9px; }
.ft__social a {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,210,62,.12); color: var(--neon-lime); transition: background .2s, transform .2s;
}
.ft__social a:hover { background: var(--neon-lime); color: #231509; transform: translateY(-2px); }
.ft__social svg { width: 18px; height: 18px; }
.ft__copy { margin: 0; font-family: var(--font-body); font-weight: 600; font-size: 12px; line-height: 1.4; color: #BD933F; text-align: right; }

@media (max-width: 940px) {
  .ft__top { grid-template-columns: 1fr; gap: 34px; }
  .ft__sub, .ft__panel-sub { max-width: none; }
  .ft__bar { justify-content: center; text-align: center; }
  .ft__nav { margin: 0 auto; }
  .ft__copy { text-align: center; }
}
@media (max-width: 540px) {
  .ft__field-row { grid-template-columns: 1fr; }
  .ft__feats { grid-template-columns: repeat(3, 1fr); }
  .ft__packs img { width: 23%; }
}

/* ===== Contact/footer compact: CTA + form + bar fit one viewport, no bottom wave ===== */
.ft__wave { display: none; }
.ft__cta > .ft__logo { display: none; }          /* clashes with sticky header logo */
.ft__top {
  padding-top: clamp(16px, 2.2vw, 36px);
  padding-bottom: clamp(6px, 1vw, 14px);
  gap: clamp(24px, 3.2vw, 56px);
}
.ft__title { font-size: clamp(28px, 3.6vw, 50px); margin-bottom: 8px; }
.ft__sub { margin-bottom: 12px; }
.ft__connect { margin: clamp(12px,1.4vw,18px) 0 clamp(12px,1.6vw,20px); }
.ft__panel { padding: clamp(14px, 1.6vw, 22px); }
.ft__panel-title { font-size: clamp(19px, 1.9vw, 26px); margin-bottom: 5px; }
.ft__panel-sub { margin-bottom: clamp(8px, 1vw, 12px); }
.ft__form { gap: clamp(7px, .7vw, 10px); }
.ft__form input, .ft__form textarea { padding: 9px 13px; font-size: 14px; border-radius: 10px; }
.ft__form textarea { min-height: 50px; }
.ft__form .ft__btns { margin-top: 4px; }
.ft__feats { margin-top: clamp(9px, 1.1vw, 14px); padding-top: clamp(9px, 1.1vw, 14px); }
.ft__bar { padding-top: clamp(10px, 1vw, 15px); padding-bottom: clamp(10px, 1.1vw, 16px); }
.ft__form-status { min-height: 1.4em; font-size: 13px; font-weight: 700; margin-top: 8px; }
.ft__form-status.is-ok  { color: #c9f300; }
.ft__form-status.is-err { color: #ff6b6b; }
