:root {
  --black: #030303;
  --ink: #101010;
  --white: #fff;
  --soft: #f4f1ed;
  --muted: rgba(255, 255, 255, 0.68);
  --orange: #ff5a00;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 90, 0, 0.14), transparent 28vw),
    radial-gradient(circle at 20% 72%, rgba(255, 255, 255, 0.07), transparent 26vw),
    #030303;
}

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #030303;
  animation: loaderExit 1.45s ease forwards;
  pointer-events: none;
}

.brand-loader img {
  width: min(560px, 76vw);
  opacity: 0;
  animation: logoPulse 1.1s ease forwards;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

input,
textarea,
select,
button {
  max-width: 100%;
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  backdrop-filter: blur(12px);
}

.brand img {
  width: clamp(132px, 13vw, 198px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  z-index: 80;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
  padding: 108px clamp(20px, 6vw, 92px) 80px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 26vh;
  background: linear-gradient(0deg, var(--black), transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 9.5vw, 132px);
  font-weight: 950;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6.2vw, 88px);
  font-weight: 950;
}

p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
}

.button {
  padding: 0 26px;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 20px 70px rgba(255, 90, 0, 0.35);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 90px rgba(255, 90, 0, 0.44);
}

.ghost-button {
  padding: 0 24px;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.88);
}

.text-link {
  color: var(--orange);
}

.hero-visual {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(820px, 100%);
  aspect-ratio: 1402 / 1122;
  min-height: 0;
  justify-self: end;
  border-radius: 18px;
  background:
    radial-gradient(circle at 68% 45%, rgba(255, 90, 0, 0.2), transparent 34%),
    linear-gradient(145deg, #090909, #010101 72%);
  box-shadow: 0 40px 150px rgba(0, 0, 0, 0.62);
  transform-style: preserve-3d;
  animation: heroLaunchIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 28%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 7% 6% 7%;
  z-index: 2;
  height: 34%;
  background: radial-gradient(ellipse at center, rgba(255, 90, 0, 0.18), transparent 72%);
  filter: blur(26px);
  opacity: 0.86;
  pointer-events: none;
}

.hero-launch {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
}

.hero-image-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transition: transform 260ms ease;
  transform-style: preserve-3d;
}

.hero-image-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateY(calc(var(--scroll-shift, 0) * 0.22)) scale(1.04);
  animation: heroProductSettle 1.25s 0.18s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.launch-light {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 90, 0, 0.9), transparent);
  box-shadow: 0 0 34px rgba(255, 90, 0, 0.74);
  opacity: 0;
  pointer-events: none;
}

.light-left {
  left: 12%;
  animation: launchLightLeft 5.8s ease-in-out infinite;
}

.light-right {
  right: 10%;
  animation: launchLightRight 5.8s 0.34s ease-in-out infinite;
}

.liquid-shimmer {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 62%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    linear-gradient(118deg, transparent 31%, rgba(255, 255, 255, 0.14), transparent 52%);
  background-size: 72px 72px, 96px 96px, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.5;
  transform: translateX(-18%);
  animation: liquidShimmer 7s ease-in-out infinite;
  pointer-events: none;
}

.launch-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bubble-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble-field span {
  position: absolute;
  bottom: -30px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: riseBubble linear infinite;
}

.glass-divider {
  position: relative;
  z-index: 3;
  height: 1px;
  margin: -1px clamp(20px, 6vw, 92px) 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.glass-divider span {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: glassLine 3.8s ease-in-out infinite;
}

.split-section,
.liquid-panel,
.social-section,
.water-product,
.story-page,
.pr-page,
.stockist-page,
.contact-page,
.page-hero {
  min-height: auto;
  padding: 118px clamp(20px, 6vw, 92px) 82px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.section-copy,
.liquid-copy {
  max-width: 680px;
}

.section-title {
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1;
}

.section-title span {
  display: inline;
  white-space: normal;
}

.light {
  background: var(--soft);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.7) 46%, transparent 68%);
  transform: translateX(-120%);
  animation: sectionSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.light p {
  color: rgba(16, 16, 16, 0.68);
}

.product-reveal.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.drink-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.24));
}

.drink-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 24%, rgba(255, 255, 255, 0.5) 45%, transparent 62%);
  transform: translateX(-130%);
  animation: glassShine 4.8s ease-in-out infinite;
}

.drink-frame:nth-child(2)::before {
  animation-delay: 0.8s;
}

.drink-frame:nth-child(3)::before {
  animation-delay: 1.5s;
}

.product-reveal img,
.drink-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-reveal .drink-frame:nth-child(2) {
  transform: translateY(-34px);
}

.product-reveal .drink-frame:hover img {
  transform: translateY(-18px) scale(1.02);
}

