/* ==========================================================================
   Bombay Soda — site styles (light theme)
   ========================================================================== */

:root {
  --ink: #102a1b;
  --green-900: #0f3d22;
  --green-800: #145230;
  --green-700: #1a6b35;
  --green-600: #22803f;
  --green-500: #2f9a4c;
  --lime: #b8e22f;
  --lime-2: #d6f06f;
  --lime-soft: #eff8d2;
  --mint: #eef6e6;
  --mint-2: #dfefd0;
  --paper: #fbfcf7;
  --cream: #f7f4ea;
  --white: #ffffff;
  --brown: #5a2b17;
  --red: #d93a2b;
  --orange: #f08a24;
  --yellow: #f6c445;

  --blue: #1b3f93;
  --blue-deep: #0b2a6b;
  --aqua: #2fa8e0;
  --mist: #eef6fc;
  --mist-2: #dbeaf6;

  --text: var(--ink);
  --muted: #5a6a5f;
  --line: rgba(16, 42, 27, 0.1);
  --line-2: rgba(16, 42, 27, 0.16);

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(16, 42, 27, 0.06), 0 6px 18px -10px rgba(16, 42, 27, 0.18);
  --shadow: 0 1px 2px rgba(16, 42, 27, 0.05), 0 24px 48px -24px rgba(16, 42, 27, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.intro-lock { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--lime-2); color: var(--ink); }

.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;
}

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.section { position: relative; padding: 120px 0; }
.section--tight { padding: 96px 0; }
.bg-mint { background: var(--mint); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.gridlines::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(16, 42, 27, 0.09) 1px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 20%, transparent 75%);
}

