/* ═══════════════════════════════════════════════════════════
   PURPOSE WATER — Brand Website
   Palette: Midnight navy · Glacier blue · Brushed silver · White
   Fonts:   Cabinet Grotesk (display) · Satoshi (body)
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colours */
  --navy:      #0a0f1e;
  --navy-mid:  #111827;
  --navy-soft: #1a2540;
  --blue:      #1a6fa8;
  --blue-light:#2a9fd6;
  --blue-pale: #e8f4fb;
  --silver:    #c8d0dc;
  --white:     #ffffff;
  --off-white: #f6f8fa;
  --text:      #1a2028;
  --text-mid:  #4a5568;
  --text-light:#718096;
  --border:    #e2e8f0;

  /* Typography */
  --font-display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,111,168,0.35);
}
.btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,168,0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.83rem; }
.btn--full { width: 100%; }

/* ── Typography helpers ───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.section-eyebrow--light { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.section-title--center { text-align: center; }
.section-title--light { color: var(--white); }


/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out),
              backdrop-filter 0.35s var(--ease-out),
              border-color 0.35s;
}
.nav.scrolled {
  background: rgba(10, 15, 30, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
}
.nav__logo-text span { color: var(--blue-light); }
.nav__logo-text span.water-glow { animation: water-glow 0.85s ease-in-out forwards; color: unset; }
.nav__logo-text .pw-purpose { color: #ffffff !important; text-shadow: none; }

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.18s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--white); }
.nav__cta { flex-shrink: 0; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(10,15,30,0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile-link:last-child { border-bottom: none; }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: min(100dvh, 750px);
  background: linear-gradient(135deg, #07101f 0%, #0d1b38 50%, #091525 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Subtle animated radial pulse */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 65% 55%, rgba(26,111,168,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(42,159,214,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  padding: 7rem 0 4rem;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 44ch;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

/* Bottle */
.hero__bottle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bottle-glow {
  display: none;
}
.hero__bottle-static {
  position: absolute;
  width: min(260px, 35vw);
  height: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bottle-canvas {
  position: relative;
  width: min(460px, 54vw);
  height: min(630px, 88vh);
  display: block;
  z-index: 1;
}

.hero__headline-sub {
  display: block;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  color: var(--blue-light);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 0.1em;
}

/* ── Nav logo pulse ──────────────────────────────────────── */
@keyframes logo-pulse {
  0%   { transform: scale(1);    filter: drop-shadow(0 0 0px   rgba(42,159,214,0.0)); }
  40%  { transform: scale(1.30); filter: drop-shadow(0 0 16px  rgba(42,159,214,1.0)); }
  100% { transform: scale(1);    filter: drop-shadow(0 0 0px   rgba(42,159,214,0.0)); }
}
.logo-pulse {
  animation: logo-pulse 0.85s ease-in-out forwards;
  transform-origin: center center;
}

@keyframes purpose-glow {
  0%   { color: #ffffff; text-shadow: none; }
  40%  { color: #ffffff; text-shadow: 0 0 8px rgba(255,255,255,0.95), 0 0 22px rgba(255,255,255,0.75), 0 0 45px rgba(200,235,255,0.55); }
  100% { color: #ffffff; text-shadow: none; }
}
.pw-purpose {
  color: #ffffff;
}
.purpose-glow {
  animation: purpose-glow 0.85s ease-in-out forwards;
}

@keyframes water-glow {
  0%   { color: #2a9fd6; text-shadow: none; }
  40%  { color: #d0f4ff; text-shadow: 0 0 10px rgba(42,159,214,1), 0 0 28px rgba(42,159,214,0.85), 0 0 55px rgba(100,210,255,0.65), 0 0 80px rgba(42,159,214,0.35); }
  100% { color: #2a9fd6; text-shadow: none; }
}
.water-glow {
  animation: water-glow 0.85s ease-in-out forwards;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Scroll cue */
.hero__scroll {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero__scroll:hover { color: rgba(255,255,255,0.7); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  background: var(--blue);
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  align-items: center;
}
.marquee__dot { color: rgba(255,255,255,0.4); }

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

/* ════════════════════════════════════════════════════════════
   STORY
════════════════════════════════════════════════════════════ */
.story {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--white);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.story__body {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.story__body strong { color: var(--text); font-weight: 600; }
.story__body em { font-style: italic; color: var(--blue); }

.story__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.story__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.story__stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.story__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1f2e;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.story__img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.story__img-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}
.story__pull-quote {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--blue);
  background: var(--blue-pale);
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-soft);
  line-height: 1.6;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   FULL BLEED DARK (manifesto)
════════════════════════════════════════════════════════════ */
.full-bleed-dark {
  background: var(--navy);
  padding: clamp(2rem, 3.5vw, 3.5rem) 0;
}
.full-bleed-dark__inner {
  text-align: center;
}
.manifesto {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4rem);
  flex-wrap: wrap;
}
.manifesto__word {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 0;
  transition: text-shadow 0.3s, opacity 0.3s;
}
/* Purpose — white with white glow */
.manifesto__word--purpose {
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(255,255,255,0.9),
    0 0 40px rgba(255,255,255,0.45),
    0 0 80px rgba(255,255,255,0.2);
}
/* Purity — brand blue with white glow */
.manifesto__word--purity {
  color: #2a9fd6;
  text-shadow:
    0 0 18px rgba(42,159,214,0.95),
    0 0 40px rgba(255,255,255,0.5),
    0 0 80px rgba(42,159,214,0.3);
}
/* Planet — green with white glow */
.manifesto__word--planet {
  color: #3ecf8e;
  text-shadow:
    0 0 18px rgba(62,207,142,0.95),
    0 0 40px rgba(255,255,255,0.45),
    0 0 80px rgba(62,207,142,0.3);
}
.manifesto__word:hover {
  opacity: 0.75;
}

/* ════════════════════════════════════════════════════════════
   PRODUCT
════════════════════════════════════════════════════════════ */
.product {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--off-white);
}
.product__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  margin: 3.5rem 0;
}
.product__bottle-hero {
  position: relative;
  background: linear-gradient(160deg, #111827 0%, #0d1525 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  overflow: hidden;
}
.product__bottle-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(26,111,168,0.18) 0%, transparent 70%);
}
.product__bottle-img {
  position: relative;
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.product__specs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.spec-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.spec-card:hover {
  box-shadow: 0 8px 30px rgba(26,111,168,0.1);
  transform: translateY(-2px);
}
.spec-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-card__title {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.spec-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-mid);
}

/* Comparison */
.comparison {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}
.comparison__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}
.comparison__col {
  border-radius: 16px;
  padding: 1.75rem;
  border: 1.5px solid;
}
.comparison__col--good {
  border-color: var(--blue-light);
  background: rgba(42,159,214,0.10);
}
.comparison__col--bad {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  opacity: 1;
}
.comparison__col-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.comparison__logo {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  object-fit: contain;
}
.comparison__icon-wrap {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.comparison__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.comparison__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
}
.comparison__col--good .comparison__list svg { color: #1a9e5e; flex-shrink: 0; }
.comparison__col--bad .comparison__list svg { color: #e53e3e; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   WHOLESALE
════════════════════════════════════════════════════════════ */
.wholesale {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.wholesale__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.wholesale__body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}
.wholesale__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.wholesale__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.wholesale__features li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--blue-light);
}
.wholesale__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sector-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(26,111,168,0.2);
  border: 1px solid rgba(26,111,168,0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.03em;
}

/* Form */
.wholesale__form-wrap { position: relative; }
.inquiry-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.25rem;
}
.inquiry-form__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.inquiry-form__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: rgba(26,111,168,0.12);
}
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--white);
}
.form-success svg { margin: 0 auto 1rem; color: #34d399; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════════════════════
   EMOTO / INSPIRATION SECTION
════════════════════════════════════════════════════════════ */
.emoto {
  background: linear-gradient(160deg, #0a1628 0%, #0d1f3c 50%, #071018 100%);
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.emoto::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(42,159,214,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.emoto__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.emoto__badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(42,159,214,0.12);
  border: 1px solid rgba(42,159,214,0.35);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
}
.emoto__title {
  margin-bottom: 1.5rem;
}
.emoto__lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 3.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.emoto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
}
.emoto__card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(42,159,214,0.2);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.25s, background 0.25s;
}
.emoto__card:hover {
  border-color: rgba(42,159,214,0.3);
  background: rgba(42,159,214,0.05);
}
.emoto__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(42,159,214,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-light);
}
.emoto__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.emoto__card-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}
.emoto__quote {
  border-left: 3px solid var(--blue-light);
  padding: 1rem 1.5rem;
  margin: 2.5rem auto;
  max-width: 680px;
  text-align: left;
}
.emoto__quote p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
}
.emoto__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   WATER FACTS
════════════════════════════════════════════════════════════ */
.waterfacts {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.waterfacts .section-eyebrow--light {
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
}
.waterfacts__intro {
  text-align: center;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.60);
  max-width: 740px;
  margin: 1.5rem auto 3.5rem;
}
.waterfacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.waterfacts__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
}
.waterfacts__card--highlight {
  background: rgba(42,159,214,0.08);
  border-color: rgba(42,159,214,0.35);
  position: relative;
}
.waterfacts__card--highlight::before {
  content: '★ Our Source';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-light);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.waterfacts__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.waterfacts__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(42,159,214,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
}
.waterfacts__card-icon--muted {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.40);
}
.waterfacts__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(42,159,214,0.12);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.3rem;
}
.waterfacts__card-tag--neutral {
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
}
.waterfacts__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.waterfacts__card-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin-bottom: 1.25rem;
}
.waterfacts__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.waterfacts__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.waterfacts__list li svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--blue-light);
}
.waterfacts__list--neutral li svg {
  color: rgba(255,255,255,0.35);
}
.waterfacts__list--neutral li:nth-child(n+3) svg {
  color: rgba(220,80,80,0.7);
}
.waterfacts__list--neutral li:nth-child(n+3) {
  color: rgba(255,255,255,0.50);
}
.waterfacts__cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: rgba(42,159,214,0.07);
  border: 1px solid rgba(42,159,214,0.2);
  border-radius: 16px;
}
.waterfacts__cta p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
}

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--navy-mid);
}
.contact .section-title { color: var(--white); }
.contact .section-eyebrow { color: var(--blue-light); }
.contact__inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.contact__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}
.email-form input {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 0.8rem 1.2rem;
  border: 1.5px solid rgba(42,159,214,0.35);
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.email-form input:focus { border-color: var(--blue); }
.contact__tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  text-align: center;
  margin: 0.6rem 0 1.25rem;
  letter-spacing: 0.02em;
}
.email-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a9e5e;
  margin-top: 0.5rem;
}
.contact__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  transition: opacity 0.18s;
}
.contact__link:hover { opacity: 0.7; }
.contact__link--static {
  cursor: default;
}
.contact__link--static:hover { opacity: 1; }
.copy-btn {
  background: rgba(42,159,214,0.15);
  border: 1px solid rgba(42,159,214,0.3);
  border-radius: 6px;
  color: var(--blue-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  margin-left: 4px;
  transition: background 0.18s, border-color 0.18s;
  vertical-align: middle;
}
.copy-btn:hover {
  background: rgba(42,159,214,0.28);
  border-color: rgba(42,159,214,0.6);
}
.copy-btn--copied {
  color: #3ecf8e;
  border-color: rgba(62,207,142,0.5);
  background: rgba(62,207,142,0.12);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer__brand:hover { opacity: 0.75; }
.footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  object-fit: contain;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
}
.footer__brand-name span {
  color: var(--blue-light);
}
.footer__tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-left: 1rem;
}
.footer__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.footer__nav a:hover { color: var(--white); }
.footer__legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product__layout { grid-template-columns: 300px 1fr; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 0 3rem;
    gap: 3rem;
  }
  .hero__eyebrow { text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__bottle { order: -1; display: flex; justify-content: center; width: 100%; }
  .hero__bottle-canvas { width: min(340px, 80vw); height: min(460px, 62vh); }

  .story__grid { grid-template-columns: 1fr; }
  .story__visual { order: -1; }

  .product__layout { grid-template-columns: 1fr; }
  .product__bottle-hero { max-width: 320px; margin-inline: auto; }

  .wholesale__grid { grid-template-columns: 1fr; }
  .emoto__grid { grid-template-columns: 1fr; }
  .waterfacts__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .comparison__grid { grid-template-columns: 1fr; max-width: 420px; }

  .manifesto { gap: 1.5rem; }
  .manifesto__word { font-size: clamp(2rem, 8vw, 3.5rem); }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer__legal { text-align: left; }
}