.product-reveal .drink-frame:nth-child(2):hover img {
  transform: translateY(-52px) scale(1.02);
}

.liquid-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1.15fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  overflow: hidden;
}

.liquid-panel::before {
  content: "";
  position: absolute;
  inset: 14% 7%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(120deg, transparent 10%, rgba(255, 90, 0, 0.12) 45%, transparent 70%),
    rgba(255, 255, 255, 0.025);
  transform: skewY(-2deg);
  animation: glassPanelPulse 5.8s ease-in-out infinite alternate;
}

.liquid-copy,
.water-float {
  position: relative;
  z-index: 2;
}

.water-float img {
  width: min(460px, 76vw);
  aspect-ratio: 2 / 3;
  max-height: 76vh;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 24px;
  transform: translateY(var(--scroll-shift, 0));
  animation: floatProduct 7s ease-in-out infinite;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.62);
}

.social-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.wide-product img,
.story-image img,
.stockist-visual img {
  width: 100%;
  aspect-ratio: 1402 / 1122;
  max-height: 74vh;
  object-fit: contain;
  background: #050505;
  border-radius: 8px;
  transform: translateY(var(--scroll-shift, 0));
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
}

.page-hero {
  display: grid;
  align-content: end;
  max-width: 1100px;
}

.product-grid-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 92px) 100px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.18), transparent 28%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.product-card:hover {
  transform: perspective(900px) translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(255, 90, 0, 0.58);
  background: rgba(255, 90, 0, 0.08);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.product-card h2 {
  position: relative;
  z-index: 2;
  margin: 20px 0 10px;
  color: var(--orange);
  font-size: clamp(28px, 3vw, 44px);
}

.product-card p {
  position: relative;
  z-index: 2;
  font-size: 17px;
}

.water-product,
.story-page,
.pr-page,
.stockist-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.story-page {
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  padding-top: 138px;
}

.story-copy {
  align-self: center;
}

.story-image {
  justify-self: end;
  width: min(720px, 100%);
}

.brand-beliefs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.brand-beliefs article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.brand-beliefs span {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.brand-beliefs h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.brand-beliefs p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
}

.water-product {
  background: var(--soft);
  color: var(--ink);
}

.water-product p {
  color: rgba(16, 16, 16, 0.7);
}

.water-product img {
  width: min(520px, 100%);
  aspect-ratio: 2 / 3;
  max-height: 76vh;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px;
}

.story-copy,
.pr-copy,
.stockist-page > div:first-child {
  max-width: 760px;
}

.pr-box-stage {
  position: relative;
  min-height: 600px;
  perspective: 1000px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 90, 0, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pr-box-static {
  display: grid;
  place-items: center;
  min-height: 560px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 90, 0, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #050505;
}

.static-pr-box-img {
  width: min(680px, 90%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.62);
}

.static-pr-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(12px);
}

.static-pr-note span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.static-pr-note strong {
  color: var(--white);
  font-size: 18px;
}

.creator-application {
  padding: 0 clamp(20px, 6vw, 92px) 96px;
  background: var(--black);
}

.creator-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #070707;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
}

.creator-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 22%, rgba(255, 90, 0, 0.1) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: sectionSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.creator-form-head,
.select-field,
.brand-experience,
.file-drop,
.consent-row {
  position: relative;
  z-index: 2;
}

.creator-form-head {
  max-width: 820px;
}

.creator-form-head h2 {
  font-size: clamp(38px, 6vw, 82px);
}

.light-field input,
.light-field textarea,
.select-field select {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.68);
}

.light-field span {
  color: rgba(16, 16, 16, 0.58);
}

.light-field input:focus,
.light-field textarea:focus,
.select-field select:focus {
  border-color: rgba(255, 90, 0, 0.9);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.14);
}

.select-field {
  display: grid;
  gap: 9px;
}

.select-field > span,
.brand-experience legend {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.select-field select {
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  padding: 0 16px;
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.brand-experience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  margin: 0;
}

.brand-experience legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.brand-experience input {
  position: absolute;
  opacity: 0;
}

.brand-experience span {
  display: grid;
  min-height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.brand-experience input:checked + span,
.brand-experience label:hover span {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 0, 0.72);
  background: rgba(255, 90, 0, 0.16);
  color: var(--orange);
}

.file-drop {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.file-drop:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 0, 0.7);
  background: rgba(255, 90, 0, 0.08);
}

.file-drop input {
  color: rgba(255, 255, 255, 0.72);
}

.file-drop span {
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.file-drop small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  margin-top: 2px;
}