/* ---------- Type helpers ---------- */
.display { font-size: clamp(2.5rem, 6vw, 5.2rem); }
.h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
.lead { font-size: clamp(1.05rem, 1.35vw, 1.2rem); color: var(--muted); max-width: 38em; }
.hl {
  color: var(--green-700);
  background: linear-gradient(transparent 64%, var(--lime-2) 64%, var(--lime-2) 92%, transparent 92%);
  padding: 0 0.06em; margin: 0 -0.06em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hl-water { color: var(--aqua); background: linear-gradient(transparent 64%, #cdeafa 64%, #cdeafa 92%, transparent 92%); padding: 0 0.06em; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 14px 7px 10px; border-radius: 999px;
  background: var(--lime-soft); color: var(--green-800);
  box-shadow: inset 0 0 0 1px rgba(26, 107, 53, 0.14);
}
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 3px var(--lime-2); }
.kicker--water { background: #e3f1fb; color: var(--blue); box-shadow: inset 0 0 0 1px rgba(27, 63, 147, 0.12); }
.kicker--water::before { background: var(--aqua); box-shadow: 0 0 0 3px #c9e7f8; }
.section-head { display: grid; gap: 18px; margin-bottom: 56px; max-width: 760px; justify-items: start; }
.section-head--center { margin-inline: auto; text-align: center; justify-items: center; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px; border: 0;
  font-weight: 700; font-size: 15.5px; letter-spacing: 0.005em; white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--green-700); box-shadow: 0 10px 24px -12px rgba(26, 107, 53, 0.8); }
.btn--primary:hover { background: var(--green-800); }
.btn--lime { color: var(--green-900); background: var(--lime); box-shadow: 0 10px 24px -12px rgba(120, 160, 20, 0.9), inset 0 -2px 0 rgba(0, 0, 0, 0.06); }
.btn--lime:hover { background: var(--lime-2); }
.btn--water { color: #fff; background: var(--blue); box-shadow: 0 10px 24px -12px rgba(27, 63, 147, 0.7); }
.btn--water:hover { background: var(--blue-deep); }
.btn--glass { color: var(--ink); background: var(--white); box-shadow: inset 0 0 0 1px var(--line-2), var(--shadow-sm); }
.btn--glass:hover { box-shadow: inset 0 0 0 1px var(--green-600), var(--shadow-sm); }
.btn--ghost { color: inherit; background: transparent; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn--icon { width: 50px; padding-left: 0; padding-right: 0; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--green-700); }
.logo__mark { width: 46px; height: 46px; flex: none; transition: transform 0.6s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-12deg) scale(1.05); }
.logo__word { display: grid; font-family: var(--font-display); font-weight: 800; font-size: 15px; line-height: 1; letter-spacing: 0.02em; }
.logo__word span:first-child { color: var(--green-700); }
.logo__word span:last-child { color: var(--brown); letter-spacing: 0.2em; margin-top: 3px; }
.dark .logo { color: var(--lime); }
.dark .logo__word span:first-child { color: #fff; }
.dark .logo__word span:last-child { color: var(--lime); }

/* ---------- Navigation ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; color: var(--ink); transition: background 0.4s, box-shadow 0.4s; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: 15px; color: var(--muted); transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--ink); background: rgba(16, 42, 27, 0.05); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 3px; width: 16px; height: 3px; margin-left: -8px;
  border-radius: 3px; background: var(--lime);
}
.nav__links .nav__cta { margin-left: 10px; color: var(--green-900); background: var(--lime); box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06); }
.nav__links .nav__cta:hover { color: var(--green-900); background: var(--lime-2); }
.page-water .nav__links a[aria-current="page"]::after { background: var(--aqua); }
.nav.is-solid { background: rgba(255, 255, 255, 0.82); -webkit-backdrop-filter: blur(18px) saturate(1.6); backdrop-filter: blur(18px) saturate(1.6); box-shadow: 0 1px 0 var(--line); }
.nav__toggle { display: none; position: relative; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--white); color: inherit; box-shadow: inset 0 0 0 1px var(--line-2); }
.nav__toggle span:not(.sr-only) { position: absolute; left: 14px; right: 14px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.35s var(--ease), top 0.35s var(--ease); }
.nav__toggle span:nth-child(1) { top: 18px; }
.nav__toggle span:nth-child(2) { top: 26px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* ---------- Intro (home) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 1000; overflow: hidden;
  display: grid; place-items: center;
  background: radial-gradient(90% 80% at 50% 42%, #ffffff 0%, #f1f8e8 45%, #dcefc9 100%);
  color: var(--green-700);
  clip-path: inset(0 0 0 0);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
  animation: introFailsafe 0.01s 8s forwards;
}
.intro::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16, 42, 27, 0.08) 1px, transparent 1.2px); background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%); mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%);
}
.no-intro .intro { display: none; }
@keyframes introFailsafe { to { visibility: hidden; pointer-events: none; } }
.intro.is-out { clip-path: inset(0 0 100% 0); }
.intro__glow {
  position: absolute; width: 60vmax; height: 60vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 226, 47, 0.45), rgba(184, 226, 47, 0) 60%);
  opacity: 0; transform: scale(0.4); transition: opacity 1s, transform 1.4s var(--ease);
}
.intro.is-pop .intro__glow { opacity: 1; transform: scale(1); }
.intro__stage { position: relative; display: grid; place-items: center; }
.intro__stage > * { grid-area: 1 / 1; }
.intro__bottle {
  width: clamp(130px, min(24vw, 32vh), 210px);
  opacity: 0; transform: translateY(60px) scale(0.8);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
  filter: drop-shadow(0 30px 30px rgba(16, 42, 27, 0.25));
}
.intro.is-in .intro__bottle { opacity: 1; transform: none; }
.intro.is-shake .intro__bottle { animation: shake 0.55s linear; }
.intro.is-logo .intro__bottle { opacity: 0; transform: translateY(-40px) scale(0.55); transition-duration: 0.7s; }
.intro .bottle__cap { transform-box: fill-box; transform-origin: 50% 100%; transition: transform 0.9s cubic-bezier(0.15, 0.8, 0.3, 1), opacity 0.5s 0.35s; }
.intro.is-pop .bottle__cap { transform: translate(34px, -260px) rotate(250deg); opacity: 0; }
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  15% { transform: rotate(-7deg) translateX(-4px); }
  30% { transform: rotate(6deg) translateX(4px); }
  45% { transform: rotate(-5deg) translateX(-3px); }
  60% { transform: rotate(4deg) translateX(3px); }
  75% { transform: rotate(-2deg); }
}
.intro__burst { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.intro__logo { position: relative; z-index: 2; display: grid; justify-items: center; gap: 18px; text-align: center; pointer-events: none; }
.intro__mark { width: clamp(96px, 16vw, 128px); color: var(--green-700); opacity: 0; transform: scale(0.4) rotate(-90deg); transition: opacity 0.6s, transform 1s var(--ease); }
.intro.is-logo .intro__mark { opacity: 1; transform: none; }
.intro__word { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 0.45em; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 7vw, 4.6rem); letter-spacing: 0.01em; line-height: 1.05; color: var(--green-700); }
.intro__word .w { display: inline-flex; }
.intro__word .w:last-child { color: var(--brown); }
.intro__word .ch { display: inline-block; opacity: 0; transform: translateY(0.7em) rotate(8deg); transition: opacity 0.5s, transform 0.7s var(--ease); transition-delay: calc(var(--i) * 45ms + 180ms); }
.intro.is-logo .intro__word .ch { opacity: 1; transform: none; }
.intro__tag { display: inline-flex; align-items: center; gap: 12px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); opacity: 0; transform: translateY(10px); transition: opacity 0.6s 0.8s, transform 0.6s 0.8s var(--ease); }
.intro__tag::before, .intro__tag::after { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--lime); }
.intro.is-logo .intro__tag { opacity: 1; transform: none; }
.intro__skip {
  position: absolute; right: 20px; bottom: 20px; z-index: 3;
  padding: 10px 18px; border-radius: 999px; border: 0;
  background: rgba(255, 255, 255, 0.8); color: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.intro__skip:hover { background: #fff; }

/* ---------- Bottles (shared SVG) ---------- */
.bottle__bub { transform-box: fill-box; animation: bubRise var(--t, 4s) linear var(--d, 0s) infinite; opacity: 0; }
@keyframes bubRise {
  0% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 0.95; }
  50% { transform: translate(3px, -90px); }
  85% { opacity: 0.7; }
  100% { transform: translate(-2px, -190px); opacity: 0; }
}
.float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 130px 0 90px; overflow: hidden;
  background:
    radial-gradient(55% 65% at 76% 46%, #d6efbf 0%, rgba(214, 239, 191, 0) 70%),
    radial-gradient(35% 45% at 4% 96%, #fde8c9 0%, rgba(253, 232, 201, 0) 70%),
    radial-gradient(30% 40% at 96% 4%, #eaf6c4 0%, rgba(234, 246, 196, 0) 70%),
    linear-gradient(180deg, #fbfdf6 0%, #f1f8e8 100%);
}
.hero__fizz, .fizz { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 40px; }
.hero__copy { display: grid; gap: 26px; justify-items: start; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14px; font-weight: 600; color: var(--muted); }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: var(--lime-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f3d22' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center / 11px no-repeat; }
.hero__visual { position: relative; display: grid; place-items: center; min-height: 580px; }
.hero__ring {
  position: absolute; width: min(470px, 92%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0) 70%);
  box-shadow: inset 0 0 0 1px var(--line);
}
.hero__ring::before, .hero__ring::after { content: ""; position: absolute; border-radius: 50%; }
.hero__ring::before { inset: 30px; border: 1.5px dashed rgba(26, 107, 53, 0.22); animation: spin 50s linear infinite; }
.hero__ring::after { inset: -40px; border: 1px solid var(--line); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__bottle { position: relative; width: clamp(190px, 21vw, 250px); filter: drop-shadow(0 34px 30px rgba(16, 42, 27, 0.25)); }
.chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 10px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line), 0 18px 34px -18px rgba(16, 42, 27, 0.35);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 13.5px; font-weight: 700; white-space: nowrap; line-height: 1.2;
  animation: chipFloat 7s ease-in-out infinite;
}
.chip i { width: 24px; height: 24px; border-radius: 8px; background: var(--c, var(--orange)); box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14); }
.chip small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); }
.chip:nth-of-type(2) { animation-delay: -2s; }
.chip:nth-of-type(3) { animation-delay: -4s; }
.chip:nth-of-type(4) { animation-delay: -5.5s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.scroll-cue span { width: 24px; height: 38px; border-radius: 14px; box-shadow: inset 0 0 0 1.5px var(--line-2); position: relative; }
.scroll-cue span::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--green-600); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
.leaf-sprig { position: absolute; z-index: 1; width: 170px; pointer-events: none; }
.leaf-sprig .lf { transform-box: fill-box; transform-origin: 0% 50%; animation: sway 5s ease-in-out infinite; }
.leaf-sprig g:nth-of-type(2n) .lf { animation-delay: -1.5s; }
.leaf-sprig g:nth-of-type(3n) .lf { animation-delay: -3s; }
@keyframes sway { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(6deg); } }

