:root {
  --lemon: #ffd400;
  --lemon-soft: #ffef7a;
  --lemon-pale: #fff8be;
  --lemon-deep: #d89d00;
  --cream: #fff8df;
  --paper: #fffdf0;
  --white: #fffef8;
  --ink: #0b0a06;
  --ink-soft: #2c2418;
  --leaf: #407a3b;
  --mint: #86b86d;
  --honey: #d98713;
  --coral: #f0642d;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --display-font: "Lilita One", "Arial Rounded MT Bold", Arial, sans-serif;
  --body-font: "Barlow Condensed", Arial, sans-serif;
  --stripe-bg: repeating-linear-gradient(
    90deg,
    rgba(255, 212, 0, 0.34) 0 44px,
    rgba(255, 248, 190, 0.62) 44px 88px
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 0 0, rgba(11, 10, 6, 0.08) 0 1px, transparent 1px 8px),
    linear-gradient(180deg, var(--cream), var(--paper));
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}

main {
  overflow: clip;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.62), transparent 14%),
    radial-gradient(circle at 86% 30%, rgba(134, 184, 109, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 253, 240, 0.86), rgba(255, 248, 190, 0.5)),
    var(--stripe-bg),
    var(--cream);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 0.55rem 0.85rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.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: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.65rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 248, 223, 0.96);
  border-bottom: var(--border);
  box-shadow: 0 8px 0 rgba(11, 10, 6, 0.08);
  backdrop-filter: blur(10px);
}

.site-header > * {
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark img {
  width: 56px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(2px 3px 0 var(--ink));
}

.brand-mark span {
  font-family: var(--display-font);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1.5vw, 1rem);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.42rem 0.7rem;
  font-family: var(--display-font);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--honey);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--lemon-deep);
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--lemon);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--lemon);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 82svh, 780px);
  padding: clamp(2.2rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  border-bottom: var(--border);
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.06) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 10, 6, 0.82) 0 28%, rgba(11, 10, 6, 0.45) 46%, rgba(11, 10, 6, 0.06) 74%),
    linear-gradient(180deg, rgba(255, 212, 0, 0.1), rgba(11, 10, 6, 0.2));
}

.hero::after {
  position: absolute;
  inset: 12px;
  z-index: 1;
  content: "";
  pointer-events: none;
  border: 3px solid rgba(255, 212, 0, 0.9);
  box-shadow:
    inset 0 0 0 4px rgba(11, 10, 6, 0.9),
    inset 0 0 0 9px rgba(255, 253, 240, 0.72);
}

.hero-splash {
  position: absolute;
  right: clamp(1.2rem, 7vw, 6.4rem);
  bottom: clamp(0.6rem, 3.8vw, 2.9rem);
  z-index: 0;
  width: clamp(220px, 22vw, 390px);
  height: clamp(300px, 42vw, 560px);
  pointer-events: none;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.3));
}

.hero-splash__cup-stage {
  position: absolute;
  bottom: 9%;
  left: 50%;
  z-index: 4;
  width: 82%;
  transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  transform-origin: 50% 88%;
  will-change: transform;
}

.hero-splash__cup {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: 50% 88%;
  animation: cup-idle-wobble 5.8s ease-in-out infinite;
  will-change: transform;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  color: var(--white);
  text-wrap: balance;
}

.hero .eyebrow {
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
  color: var(--lemon);
  text-shadow: 2px 3px 0 rgba(11, 10, 6, 0.58);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  font-family: var(--display-font);
  color: inherit;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  display: inline-block;
  width: 34px;
  height: 5px;
  content: "";
  background: var(--lemon-deep);
  border: 1px solid var(--ink);
  border-radius: 99px;
}

.hero h1,
.bottle-copy h2,
.section-heading h2,
.organic-copy h2,
.stand-copy h2,
.order-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 400;
  line-height: 0.94;
}

.hero h1 {
  max-width: 760px;
  font-family: "Yellowtail", cursive;
  font-size: clamp(4rem, 8vw, 7.7rem);
  line-height: 0.88;
  text-shadow: 4px 5px 0 rgba(11, 10, 6, 0.38);
}

.hero-line {
  max-width: 640px;
  margin: 1rem 0 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: rgba(255, 254, 248, 0.94);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.1rem;
  font-family: var(--display-font);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--ink);
}

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

.button-dark:hover {
  color: var(--ink);
  background: var(--lemon);
}

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