.creator-box {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: min(620px, 92vw);
  height: 230px;
  transform: translateX(-50%) rotateX(58deg) rotateZ(-1deg);
  transform-origin: center bottom;
  border: 1px solid rgba(255, 90, 0, 0.5);
  border-radius: 8px;
  background: linear-gradient(145deg, #0f0f0f, #030303);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 50px 120px rgba(0, 0, 0, 0.62);
  animation: boxBreath 5.5s ease-in-out infinite;
}

.box-lid {
  position: absolute;
  left: 50%;
  bottom: 274px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: min(620px, 92vw);
  height: 86px;
  transform: translateX(-50%);
  transform-origin: center bottom;
  border: 1px solid rgba(255, 90, 0, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #0b0b0b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: openLid 6.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.box-lid span {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.box-product-stack {
  position: absolute;
  left: 50%;
  bottom: 206px;
  z-index: 3;
  width: min(440px, 76%);
  height: 335px;
  transform: translateX(-50%);
  pointer-events: none;
}

.box-product-stack::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 72%;
  height: 42%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 90, 0, 0.34), transparent 72%);
  filter: blur(22px);
  opacity: 0.74;
  animation: pulseGlow 6.2s ease-in-out infinite;
}

.box-product-img {
  position: absolute;
  bottom: 0;
  width: 34%;
  max-height: 335px;
  object-fit: contain;
  transform: translateY(94px) scale(0.86);
  opacity: 0;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.72));
  animation: canPopCenter 6.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.product-one {
  left: 12%;
  z-index: 1;
  --can-rotate: -8deg;
  animation-delay: 0.08s;
}

.product-two {
  left: 33%;
  z-index: 3;
  width: 38%;
  --can-rotate: 0deg;
  animation-delay: 0.24s;
}

.product-three {
  right: 12%;
  z-index: 2;
  --can-rotate: 8deg;
  animation-delay: 0.4s;
}

.pr-spotlight {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 28%, rgba(255, 255, 255, 0.12), transparent 48%),
    radial-gradient(circle at 50% 42%, rgba(255, 90, 0, 0.12), transparent 48%);
  opacity: 0.7;
  transform: translateX(-48%);
  animation: prSpotlight 8s ease-in-out infinite;
  pointer-events: none;
}

.pr-box-frame {
  position: absolute;
  left: 50%;
  bottom: 168px;
  z-index: 2;
  width: min(620px, 86%);
  transform: translateX(-50%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.54);
  animation: prFrameSettle 7s ease-in-out infinite;
}

.creator-box-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.box-mark {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 950;
  letter-spacing: 0;
}

.box-line {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 42%;
  height: 2px;
  transform: translateX(-50%);
  background: var(--orange);
  box-shadow: 0 0 28px rgba(255, 90, 0, 0.64);
}

.pr-product-rail {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(640px, 88%);
  transform: translateX(-50%);
}

.pr-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: end;
  min-height: 220px;
  padding: 18px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #090909;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
  animation: prCardReveal 8s ease-in-out infinite;
}

.pr-product-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.16), transparent 56%);
  transform: translateX(-70%);
  animation: prCardSheen 8s ease-in-out infinite;
}

.pr-product-card img {
  position: relative;
  z-index: 1;
  width: min(118px, 62%);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
}

.pr-product-card span {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.passion-card {
  animation-delay: 0.16s;
}

.water-card {
  animation-delay: 0.32s;
}

.box-glow {
  position: absolute;
  left: 50%;
  bottom: 112px;
  width: 64%;
  height: 240px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 90, 0, 0.22), transparent 72%);
  filter: blur(24px);
  animation: prGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.pr-unbox {
  min-height: 640px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 90, 0, 0.18), transparent 33%),
    radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #080808, #010101 72%);
}

.unbox-backlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 20%, rgba(255, 90, 0, 0.18), transparent 80%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, 0.035) 71px 72px);
  opacity: 0.72;
  animation: unboxBacklight 7.4s ease-in-out infinite;
  pointer-events: none;
}

.unbox-products {
  position: absolute;
  left: 50%;
  bottom: 168px;
  z-index: 2;
  width: min(610px, 86%);
  height: 380px;
  transform: translateX(-50%);
  pointer-events: none;
}

.unbox-product {
  position: absolute;
  bottom: 0;
  height: min(370px, 58vh);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.74));
  opacity: 0;
  animation: unboxRise 7.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.unbox-berry {
  --unbox-rotate: -5deg;
  left: 7%;
  height: min(330px, 52vh);
  transform-origin: center bottom;
  animation-delay: 0.08s;
}

.unbox-passion {
  --unbox-rotate: 0deg;
  left: 34%;
  z-index: 2;
  height: min(360px, 56vh);
  transform-origin: center bottom;
  animation-delay: 0.22s;
}

.unbox-water {
  --unbox-rotate: 5deg;
  right: 4%;
  height: min(390px, 60vh);
  transform-origin: center bottom;
  animation-delay: 0.36s;
}

