:root {
  --bg: #f7f0e5;
  --bg-soft: #efe6d9;
  --paper: #fffaf3;
  --text: #3a2535;
  --muted: #786f75;
  --plum: #4a073a;
  --pink: #dc5daf;
  --green: #3f7259;
  --line: rgba(74, 7, 58, 0.11);
  --progress: 0;
  --ingredient-progress: 0.1429;
  --progress-opacity: 0.72;
  --labels: 0;
  --scene-scale: 1;
  --scene-y: 0px;
  --scene-x: 0px;
  --glow-scale: 0.78;
  --fill-opacity: 1;
  --cup-opacity: 0;
  --ingredient-opacity: 0;
  --transition-opacity: 0;
  --story-opacity: 1;
  --scene-size: min(46vw, 630px);
  --stage-gutter: clamp(28px, 4vw, 64px);
  --label-counter-scale: 1;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}
button.brand,
.site-nav button,
.site-footer__nav button,
.button,
.text-link {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 229, 0.79);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.brand,
.site-nav {
  display: flex;
  align-items: center;
}
.brand {
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.site-header .brand {
  gap: 0;
}
.site-nav {
  gap: 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav button {
  transition: color 0.3s ease;
}
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--plum);
}
.nav-order {
  padding: 12px 20px;
  border-radius: 99px !important;
  color: #fff !important;
  background: var(--plum);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-order:hover,
.nav-order:focus-visible {
  background: #651050;
  transform: scale(1.015);
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
}
.experience {
  position: relative;
  height: 430vh;
}
.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: min(680px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}
.stage-inner {
  position: absolute;
  inset: 0;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--stage-gutter);
}
.sticky-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 240, 229, 0.48),
    transparent 44%,
    rgba(255, 255, 255, 0.08)
  );
}
.ambient {
  position: absolute;
  z-index: -2;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
}
.ambient--one {
  top: 8%;
  right: -1%;
  background: radial-gradient(
    circle,
    rgba(254, 167, 236, 0.4),
    rgba(254, 167, 236, 0) 68%
  );
}
.ambient--two {
  bottom: -48%;
  left: -24%;
  background: radial-gradient(
    circle,
    rgba(134, 174, 144, 0.18),
    rgba(134, 174, 144, 0) 67%
  );
}
.story-copy {
  position: absolute;
  top: 50%;
  left: var(--stage-gutter);
  z-index: 4;
  width: min(35vw, 500px);
  transform: translateY(-43%);
  opacity: var(--story-opacity);
}
.story-copy__inner {
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.28s ease;
}
.story-copy.is-changing .story-copy__inner {
  opacity: 0;
  transform: translateY(9px);
  filter: blur(3px);
}
.eyebrow {
  margin: 0 0 21px;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.story-title {
  margin: 0;
  font-size: clamp(62px, 7.6vw, 124px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.84;
}
.story-title:not(.is-ingredient) em {
  display: inline-block;
  margin-top: 0.015em;
  font-size: 0.96em;
  letter-spacing: -0.06em;
}
.story-title em,
.final-cta h2 em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.story-title.is-ingredient {
  min-height: 1.78em;
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: 0.89;
  text-transform: uppercase;
}
.story-kicker {
  margin: 22px 0 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 27px);
  font-style: italic;
}
.lead {
  max-width: 400px;
  margin: 16px 0 0;
  color: rgba(58, 37, 53, 0.62);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.68;
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}
.facts span {
  padding: 7px 10px;
  border: 1px solid rgba(74, 7, 58, 0.075);
  border-radius: 99px;
  color: rgba(58, 37, 53, 0.58);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.facts[hidden] {
  visibility: hidden;
}
.story-dots {
  display: flex;
  gap: 7px;
  margin-top: 32px;
}
.story-dots button {
  width: 22px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(74, 7, 58, 0.14);
  transition:
    width 0.25s,
    background 0.25s;
}
.story-dots button.is-active {
  width: 42px;
  background: var(--pink);
}
.visual {
  position: absolute;
  top: 51%;
  left: 71.5%;
  z-index: 3;
  width: var(--scene-size);
  aspect-ratio: 1;
  transform: translate(calc(-50% + var(--scene-x)), calc(-50% + var(--scene-y)))
    scale(var(--scene-scale));
  transform-origin: center;
  will-change: transform;
}
.bowl-glow {
  position: absolute;
  inset: -38%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(254, 167, 236, 0.25),
    rgba(240, 183, 216, 0.09) 40%,
    transparent 68%
  );
  filter: blur(34px);
  transform: scale(var(--glow-scale));
}
.layers {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.layer {
  --base-y: 0px;
  --layer-y: 0px;
  --layer-scale: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + var(--base-y) + var(--layer-y)), 0)
    scale(var(--layer-scale));
  transform-origin: center;
  will-change: transform, opacity;
  transition:
    filter 0.35s ease,
    opacity 0.25s ease;
  filter: drop-shadow(0 18px 20px rgba(74, 7, 58, 0.12));
}
.layer.is-active {
  filter: drop-shadow(0 15px 25px rgba(220, 93, 175, 0.24)) brightness(1.03);
}
.layer[data-story] {
  opacity: calc(var(--ingredient-opacity) * 0.82);
  filter: drop-shadow(0 18px 20px rgba(74, 7, 58, 0.1)) saturate(0.9)
    contrast(0.98);
}
.layer[data-story].is-active {
  opacity: var(--ingredient-opacity);
  filter: drop-shadow(0 16px 24px rgba(220, 93, 175, 0.22)) saturate(1.03)
    contrast(1.02) brightness(1.02);
}
.layer--fill {
  --base-y: 8px;
  z-index: 20;
  width: 96%;
  opacity: var(--fill-opacity);
}
.layer--cup {
  --base-y: 108px;
  z-index: 9;
  width: 108%;
  opacity: var(--cup-opacity);
}
.layer--base {
  --base-y: 29px;
  z-index: 1;
  opacity: var(--ingredient-opacity);
}
.layer--granola {
  --base-y: 8px;
  z-index: 2;
  width: 96%;
  opacity: var(--ingredient-opacity);
}
.layer--cream {
  --base-y: -17px;
  z-index: 3;
  opacity: var(--ingredient-opacity);
}
.layer--banana {
  --base-y: -5px;
  z-index: 10;
  opacity: var(--ingredient-opacity);
}
.layer--peanut {
  --base-y: -29px;
  z-index: 11;
  opacity: var(--ingredient-opacity);
}
.layer--berries {
  --base-y: -41px;
  z-index: 12;
  opacity: var(--ingredient-opacity);
}
.layer--coconut {
  --base-y: -53px;
  z-index: 13;
  opacity: var(--ingredient-opacity);
}
.labels {
  position: absolute;
  inset: -38% -10%;
  z-index: 10;
  pointer-events: none;
}
.label {
  --label-y: 0px;
  position: absolute;
  top: 50%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  width: 184px;
  min-height: 54px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.68);
  box-shadow: 0 10px 30px rgba(74, 7, 58, 0.065);
  backdrop-filter: blur(15px) saturate(120%);
  -webkit-backdrop-filter: blur(15px) saturate(120%);
  opacity: calc(var(--labels) * 0.7);
  transform: translateY(calc(-50% + var(--label-y))) scale(0.985);
  transition:
    opacity 0.36s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s ease,
    background-color 0.36s ease,
    box-shadow 0.36s ease;
}
.label.is-active {
  opacity: var(--labels);
  transform: translateY(calc(-50% + var(--label-y))) scale(1.01);
  border-color: rgba(220, 93, 175, 0.3);
  background: rgba(255, 252, 247, 0.88);
  box-shadow:
    inset 2px 0 0 rgba(220, 93, 175, 0.58),
    0 12px 32px rgba(74, 7, 58, 0.085);
}
.label--left {
  left: 0;
}
.label--right {
  right: 0;
}
.label__number {
  color: var(--pink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.label strong,
.label small {
  display: block;
}
.label strong {
  color: rgba(58, 37, 53, 0.82);
  font-size: 11px;
  font-weight: 500;
}
.label small {
  margin-top: 3px;
  color: rgba(58, 37, 53, 0.56);
  font-size: 8px;
}
.label.is-active strong {
  color: var(--text);
}
.label:nth-child(1) {
  --label-y: 170px;
}
.label:nth-child(2) {
  --label-y: 62px;
}
.label:nth-child(3) {
  --label-y: -49px;
}
.label:nth-child(4) {
  --label-y: -160px;
}
.label:nth-child(5) {
  --label-y: -270px;
}
.label:nth-child(6) {
  --label-y: -380px;
}
.label:nth-child(7) {
  --label-y: -490px;
}
.scroll-status,
.progress {
  position: absolute;
  z-index: 12;
  color: rgba(58, 37, 53, 0.48);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-status {
  bottom: 34px;
  left: var(--stage-gutter);
  display: flex;
  align-items: center;
  gap: 13px;
}
.scroll-status__line {
  position: relative;
  display: block;
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(74, 7, 58, 0.08);
}
.scroll-status__line i {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(63, 114, 89, 0.58);
  transform: scaleX(var(--progress));
  transform-origin: left;
}
.progress {
  right: var(--stage-gutter);
  bottom: 42px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-items: center;
  gap: 12px;
  letter-spacing: 0.08em;
  opacity: var(--progress-opacity);
}
.progress__count {
  display: flex;
  gap: 4px;
  white-space: nowrap;
}
.progress__rail {
  position: relative;
  width: 1px;
  height: 78px;
  overflow: hidden;
  background: rgba(74, 7, 58, 0.08);
}
.progress__rail i {
  position: absolute;
  inset: 0;
  background: rgba(74, 7, 58, 0.68);
  transform: scaleY(var(--ingredient-progress));
  transform-origin: top;
}
.transition-note {
  position: absolute;
  left: 50%;
  bottom: 7vh;
  margin: 0;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  opacity: var(--transition-opacity);
  transform: translateX(-50%);
}
.section {
  padding: clamp(105px, 12vw, 180px) clamp(24px, 7vw, 120px);
}
.signature {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--bg);
}
.section-heading {
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}
.section-script {
  margin: 18px 0 clamp(54px, 6vw, 86px);
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-style: italic;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.7vw, 44px);
  width: min(100%, 1540px);
  margin-inline: auto;
}
.product-card {
  scroll-snap-align: start;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card__visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 30px);
  transition:
    background-color 0.7s ease,
    filter 0.7s ease;
}
.product-card__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    transparent 48%
  );
  opacity: 0;
  transition: opacity 0.65s ease;
}
.product-card__visual--berry {
  background: #edd2df;
}
.product-card__visual--peanut {
  background: #dbe0ca;
}
.product-card__visual--tropical {
  background: #f1d8ad;
}
.product-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  filter: drop-shadow(0 28px 24px rgba(74, 7, 58, 0.17));
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card__visual img.product-card__image--full {
  padding: 0;
  object-fit: cover;
  filter: none;
}
.product-no {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.product-card__copy {
  padding: 25px 4px 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card__copy h3 {
  margin: 0 0 9px;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.product-card__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.product-card__copy > span {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card__copy > span {
  opacity: 1;
  transform: none;
}
.bloom-philosophy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  column-gap: clamp(40px, 4vw, 70px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(96px, 9vw, 140px) clamp(24px, 7vw, 120px);
  overflow: clip;
  isolation: isolate;
  background: var(--plum);
  color: #fff;
}
.philosophy__glow {
  position: absolute;
  top: 10%;
  left: -24%;
  z-index: -1;
  width: min(76vw, 1040px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(220, 93, 175, 0.34),
    rgba(220, 93, 175, 0.08) 44%,
    transparent 68%
  );
  filter: blur(28px);
}
.philosophy__media {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-self: end;
  height: auto;
  margin: 0;
}
.philosophy__media:after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 12%;
  left: -4%;
  z-index: -1;
  height: 10%;
  border-radius: 50%;
  background: rgba(17, 0, 13, 0.3);
  filter: blur(24px);
}
.philosophy__media img {
  display: block;
  width: min(54vw, 760px);
  max-width: none;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 34px 35px rgba(22, 0, 17, 0.26));
}
.philosophy__chapters {
  position: relative;
}
.philosophy__chapter {
  position: relative;
}
.philosophy__chapter.is-current {
  opacity: 1;
}
.philosophy__chapter h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(58px, 6.5vw, 104px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.86;
}
.philosophy__chapter h2 em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.philosophy__media.reveal {
  transform: translateY(24px);
  transition-duration: 1s;
}
.philosophy__media.reveal.is-visible {
  transform: none;
}
.brand-marquee {
  position: relative;
  display: flex;
  align-items: center;
  height: clamp(70px, 6vw, 90px);
  overflow: clip;
  background: var(--pink);
  color: #fff7ef;
}
.brand-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: bloom-marquee 30s linear infinite;
  will-change: transform;
}
.brand-marquee__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(26px, 3vw, 54px);
  padding-right: clamp(26px, 3vw, 54px);
}
@keyframes bloom-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.brand-marquee__track span {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
}
.brand-marquee__track i {
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: clamp(16px, 1.6vw, 24px);
  font-style: normal;
  opacity: 0.56;
}
.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  column-gap: clamp(32px, 3.5vw, 50px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(105px, 10vw, 150px) clamp(24px, 7vw, 120px);
  overflow: clip;
  background: #d9e2cf;
}
.final-cta__glow {
  position: absolute;
  bottom: -52%;
  left: -20%;
  width: min(82vw, 1180px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(254, 167, 236, 0.42),
    rgba(254, 167, 236, 0.09) 44%,
    transparent 69%
  );
  filter: blur(26px);
}
.final-cta__bowl {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: end;
  width: min(57vw, 820px);
  max-width: none;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 35px 36px rgba(74, 7, 58, 0.18));
}
.final-cta__bowl.reveal {
  transform: translateY(46px) scale(0.965);
  transition-duration: 1.05s;
}
.final-cta__bowl.reveal.is-visible {
  transform: none;
}
.final-cta__copy {
  position: relative;
  z-index: 2;
  margin-left: 0;
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(70px, 8.8vw, 148px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.8;
}
.final-cta h2 > span {
  display: block;
  opacity: 0;
  transform: translateY(0.62em);
  transition:
    opacity 0.65s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.final-cta h2 > span:nth-child(2) {
  transition-delay: 0.12s;
}
.final-cta__copy.is-visible h2 > span {
  opacity: 1;
  transform: none;
}
.final-cta h2 em {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s ease 0.32s,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.32s;
}
.final-cta__copy.is-visible .cta-actions {
  opacity: 1;
  transform: none;
}
.button {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 99px;
  background: var(--plum);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease;
}
.button:hover {
  transform: scale(1.015);
  background: #651050;
}
.text-link {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.text-link:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.text-link:hover:after,
.text-link:focus-visible:after {
  transform: scaleX(1);
  transform-origin: left;
}
.text-link span {
  margin-left: 7px;
  color: var(--pink);
}
.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(520px, 64svh, 650px);
  padding: clamp(72px, 8vw, 110px) clamp(24px, 7vw, 120px) 34px;
  overflow: clip;
  background: var(--plum);
  color: rgba(255, 255, 255, 0.68);
}
.site-footer p {
  margin: 0;
}
.site-footer__word {
  position: absolute;
  top: -0.06em;
  left: 50%;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(170px, 29vw, 520px);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.85;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
}
.site-footer__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 6vw, 90px);
  width: min(100%, 1000px);
}
.site-footer__brand .brand {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 68px);
  letter-spacing: 0.12em;
}
.site-footer__brand p {
  margin: 12px 0 0;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.8vw, 26px);
  font-style: italic;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer__nav :is(a, button),