.button-light:hover {
  background: var(--lemon-soft);
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: 6px solid var(--lemon);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 2rem;
  font-family: var(--display-font);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  width: 12px;
  height: 12px;
  margin-left: 2rem;
  content: "";
  background: var(--lemon);
  border-radius: 50%;
}

.product-reveal {
  position: relative;
  min-height: 340svh;
  color: var(--white);
  background: var(--ink);
  border-bottom: var(--border);
}

.product-reveal__stage {
  --cup-x: 22vw;
  --cup-y: 18vh;
  --cup-scale: 0.38;
  --cup-rotate: -14deg;
  --cup-tilt: 18deg;
  --cup-opacity: 0;
  --cup-blur: 4px;
  --cup-shadow: 0.25;
  --portal-scale: 0.48;
  --portal-opacity: 0.38;
  --ring-opacity: 0;
  --ring-one-scale: 0.68;
  --ring-two-scale: 0.48;
  --ring-three-scale: 0.38;
  --world-scale: 0.95;
  --sun-rotate: -18deg;
  --sun-scale: 0.92;
  --word-opacity: 0.05;
  --word-x: 4vw;
  --bubble-shift: 36px;
  --bubble-opacity: 0;
  --intro-opacity: 1;
  --intro-y: 0px;
  --final-opacity: 0;
  --final-y: 30px;
  --cue-opacity: 1;
  --impact-flash: 0;
  --progress: 0.001;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  background: var(--ink);
}

.product-reveal__stage::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  opacity: var(--impact-flash);
  background: radial-gradient(
    circle at 68% 52%,
    rgba(255, 255, 255, 0.96) 0 4%,
    rgba(255, 239, 122, 0.72) 12%,
    transparent 36%
  );
  will-change: opacity;
}

.product-reveal__stage::after {
  position: absolute;
  inset: 12px;
  z-index: 10;
  content: "";
  pointer-events: none;
  border: 3px solid rgba(255, 212, 0, 0.94);
  box-shadow:
    inset 0 0 0 4px rgba(11, 10, 6, 0.92),
    inset 0 0 0 9px rgba(255, 253, 240, 0.5);
}

.product-reveal__backdrop {
  position: absolute;
  inset: -6%;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 52%, rgba(255, 253, 240, 0.58), transparent 20%),
    linear-gradient(104deg, #080806 0 34%, #2a210d 46%, #ad7900 67%, #ffd400 100%);
  transform: scale(var(--world-scale));
  transform-origin: 68% 52%;
  will-change: transform;
}

.product-reveal__backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 0, 0.18) 0 1px, transparent 2px 22px),
    radial-gradient(circle at 78% 50%, transparent 0 32%, rgba(11, 10, 6, 0.14) 58%, rgba(11, 10, 6, 0.58) 100%),
    repeating-linear-gradient(116deg, transparent 0 48px, rgba(255, 255, 255, 0.035) 48px 50px);
  background-size: 42px 42px, auto, auto;
}

.product-reveal__sun {
  position: absolute;
  top: 50%;
  left: 68%;
  width: min(78vw, 940px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.7;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 248, 190, 0.52) 0 7deg,
    rgba(255, 212, 0, 0.08) 7deg 18deg
  );
  -webkit-mask: radial-gradient(circle, transparent 0 28%, #000 29% 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 0 28%, #000 29% 70%, transparent 71%);
  transform: translate(-50%, -50%) rotate(var(--sun-rotate)) scale(var(--sun-scale));
  will-change: transform;
}

.product-reveal__portal {
  position: absolute;
  top: 52%;
  left: 68%;
  width: min(49vw, 650px);
  aspect-ratio: 1;
  opacity: var(--portal-opacity);
  background: radial-gradient(
    circle,
    rgba(255, 253, 240, 0.98) 0 31%,
    rgba(255, 239, 122, 0.96) 32% 47%,
    rgba(11, 10, 6, 0.96) 48% 53%,
    rgba(255, 212, 0, 0.18) 54% 61%,
    transparent 62%
  );
  border-radius: 50%;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.34));
  transform: translate(-50%, -50%) scale(var(--portal-scale));
  will-change: transform, opacity;
}

.product-reveal__ring {
  position: absolute;
  inset: 8%;
  border: 3px solid rgba(255, 253, 240, 0.74);
  border-radius: 50%;
  opacity: var(--ring-opacity);
  will-change: transform, opacity;
}

.product-reveal__ring--one {
  transform: scale(var(--ring-one-scale));
}

.product-reveal__ring--two {
  inset: 0;
  border-color: rgba(255, 212, 0, 0.66);
  border-width: 2px;
  transform: scale(var(--ring-two-scale));
}