/* ---------- Marquee ---------- */
.marquee { position: relative; overflow: hidden; padding: 20px 0; background: var(--lime); color: var(--green-900); transform: rotate(-1.2deg); margin: -24px -10px 0; z-index: 4; box-shadow: 0 18px 36px -24px rgba(16, 42, 27, 0.45); }
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 26px; padding-right: 26px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.45rem); letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap; }
.marquee__track span::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--green-700); box-shadow: 0 0 0 4px rgba(26, 107, 53, 0.18); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee--blue { background: var(--blue); color: #fff; }
.marquee--blue .marquee__track span::after { background: var(--aqua); box-shadow: 0 0 0 4px rgba(47, 168, 224, 0.3); }

/* ---------- Brand cards (home) ---------- */
.brands { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-card {
  position: relative; display: grid; align-content: space-between; gap: 40px;
  min-height: 620px; padding: 40px; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  box-shadow: var(--shadow);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 2px 4px rgba(16, 42, 27, 0.05), 0 40px 70px -34px rgba(16, 42, 27, 0.4); }
.brand-card__top { position: relative; z-index: 2; display: grid; gap: 14px; max-width: 26em; justify-items: start; }
.brand-card__tag { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.brand-card h3 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.brand-card p { opacity: 0.85; max-width: 24em; }
.brand-card__link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 16px; }
.brand-card__link i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; transition: transform 0.5s var(--ease); }
.brand-card__link svg { width: 20px; height: 20px; }
.brand-card:hover .brand-card__link i { transform: rotate(-45deg) scale(1.06); }
.brand-card--soda { background: radial-gradient(80% 70% at 75% 85%, #c6e7a4 0%, rgba(198, 231, 164, 0) 70%), linear-gradient(160deg, #f4fae9 0%, #e1f1cd 100%); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(26, 107, 53, 0.12), var(--shadow); }
.brand-card--soda .brand-card__tag { color: var(--green-700); }
.brand-card--soda .brand-card__link i { background: var(--green-700); color: #fff; }
.brand-card--soda .brand-card__art { position: absolute; right: 7%; bottom: -34px; width: 40%; max-width: 230px; z-index: 1; transition: transform 0.8s var(--ease); filter: drop-shadow(0 30px 30px rgba(16, 42, 27, 0.28)); }
.brand-card--soda:hover .brand-card__art { transform: translateY(-22px) rotate(-4deg); }
.brand-card--water { background: var(--blue-deep); color: #fff; }
.brand-card--water .brand-card__tag { color: #bfe6fb; }
.brand-card--water .brand-card__photo { position: absolute; inset: 0; z-index: -1; }
.brand-card--water .brand-card__photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.2s var(--ease); }
.brand-card--water:hover .brand-card__photo img { transform: scale(1.12); }
.brand-card--water .brand-card__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 36, 92, 0.82) 0%, rgba(8, 36, 92, 0.2) 50%, rgba(8, 36, 92, 0.7) 100%); }
.brand-card--water .brand-card__link i { background: #fff; color: var(--blue); }
.brand-card .fizz { z-index: 0; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value {
  display: grid; gap: 12px; align-content: start; padding: 28px 24px; border-radius: var(--radius);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.value:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line-2), var(--shadow); }
.value__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: color-mix(in srgb, var(--c, var(--green-700)) 14%, #fff); color: var(--c, var(--green-700)); }
.value__icon svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.08rem; letter-spacing: -0.01em; }
.value p { color: var(--muted); font-size: 15.5px; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__quote {
  position: relative; margin: 0; padding: 46px; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--green-700), var(--green-800)); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.35rem, 2.3vw, 1.9rem); line-height: 1.28; letter-spacing: -0.015em;
  box-shadow: var(--shadow);
}
.about__quote::before { content: "\201C"; position: absolute; right: 26px; top: -34px; font-size: 220px; line-height: 1; color: rgba(184, 226, 47, 0.25); }
.about__quote small { display: block; margin-top: 26px; font-family: var(--font-body); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); }