.unbox-lid {
  position: absolute;
  left: 50%;
  bottom: 224px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(600px, 84%);
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 45%),
    #070404;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.62);
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  animation: unboxLidLift 7.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.unbox-lid span {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: 0.18em;
}

.unbox-box {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 5;
  width: min(660px, 92%);
  transform: translateX(-50%);
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.68));
}

.unbox-box .creator-box-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center bottom;
}

.unbox-seam {
  position: absolute;
  left: 50%;
  bottom: 254px;
  z-index: 6;
  width: min(580px, 78%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.95), transparent);
  box-shadow: 0 0 32px rgba(255, 90, 0, 0.84);
  animation: unboxSeamPulse 7.4s ease-in-out infinite;
}

.unbox-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 7;
  display: grid;
  gap: 4px;
  text-transform: uppercase;
}

.unbox-copy span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.unbox-copy strong {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.pr-pack-reveal {
  min-height: 620px;
  isolation: isolate;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 90, 0, 0.2), transparent 34%),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #080808, #010101 74%);
}

.pack-light {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, transparent 24%, rgba(255, 255, 255, 0.13), transparent 44%),
    linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.14), transparent);
  opacity: 0;
  transform: translateX(-70%);
  animation: packLightSweep 8s ease-in-out infinite;
  pointer-events: none;
}

.pack-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 90, 0, 0.24);
  border-radius: 50%;
  transform: rotateX(68deg);
  pointer-events: none;
}

.orbit-one {
  width: min(560px, 80%);
  height: min(560px, 80%);
  animation: packOrbit 12s linear infinite;
}

.orbit-two {
  width: min(430px, 64%);
  height: min(430px, 64%);
  border-color: rgba(255, 255, 255, 0.14);
  animation: packOrbit 16s linear infinite reverse;
}

.pack-image-wrap {
  position: relative;
  z-index: 2;
  width: min(660px, 88%);
  transform-style: preserve-3d;
  animation: packFloatReveal 8s ease-in-out infinite;
}

.pack-image-wrap::before {
  content: "";
  position: absolute;
  inset: 11% 8% 8%;
  z-index: -1;
  border-radius: 18px;
  background: radial-gradient(ellipse at center, rgba(255, 90, 0, 0.34), transparent 62%);
  filter: blur(34px);
  opacity: 0.64;
  animation: packGlow 8s ease-in-out infinite;
}

.pack-image-wrap .creator-box-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.7);
}

.pack-seam {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 62%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.95), transparent);
  box-shadow: 0 0 30px rgba(255, 90, 0, 0.82);
  transform-origin: center;
  animation: packSeam 8s ease-in-out infinite;
}

.pack-tags {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.pack-tags span {
  position: absolute;
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  animation: packTagFloat 8s ease-in-out infinite;
}

.pack-tags span:nth-child(1) {
  left: 7%;
  top: 18%;
}

.pack-tags span:nth-child(2) {
  right: 6%;
  top: 32%;
  color: var(--orange);
  animation-delay: 0.28s;
}

.pack-tags span:nth-child(3) {
  left: 14%;
  bottom: 16%;
  animation-delay: 0.56s;
}

.stockist-visual img {
  width: min(520px, 100%);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.contact-page {
  display: grid;
  align-content: center;
  gap: 28px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.78)),
    url("assets/berry-infusion.png") right center / auto 105% no-repeat;
}

.contact-intro {
  max-width: 820px;
}

.contact-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
}

.contact-action {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 90, 0, 0.2), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.contact-action:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 0, 0.62);
  background: rgba(255, 90, 0, 0.08);
}

.contact-action:hover::after {
  transform: translateX(120%);
}

.contact-action span,
.contact-action strong {
  position: relative;
  z-index: 2;
  display: block;
}

.contact-action span {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-action strong {
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.social-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 90, 0, 0.7);
  color: var(--orange);
}

.inquiry-lab {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  width: min(1180px, 100%);
  margin-top: 20px;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.66);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.36);
}

.inquiry-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 24%, rgba(255, 90, 0, 0.14) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: sectionSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.form-orbit {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 170px;
  aspect-ratio: 1;
  pointer-events: none;
}

.form-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 90, 0, 0.24);
  border-radius: 50%;
  animation: orbitPulse 4.8s ease-in-out infinite;
}

.form-orbit span:nth-child(2) {
  inset: 22px;
  animation-delay: 0.8s;
}

.form-orbit span:nth-child(3) {
  inset: 44px;
  animation-delay: 1.6s;
}

.form-copy,
.inquiry-types,
.form-grid,
.message-field,
.form-bottom {
  position: relative;
  z-index: 2;
}

.form-copy {
  max-width: 760px;
}