.product-reveal__ring--three {
  inset: -10%;
  border-color: rgba(255, 253, 240, 0.32);
  border-width: 1px;
  transform: scale(var(--ring-three-scale));
}

.product-reveal__word {
  position: absolute;
  right: -0.03em;
  bottom: -0.22em;
  color: transparent;
  font-family: var(--display-font);
  font-size: clamp(10rem, 26vw, 27rem);
  line-height: 0.8;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: var(--word-opacity);
  -webkit-text-stroke: 3px rgba(255, 253, 240, 0.9);
  transform: translateX(var(--word-x));
  will-change: transform, opacity;
}

.product-reveal__bubbles span {
  position: absolute;
  width: clamp(18px, 2.5vw, 38px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 253, 240, 0.62);
  border-radius: 50%;
  opacity: var(--bubble-opacity);
  background: rgba(255, 248, 190, 0.12);
  box-shadow: inset -5px -6px 0 rgba(255, 212, 0, 0.14);
  transform: translateY(var(--bubble-shift));
  will-change: transform, opacity;
}

.product-reveal__bubbles span:nth-child(1) {
  top: 18%;
  left: 59%;
}

.product-reveal__bubbles span:nth-child(2) {
  top: 28%;
  right: 8%;
  width: clamp(12px, 1.6vw, 24px);
}

.product-reveal__bubbles span:nth-child(3) {
  right: 15%;
  bottom: 20%;
  width: clamp(24px, 3.2vw, 48px);
}

.product-reveal__bubbles span:nth-child(4) {
  bottom: 13%;
  left: 51%;
  width: clamp(10px, 1.2vw, 18px);
}

.product-reveal__product {
  position: absolute;
  top: 52%;
  left: 68%;
  z-index: 5;
  width: min(28vw, 350px);
  margin: 0;
  opacity: var(--cup-opacity);
  filter:
    blur(var(--cup-blur))
    drop-shadow(0 30px 26px rgba(0, 0, 0, 0.38));
  transform:
    translate(-50%, -50%)
    translate3d(var(--cup-x), var(--cup-y), 0)
    rotateY(var(--cup-tilt))
    rotateZ(var(--cup-rotate))
    scale(var(--cup-scale));
  transform-origin: 50% 88%;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.product-reveal__product::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  left: 8%;
  z-index: -1;
  height: 7%;
  content: "";
  opacity: var(--cup-shadow);
  background: rgba(0, 0, 0, 0.76);
  border-radius: 50%;
  filter: blur(12px);
  transform: translateY(65%) scaleX(0.8);
}

.product-reveal__product img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-reveal__copy {
  position: absolute;
  top: 50%;
  left: clamp(2rem, 6vw, 6.25rem);
  z-index: 7;
  width: min(39vw, 520px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
  will-change: transform, opacity;
}

.product-reveal__copy[aria-hidden="true"] {
  pointer-events: none;
}

.product-reveal__copy .eyebrow {
  color: var(--lemon);
}

.product-reveal__copy h2,
.product-reveal__copy h3 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.5rem, 6.1vw, 6.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.product-reveal__copy > p:not(.eyebrow) {
  max-width: 35ch;
  margin: 1.2rem 0 0;
  color: rgba(255, 254, 248, 0.9);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 700;
  line-height: 1.28;
}

.product-reveal__copy .button {
  margin-top: 1.6rem;
  text-shadow: none;
}

.product-reveal__copy--intro {
  opacity: var(--intro-opacity);
  transform: translateY(calc(-50% + var(--intro-y)));
}

.product-reveal__copy--final {
  opacity: var(--final-opacity);
  transform: translateY(calc(-50% + var(--final-y)));
}

.product-reveal__scroll-cue {
  position: absolute;
  bottom: clamp(1.8rem, 4vw, 3.5rem);
  left: clamp(2rem, 6vw, 6.25rem);
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  opacity: var(--cue-opacity);
  color: rgba(255, 253, 240, 0.74);
  font-family: var(--display-font);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  will-change: opacity;
}

.product-reveal__scroll-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--lemon);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.product-reveal__progress {
  position: absolute;
  top: 50%;
  right: clamp(1.3rem, 3vw, 2.5rem);
  z-index: 7;
  width: 4px;
  height: clamp(120px, 18vh, 180px);
  overflow: hidden;
  background: rgba(255, 253, 240, 0.24);
  border-radius: 999px;
  transform: translateY(-50%);
}

