@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-MediumItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Variable";
  src: url("assets/fonts/SourceSansVariable-Roman.otf") format("opentype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --paper: #f4eddf;
  --paper-light: #fffaf0;
  --ink: #11110e;
  --red: #cd2129;
  --yellow: #f3d52c;
  --green: #68733f;
  --line: rgba(17, 17, 14, 0.18);
  --shell: 1380px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans Variable", Arial, sans-serif;
  line-height: 1.42;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main,
section,
footer { width: 100%; max-width: 100%; }

img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.site-nav {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), 1380px);
  min-height: 68px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 22px;
  background: rgba(255, 250, 240, .84);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  box-shadow: 0 12px 42px rgba(17,17,14,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: transform .4s var(--ease);
}

.site-nav.nav-hidden { transform: translate(-50%, -145%); }

.nav-logo { width: 128px; }
.nav-logo img { height: auto; }
.site-nav nav { display: flex; justify-content: center; gap: 34px; }
.site-nav nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.site-nav nav a:hover::after,
.site-nav nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pill-button {
  min-height: 52px;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 13px 22px;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 999px;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.pill-button:hover,
.pill-button:focus-visible { background: #fff; color: var(--red); }
.pill-button:focus-visible { outline: 3px solid rgba(205,33,41,.25); outline-offset: 4px; }
.pill-button span { font-size: 1rem; }
.pill-small { min-height: 46px; padding: 10px 18px; }

.hero-showstopper {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1d1a14;
  color: #fff;
}

.hero-photo,
.hero-shade,
.grain { position: absolute; inset: 0; }

.hero-photo { overflow: hidden; }
.hero-photo img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 64% 47%;
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.04);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,10,7,.92) 0%, rgba(12,10,7,.68) 38%, rgba(12,10,7,.08) 72%),
    linear-gradient(0deg, rgba(12,10,7,.78) 0%, rgba(12,10,7,0) 45%);
}

.grain {
  z-index: 2;
  opacity: .15;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.8) 0 1px, transparent 1px),
    radial-gradient(circle at 73% 62%, rgba(255,255,255,.55) 0 1px, transparent 1px);
  background-size: 6px 6px, 9px 9px;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 72px), 1380px);
  margin: 0 auto;
  padding: 160px 0 76px;
}


.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  padding: 8px 12px;
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-1.5deg);
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1, h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .87;
}

.hero-content h1 {
  max-width: 1000px;
  font-size: clamp(4.8rem, 10.2vw, 10.4rem);
}