@media (max-width: 540px) {
  .story__stats { gap: 1.5rem; flex-wrap: wrap; }
  .email-form { flex-direction: column; }
  .email-form input, .email-form .btn { width: 100%; }
  .hero__bottle-canvas { width: min(260px, 75vw); height: min(360px, 55vh); }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — Shared styles for Our Story, The Science, Water Facts
   ═══════════════════════════════════════════════════════════ */

/* Active nav link */
.nav__link--active {
  color: var(--white) !important;
  border-bottom: 1.5px solid var(--blue-light);
  padding-bottom: 2px;
}

/* Page hero (replaces the canvas hero on inner pages) */
.page-hero {
  padding: 5rem 0 3rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.page-hero__inner {
  max-width: 720px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 1rem 0 1.25rem;
}
.page-hero__sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.62);
  max-width: 580px;
}

/* ── Three Pillars (homepage) ── */
.pillars {
  background: var(--navy-mid);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(42,159,214,0.12);
  border: 1px solid rgba(42,159,214,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 0.25rem;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.pillar__body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ── Product snapshot (homepage) ── */
.product-snap {
  padding: 3.5rem 0;
  background: var(--navy);
}
.product-snap__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-snap__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.product-snap__img {
  width: min(300px, 80%);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}
.product-snap__alumitek {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(42,159,214,0.75);
  text-align: center;
  font-style: italic;
  max-width: 260px;
  border-top: 1px solid rgba(42,159,214,0.2);
  padding-top: 0.85rem;
}
.product-snap__alumitek--second {
  color: rgba(255,255,255,0.55);
  font-style: normal;
  border-top: none;
  padding-top: 0;
  margin-top: -0.25rem;
}
.product-snap__text .section-title {
  margin: 0.5rem 0 1.1rem;
}
.product-snap__body {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1.25rem;
}
.product-snap__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.product-snap__specs li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.product-snap__specs li svg {
  color: var(--blue-light);
  flex-shrink: 0;
}

/* ── Our Story page ── */
.story-page {
  background: var(--navy);
  padding: 3rem 0 4rem;
}
.story-page__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.story-page__block {
  margin-bottom: 2.5rem;
}
.story-page__heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.story-page__block p {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.72);
}
.story-page__stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0 2.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.story-page__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.story-page__visual {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.story-page__img {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

/* ── The Science page ── */
.emoto-page {
  background: var(--navy-mid);
  padding: 3rem 0 4rem;
}
.emoto-page .emoto__lead {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

/* ── Water Facts page ── */
.waterfacts-page {
  background: var(--navy-mid);
  padding: 3rem 0 4rem;
}

/* ── Shared page CTA ── */
.page-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

/* ── Product snap: center on laptops ── */
@media (max-width: 1280px) {
  .product-snap__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .product-snap__specs { align-items: center; }
}

/* ── Responsive: inner pages ── */
@media (max-width: 860px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-snap__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .product-snap__specs { align-items: center; }
  .story-page__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-page__visual { position: static; }
  .story-page__stats { gap: 1.5rem; flex-wrap: wrap; }
  .story-page__cta { justify-content: center; }
}


/* ── Story Full (new Our Story page) ── */
.story-full {
  background: var(--navy);
  padding: 4rem 0 5rem;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}
.story-full__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: center;
}
.story-full__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0.75rem 0 2rem;
}
.story-full__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.story-full__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}
.story-full__body strong { color: var(--white); font-weight: 600; }
.story-full__stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.story-full__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.story-full__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.story-full__img {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.55));
}
@media (max-width: 860px) {
  .story-full { min-height: auto; padding: 3rem 0 4rem; }
  .story-full__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-full__visual { order: -1; }
  .story-full__img { max-width: 180px; }
  .story-full__stats { gap: 1.5rem; }
  .story-full__cta { justify-content: center; }
  .story-full__title { font-size: clamp(2.2rem, 7vw, 3rem); text-align: center; }
  .story-full__body p { text-align: center; }
}