.product-reveal__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lemon);
  border-radius: inherit;
  transform: scaleY(var(--progress));
  transform-origin: top;
  will-change: transform;
}

.bottle-section,
.flavour-section,
.organic-section,
.stand-section,
.order-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

#cup-reveal,
#bottle,
#flavours,
#organic,
#order {
  scroll-margin-top: 92px;
}

.bottle-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 253, 240, 0.86), rgba(255, 239, 122, 0.48)),
    var(--stripe-bg);
  border-bottom: var(--border);
}

.bottle-copy,
.organic-copy,
.stand-copy,
.order-copy {
  max-width: 760px;
}

.bottle-copy h2,
.section-heading h2,
.organic-copy h2,
.stand-copy h2,
.order-copy h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.bottle-copy p:not(.eyebrow),
.organic-copy p,
.stand-copy p,
.order-copy p {
  margin: 1.1rem 0 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.bottle-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0;
}

.bottle-facts div {
  min-height: 158px;
  padding: 1rem;
  background: rgba(255, 254, 248, 0.92);
  border: var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bottle-facts dt {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
}

.bottle-facts dd {
  margin: 0.6rem 0 0;
  font-family: var(--display-font);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
  text-wrap: balance;
}

.flavour-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.7), transparent 16%),
    radial-gradient(circle at 82% 80%, rgba(240, 100, 45, 0.14), transparent 18%),
    var(--paper);
  border-bottom: var(--border);
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.flavour-card {
  position: relative;
  min-height: 310px;
  padding: 1.35rem;
  overflow: clip;
  background: var(--white);
  border: var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flavour-card::after {
  position: absolute;
  right: -50px;
  bottom: -54px;
  width: 156px;
  height: 126px;
  content: "";
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 230, 0.82) 0 14%, transparent 15%),
    radial-gradient(circle at 63% 66%, rgba(194, 132, 0, 0.14) 0 2px, transparent 3px),
    var(--lemon);
  border: 3px solid var(--ink);
  border-radius: 58% 42% 57% 43% / 47% 58% 42% 53%;
  box-shadow: inset -10px -12px 0 rgba(184, 132, 0, 0.18);
  transform: rotate(-18deg);
}

.flavour-card--mint::after {
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 230, 0.76) 0 14%, transparent 15%),
    radial-gradient(circle at 63% 66%, rgba(47, 107, 58, 0.18) 0 2px, transparent 3px),
    var(--mint);
}

.flavour-card--lime::after {
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 230, 0.76) 0 14%, transparent 15%),
    radial-gradient(circle at 63% 66%, rgba(171, 95, 0, 0.18) 0 2px, transparent 3px),
    var(--coral);
}

.flavour-number {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  place-items: center;
  font-family: var(--display-font);
  color: var(--ink);
  background: var(--lemon);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
}

.flavour-card h3,
.serve-section h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.flavour-card p,
.serve-section p {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.organic-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.2), rgba(255, 253, 240, 0.88)),
    var(--stripe-bg);
  border-bottom: var(--border);
}

.organic-board {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 420px;
  padding: clamp(1.2rem, 4vw, 2rem);
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 212, 0, 0.28) 0 18%, transparent 19%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 212, 0, 0.24) 0 32px,
      rgba(255, 254, 248, 0.74) 32px 64px
    ),
    var(--paper);
  border: var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
  transform-origin: 50% 58%;
  animation: organic-board-wobble 6.8s ease-in-out infinite;
  will-change: transform;
}

.organic-board img {
  width: clamp(130px, 18vw, 190px);
  filter: drop-shadow(5px 7px 0 rgba(11, 10, 6, 0.2));
}

.organic-stamp {
  max-width: 360px;
  margin: 1rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.ingredient-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.ingredient-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 800;
}

.ingredient-list span {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  background:
    radial-gradient(circle at 34% 27%, rgba(255, 255, 226, 0.9) 0 18%, transparent 19%),
    var(--lemon);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 2px 0 var(--ink);
}

.serve-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 5vw, 4rem);
  background: var(--ink);
  border-bottom: 6px solid var(--lemon);
}

.serve-section article {
  min-height: 218px;
  padding: 1.35rem;
  color: var(--white);
  background: linear-gradient(145deg, rgba(38, 32, 22, 0.98), rgba(11, 10, 6, 0.98));
  border: 2px solid rgba(255, 212, 0, 0.78);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(255, 212, 0, 0.55);
}

.serve-section article:nth-child(2) {
  color: var(--ink);
  background: var(--lemon);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--white);
}

.serve-section article:nth-child(3) {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--mint);
}