.word { display: inline-block; }
.red-word { color: var(--red); }
.yellow-word { color: var(--yellow); }
.outline-word {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.hero-proposition {
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.hero-proposition p {
  margin: 0;
  padding: 16px 22px 16px 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(.73rem, 1vw, .92rem);
  font-weight: 700;
  line-height: 1.25;
}

.hero-proposition p + p {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.45);
}

.hero-proposition strong { color: var(--yellow); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 30px; }
.scribble-note {
  max-width: 220px;
  color: var(--yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .86rem;
  font-style: italic;
  font-weight: 500;
  transform: rotate(-3deg);
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  right: clamp(26px, 5vw, 82px);
  bottom: 76px;
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  text-align: center;
  box-shadow: 8px 8px 0 var(--red);
}

.hero-sticker b {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3rem;
  line-height: .8;
}

.hero-sticker span { margin-top: 7px; font: 800 .58rem/1.1 "Montserrat", Arial, sans-serif; letter-spacing: .08em; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: -36px;
  top: 48%;
  color: rgba(255,255,255,.85);
  font: 700 .62rem/1 "Montserrat", Arial, sans-serif;
  letter-spacing: .15em;
  transform: rotate(90deg);
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.marquee-set {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
}

.marquee span {
  display: block;
  padding: .08em .04em;
  font: 800 clamp(1.1rem, 2vw, 1.65rem)/1 "Montserrat", Arial, sans-serif;
  letter-spacing: -.03em;
}
.marquee i { color: var(--red); font-style: normal; font-size: 1.9rem; line-height: 0; }

.section-shell { width: min(calc(100% - 72px), var(--shell)); margin: 0 auto; }
.section-pad { padding: clamp(80px, 9vw, 140px) 0; }

.taste-grid > *,
.meal-hack-heading > *,
.meal-hack-stage > *,
.flavour-heading > *,
.flavour-grid > *,
.occasions-grid > *,
.step-flow > *,
.proof-grid > *,
.proof-cards > *,
.final-buy > *,
.site-nav > * { min-width: 0; }

.taste-first { position: relative; overflow: hidden; background: var(--paper); }
.taste-first::before {
  content: "BITE ME";
  position: absolute;
  right: -2vw;
  top: -1vw;
  color: rgba(205,33,41,.055);
  font: 800 clamp(7rem, 18vw, 18rem)/1 "Montserrat", Arial, sans-serif;
  letter-spacing: -.08em;
  white-space: nowrap;
}

.taste-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.taste-copy { position: relative; z-index: 2; }
.section-kicker { color: var(--red); }
.taste-copy h2 { font-size: clamp(3.3rem, 6.5vw, 7.2rem); }
.big-copy { max-width: 620px; margin: 34px 0 0; font-size: clamp(1.08rem, 1.45vw, 1.45rem); line-height: 1.42; }
.taste-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.taste-tags span { padding: 8px 12px; border: 1.5px solid var(--ink); border-radius: 999px; font: 700 .63rem/1 "Montserrat", Arial, sans-serif; }

.taste-visual {
  position: relative;
  margin: 0;
  overflow: visible;
  transform: rotate(1.5deg);
  transform-style: preserve-3d;
}

.taste-visual img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 18px 18px 0 var(--red);
}

.taste-visual figcaption { margin: 18px 0 0; font-size: .72rem; color: rgba(17,17,14,.56); }
.taste-burst {
  position: absolute;
  right: -34px;
  top: -42px;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background: var(--yellow);
  clip-path: polygon(50% 0,61% 25%,85% 15%,75% 39%,100% 50%,75% 61%,85% 85%,61% 75%,50% 100%,39% 75%,15% 85%,25% 61%,0 50%,25% 39%,15% 15%,39% 25%);
  font: 800 .82rem/.95 "Montserrat", Arial, sans-serif;
  text-align: center;
  animation: pulse 1.8s var(--ease) infinite alternate;
}

.meal-hack {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.meal-hack::before {
  content: "PROPER MEAL";
  position: absolute;
  left: -2vw;
  bottom: -3vw;
  color: rgba(255,255,255,.035);
  font: 800 clamp(8rem,20vw,21rem)/.8 "Montserrat", Arial, sans-serif;
  letter-spacing: -.09em;
  white-space: nowrap;
}

.meal-hack-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .42fr 1.25fr .62fr;
  align-items: end;
  gap: clamp(30px,5vw,72px);
  margin-bottom: 70px;
}

.meal-hack-heading .section-kicker {
  align-self: start;
  color: var(--yellow);
}

.meal-hack-heading h2 {
  font-size: clamp(3.4rem,6vw,6.8rem);
}

.meal-hack-intro {
  max-width: 390px;
  margin: 0 0 8px;
  color: rgba(255,255,255,.76);
  font-size: 1.1rem;
}

.meal-hack-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
  gap: clamp(34px,6vw,84px);
}

.meal-hack-visual {
  position: relative;
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 28px;
  box-shadow: 18px 18px 0 var(--red);
}

.meal-hack-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.water-note {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font: 800 .75rem/1.05 "Montserrat", Arial, sans-serif;
  text-align: center;
  transform: rotate(7deg);
  animation: pulse 1.8s var(--ease) infinite alternate;
}

.meal-hack-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.meal-statement {
  margin: 0 0 28px;
  color: var(--red);
  font: 800 clamp(2.35rem,4vw,4.6rem)/.9 "Montserrat", Arial, sans-serif;
  letter-spacing: -.06em;
}

.meal-hack-copy > p:not(.meal-statement) {
  max-width: 560px;
  margin: 0 0 42px;
  color: rgba(255,255,255,.76);
  font-size: 1.1rem;
}

.meal-facts {
  border-top: 1px solid rgba(255,255,255,.24);
}

.meal-fact {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.meal-fact > span {
  padding-top: 4px;
  color: var(--yellow);
  font: 800 .64rem/1 "Montserrat", Arial, sans-serif;
}

.meal-fact b {
  display: block;
  margin-bottom: 6px;
  font: 800 1.12rem/1 "Montserrat", Arial, sans-serif;
}

.meal-fact p {
  margin: 0;
  color: rgba(255,255,255,.6);
}

.flavour-section { background: var(--paper-light); }
.flavour-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; margin-bottom: 62px; }
.flavour-heading h2 { font-size: clamp(3rem,5.5vw,6rem); }
.flavour-intro { max-width: 480px; margin: 0 0 4px; font-size: 1.12rem; }
.flavour-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.flavour-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 460px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 26px;
  box-shadow: 0 0 0 rgba(17,17,14,0);
  transform-style: preserve-3d;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.flavour-card:hover { box-shadow: 12px 12px 0 var(--ink); }
.flavour-image { position: relative; overflow: hidden; min-height: 460px; }
.flavour-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.flavour-card:hover .flavour-image img { transform: scale(1.06); }
.diet {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  background: var(--paper-light);
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font: 800 .58rem/1 "Montserrat", Arial, sans-serif;
  letter-spacing: .07em;
}
.diet.veg { color: #4f753b; }
.diet.nonveg { color: #9c442f; }
.flavour-body { position: relative; display: flex; flex-direction: column; padding: 34px 30px 28px; }
.sku-no { color: var(--red); font: 800 .72rem/1 "Montserrat", Arial, sans-serif; }
.flavour-card h3 { margin: auto 0 18px; font: 800 clamp(2rem,3.2vw,3.5rem)/.88 "Montserrat", Arial, sans-serif; letter-spacing: -.065em; }
.flavour-body > p { margin: 0 0 26px; font-size: .96rem; line-height: 1.42; }
.flavour-footer { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.flavour-footer span { max-width: 190px; color: var(--red); font: 500 italic .76rem/1.25 "Montserrat", Arial, sans-serif; }
.flavour-footer b { font: 800 .64rem/1 "Montserrat", Arial, sans-serif; white-space: nowrap; }
.card-chicken { background: #f0d3b5; }
.card-paneer { background: #e8eccf; }
.card-wild { background: #ecd7ac; }
.card-coming { background: #ddd3c5; }
.coming-veil { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; background: rgba(17,17,14,.46); backdrop-filter: grayscale(1); }
.coming-veil span { padding: 12px 18px; background: var(--yellow); border: 2px solid var(--ink); color: var(--ink); font: 800 .74rem/1 "Montserrat", Arial, sans-serif; transform: rotate(-6deg); box-shadow: 6px 6px 0 var(--red); }

.occasions-section { padding: 120px 0; background: var(--red); color: #fff; }
.occasions-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px,8vw,120px); align-items: start; }
.occasions-sticky { position: sticky; top: 125px; }
.occasions-sticky .section-kicker { color: var(--yellow); }
.occasions-sticky h2 { font-size: clamp(3.4rem,6.4vw,7rem); }
.occasions-sticky > p:last-child { max-width: 540px; margin: 32px 0 0; font-size: 1.08rem; }
.occasion-stack { display: grid; gap: 26px; }
.occasion-card {
  min-height: 310px;
  padding: 34px;
  background: var(--paper-light);
  border: 3px solid var(--ink);
  border-radius: 24px;
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1deg);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.occasion-card:nth-child(even) { transform: rotate(1.3deg); }
.occasion-card.is-active { background: var(--yellow); transform: rotate(0) scale(1.025); }
.occasion-card time { display: block; margin-bottom: 44px; color: var(--red); font: 800 .76rem/1 "Montserrat", Arial, sans-serif; letter-spacing: .08em; }
.occasion-card h3 { margin: 0; font: 800 clamp(2rem,4vw,4.3rem)/.9 "Montserrat", Arial, sans-serif; letter-spacing: -.06em; }
.occasion-card p { margin: 16px 0 36px; font-size: 1rem; }
.occasion-card > span { display: block; color: var(--red); font: 800 1rem/1 "Montserrat", Arial, sans-serif; text-align: right; }

.steps-section { overflow: hidden; background: var(--yellow); }
.steps-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.steps-heading .section-kicker { color: var(--red); }
.steps-heading h2 { font-size: clamp(3.2rem,6vw,6.5rem); text-align: right; }
.steps-heading h2 span { color: var(--red); }
.step-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 24px; }
.motion-step { position: relative; min-height: 400px; padding: 30px; background: var(--paper-light); border: 3px solid var(--ink); border-radius: 28px; box-shadow: 10px 10px 0 var(--red); }
.step-count { color: var(--red); font: 800 .72rem/1 "Montserrat", Arial, sans-serif; }
.step-visual { position: relative; height: 190px; display: grid; place-items: center; margin: 10px 0; }
.open-icon::before { content: ""; width: 120px; height: 88px; border: 8px solid var(--ink); border-top: 0; border-radius: 0 0 34px 34px; }
.open-icon i { position: absolute; top: 48px; width: 135px; height: 20px; background: var(--red); border: 6px solid var(--ink); border-radius: 50%; transform-origin: right; animation: lidOpen 2.2s var(--ease) infinite alternate; }
.pour-icon::before { content: ""; position: absolute; bottom: 34px; width: 120px; height: 84px; border: 8px solid var(--ink); border-radius: 0 0 34px 34px; }
.pour-icon i { position: absolute; left: 54%; top: 25px; width: 9px; height: 94px; background: #72a8d5; border-radius: 999px; transform: rotate(12deg); animation: waterPour 1.2s ease-in-out infinite; }
.pour-icon b::before,
.pour-icon b::after { content: "~"; position: absolute; top: 12px; color: var(--red); font: 800 2rem/1 "Montserrat", Arial, sans-serif; animation: steam 1.5s ease-in-out infinite; }
.pour-icon b::before { left: 38%; }
.pour-icon b::after { left: 52%; animation-delay: .35s; }
.heart-icon { color: var(--red); font-size: 8rem; animation: heartbeat 1.1s ease-in-out infinite; }
.motion-step h3 { margin: 0 0 8px; font: 800 clamp(1.5rem,2.4vw,2.7rem)/.95 "Montserrat", Arial, sans-serif; letter-spacing: -.05em; }
.motion-step p { margin: 0; }
.flow-arrow { font: 800 clamp(2.2rem,4vw,4rem)/1 "Montserrat", Arial, sans-serif; }

.proof-section { background: var(--paper); }
.proof-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,8vw,120px); align-items: center; }
.proof-title h2 { font-size: clamp(3.2rem,6vw,6.4rem); }
.proof-title h2 span { color: var(--red); }
.proof-title > p:last-child { max-width: 460px; margin: 28px 0 0; font-size: 1.08rem; }
.proof-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.proof-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: 20px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.proof-card:hover { background: var(--ink); color: var(--yellow); transform: translateY(-6px) rotate(-1deg); }
.proof-card b { color: var(--red); font: 800 clamp(2.5rem,5vw,5rem)/.9 "Montserrat", Arial, sans-serif; letter-spacing: -.06em; }
.proof-card span { font: 800 .72rem/1.1 "Montserrat", Arial, sans-serif; letter-spacing: .08em; }
.proof-wide { grid-column: 1/-1; min-height: 160px; }
.proof-note { width: min(calc(100% - 72px), var(--shell)); margin: 28px auto 0; color: rgba(17,17,14,.58); font-size: .68rem; text-align: center; }

.final-buy { min-height: 780px; display: grid; grid-template-columns: 1.12fr .88fr; background: var(--paper-light); color: var(--ink); }
.final-photo { min-height: 620px; overflow: hidden; }
.final-photo img { width: 100%; height: 100%; object-fit: cover; }
.final-content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(60px,8vw,120px); background: var(--paper-light); }
.final-brand { width: 170px; height: auto; margin-bottom: 46px; filter: none; }
.final-content h2 { font-size: clamp(4rem,7.5vw,8rem); }
.final-content p { max-width: 480px; margin: 30px 0; font-size: 1.15rem; }

.site-footer { padding: 0 max(28px,calc((100vw - 1380px)/2)); background: var(--yellow); border-top: 2px solid var(--ink); }
.footer-main { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 34px; padding: 30px 0 24px; }
.site-footer img { width: 120px; height: auto; }
.site-footer p, .site-footer span { margin: 0; font: 700 .72rem/1.2 "Montserrat", Arial, sans-serif; }
.footer-main > span { text-align: right; }
.footer-legal { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 34px; padding: 21px 0 24px; border-top: 1px solid rgba(17,17,14,.24); }
.footer-legal a, .footer-legal span { color: rgba(17,17,14,.72); font: 600 clamp(.72rem,1.2vw,.86rem)/1.3 "Montserrat", Arial, sans-serif; text-decoration: none; }
.footer-legal a { transition: color .2s ease; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--red); }
.footer-legal b { color: var(--ink); font-weight: 800; }

.motion-ready .reveal { opacity: 0; transform: translateY(32px) rotate(.4deg); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.motion-ready .reveal.is-in { opacity: 1; transform: translateY(0) rotate(0); }
.motion-ready .image-pop.reveal { transform: translateY(45px) scale(.94) rotate(2deg); }
.motion-ready .image-pop.reveal.is-in { transform: translateY(0) scale(1) rotate(1deg); }
.motion-ready .kinetic .word { opacity: 0; transform: translateY(1em) rotate(4deg); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.motion-ready .kinetic.is-in .word { opacity: 1; transform: translateY(0) rotate(0); }
.motion-ready .kinetic.is-in .word:nth-child(2) { transition-delay: .07s; }
.motion-ready .kinetic.is-in .word:nth-child(4) { transition-delay: .14s; }
.motion-ready .kinetic.is-in .word:nth-child(6) { transition-delay: .21s; }
.motion-ready .reveal-group .reveal:nth-child(2) { transition-delay: .08s; }
.motion-ready .reveal-group .reveal:nth-child(3) { transition-delay: .16s; }
.motion-ready .reveal-group .reveal:nth-child(4) { transition-delay: .24s; }

@-webkit-keyframes marquee {
  from { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
  to { -webkit-transform: translate3d(-50%,0,0); transform: translate3d(-50%,0,0); }
}
@keyframes marquee {
  from { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
  to { -webkit-transform: translate3d(-50%,0,0); transform: translate3d(-50%,0,0); }
}
@keyframes pulse { to { transform: scale(1.08) rotate(9deg); } }
@keyframes lidOpen { to { transform: translate(-12px,-30px) rotate(-16deg); } }
@keyframes waterPour { 0%,100% { opacity: .4; transform: rotate(12deg) scaleY(.78); } 50% { opacity: 1; transform: rotate(12deg) scaleY(1); } }
@keyframes steam { 0%,100% { opacity: 0; transform: translateY(16px); } 50% { opacity: 1; transform: translateY(0); } }
@keyframes heartbeat { 0%,100% { transform: scale(.9); } 35% { transform: scale(1.08); } 50% { transform: scale(.96); } 70% { transform: scale(1.05); } }
@-webkit-keyframes stickerSpin {
  from { -webkit-transform: translateZ(0) rotate(0deg); transform: translateZ(0) rotate(0deg); }
  to { -webkit-transform: translateZ(0) rotate(360deg); transform: translateZ(0) rotate(360deg); }
}
@keyframes stickerSpin {
  from { -webkit-transform: translateZ(0) rotate(0deg); transform: translateZ(0) rotate(0deg); }
  to { -webkit-transform: translateZ(0) rotate(360deg); transform: translateZ(0) rotate(360deg); }
}
.spin-slow {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  animation: stickerSpin 12s linear infinite;
  -webkit-animation: stickerSpin 12s linear infinite;
  animation-play-state: running;
  -webkit-animation-play-state: running;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.marquee-raf .marquee-track,
.sticker-api .spin-slow {
  animation: none;
  -webkit-animation: none;
}

.marquee-raf .marquee-track {
  animation: none !important;
  -webkit-animation: none !important;
}

@media (max-width: 1080px) {
  .site-nav { grid-template-columns: 170px 1fr auto; }
  .site-nav nav { gap: 20px; }
  .taste-grid, .proof-grid { grid-template-columns: 1fr; }
  .taste-visual { max-width: 820px; }
  .meal-hack-heading, .flavour-heading { grid-template-columns: 1fr; }
  .meal-hack-stage { grid-template-columns: 1fr; }
  .meal-hack-visual { min-height: 520px; }
  .flavour-card { grid-template-columns: 1fr; }
  .flavour-image { min-height: 340px; aspect-ratio: 4/3; }
  .flavour-card h3 { margin: 44px 0 18px; }
  .occasions-grid { grid-template-columns: 1fr; }
  .occasions-sticky { position: static; }
  .step-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .final-buy { grid-template-columns: 1fr; }
  .final-photo { min-height: 540px; }
}

@media (max-width: 760px) {
  .site-nav {
    top: max(10px, env(safe-area-inset-top));
    left: 10px;
    right: 10px;
    width: auto;
    min-height: 60px;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 8px;
    padding: 8px 9px 8px 15px;
    transform: none;
  }
  .site-nav.nav-hidden { transform: translateY(calc(-145% - env(safe-area-inset-top))); }
  .site-nav nav { display: none; }
  .nav-logo { width: clamp(82px,27vw,108px); }
  .pill-small { min-height: 42px; padding: 9px 13px; font-size: clamp(.55rem,2.5vw,.65rem); gap: 8px; }
  .hero-showstopper { min-height: max(100svh, 790px); }
  .hero-content { width: calc(100% - 32px); padding: 132px 0 150px; }
  .hero-content h1 { font-size: clamp(3.15rem,16.5vw,5.4rem); line-height: .89; }
  .eyebrow { width: fit-content; max-width: 100%; padding: 8px 10px; font-size: clamp(.57rem,2.7vw,.7rem); letter-spacing: .11em; }
  .hero-shade { background: linear-gradient(0deg,rgba(12,10,7,.94) 0%,rgba(12,10,7,.42) 75%), linear-gradient(90deg,rgba(12,10,7,.62),rgba(12,10,7,.08)); }
  .hero-photo img { object-position: 56% 42%; }
  .hero-proposition { grid-template-columns: 1fr; }
  .hero-proposition p { padding: 11px 0; }
  .hero-proposition p + p { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.3); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 24px; }
  .hero-sticker { right: 18px; bottom: 28px; width: 92px; }
  .hero-sticker b { font-size: 2rem; }
  .hero-sticker span { font-size: .46rem; }
  .scroll-cue { display: none; }
  .section-shell { width: calc(100% - 28px); }
  .section-pad { padding: 76px 0; }
  .taste-grid { gap: 54px; }
  .taste-copy h2, .flavour-heading h2, .occasions-sticky h2, .steps-heading h2, .proof-title h2 { font-size: clamp(2.8rem,13vw,4.3rem); }
  .taste-burst { right: -4px; top: -32px; width: 88px; }
  .meal-hack-heading { margin-bottom: 42px; }
  .meal-hack-heading h2 { font-size: clamp(2.8rem,12vw,4.3rem); }
  .meal-hack-visual { min-height: 390px; }
  .water-note { width: 112px; font-size: .58rem; }
  .meal-statement { font-size: clamp(2.2rem,10vw,3.4rem); }
  .flavour-grid { grid-template-columns: 1fr; }
  .flavour-card { min-height: 0; }
  .flavour-image { min-height: 0; aspect-ratio: 4/3; }
  .flavour-card h3 { font-size: 2.6rem; }
  .flavour-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
  .flavour-footer span { max-width: none; }
  .occasions-section { padding: 80px 0; }
  .occasion-card { min-height: 270px; padding: 26px 22px; }
  .steps-heading { align-items: flex-start; flex-direction: column; margin-bottom: 44px; }
  .steps-heading h2 { text-align: left; }
  .motion-step { min-height: 370px; }
  .proof-cards { grid-template-columns: 1fr; }
  .proof-wide { grid-column: auto; }
  .proof-note { width: calc(100% - 28px); }
  .final-photo { min-height: 400px; }
  .final-content { padding: 64px 20px; }
  .final-content h2 { font-size: clamp(3.1rem,15.5vw,5.4rem); }
  .final-content .pill-button { width: 100%; }
  .site-footer { width: 100%; padding: 0 20px calc(20px + env(safe-area-inset-bottom)); }
  .footer-main { grid-template-columns: 1fr; gap: 14px; padding: 28px 0 22px; }
  .footer-main > span { text-align: left; }
  .footer-legal { justify-content: flex-start; align-items: flex-start; flex-direction: column; gap: 13px; padding: 20px 0 4px; }
}

@media (max-width: 390px) {
  .site-nav { left: 8px; right: 8px; padding-left: 12px; }
  .nav-logo { width: 82px; }
  .pill-small { padding-inline: 11px; }
  .hero-content { width: calc(100% - 24px); }
  .section-shell,
  .proof-note { width: calc(100% - 24px); }
  .hero-content h1 { font-size: clamp(3rem,16vw,4rem); }
  .hero-proposition p { font-size: .7rem; }
  .hero-sticker { right: 12px; width: 84px; }
  .taste-copy h2,
  .flavour-heading h2,
  .occasions-sticky h2,
  .steps-heading h2,
  .proof-title h2 { font-size: clamp(2.45rem,12.5vw,3.5rem); }
  .flavour-body { padding: 28px 22px 24px; }
  .motion-step { min-height: 340px; padding: 24px 20px; }
}

@media (max-height: 720px) and (max-width: 760px) {
  .hero-showstopper { min-height: 790px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .motion-ready .reveal,
  .motion-ready .kinetic .word,
  .motion-ready .image-pop.reveal { opacity: 1; transform: none; }
}