/* ---------- Branches ---------- */
.branches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.branch { position: relative; display: grid; gap: 16px; padding: 28px; border-radius: var(--radius-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm); }
.branch__map {
  position: relative; height: 190px; border-radius: 16px; overflow: hidden;
  background:
    linear-gradient(rgba(26, 107, 53, 0.07) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, rgba(26, 107, 53, 0.07) 1px, transparent 1px) 0 0 / 26px 26px,
    radial-gradient(circle at 50% 55%, rgba(184, 226, 47, 0.45), transparent 55%),
    var(--mint);
}
.branch__map::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 38%, #fff 38.5%, #fff 41%, transparent 41.5%), linear-gradient(20deg, transparent 60%, rgba(255, 255, 255, 0.8) 60.5%, rgba(255, 255, 255, 0.8) 62%, transparent 62.5%); }
.pin { position: absolute; left: 50%; top: 52%; width: 22px; height: 22px; margin: -11px; border-radius: 50%; background: var(--green-700); box-shadow: 0 0 0 5px #fff, 0 8px 16px rgba(16, 42, 27, 0.3); }
.pin::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--green-600); animation: ping 2.2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(3.2); opacity: 0; } }
.branch__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.branch__no { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-700); }
.badge { padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--cream); color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }
.branch h3 { font-size: 1.45rem; }
.branch__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.branch__map.has-map .pin { display: none; }
.branch__phone { color: var(--muted); font-size: 15px; }
.branch__phone strong { color: var(--ink); }
.branches__more { display: flex; align-items: center; gap: 12px; margin-top: 26px; font-weight: 700; color: var(--green-700); }
.branches__more span { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px var(--lime-soft); animation: pulse 2s ease-in-out infinite; }
.branch address { font-style: normal; color: var(--muted); }
.branch__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.branch__actions .btn { padding: 11px 18px; font-size: 14px; }
.btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact__info { display: grid; gap: 28px; }
.contact__list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.contact__item { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 16px; background: var(--white); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
a.contact__item:hover { transform: translateX(6px); box-shadow: inset 0 0 0 1px var(--green-600), var(--shadow-sm); }
.contact__item i { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 13px; background: color-mix(in srgb, var(--c, var(--green-700)) 14%, #fff); color: var(--c, var(--green-700)); }
.contact__item i svg { width: 22px; height: 22px; }
.contact__item small { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact__item strong { font-size: 17px; }
.form { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 36px 34px 32px; border-radius: var(--radius-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line), var(--shadow); }
.form::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--green-700), var(--lime), var(--yellow), var(--orange), var(--red)); }
.form h3 { grid-column: 1 / -1; font-size: 1.45rem; }
.form > p { grid-column: 1 / -1; color: var(--muted); margin-top: -6px; font-size: 15px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 0;
  background: #f6f8f2; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-2);
  font: inherit; font-size: 16px; transition: box-shadow 0.2s, background 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; box-shadow: inset 0 0 0 2px var(--green-600), 0 0 0 4px var(--lime-soft); }
.form__actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 6px; }
.form__status { grid-column: 1 / -1; font-size: 14px; font-weight: 600; color: var(--green-700); min-height: 1em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px;
  padding: 52px; border-radius: var(--radius-lg);
  background: radial-gradient(60% 120% at 100% 0%, rgba(184, 226, 47, 0.45), transparent 60%), linear-gradient(120deg, var(--green-700), var(--green-800)); color: #fff;
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 18em; }
.cta-band p { margin-top: 12px; opacity: 0.88; max-width: 36em; }
.cta-band--water { background: radial-gradient(60% 120% at 100% 0%, rgba(47, 168, 224, 0.6), transparent 60%), linear-gradient(120deg, var(--blue), var(--blue-deep)); }
.cta-band--water .btn { background: #fff; color: var(--blue); }
.cta-band > *:not(.fizz) { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 84px 0 34px; background: var(--green-900); color: rgba(255, 255, 255, 0.92); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer__brand { display: grid; gap: 18px; align-content: start; }
.footer__brand p { color: rgba(255, 255, 255, 0.66); max-width: 26em; font-size: 15px; }
.footer h4 { font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a, .footer ul span { color: rgba(255, 255, 255, 0.7); font-size: 15px; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 30px; padding-top: 26px; font-size: 14px; color: rgba(255, 255, 255, 0.62); }
.footer__bottom strong { color: #fff; font-weight: 700; }
.replay { background: none; border: 0; padding: 0; color: var(--lime); font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.replay:hover { color: var(--lime-2); }
.footer__giant {
  margin-top: 40px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 8.2vw, 8.6rem); line-height: 0.85; letter-spacing: -0.03em;
  background: linear-gradient(180deg, rgba(184, 226, 47, 0.3), rgba(184, 226, 47, 0));
  -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; user-select: none;
}

/* ---------- Soda page ---------- */
.spices { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.spice {
  position: relative; display: grid; gap: 10px; align-content: start; padding: 24px 22px 26px; border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.spice:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c) 50%, transparent), var(--shadow); }
.spice::before { content: ""; position: absolute; width: 150px; height: 150px; right: -60px; top: -60px; border-radius: 50%; background: var(--c); opacity: 0.14; transition: transform 0.6s var(--ease), opacity 0.4s; }
.spice:hover::before { transform: scale(1.25); opacity: 0.22; }
.spice__dot { width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.75), transparent 38%), var(--c); box-shadow: 0 8px 18px -8px var(--c); }
.spice h3 { font-size: 1.08rem; margin-top: 6px; }
.spice .hi { font-size: 13.5px; color: var(--muted); font-weight: 700; }
.spice p { font-size: 14.5px; color: var(--muted); }

/* Flavour lab */
.lab {
  --accent: #f08a24; --accent-2: #d93a2b; --bg: #fff3e6; --tone: #b5501a;
  position: relative; overflow: hidden; color: var(--ink);
  background: var(--bg);
  transition: background 0.9s var(--ease);
  padding: 120px 0 100px;
}
.lab__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(45% 55% at 50% 58%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%),
    radial-gradient(35% 40% at 92% 8%, color-mix(in srgb, var(--accent-2) 16%, transparent), transparent 70%),
    radial-gradient(35% 40% at 4% 96%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
}
.lab::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(16, 42, 27, 0.08) 1px, transparent 1.2px); background-size: 26px 26px; -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent); mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent); }
.lab__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.lab__wave {
  position: absolute; left: 50%; top: 55%; width: 120vmax; height: 120vmax; margin: -60vmax; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 45%, transparent) 0%, transparent 55%);
  transform: scale(0); opacity: 0; pointer-events: none;
}
.lab__wave.is-go { animation: wave 1.1s var(--ease) forwards; }
@keyframes wave { 0% { transform: scale(0); opacity: 0.9; } 100% { transform: scale(1.3); opacity: 0; } }
.lab .container { position: relative; z-index: 2; }
.lab .kicker { background: rgba(255, 255, 255, 0.75); color: var(--tone); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone) 25%, transparent); }
.lab .kicker::before { background: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 30%, transparent); }
.lab__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; align-items: center; }
.lab__tabs { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.lab__tab {
  display: flex; align-items: center; gap: 10px; flex: none; padding: 7px 14px 7px 7px; border-radius: 14px; border: 0; text-align: left;
  background: rgba(255, 255, 255, 0.72); color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-weight: 700; font-size: 14px; line-height: 1.25;
  transition: background 0.3s, transform 0.4s var(--ease), box-shadow 0.3s;
}
.lab__tab i { width: 28px; height: 28px; flex: none; border-radius: 10px; background: var(--c); box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14); transition: transform 0.4s var(--ease); }
.lab__tab small { display: block; font-weight: 600; font-size: 11.5px; color: var(--muted); }
.lab__tab:hover { background: #fff; transform: translateY(-2px); }
.lab__tab[aria-selected="true"] { background: #fff; box-shadow: inset 0 0 0 2px var(--c), 0 16px 30px -18px var(--c); transform: translateY(-2px); }
.lab__tab[aria-selected="true"] i { transform: rotate(-10deg) scale(1.08); }
.lab__stage { position: relative; display: grid; place-items: center; min-height: 580px; }
.lab__halo { position: absolute; width: 400px; max-width: 92%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 68%); animation: pulse 4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(0.94); } 50% { transform: scale(1.05); } }
.lab__orbit { position: absolute; width: 440px; max-width: 98%; aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed color-mix(in srgb, var(--tone) 35%, transparent); animation: spin 30s linear infinite; }
.lab__orbit::after { content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px #fff; }
.lab__bottle { position: relative; width: clamp(190px, 18vw, 250px); filter: drop-shadow(0 34px 30px rgba(16, 42, 27, 0.28)); }
.lab__bottle.is-leave { animation: bottleOut 0.42s var(--ease) forwards; }
.lab__bottle.is-enter { animation: bottleIn 0.9s var(--ease) forwards; }
@keyframes bottleOut { to { transform: translateY(40px) rotate(12deg) scale(0.85); opacity: 0; } }
@keyframes bottleIn {
  0% { transform: translateY(-60px) rotate(-14deg) scale(0.85); opacity: 0; }
  60% { transform: translateY(8px) rotate(3deg) scale(1.02); opacity: 1; }
  100% { transform: none; opacity: 1; }
}
.lab__info { display: grid; gap: 20px; align-content: center; }
.lab__info > * { transition: opacity 0.35s, transform 0.5s var(--ease); }
.lab__info.is-swap > * { opacity: 0; transform: translateY(14px); }
.lab__hi { font-size: 18px; font-weight: 700; color: var(--tone); }
.lab__name { font-size: clamp(2.1rem, 4vw, 3.4rem); color: var(--ink); }
.lab__tag { font-size: 1.12rem; color: var(--muted); }
.notes { display: flex; flex-wrap: wrap; gap: 8px; }
.notes span { padding: 8px 13px; border-radius: 10px; font-size: 14px; font-weight: 700; color: var(--tone); background: rgba(255, 255, 255, 0.85); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone) 28%, transparent); }
.meter { display: grid; gap: 10px; padding: 18px 20px; border-radius: 16px; background: rgba(255, 255, 255, 0.75); box-shadow: inset 0 0 0 1px var(--line); }
.meter__row { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 700; color: var(--muted); }
.meter__row b { width: 70px; flex: none; font-weight: 700; color: var(--ink); }
.meter__bar { flex: 1; height: 8px; border-radius: 99px; background: rgba(16, 42, 27, 0.08); overflow: hidden; }
.meter__bar span { display: block; height: 100%; width: var(--v, 50%); border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 0.9s var(--ease); }
.lab__pair { font-size: 15px; color: var(--muted); }
.lab__pair strong { color: var(--ink); }
.lab__count { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: 0.2em; color: var(--muted); }