.serve-section span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  place-items: center;
  font-family: var(--display-font);
  color: var(--ink);
  background: var(--lemon);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.serve-section article:nth-child(2) span,
.serve-section article:nth-child(3) span {
  background: var(--white);
}

.stand-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 253, 240, 0.86), rgba(255, 248, 190, 0.52)),
    var(--stripe-bg);
  border-bottom: var(--border);
}

.stand-shot {
  overflow: hidden;
  border: var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transform-origin: 50% 56%;
  animation: stand-shot-wobble 7.4s ease-in-out infinite;
  will-change: transform;
}

.stand-shot img {
  width: 100%;
  height: clamp(340px, 42vw, 540px);
  object-fit: cover;
  object-position: center 24%;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.64), transparent 16%),
    linear-gradient(135deg, rgba(255, 212, 0, 0.28), rgba(255, 253, 240, 0.9)),
    var(--paper);
}

.order-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border: var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.order-form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--display-font);
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
}

.order-form textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  padding: 2.6rem 1rem;
  text-align: center;
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: 74px;
  filter: drop-shadow(3px 4px 0 rgba(255, 209, 26, 0.9));
}

.site-footer p {
  margin: 0.3rem 0 0;
  font-family: var(--display-font);
  font-size: 1.6rem;
  color: var(--lemon);
  text-transform: uppercase;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  margin: 0.65rem 0 0.8rem;
  padding: 0.4rem 0.85rem 0.4rem 0.42rem;
  font-family: var(--display-font);
  font-size: 1.05rem;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 253, 243, 0.45);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--lemon-deep);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.instagram-link__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 108%, #fdf497 0 8%, #fd5949 36%, #d6249f 62%, #285aeb 92%);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.instagram-link__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-link__icon .instagram-link__dot {
  fill: currentColor;
  stroke: none;
}

.instagram-link:hover {
  color: var(--ink);
  background: var(--lemon);
  border-color: var(--lemon);
  box-shadow: 5px 5px 0 var(--lemon-deep);
  transform: translate(-1px, -1px);
}

.instagram-link:active {
  box-shadow: 2px 2px 0 var(--lemon-deep);
  transform: translate(2px, 2px);
}

.instagram-link:focus-visible {
  outline: 3px solid var(--lemon);
  outline-offset: 4px;
}

.site-footer small {
  color: rgba(255, 253, 243, 0.78);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@keyframes cup-idle-wobble {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  28% {
    transform: translate3d(0, -5px, 0) rotate(0.9deg);
  }

  62% {
    transform: translate3d(0, 3px, 0) rotate(-0.75deg);
  }
}

@keyframes organic-board-wobble {
  0%,
  100% {
    transform: translateY(0) rotate(-1.4deg);
  }

  28% {
    transform: translateY(-4px) rotate(-0.45deg);
  }

  54% {
    transform: translateY(2px) rotate(-2.15deg);
  }

  78% {
    transform: translateY(-2px) rotate(-0.95deg);
  }
}

@keyframes organic-board-wobble-flat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  32% {
    transform: translateY(-3px) rotate(0.55deg);
  }

  64% {
    transform: translateY(1px) rotate(-0.55deg);
  }
}

@keyframes stand-shot-wobble {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  26% {
    transform: translateY(-3px) rotate(1.75deg);
  }

  52% {
    transform: translateY(2px) rotate(0.35deg);
  }

  78% {
    transform: translateY(-1px) rotate(1.35deg);
  }
}

@keyframes stand-shot-wobble-flat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  34% {
    transform: translateY(-2px) rotate(0.45deg);
  }

  68% {
    transform: translateY(1px) rotate(-0.45deg);
  }
}

@media (min-width: 761px) {
  .order-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-form__full,
  .order-form button,
  .hidden-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1080px) {
  .flavour-grid,
  .serve-section,
  .bottle-facts {
    grid-template-columns: 1fr;
  }

  .bottle-facts {
    max-width: 560px;
  }
}