.form-copy h2 {
  font-size: clamp(38px, 6vw, 82px);
}

.inquiry-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  margin: 0;
}

.inquiry-types legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-types input {
  position: absolute;
  opacity: 0;
}

.inquiry-types span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.inquiry-types label:hover span,
.inquiry-types input:checked + span {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 0, 0.72);
  background: rgba(255, 90, 0, 0.16);
  color: var(--orange);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  position: relative;
  display: block;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--white);
  font: inherit;
  font-size: 17px;
  outline: 0;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.field input {
  height: 62px;
  padding: 24px 16px 9px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
  padding: 28px 16px 14px;
}

.field span {
  position: absolute;
  left: 16px;
  top: 19px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 850;
  pointer-events: none;
  transition: transform 180ms ease, color 180ms ease, font-size 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 90, 0, 0.74);
  background: rgba(255, 90, 0, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
  transform: translateY(-2px);
}

.field input:focus + span,
.field input:not(:placeholder-shown) + span,
.field textarea:focus + span,
.field textarea:not(:placeholder-shown) + span {
  transform: translateY(-12px);
  color: var(--orange);
  font-size: 11px;
}

.form-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.message-capsule {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.capsule-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.48);
  animation: signalPulse 1.8s ease-out infinite;
}

.message-capsule strong,
.message-capsule small {
  display: block;
}

.message-capsule strong {
  color: var(--white);
  font-size: 14px;
}

.message-capsule small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.launch-button {
  border: 0;
  cursor: pointer;
}

.launch-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  position: relative;
  z-index: 2;
  display: none;
  margin: -4px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 850;
}

.form-status.is-active {
  display: block;
  animation: statusPop 420ms ease both;
}

.form-status.is-success {
  border-color: rgba(255, 90, 0, 0.64);
  background: rgba(255, 90, 0, 0.14);
  color: var(--white);
}

.form-status.is-error {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.drop-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #050505;
}

.drop-marquee div {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 24px 0;
  animation: marquee 22s linear infinite;
}

.drop-marquee span {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(30px, 7vw, 86px);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.drop-marquee span:nth-child(even) {
  color: var(--orange);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 58px 20px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  background: #0b0f10;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.footer-brand img {
  width: min(340px, 72vw);
}

.footer-pillars,
.footer-nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}

.footer-pillars span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-pillars span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  vertical-align: 2px;
}