.lineup { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 18px clamp(8px, 2vw, 26px); padding-top: 36px; }
.lineup button { border: 0; background: none; padding: 0; width: clamp(52px, 6.4vw, 82px); transition: transform 0.5s var(--ease); color: var(--muted); font-size: 11.5px; line-height: 1.25; text-align: center; font-weight: 700; display: grid; gap: 12px; justify-items: center; }
.lineup button:hover { transform: translateY(-14px) rotate(-4deg); color: var(--ink); }
.lineup button svg { filter: drop-shadow(0 14px 12px rgba(16, 42, 27, 0.2)); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; display: grid; gap: 12px; padding: 32px 28px; border-radius: var(--radius); background: var(--white); box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-weight: 800; font-size: 42px; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--c, var(--green-700)); }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- B-Spring page ---------- */
.page-water { background: #fff; }
.hero--water {
  background:
    radial-gradient(60% 60% at 80% 30%, rgba(47, 168, 224, 0.2), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(27, 63, 147, 0.1), transparent 70%),
    linear-gradient(180deg, #f6fbff 0%, var(--mist) 100%);
}
.hero--water .hero__meta span::before { background-color: #cdeafa; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3f93' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E"); }
.water-photo { position: relative; width: 100%; max-width: 560px; aspect-ratio: 4 / 4.4; border-radius: 32px; overflow: hidden; box-shadow: 0 50px 80px -44px rgba(11, 42, 107, 0.6); transform: rotate(2deg); }
.water-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); animation: drift 14s ease-in-out infinite alternate; }
@keyframes drift { to { transform: scale(1.18) translate(-2%, 2%); } }
.water-photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 40% at 30% 20%, rgba(255, 255, 255, 0.25), transparent 70%); mix-blend-mode: screen; animation: caustic 7s ease-in-out infinite alternate; }
@keyframes caustic { to { transform: translate(18%, 30%); } }
.stat { position: absolute; z-index: 3; display: grid; gap: 2px; padding: 14px 18px; border-radius: 16px; background: rgba(255, 255, 255, 0.86); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: 0 24px 40px -24px rgba(11, 42, 107, 0.45), inset 0 0 0 1px rgba(27, 63, 147, 0.08); animation: chipFloat 7s ease-in-out infinite; }
.stat b { font-family: var(--font-display); font-size: 19px; color: var(--blue); }
.stat span { font-size: 13px; font-weight: 600; color: var(--muted); }
.waves { position: absolute; left: 0; right: 0; bottom: -1px; height: 120px; z-index: 2; pointer-events: none; overflow: hidden; }
.waves svg { position: absolute; bottom: 0; width: 200%; max-width: none; height: 100%; }
.waves .w1 { animation: waveMove 14s linear infinite; opacity: 0.5; }
.waves .w2 { animation: waveMove 9s linear infinite reverse; opacity: 0.8; }
.waves .w3 { animation: waveMove 20s linear infinite; }
@keyframes waveMove { to { transform: translateX(-50%); } }