@media (max-width: 960px) {
  .bottle-section,
  .organic-section,
  .stand-section,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(620px, 78svh, 760px);
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-splash {
    top: 5rem;
    right: -0.35rem;
    bottom: auto;
    width: clamp(165px, 34vw, 260px);
    height: clamp(260px, 52vw, 430px);
    opacity: 0.82;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 10, 6, 0.82), rgba(11, 10, 6, 0.28)),
      linear-gradient(180deg, rgba(11, 10, 6, 0.1), rgba(11, 10, 6, 0.44));
  }

  .product-reveal {
    min-height: 320svh;
  }

  .product-reveal__copy {
    left: clamp(1.4rem, 4vw, 3rem);
    width: min(44vw, 430px);
  }

  .product-reveal__product,
  .product-reveal__portal,
  .product-reveal__sun {
    left: 66%;
  }

  .product-reveal__product {
    width: min(32vw, 320px);
  }

  .product-reveal__portal {
    width: min(60vw, 620px);
  }

  .product-reveal__scroll-cue {
    left: clamp(1.4rem, 4vw, 3rem);
  }

  .organic-board,
  .stand-shot {
    transform: none;
  }

  .organic-board {
    animation-name: organic-board-wobble-flat;
  }

  .stand-shot {
    animation-name: stand-shot-wobble-flat;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .brand-mark img {
    width: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 3px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    background: var(--cream);
    border: var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 74svh;
    padding: 1.5rem 0.9rem 1.5rem;
  }

  .hero-image {
    object-position: 73% center;
  }

  .hero-splash {
    top: 4.8rem;
    right: -2.5rem;
    width: min(58vw, 230px);
    height: min(52svh, 390px);
    opacity: 0.58;
  }

  .hero-copy {
    align-self: end;
    max-width: min(100%, 342px);
  }

  .hero h1 {
    font-size: clamp(2.9rem, 12.2vw, 3.7rem);
    line-height: 0.94;
  }

  .hero-line {
    max-width: 340px;
    font-size: 1.2rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-reveal {
    min-height: 300svh;
  }

  .product-reveal__stage {
    min-height: 620px;
  }

  .product-reveal__stage::after {
    inset: 8px;
  }

  .product-reveal__backdrop {
    inset: -4%;
    background:
      radial-gradient(circle at 58% 68%, rgba(255, 253, 240, 0.58), transparent 19%),
      linear-gradient(166deg, #080806 0 36%, #2a210d 49%, #ad7900 72%, #ffd400 100%);
    transform-origin: 58% 68%;
  }

  .product-reveal__product,
  .product-reveal__portal,
  .product-reveal__sun {
    top: 68%;
    left: 58%;
  }

  .product-reveal__product {
    width: min(52vw, 260px);
  }

  .product-reveal__portal {
    width: min(90vw, 560px);
  }

  .product-reveal__sun {
    width: min(125vw, 760px);
  }

  .product-reveal__word {
    right: -0.08em;
    bottom: -0.08em;
    font-size: clamp(8rem, 40vw, 14rem);
  }

  .product-reveal__copy {
    top: 25%;
    right: 1rem;
    left: 1rem;
    width: auto;
    text-align: left;
  }

  .product-reveal__copy h2,
  .product-reveal__copy h3 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 11.6vw, 4rem);
    line-height: 0.9;
  }

  .product-reveal__copy > p:not(.eyebrow) {
    max-width: 32ch;
    margin-top: 0.8rem;
    font-size: 1rem;
  }

  .product-reveal__copy .button {
    width: fit-content;
    min-height: 46px;
    margin-top: 1rem;
  }

  .product-reveal__scroll-cue {
    bottom: 1.2rem;
    left: 1rem;
    font-size: 0.8rem;
  }

  .product-reveal__progress {
    right: 0.85rem;
    height: 112px;
  }

  .product-reveal__bubbles span:nth-child(1) {
    top: 50%;
    left: 22%;
  }

  .product-reveal__bubbles span:nth-child(2) {
    top: 52%;
    right: 8%;
  }

  .product-reveal__bubbles span:nth-child(3) {
    right: 12%;
    bottom: 7%;
  }

  .product-reveal__bubbles span:nth-child(4) {
    bottom: 12%;
    left: 18%;
  }

  .bottle-section,
  .flavour-section,
  .organic-section,
  .stand-section,
  .order-section {
    padding-inline: 0.9rem;
  }

  .bottle-copy h2,
  .section-heading h2,
  .organic-copy h2,
  .stand-copy h2,
  .order-copy h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .organic-board {
    min-height: 330px;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 16px;
  }

  .brand-mark span {
    max-width: 150px;
    white-space: normal;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-splash {
    top: 5rem;
    right: -4.25rem;
    width: min(68vw, 230px);
    height: min(52svh, 360px);
    opacity: 0.42;
  }

  .hero::after {
    inset: 8px;
  }

  .product-reveal {
    min-height: 285svh;
  }

  .product-reveal__copy {
    top: 23%;
  }

  .product-reveal__copy h2,
  .product-reveal__copy h3 {
    font-size: clamp(2.35rem, 11.8vw, 3.25rem);
  }

  .product-reveal__copy > p:not(.eyebrow) {
    max-width: 30ch;
    font-size: 0.95rem;
  }

  .product-reveal__product {
    top: 70%;
    width: min(58vw, 240px);
  }

  .product-reveal__portal,
  .product-reveal__sun {
    top: 70%;
  }

  .product-reveal__scroll-cue {
    max-width: 100px;
    line-height: 1;
  }

  .eyebrow {
    gap: 0.45rem;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 22px;
  }

  .flavour-card,
  .serve-section article {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .product-reveal {
    min-height: auto;
  }

  .product-reveal__stage {
    --cup-x: 0vw;
    --cup-y: 0vh;
    --cup-scale: 1.02;
    --cup-rotate: 0deg;
    --cup-tilt: 0deg;
    --cup-opacity: 1;
    --cup-blur: 0px;
    --cup-shadow: 0.8;
    --portal-scale: 1.04;
    --portal-opacity: 1;
    --ring-opacity: 0.18;
    --ring-one-scale: 1.12;
    --ring-two-scale: 1.24;
    --ring-three-scale: 1.34;
    --world-scale: 1.04;
    --sun-rotate: 8deg;
    --sun-scale: 1.06;
    --word-opacity: 0.14;
    --word-x: 0vw;
    --bubble-shift: -18px;
    --bubble-opacity: 0.42;
    --intro-opacity: 0;
    --final-opacity: 1;
    --final-y: 0px;
    --cue-opacity: 0;
    --progress: 1;
    position: relative;
    height: min(860px, 100svh);
  }
}

/* Scroll-world inspired 3D cup flight. The canvas owns the product and liquid depth;
   these layers keep the brand world, copy, and accessible fallback code-native. */
.product-reveal {
  min-height: 205svh;
  background: #101207;
}

.product-reveal__stage {
  --world-scale: 1;
  --portal-opacity: 0.46;
  --ring-opacity: 0.2;
  --word-opacity: 0.055;
  min-height: 600px;
  background: #101207;
  perspective: none;
}

.product-reveal__stage::before {
  z-index: 8;
  background: radial-gradient(
    circle at 69% 50%,
    rgba(255, 255, 255, 0.78) 0 2%,
    rgba(255, 212, 0, 0.34) 12%,
    transparent 34%
  );
  mix-blend-mode: screen;
}

.product-reveal__stage::after {
  z-index: 20;
  inset: 11px;
  border-width: 2px;
  border-color: rgba(255, 212, 0, 0.88);
  box-shadow:
    inset 0 0 0 3px rgba(6, 8, 3, 0.92),
    inset 0 0 0 7px rgba(255, 253, 240, 0.3);
}

.product-reveal__backdrop {
  inset: -3%;
  background:
    radial-gradient(circle at 67% 50%, rgba(255, 212, 0, 0.16), transparent 32%),
    linear-gradient(108deg, #080a04 0 32%, #111407 52%, #2b2b08 76%, #544300 100%);
  transform-origin: 68% 50%;
}

.product-reveal__backdrop::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 0, 0.14) 0 1px, transparent 2px 24px),
    radial-gradient(circle at 70% 50%, transparent 0 26%, rgba(5, 6, 2, 0.12) 54%, rgba(5, 6, 2, 0.72) 100%),
    repeating-radial-gradient(circle at 68% 50%, transparent 0 70px, rgba(255, 212, 0, 0.055) 72px 74px);
  background-size: 46px 46px, auto, auto;
}