.footer-nav {
  width: min(760px, 100%);
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-nav a,
.footer-contact,
.site-footer p {
  font-size: 13px;
  font-weight: 650;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, 0.64);
  background: rgba(255, 90, 0, 0.18);
  color: var(--orange);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer p {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 820ms ease, transform 820ms ease;
}

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

@keyframes floatProduct {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes heroImageFloat {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.025;
  }
}

@keyframes heroScan {
  0%,
  48% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes heroAmbientSweep {
  0%,
  42% {
    transform: translateX(-120%);
    opacity: 0;
  }
  58% {
    opacity: 0.45;
  }
  74%,
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes heroLaunchIn {
  from {
    opacity: 0;
    clip-path: inset(0 48% 0 48%);
    transform: translateY(34px) scale(0.96);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scale(1);
  }
}

@keyframes heroProductSettle {
  from {
    opacity: 0;
    transform: translateY(26px) scale(1.12);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(calc(var(--scroll-shift, 0) * 0.22)) scale(1.04);
    filter: blur(0);
  }
}

@keyframes launchLightLeft {
  0%,
  28%,
  100% {
    opacity: 0;
    transform: translateX(-28px);
  }
  42%,
  64% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes launchLightRight {
  0%,
  32%,
  100% {
    opacity: 0;
    transform: translateX(28px);
  }
  48%,
  68% {
    opacity: 0.9;
    transform: translateX(0);
  }
}

@keyframes liquidShimmer {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-18%) translateY(0);
  }
  48% {
    opacity: 0.58;
    transform: translateX(12%) translateY(-3%);
  }
}

@keyframes loaderExit {
  0%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoPulse {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  45%,
  75% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes productReveal {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.94);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes riseBubble {
  from {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  to {
    transform: translateY(-110vh) translateX(32px);
    opacity: 0;
  }
}

@keyframes glassShine {
  0%,
  48% {
    transform: translateX(-130%);
  }
  62%,
  100% {
    transform: translateX(130%);
  }
}

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

@keyframes glassLine {
  0% {
    transform: translateX(-120%);
  }
  50%,
  100% {
    transform: translateX(320%);
  }
}

@keyframes sectionSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes glassPanelPulse {
  from {
    opacity: 0.36;
    transform: skewY(-2deg) scale(0.98);
  }
  to {
    opacity: 0.78;
    transform: skewY(2deg) scale(1.02);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.9) rotate(0deg);
  }
  50% {
    opacity: 0.74;
    transform: scale(1.08) rotate(18deg);
  }
}

@keyframes signalPulse {
  100% {
    box-shadow: 0 0 0 16px rgba(255, 90, 0, 0);
  }
}

@keyframes statusPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes openLid {
  0%,
  20% {
    transform: translateX(-50%) rotateX(0deg) translateY(0);
  }
  48%,
  78% {
    transform: translateX(-50%) rotateX(-64deg) translateY(-68px);
  }
  100% {
    transform: translateX(-50%) rotateX(0deg) translateY(0);
  }
}

@keyframes boxBreath {
  0%,
  100% {
    transform: translateX(-50%) rotateX(58deg) rotateZ(-1deg) scale(0.99);
    border-color: rgba(255, 90, 0, 0.36);
  }
  50% {
    transform: translateX(-50%) rotateX(58deg) rotateZ(1deg) scale(1.02);
    border-color: rgba(255, 90, 0, 0.74);
  }
}

@keyframes realBoxBreath {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(0.99);
    filter: drop-shadow(0 38px 74px rgba(0, 0, 0, 0.54));
  }
  50% {
    transform: translateX(-50%) translateY(-8px) scale(1.015);
    filter: drop-shadow(0 48px 90px rgba(255, 90, 0, 0.18));
  }
}

@keyframes prSpotlight {
  0%,
  100% {
    transform: translateX(-48%);
    opacity: 0.42;
  }
  48%,
  62% {
    transform: translateX(42%);
    opacity: 0.82;
  }
}

@keyframes prFrameSettle {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-6px) scale(1.01);
  }
}

@keyframes prCardReveal {
  0%,
  16% {
    opacity: 0.72;
    transform: translateY(18px);
  }
  34%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes prCardSheen {
  0%,
  36% {
    transform: translateX(-70%);
  }
  58%,
  100% {
    transform: translateX(78%);
  }
}

@keyframes prGlow {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes unboxBacklight {
  0%,
  100% {
    opacity: 0.34;
    transform: translateX(-4%);
  }
  36%,
  74% {
    opacity: 0.86;
    transform: translateX(4%);
  }
}

@keyframes unboxLidLift {
  0%,
  18% {
    transform: translateX(-50%) translateY(0) rotateX(0deg) scale(1);
    opacity: 1;
  }
  42%,
  76% {
    transform: translateX(-50%) translateY(-132px) rotateX(64deg) scale(0.96);
    opacity: 0.72;
  }
  100% {
    transform: translateX(-50%) translateY(0) rotateX(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes unboxRise {
  0%,
  20% {
    opacity: 0;
    transform: translateY(150px) scale(0.82) rotate(0deg);
    filter: blur(8px) drop-shadow(0 28px 52px rgba(0, 0, 0, 0.74));
  }
  42%,
  76% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--unbox-rotate, 0deg));
    filter: blur(0) drop-shadow(0 28px 52px rgba(0, 0, 0, 0.74));
  }
  100% {
    opacity: 0;
    transform: translateY(92px) scale(0.9) rotate(0deg);
  }
}

@keyframes unboxSeamPulse {
  0%,
  16%,
  100% {
    opacity: 0.18;
    transform: translateX(-50%) scaleX(0.38);
  }
  30%,
  72% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes packLightSweep {
  0%,
  36% {
    opacity: 0;
    transform: translateX(-70%);
  }
  52% {
    opacity: 0.86;
  }
  72%,
  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

@keyframes packOrbit {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes packFloatReveal {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(-4deg);
  }
  50% {
    transform: translateY(-12px) rotateX(2deg) rotateY(4deg);
  }
}

@keyframes packGlow {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.06);
  }
}

@keyframes packSeam {
  0%,
  22%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.42);
  }
  42%,
  74% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes packTagFloat {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px);
  }
}

@keyframes creatorReveal {
  0%,
  16% {
    opacity: 0;
    transform: translateY(110px) scale(0.86);
    filter: blur(8px) drop-shadow(0 28px 46px rgba(0, 0, 0, 0.68));
  }
  34%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 28px 46px rgba(0, 0, 0, 0.68));
  }
  100% {
    opacity: 0.76;
    transform: translateY(34px) scale(0.96);
  }
}

@keyframes dropScan {
  0%,
  34% {
    transform: translateX(-120%);
  }
  52%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes productPop {
  0%,
  20%,
  100% {
    transform: translateY(58px) scale(0.92);
    opacity: 0.62;
  }
  48%,
  78% {
    transform: translateY(-58px) scale(1);
    opacity: 1;
  }
}

@keyframes canPopCenter {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translateY(104px) scale(0.82) rotate(0deg);
    filter: blur(7px) drop-shadow(0 28px 52px rgba(0, 0, 0, 0.72));
  }
  42%,
  76% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--can-rotate));
    filter: blur(0) drop-shadow(0 28px 52px rgba(0, 0, 0, 0.72));
  }
}