.process { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.process::before { content: ""; position: absolute; left: 6%; right: 6%; top: 38px; height: 2px; background: linear-gradient(90deg, var(--mist-2), var(--aqua), var(--blue)); }
.process__step { position: relative; display: grid; justify-items: center; gap: 12px; text-align: center; }
.process__dot { position: relative; display: grid; place-items: center; width: 78px; height: 78px; border-radius: 50%; background: #fff; color: var(--blue); box-shadow: 0 0 0 8px var(--mist), inset 0 0 0 1px rgba(27, 63, 147, 0.1), 0 20px 30px -20px rgba(11, 42, 107, 0.6); transition: transform 0.5s var(--ease), background 0.4s, color 0.4s; }
.process__dot svg { width: 30px; height: 30px; }
.process__step:hover .process__dot { transform: translateY(-6px); background: var(--blue); color: #fff; }
.process__step h3 { font-family: var(--font-body); font-weight: 800; font-size: 16px; letter-spacing: 0; }
.process__step p { font-size: 14px; color: var(--muted); }

.sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: end; }
.size { position: relative; display: grid; justify-items: center; gap: 20px; padding: 42px 24px 32px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--mist) 100%); box-shadow: inset 0 0 0 1px rgba(27, 63, 147, 0.08); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.size:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(27, 63, 147, 0.14), 0 40px 60px -40px rgba(11, 42, 107, 0.55); }
.size__bottle { height: var(--h, 260px); width: auto; transition: transform 0.7s var(--ease); filter: drop-shadow(0 26px 24px rgba(11, 42, 107, 0.28)); }
.size:hover .size__bottle { transform: rotate(-6deg) translateY(-6px); }
.size__vol { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--blue); }
.size p { color: var(--muted); font-size: 15px; text-align: center; }