.product-reveal__sun {
  top: 50%;
  left: 68%;
  width: min(52vw, 760px);
  opacity: 0.96;
  background:
    radial-gradient(circle at 36% 30%, #fff7ad 0 4%, #ffd400 42%, #efad00 72%, #9e6200 100%);
  box-shadow:
    0 0 70px rgba(255, 212, 0, 0.2),
    inset -38px -42px 80px rgba(102, 54, 0, 0.24);
  -webkit-mask: none;
  mask: none;
  transform: translate(-50%, -50%) rotate(var(--sun-rotate)) scale(var(--sun-scale));
}

.product-reveal__portal {
  top: 50%;
  left: 68%;
  width: min(60vw, 820px);
  opacity: var(--portal-opacity);
  background: radial-gradient(circle, transparent 0 47%, rgba(255, 212, 0, 0.1) 48% 49%, transparent 50%);
  filter: none;
}

.product-reveal__ring {
  border-color: rgba(255, 253, 240, 0.48);
}

.product-reveal__ring--two {
  border-color: rgba(255, 212, 0, 0.58);
}

.product-reveal__ring--three {
  border-color: rgba(255, 253, 240, 0.18);
}

.product-reveal__word {
  right: -0.035em;
  bottom: -0.18em;
  font-size: clamp(11rem, 27vw, 29rem);
  opacity: var(--word-opacity);
  -webkit-text-stroke: 2px rgba(255, 253, 240, 0.78);
}

.product-reveal__scene {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.product-reveal__canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: saturate(1.06) contrast(1.03);
  transition: opacity 260ms ease;
}

.product-reveal__stage.has-webgl .product-reveal__canvas {
  opacity: 1;
}

.product-reveal__fallback {
  position: absolute;
  top: 50%;
  left: 69%;
  width: min(25vw, 330px);
  margin: 0;
  opacity: 0.55;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.45));
  transform: translate(-50%, -50%) rotate(5deg);
  transition: opacity 180ms ease;
}