@keyframes pulseGlow {
  0%,
  20%,
  100% {
    opacity: 0.15;
  }
  48%,
  78% {
    opacity: 0.86;
  }
}

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

@media (max-width: 980px) {
  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }

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

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    display: flex;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vh, 24px);
    padding: 96px 24px 44px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.97);
    font-size: clamp(19px, 5.2vw, 28px);
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 260ms ease, opacity 220ms ease;
  }

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

  .site-nav a {
    display: block;
    width: min(340px, 100%);
    padding: 10px 18px;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .hero,
  .split-section,
  .liquid-panel,
  .social-section,
  .water-product,
  .story-page,
  .pr-page,
  .stockist-page,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 18px;
    padding-top: 104px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .contact-board {
    grid-template-columns: 1fr;
  }

  .inquiry-types,
  .form-grid,
  .brand-experience {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    width: min(720px, 100%);
    aspect-ratio: 1402 / 1122;
    justify-self: center;
    margin: 0 auto;
  }

  .hero-visual img {
    height: 100%;
  }

  .product-grid-section {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .product-card {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 1fr);
    align-items: center;
    gap: 22px;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .social-section {
    align-items: start;
  }

  .wide-product img,
  .story-image img,
  .stockist-visual img {
    max-height: none;
  }

  .brand-beliefs {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 58svh;
  }

  .creator-application {
    padding-top: 0;
  }

  .creator-form,
  .inquiry-lab {
    width: 100%;
  }

  .file-drop input {
    width: 100%;
  }
}

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

  .site-header {
    padding: 13px 16px;
  }

  .hero,
  .split-section,
  .liquid-panel,
  .social-section,
  .water-product,
  .story-page,
  .pr-page,
  .stockist-page,
  .contact-page,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .split-section,
  .liquid-panel,
  .social-section,
  .water-product,
  .story-page,
  .pr-page,
  .stockist-page,
  .contact-page,
  .page-hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 58px;
  }

  .page-hero {
    align-content: center;
  }

  .brand img {
    width: 128px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 52px);
  }

  .section-title {
    font-size: clamp(32px, 9vw, 46px);
  }

  .section-title span {
    white-space: normal;
  }

  p {
    font-size: 17px;
  }

  .cta-row,
  .social-panel {
    width: 100%;
  }

  .button,
  .ghost-button {
    flex: 1 1 160px;
    min-height: 50px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 26px;
    border-radius: 8px;
  }

  .hero-visual img {
    aspect-ratio: 1402 / 1122;
    object-position: center;
  }

  .hero::after {
    height: 12vh;
  }

  .product-reveal.trio {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-reveal img,
  .drink-frame img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .product-reveal .drink-frame:nth-child(2),
  .product-reveal .drink-frame:nth-child(2):hover img {
    transform: none;
  }

  .water-float img,
  .water-product img {
    width: min(360px, 100%);
    max-height: none;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
  }

  .wide-product img,
  .story-image img {
    max-height: none;
    aspect-ratio: 1402 / 1122;
    object-position: center;
  }

  .brand-beliefs article {
    min-height: auto;
  }

  .stockist-visual img {
    max-height: none;
    aspect-ratio: 2 / 3;
  }

  .product-grid-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 58px;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .product-card h2 {
    font-size: 30px;
    line-height: 1;
  }

  .contact-page {
    background:
      linear-gradient(rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.92)),
      url("assets/berry-infusion.png") center top / cover no-repeat;
  }

  .contact-action {
    min-height: 142px;
    padding: 18px;
  }

  .contact-action strong {
    font-size: 23px;
  }

  .inquiry-types,
  .form-grid,
  .brand-experience {
    grid-template-columns: 1fr;
  }

  .inquiry-lab,
  .creator-form {
    border-radius: 8px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  }

  .form-bottom,
  .message-capsule,
  .launch-button {
    width: 100%;
  }

  .message-capsule {
    border-radius: 8px;
  }

  .creator-application {
    padding-left: 16px;
    padding-right: 16px;
  }

  .creator-form {
    padding: 20px;
  }

  .field input,
  .select-field select {
    height: 58px;
  }

  .field textarea {
    min-height: 132px;
  }

  .select-field > span,
  .brand-experience legend,
  .inquiry-types legend {
    line-height: 1.25;
  }

  .brand-experience span,
  .inquiry-types span {
    min-height: 50px;
  }

  .social-icon {
    flex: 1 1 100%;
    justify-content: center;
  }

  .pr-box-stage {
    min-height: 560px;
    transform: none;
    transform-origin: center top;
  }

  .pr-box-static {
    min-height: 420px;
  }

  .static-pr-box-img {
    width: 94%;
  }

  .static-pr-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .creator-box {
    width: 100%;
    height: 180px;
    bottom: 20px;
  }

  .box-lid {
    bottom: 194px;
    width: 100%;
    height: 72px;
  }

  .box-product-stack {
    bottom: 148px;
    width: 92%;
    height: 250px;
  }

  .box-product-img {
    max-height: 250px;
  }

  .product-one {
    left: 9%;
  }

  .product-two {
    left: 32%;
  }

  .product-three {
    right: 9%;
  }

  .pr-unbox {
    min-height: 610px;
  }

  .pr-pack-reveal {
    min-height: 500px;
  }

  .pack-image-wrap {
    width: 92%;
  }

  .pack-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 10px;
  }

  .pack-tags span:nth-child(1) {
    left: 5%;
    top: 13%;
  }

  .pack-tags span:nth-child(2) {
    right: 5%;
    top: 24%;
  }

  .pack-tags span:nth-child(3) {
    left: 9%;
    bottom: 13%;
  }

  .unbox-products {
    bottom: 170px;
    width: 92%;
    height: 330px;
  }

  .unbox-product {
    height: min(310px, 48vh);
  }

  .unbox-berry {
    left: 2%;
    height: min(280px, 44vh);
  }

  .unbox-passion {
    left: 31%;
    height: min(305px, 47vh);
  }

  .unbox-water {
    right: -3%;
    height: min(330px, 50vh);
  }

  .unbox-lid {
    bottom: 218px;
    height: 92px;
    width: 88%;
  }

  .unbox-box {
    bottom: 42px;
    width: 94%;
  }

  .unbox-seam {
    bottom: 236px;
    width: 80%;
  }

  .unbox-copy {
    left: 18px;
    bottom: 18px;
  }

  .pr-box-frame {
    bottom: 270px;
    width: 92%;
  }

  .pr-product-rail {
    bottom: 24px;
    grid-template-columns: 1fr;
    width: 92%;
  }

  .pr-product-card {
    grid-template-columns: 70px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 94px;
    padding: 12px 14px;
  }

  .pr-product-card img {
    width: 54px;
  }

  .pr-product-card span {
    margin-top: 0;
    text-align: left;
  }

  .drop-marquee div {
    padding: 18px 0;
  }

  .site-footer {
    gap: 22px;
    padding: 44px 16px 34px;
    text-align: center;
  }

  .footer-brand img {
    width: min(300px, 82vw);
  }

  .footer-pillars,
  .footer-nav,
  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact span {
    display: none;
  }
}