.uses { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.use { display: grid; gap: 12px; padding: 26px 22px; border-radius: var(--radius); background: var(--mist); transition: transform 0.4s var(--ease), background 0.4s; }
.use:hover { transform: translateY(-5px); background: var(--mist-2); }
.use i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; background: #fff; color: var(--blue); }
.use i svg { width: 24px; height: 24px; }
.use h3 { font-family: var(--font-body); font-size: 17px; font-weight: 800; letter-spacing: 0; }
.use p { font-size: 14.5px; color: var(--muted); }

.water-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.drop-stage { position: relative; display: grid; place-items: center; min-height: 480px; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(60% 60% at 50% 40%, #3f7fd6 0%, var(--blue) 50%, var(--blue-deep) 100%); }
.drop-stage .size__bottle { position: relative; z-index: 2; --h: 380px; filter: drop-shadow(0 40px 40px rgba(0, 0, 0, 0.4)); }
.ticks { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; }
.ticks li::before { content: ""; flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%; background: var(--aqua) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center / 15px no-repeat; }

/* ---------- Served ice-cold (glass shatter) ---------- */
.chill {
  position: relative; overflow: hidden; padding: 120px 0;
  background:
    radial-gradient(50% 70% at 72% 50%, #cdeefd 0%, rgba(205, 238, 253, 0) 70%),
    radial-gradient(40% 60% at 8% 92%, #e3f6c6 0%, rgba(227, 246, 198, 0) 70%),
    linear-gradient(135deg, #f4fbef 0%, #eaf7fd 100%);
}
.chill__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; transition: transform 1.1s var(--ease), filter 1.1s var(--ease); }
.chill:not(.is-broken) .chill__inner { transform: scale(0.96); filter: blur(4px); }
.chill__copy { display: grid; gap: 20px; justify-items: start; }
.chill__bottles { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 10px; min-height: 440px; }
.chill__b { width: clamp(92px, 11vw, 140px); filter: drop-shadow(0 26px 22px rgba(16, 42, 27, 0.25)); }
.chill__b--mid { width: clamp(112px, 13.5vw, 170px); }
.chill.is-broken .chill__b { animation: chillPop 1s var(--ease) both; }
.chill.is-broken .chill__b:nth-child(1) { animation-delay: 0.1s; }
.chill.is-broken .chill__b:nth-child(2) { animation-delay: 0s; }
.chill.is-broken .chill__b:nth-child(3) { animation-delay: 0.18s; }
@keyframes chillPop { 0% { transform: translateY(40px) scale(0.9); } 55% { transform: translateY(-16px) scale(1.03) rotate(-2deg); } 100% { transform: none; } }
.ice {
  position: absolute; z-index: 2; width: 46px; aspect-ratio: 1; border-radius: 11px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(190, 228, 248, 0.55));
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.9), inset -6px -8px 14px rgba(120, 180, 210, 0.35), 0 12px 22px -12px rgba(40, 100, 140, 0.45);
  transform: rotate(var(--r, 0deg)); animation: iceFloat 6s ease-in-out infinite;
}
@keyframes iceFloat { 0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); } 50% { transform: rotate(calc(var(--r, 0deg) + 8deg)) translateY(-8px); } }
.chill__glass { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 5; cursor: pointer; }
.chill__etch {
  position: absolute; left: 0; right: 0; top: 38%; z-index: 6; transform: translateY(-50%); text-align: center; pointer-events: none;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 12vw, 10rem); letter-spacing: -0.02em; line-height: 1;
  color: rgba(255, 255, 255, 0.75); text-shadow: 0 2px 0 rgba(110, 165, 195, 0.28), 0 -1px 0 rgba(255, 255, 255, 0.9);
  transition: opacity 0.25s;
}
.chill__hint {
  position: absolute; z-index: 6; left: 50%; top: 62%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; border: 0;
  background: rgba(255, 255, 255, 0.9); color: var(--blue); font-weight: 800; font-size: 15px; white-space: nowrap;
  box-shadow: 0 20px 40px -20px rgba(27, 63, 147, 0.5), inset 0 0 0 1px rgba(27, 63, 147, 0.12);
  animation: hintPulse 1.8s ease-in-out infinite; transition: opacity 0.25s;
}
.chill__hint svg { width: 20px; height: 20px; }
@keyframes hintPulse { 0%, 100% { box-shadow: 0 20px 40px -20px rgba(27, 63, 147, 0.5), inset 0 0 0 1px rgba(27, 63, 147, 0.12), 0 0 0 0 rgba(47, 168, 224, 0.45); } 50% { box-shadow: 0 20px 40px -20px rgba(27, 63, 147, 0.5), inset 0 0 0 1px rgba(27, 63, 147, 0.12), 0 0 0 14px rgba(47, 168, 224, 0); } }
.chill.is-cracking .chill__hint, .chill.is-cracking .chill__etch, .chill.is-broken .chill__hint, .chill.is-broken .chill__etch { opacity: 0; pointer-events: none; }
.chill__replay { position: absolute; z-index: 6; right: 20px; bottom: 20px; padding: 10px 16px; border: 0; border-radius: 999px; background: #fff; color: var(--ink); font-size: 13px; font-weight: 700; box-shadow: inset 0 0 0 1px var(--line-2), var(--shadow-sm); opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.chill__replay.is-on { opacity: 1; pointer-events: auto; }

/* ---------- B-Spring splash stage ---------- */
.aqua {
  position: relative; width: 100%; max-width: 520px; aspect-ratio: 4 / 4.8; border-radius: 36px; overflow: hidden; cursor: pointer; isolation: isolate;
  background: radial-gradient(70% 50% at 50% 18%, #ffffff 0%, rgba(255, 255, 255, 0) 70%), linear-gradient(180deg, #f4fbff 0%, #dcf0fb 56%, #cfe8f8 100%);
  box-shadow: 0 50px 80px -44px rgba(11, 42, 107, 0.55), inset 0 0 0 1px rgba(27, 63, 147, 0.08);
}
.aqua:focus-visible { outline-offset: 6px; border-radius: 36px; }
.aqua__rays {
  position: absolute; inset: -20% -40% 40% -40%;
  background: repeating-linear-gradient(105deg, rgba(255, 255, 255, 0) 0 46px, rgba(255, 255, 255, 0.6) 46px 72px);
  opacity: 0.55; animation: rays 14s linear infinite;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent); mask-image: linear-gradient(180deg, #000, transparent);
}
@keyframes rays { to { transform: translateX(149px); } }
.aqua__bottle { position: absolute; left: 50%; bottom: 13%; height: 76%; z-index: 1; transform: translate(-50%, 0) rotate(-3deg); transform-origin: 50% 80%; }
.aqua__svg { height: 100%; width: auto; filter: drop-shadow(0 20px 20px rgba(11, 42, 107, 0.22)); }
.aqua.is-drop .aqua__bottle { animation: aquaDrop 1.2s cubic-bezier(0.45, 0.05, 0.35, 1) forwards; }
.aqua.is-bob .aqua__bottle { animation: aquaBob 5s ease-in-out infinite; }
@keyframes aquaDrop {
  0% { transform: translate(-50%, -135%) rotate(-16deg); }
  50% { transform: translate(-50%, 7%) rotate(5deg); }
  72% { transform: translate(-50%, -3%) rotate(-2deg); }
  100% { transform: translate(-50%, 0) rotate(-3deg); }
}
@keyframes aquaBob { 0%, 100% { transform: translate(-50%, 0) rotate(-3deg); } 50% { transform: translate(-50%, -2.5%) rotate(2.5deg); } }
.aqua__water { position: absolute; left: 0; right: 0; bottom: 0; height: 44%; z-index: 2; background: linear-gradient(180deg, rgba(64, 176, 230, 0.5) 0%, rgba(33, 120, 200, 0.78) 55%, rgba(11, 42, 107, 0.92) 100%); }
.aqua__water .fizz { opacity: 0.85; }
.aqua__waves { position: absolute; left: 0; bottom: calc(100% - 1px); width: 200%; max-width: none; height: 26px; animation: waveMove 7s linear infinite; }
.aqua__waves.w2 { height: 34px; animation-duration: 11s; animation-direction: reverse; }
.aqua__caustic {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: screen;
  background:
    radial-gradient(40px 12px at 20% 20%, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(60px 14px at 70% 35%, rgba(255, 255, 255, 0.45), transparent 70%),
    radial-gradient(50px 12px at 40% 60%, rgba(255, 255, 255, 0.35), transparent 70%),
    radial-gradient(70px 16px at 85% 75%, rgba(255, 255, 255, 0.3), transparent 70%);
  animation: causticDrift 6s ease-in-out infinite alternate;
}
@keyframes causticDrift { to { transform: translate(-6%, 4%) scale(1.08); } }
.aqua__ripple { position: absolute; left: 50%; top: 56%; width: 120px; height: 22px; margin: -11px 0 0 -60px; z-index: 3; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.9); opacity: 0; pointer-events: none; }
.aqua.is-splash .aqua__ripple { animation: ripple 1.5s ease-out forwards; }
.aqua.is-splash .aqua__ripple.r2 { animation-delay: 0.25s; }
@keyframes ripple { 0% { transform: scale(0.4); opacity: 0.95; } 100% { transform: scale(3.4); opacity: 0; } }
.aqua__splash { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; pointer-events: none; }
.aqua__tip { position: absolute; left: 50%; top: 18px; z-index: 5; transform: translateX(-50%); padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.85); color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; box-shadow: inset 0 0 0 1px rgba(27, 63, 147, 0.1); opacity: 0; transition: opacity 0.3s; }
.aqua:hover .aqua__tip { opacity: 1; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- 404 ---------- */
.lost { min-height: 100svh; display: grid; place-items: center; text-align: center; }
.lost .container { position: relative; z-index: 2; display: grid; justify-items: center; gap: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process::before { display: none; }
  .uses { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  body { font-size: 16px; }
  .section { padding: 88px 0; }
  .nav__inner { height: 68px; }
  .nav__toggle { display: block; z-index: 2; }
  .nav__links {
    position: fixed; inset: 0; z-index: 1; flex-direction: column; justify-content: center; gap: 8px;
    background: rgba(251, 252, 247, 0.98);
    opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
  }
  .nav__links a { font-family: var(--font-display); font-size: 24px; padding: 12px 24px; color: var(--ink); }
  .nav__links .nav__cta { margin: 16px 0 0; font-size: 17px; font-family: var(--font-body); }
  .nav.is-open, .nav.is-open.is-solid { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }
  .nav.is-open .logo { position: relative; z-index: 2; }
  .hero { padding: 110px 0 70px; min-height: auto; }
  .hero__grid, .about, .contact, .water-split, .chill__inner { grid-template-columns: 1fr; }
  .chill__bottles { min-height: 340px; }
  .lab__tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; margin: 0 -20px; padding: 4px 20px 10px; scrollbar-width: none; }
  .lab__tabs::-webkit-scrollbar { display: none; }
  .lab__tab[aria-selected="true"], .lab__tab:hover { transform: none; }
  .hero__visual { min-height: 480px; }
  .brands, .branches { grid-template-columns: 1fr; }
  .brand-card { min-height: 540px; padding: 30px; }
  .lab { padding: 90px 0 80px; }
  .lab__grid { grid-template-columns: 1fr; gap: 16px; }
  .lab__stage { min-height: 460px; }
  .steps, .sizes { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 34px 26px; }
  .about__quote { padding: 32px; }
  .scroll-cue { display: none; }
}

@media (max-width: 560px) {
  .spices { grid-template-columns: 1fr 1fr; }
  .values, .uses { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .form { grid-template-columns: 1fr; padding: 28px 20px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .chip { font-size: 12px; padding: 7px 12px 7px 8px; }
  .chip i { width: 18px; height: 18px; border-radius: 6px; }
  .btn { padding: 14px 22px; }
  .display { font-size: clamp(2.3rem, 11vw, 3rem); }
  .hero__visual { min-height: 440px; }
  .hero__bottle { width: 165px; }
  .brand-card--soda .brand-card__art { width: 38%; right: -2%; bottom: -44px; }
  .lineup button span { display: none; }
  .lab__bottle { width: 165px; }
  .lab__stage { min-height: 400px; }
  .leaf-sprig { width: 110px; }
}

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