.product-reveal__fallback img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34% 34% 24% 24% / 18% 18% 9% 9%;
  clip-path: inset(0 round 32% 32% 22% 22% / 16% 16% 8% 8%);
}

.product-reveal__stage.has-webgl .product-reveal__fallback {
  opacity: 0;
}

.product-reveal__copy {
  top: 50%;
  left: clamp(2rem, 5vw, 5.5rem);
  z-index: 11;
  width: min(35vw, 500px);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.62);
}

.product-reveal__copy h2,
.product-reveal__copy h3 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 6.6vw, 7rem);
  line-height: 0.84;
}

.product-reveal__copy > p:not(.eyebrow) {
  max-width: 31ch;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
}

.product-reveal__copy .button {
  color: var(--ink);
  background: var(--lemon);
  box-shadow: 6px 6px 0 rgba(255, 253, 240, 0.92);
}

.product-reveal__scroll-cue,
.product-reveal__progress {
  z-index: 12;
}

.product-reveal__progress {
  background: rgba(255, 253, 240, 0.18);
}

.product-reveal__bubbles span {
  opacity: calc(var(--bubble-opacity) * 0.62);
  border-color: rgba(255, 232, 94, 0.5);
}

@media (max-width: 960px) {
  .product-reveal {
    min-height: 190svh;
  }

  .product-reveal__copy {
    left: clamp(1.4rem, 4vw, 3rem);
    width: min(41vw, 410px);
  }

  .product-reveal__sun,
  .product-reveal__portal {
    left: 66%;
  }
}

@media (max-width: 760px) {
  .product-reveal {
    min-height: 180svh;
  }

  .product-reveal__stage {
    min-height: 600px;
  }

  .product-reveal__backdrop {
    background:
      radial-gradient(circle at 53% 70%, rgba(255, 212, 0, 0.16), transparent 34%),
      linear-gradient(164deg, #080a04 0 42%, #151707 62%, #554400 100%);
    transform-origin: 53% 70%;
  }

  .product-reveal__sun,
  .product-reveal__portal {
    top: 70%;
    left: 52%;
  }

  .product-reveal__sun {
    width: min(105vw, 650px);
  }

  .product-reveal__portal {
    width: min(120vw, 760px);
  }

  .product-reveal__word {
    bottom: -0.03em;
    font-size: clamp(8rem, 42vw, 15rem);
  }

  .product-reveal__copy {
    top: 23%;
    right: 1rem;
    left: 1rem;
    width: auto;
  }

  .product-reveal__copy h2,
  .product-reveal__copy h3 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
    line-height: 0.88;
  }

  .product-reveal__copy > p:not(.eyebrow) {
    max-width: 31ch;
    margin-top: 0.7rem;
    font-size: 0.98rem;
  }

  .product-reveal__copy .button {
    width: fit-content;
    min-height: 44px;
    margin-top: 0.85rem;
  }

  .product-reveal__scroll-cue {
    bottom: 1.1rem;
    left: 1rem;
  }

  .product-reveal__fallback {
    top: 70%;
    left: 52%;
    width: min(50vw, 250px);
  }
}

@media (max-width: 460px) {
  .product-reveal {
    min-height: 168svh;
  }

  .product-reveal__copy {
    top: 21%;
  }

  .product-reveal__copy h2,
  .product-reveal__copy h3 {
    font-size: clamp(2.35rem, 11.8vw, 3.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-reveal {
    min-height: auto;
  }

  .product-reveal__stage {
    position: relative;
    height: min(860px, 100svh);
  }
}