@media (max-width: 980px) and (max-height: 560px) {
  .site-nav {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 82px;
    padding-bottom: 24px;
    font-size: 18px;
  }

  .site-nav a {
    padding: 7px 14px;
  }
}

@media (max-width: 420px) {
  .product-card h2 {
    font-size: 26px;
  }

  .drop-product {
    bottom: 56px;
  }
}

/* Final typography pass: keep each page type scaled to its container. */
.hero-copy h1 {
  font-size: clamp(56px, 8.8vw, 128px);
  line-height: 0.9;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
}

.story-copy h1,
.stockist-page h1,
.contact-intro h1,
.pr-copy h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
}

.story-copy h1 {
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 0.96;
}

.section-title,
.water-product .section-copy h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  max-width: 760px;
}

.product-card h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.02;
}

.creator-form-head h2,
.form-copy h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

.contact-action strong {
  font-size: clamp(20px, 2.2vw, 30px);
}

@media (max-width: 980px) {
  .hero-copy h1,
  .page-hero h1,
  .story-copy h1,
  .stockist-page h1,
  .contact-intro h1,
  .pr-copy h1 {
    font-size: clamp(46px, 10vw, 78px);
  }

  .section-title,
  .water-product .section-copy h2,
  .creator-form-head h2,
  .form-copy h2 {
    font-size: clamp(34px, 7vw, 58px);
  }
}

@media (max-width: 620px) {
  .hero-copy h1,
  .page-hero h1,
  .story-copy h1,
  .stockist-page h1,
  .contact-intro h1,
  .pr-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.96;
  }

  .section-title,
  .water-product .section-copy h2,
  .creator-form-head h2,
  .form-copy h2 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.04;
  }

  .product-card h2 {
    font-size: 26px;
  }

  .contact-action strong {
    font-size: 22px;
  }

  .hero-copy p,
  .section-copy p,
  .liquid-copy p,
  .story-copy p,
  .stockist-page p,
  .contact-intro p,
  .pr-copy p,
  .creator-form-head p,
  .form-copy p {
    font-size: 16px;
  }
}