.site-footer__legal a,
.site-footer__meta p {
  transition: color 0.3s ease;
}
.site-footer__nav :is(a, button) {
  position: relative;
  width: max-content;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.site-footer__nav :is(a, button):after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer__nav :is(a, button):hover,
.site-footer__nav :is(a, button):focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #fff;
}
.site-footer__nav :is(a, button):hover:after,
.site-footer__nav :is(a, button):focus-visible:after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-footer__brand.reveal {
  transform: translateY(15px);
}
.site-footer__nav.reveal {
  transform: translateY(15px);
  transition-delay: 0.12s;
}
.site-footer__brand.reveal.is-visible,
.site-footer__nav.reveal.is-visible {
  transform: none;
}
.site-footer__meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 24px;
  width: 100%;
  margin-top: clamp(56px, 8vh, 82px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-footer__meta > p:last-child {
  justify-self: end;
}
.site-footer__legal {
  display: flex;
  gap: 18px;
  justify-self: center;
}
.site-footer__legal a {
  color: inherit;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1320px) {
  :root {
    --scene-size: min(44vw, 580px);
  }
  .visual {
    left: 69.5%;
  }
  .labels {
    inset-inline: -6%;
  }
  .label {
    width: clamp(154px, 13vw, 176px);
  }
}
@media (max-width: 1100px) {
  :root {
    --scene-size: min(48vw, 500px);
  }
  .story-copy {
    width: 39vw;
  }
  .visual {
    left: 69.5%;
  }
  .labels {
    inset-inline: -3%;
  }
  .label {
    width: clamp(128px, 14vw, 150px);
    transform: translateY(calc(-50% + var(--label-y)))
      scale(var(--label-counter-scale)) scale(0.985);
  }
  .label.is-active {
    transform: translateY(calc(-50% + var(--label-y)))
      scale(var(--label-counter-scale)) scale(1.01);
  }
  .label small {
    display: block;
    font-size: 9px;
  }
  .product-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(42vw, 430px);
    gap: clamp(20px, 3vw, 32px);
    width: auto;
    max-width: none;
    margin-inline: -7vw;
    padding: 0 7vw 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 7vw;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .product-grid::-webkit-scrollbar {
    display: none;
  }
  .product-card__copy > span {
    opacity: 1;
    transform: none;
  }
  .bloom-philosophy {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    column-gap: 36px;
    padding-inline: 5vw;
  }
  .philosophy__media img {
    width: min(55vw, 660px);
  }
  .philosophy__chapter h2 {
    font-size: clamp(48px, 7vw, 76px);
  }
  .final-cta {
    grid-template-columns: minmax(0, 0.95fr) minmax(350px, 1.05fr);
    column-gap: clamp(32px, 3.5vw, 42px);
    padding-inline: 5vw;
  }
  .final-cta__bowl {
    width: min(57vw, 680px);
  }
  .final-cta h2 {
    font-size: clamp(64px, 9.5vw, 104px);
  }
  .site-footer__main {
    grid-template-columns: minmax(360px, 1.1fr) minmax(240px, 0.9fr);
    gap: 44px;
  }
}
@media (max-width: 1024px) {
  .final-cta {
    grid-template-columns: 1fr;
    row-gap: 24px;
    min-height: auto;
    padding: 110px clamp(24px, 6vw, 54px);
  }
  .final-cta__bowl {
    justify-self: start;
    width: min(72vw, 680px);
    margin: 0 auto 12px;
  }
  .final-cta__copy {
    margin-left: 0;
  }
  .final-cta h2 {
    max-width: 760px;
    font-size: clamp(74px, 14vw, 118px);
  }
}
@media (max-width: 900px) {
  .bloom-philosophy {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 100px clamp(24px, 6vw, 54px) 90px;
  }
  .philosophy__media {
    justify-self: center;
  }
  .philosophy__media img {
    width: min(92%, 650px);
    margin-inline: auto;
  }
  .philosophy__chapter {
    padding: 0;
  }
  .philosophy__chapters {
    display: block;
  }
  .philosophy__chapter h2 {
    max-width: 720px;
    font-size: clamp(52px, 10.5vw, 86px);
  }
  .final-cta {
    grid-template-columns: 1fr;
    row-gap: 24px;
    min-height: auto;
    padding: 90px clamp(24px, 6vw, 54px);
  }
  .final-cta__bowl {
    justify-self: center;
    width: min(82%, 620px);
    margin: 0 auto;
  }
  .final-cta__copy {
    margin-left: 0;
  }
  .final-cta h2 {
    max-width: 760px;
    font-size: clamp(74px, 14vw, 118px);
  }
  .site-footer {
    min-height: clamp(500px, 62svh, 620px);
  }
  .site-footer__main {
    grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.9fr);
    gap: 38px;
  }
  .site-footer__nav {
    width: min(100%, 430px);
  }
}
@media (max-width: 767px) {
  :root {
    --scene-size: min(92vw, 420px);
    --stage-gutter: clamp(20px, 6vw, 28px);
  }
  .experience {
    height: 330vh;
  }
  .story-copy {
    top: 12%;
    left: var(--stage-gutter);
    width: calc(100% - 2 * var(--stage-gutter));
    transform: none;
  }
  .story-copy .eyebrow {
    margin-bottom: 13px;
  }
  .story-title {
    font-size: clamp(44px, 15vw, 64px);
  }
  .story-title.is-ingredient {
    min-height: 1.78em;
    font-size: clamp(36px, 12vw, 53px);
  }
  .story-kicker {
    margin-top: 13px;
    font-size: 18px;
  }
  .lead {
    max-width: 310px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.55;
  }
  .facts,
  .facts[hidden] {
    display: none;
  }
  .story-dots {
    display: none;
  }
  .visual {
    top: 61.5%;
    left: 50%;
  }
  .labels {
    display: block;
    inset: 0 -24%;
  }
  .label {
    width: clamp(92px, 27vw, 108px);
    min-height: 40px;
    padding: 6px 8px;
    border-radius: 12px;
    gap: 6px;
    opacity: 0;
    transform: translateY(calc(-50% + var(--label-y)))
      scale(var(--label-counter-scale)) scale(0.985);
  }
  .label.is-active {
    opacity: var(--labels);
    transform: translateY(calc(-50% + var(--label-y)))
      scale(var(--label-counter-scale)) scale(1.01);
  }
  .label:nth-child(1).is-active {
    transform: translate(clamp(32px, 10vw, 44px), calc(-50% + var(--label-y)))
      scale(var(--label-counter-scale)) scale(1.01);
  }
  .label:nth-child(7).is-active {
    transform: translateY(calc(-50% + var(--label-y) + 40px))
      scale(var(--label-counter-scale)) scale(1.01);
  }
  .label strong {
    font-size: 10px;
    line-height: 1.15;
  }
  .label small {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    line-height: 1.15;
  }
  .label__number {
    font-size: 9px;
  }
  .progress {
    right: var(--stage-gutter);
    bottom: 28px;
    flex-direction: row;
    gap: 8px;
  }
  .progress__rail {
    width: clamp(36px, 12vw, 52px);
    height: 1px;
  }
  .progress__rail i {
    transform: scaleX(var(--ingredient-progress));
    transform-origin: left;
  }
  .scroll-status {
    bottom: 28px;
    left: var(--stage-gutter);
  }
  .scroll-status__line {
    width: clamp(36px, 11vw, 52px);
  }
  .transition-note {
    bottom: 9vh;
    max-width: 190px;
    font-size: 15px;
    text-align: center;
  }
}
@media (max-width: 767px) and (max-height: 680px) {
  .story-copy {
    top: 14%;
  }
  .story-title {
    font-size: clamp(42px, 15vw, 52px);
  }
  .story-title.is-ingredient {
    min-height: 1.72em;
    font-size: 36px;
    line-height: 0.86;
  }
  .story-kicker {
    margin-top: 8px;
  }
  .lead {
    margin-top: 6px;
    line-height: 1.4;
  }
  .story-dots {
    margin-top: 10px;
  }
  .visual {
    top: 66%;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 70px;
    min-height: 70px;
    padding-inline: 20px;
  }
  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 5px;
    padding: 10px;
  }
  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text);
  }
  .site-nav {
    position: absolute;
    inset: 0 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 82px 20px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .site-nav {
    display: flex;
  }
  .site-nav button {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .site-nav .nav-order {
    margin-top: 12px;
    text-align: center;
  }
  .section {
    padding: 76px 22px;
  }
  .section-script {
    margin-bottom: 38px;
  }
  .product-grid {
    grid-auto-columns: calc(100vw - 44px);
    gap: 18px;
    margin-inline: -22px;
    padding-inline: 22px;
    scroll-padding-inline: 22px;
  }
  .product-card__visual {
    aspect-ratio: 1.05;
  }
  .product-card__copy > span {
    opacity: 1;
    transform: none;
  }
  .bloom-philosophy {
    gap: 38px;
    padding: 72px 22px 68px;
  }
  .philosophy__media img {
    width: 86%;
  }
  .philosophy__chapter {
    padding: 0;
  }
  .philosophy__chapter h2 {
    font-size: clamp(45px, 14vw, 66px);
  }
  .brand-marquee {
    height: clamp(52px, 14vw, 65px);
    min-height: 0;
  }
  .brand-marquee__track {
    animation-duration: 24s;
  }
  .brand-marquee__group {
    gap: 18px;
    padding-right: 18px;
  }
  .brand-marquee__track span {
    font-size: clamp(24px, 7vw, 30px);
  }
  .final-cta {
    row-gap: 6px;
    padding: 70px 22px 76px;
  }
  .final-cta__bowl {
    width: min(90%, 430px);
    margin: 0 auto -10px;
  }
  .final-cta h2 {
    font-size: clamp(58px, 18vw, 82px);
  }
  .cta-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }
  .site-footer {
    min-height: max(420px, 64svh);
    padding: 58px 22px 26px;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__brand .brand {
    font-size: clamp(28px, 8.4vw, 40px);
  }
  .site-footer__brand p {
    margin-left: 0;
  }
  .site-footer__nav {
    grid-template-columns: repeat(2, max-content);
    gap: 22px 28px;
  }
  .site-footer__nav a:last-child {
    grid-column: 1 / -1;
  }
  .site-footer__meta {
    grid-template-columns: 1fr auto;
    gap: 18px;
    margin-top: 38px;
    padding-top: 17px;
  }
  .site-footer__legal {
    grid-row: 1;
    grid-column: 1 / -1;
    justify-self: start;
  }
  .site-footer__meta > p {
    grid-row: 2;
  }
  .site-footer__word {
    top: 0.1em;
    left: 22px;
    font-size: clamp(96px, 30vw, 132px);
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .experience {
    height: 100vh;
  }
  .sticky-stage {
    position: relative;
  }
  .layer {
    will-change: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .brand-marquee__track {
    animation: none;
    transform: none;
  }
}

.site-nav button:not(.nav-order) {
  position: relative;
}
.site-nav button:not(.nav-order):after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.site-nav button:not(.nav-order):hover:after,
.site-nav button:not(.nav-order):focus-visible:after {
  transform: scaleX(1);
  transform-origin: left;
}
