/* ═══════════════════════════════════════════════════════════
   NEQUA WATER — Design System
   Palette: Deep Navy · Glacial Aqua · Ice Mist · Warm Gold
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #0A2540;
  --navy-mid:   #0D3060;
  --navy-light: #1A4A7A;
  --aqua:       #4FC3F7;
  --aqua-light: #B3E5FC;
  --aqua-pale:  #E8F4FD;
  --gold:       #C9A87C;
  --gold-light: #E8D5B0;
  --parchment:  #F7F5F2;
  --white:      #FFFFFF;
  --midnight:   #1A1A2E;
  --text-dark:  #0A2540;
  --text-mid:   #3A5068;
  --text-light: #7A9AB5;
  --border:     rgba(10,37,64,0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(10,37,64,0.08);
  --shadow-md:  0 8px 32px rgba(10,37,64,0.12);
  --shadow-lg:  0 24px 64px rgba(10,37,64,0.16);
  --shadow-xl:  0 40px 100px rgba(10,37,64,0.2);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--aqua); border-radius: 3px; }

/* ── UTILITIES ────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: clamp(80px, 10vw, 140px) 0; }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  background: rgba(79,195,247,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--aqua);
}

.section__desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,37,64,0.25);
}
.btn--primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10,37,64,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(10,37,64,0.2);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATIONS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.nav__logo-mark {
  width: 28px;
  height: 35px;
  color: var(--navy);
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--navy);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav__links a:hover { color: var(--navy); background: var(--aqua-pale); }

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
}
.nav__cta:hover { background: var(--navy-mid) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 20px clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav__mobile a {
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__mobile a:hover { background: var(--aqua-pale); color: var(--navy); }
.nav__mobile.open { display: flex; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px clamp(20px, 5vw, 60px) 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4FC3F7 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0A2540 0%, transparent 70%);
  bottom: 100px; left: -100px;
  opacity: 0.15;
  animation: orbFloat2 15s ease-in-out infinite;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C9A87C 0%, transparent 70%);
  top: 50%; right: 30%;
  opacity: 0.12;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -60px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.1); }
}

.hero__ripple-container {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
}
.hero__ripple {
  position: absolute;
  border: 1px solid rgba(79,195,247,0.2);
  border-radius: 50%;
  animation: rippleExpand 4s ease-out infinite;
}
.hero__ripple:nth-child(1) { width: 200px; height: 200px; margin: -100px; animation-delay: 0s; }
.hero__ripple:nth-child(2) { width: 400px; height: 400px; margin: -200px; animation-delay: 1.3s; }
.hero__ripple:nth-child(3) { width: 600px; height: 600px; margin: -300px; animation-delay: 2.6s; }

@keyframes rippleExpand {
  0% { opacity: 0.6; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1.5); }
}

.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--aqua);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: italic;
  color: var(--aqua);
}

.hero__sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat { text-align: center; }
.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Bottle */
.hero__bottle-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero__bottle {
  animation: bottleFloat 6s ease-in-out infinite;
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero__bottle-body {
  position: relative;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__bottle-cap {
  width: 44px;
  height: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 6px 6px 0 0;
  position: relative;
  z-index: 2;
}
.hero__bottle-cap::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px; right: -4px;
  height: 6px;
  background: var(--navy-light);
  border-radius: 2px;
}

.hero__bottle-neck {
  width: 52px;
  height: 40px;
  background: linear-gradient(180deg, rgba(79,195,247,0.15) 0%, rgba(79,195,247,0.25) 100%);
  border: 1.5px solid rgba(79,195,247,0.3);
  border-top: none;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.hero__bottle-label {
  width: 140px;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(10,37,64,0.92) 0%, rgba(10,37,64,0.85) 100%);
  border-radius: 12px;
  border: 1.5px solid rgba(79,195,247,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bottle-label::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
}

.hero__bottle-label-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 12px;
  text-align: center;
}

.hbl-logo svg { width: 28px; height: 36px; }

.hbl-brand {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--white);
}

.hbl-sub {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hbl-size {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--aqua);
  margin-top: 4px;
}

.hbl-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.hbl-badges span {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,124,0.4);
  padding: 3px 7px;
  border-radius: 100px;
}

.hero__bottle-shine {
  position: absolute;
  top: 10px; left: 12px;
  width: 18px;
  height: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
  border-radius: 10px;
  transform: rotate(-5deg);
}

.hero__bottle-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(79,195,247,0.15) 0%, rgba(79,195,247,0.3) 100%);
  border-radius: 0 0 10px 10px;
}

.hero__bottle-shadow {
  width: 100px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(10,37,64,0.2) 0%, transparent 70%);
  margin-top: 16px;
  border-radius: 50%;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--text-light);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--aqua);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ══════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════ */
.ticker {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: tickerScroll 30s linear infinite;
}

.ticker__track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.ticker__dot {
  color: var(--aqua) !important;
  font-size: 8px !important;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   STORY
══════════════════════════════════════════════════════ */
.story { background: var(--parchment); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.story__visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aqua), var(--navy));
}

.story__aquifer {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.story__aquifer-layers {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story__layer {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.story__layer span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.story__layer--1 { background: #8B9E7A; }
.story__layer--1 span { color: white; }
.story__layer--2 { background: #A0856B; }
.story__layer--2 span { color: white; }
.story__layer--3 { background: #7A6B5A; }
.story__layer--3 span { color: white; }
.story__layer--4 {
  background: linear-gradient(90deg, #1A4A7A, #0D3060);
  flex: 2;
}
.story__layer--4 span { color: var(--aqua); }
.story__layer--5 { background: #2A3A4A; }
.story__layer--5 span { color: rgba(255,255,255,0.5); }

.story__water-flow {
  position: absolute;
  right: 30px;
  top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.story__drop {
  width: 8px;
  height: 12px;
  background: var(--aqua);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0;
  animation: dropFall 2s ease-in infinite;
}
.story__drop:nth-child(1) { animation-delay: 0s; }
.story__drop:nth-child(2) { animation-delay: 0.7s; }
.story__drop:nth-child(3) { animation-delay: 1.4s; }

@keyframes dropFall {
  0% { opacity: 0; transform: translateY(-20px); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

.story__cert-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--navy);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.story__cert-badge svg { width: 14px; height: 14px; }

.story__content .section__label { text-align: left; }
.story__content .section__title { text-align: left; }

.story__body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.story__pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.story__pillar:hover {
  border-color: var(--aqua);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.story__pillar-icon {
  width: 44px; height: 44px;
  background: var(--aqua-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.story__pillar-icon svg { width: 22px; height: 22px; }

.story__pillar div { display: flex; flex-direction: column; gap: 2px; }
.story__pillar strong { font-size: 14px; font-weight: 600; color: var(--navy); }
.story__pillar span { font-size: 12px; color: var(--text-light); }

/* ══════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════ */
.process { background: var(--white); }

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.process__step:hover {
  background: var(--aqua-pale);
  transform: translateY(-8px);
}

.process__step-icon {
  width: 80px; height: 80px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10,37,64,0.2);
  transition: var(--transition);
}
.process__step:hover .process__step-icon {
  background: var(--aqua);
  color: var(--navy);
  transform: scale(1.1);
}
.process__step-icon svg { width: 40px; height: 40px; }

.process__step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(10,37,64,0.08);
  line-height: 1;
  position: absolute;
  top: 8px; right: 16px;
}

.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.process__step-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.process__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  color: var(--aqua);
}
.process__connector::after {
  content: '→';
  font-size: 24px;
  color: var(--aqua-light);
}

/* ══════════════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════════════ */
.products { background: var(--parchment); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: end;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.product-card:hover {
  border-color: var(--aqua);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.product-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
  border-color: var(--aqua);
}

.product-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--aqua-pale);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid var(--aqua-light);
}

.product-card__tag--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Product Bottle CSS */
.product-card__bottle {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pcb {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bottleFloat 5s ease-in-out infinite;
}
.pcb:nth-child(2) { animation-delay: 1s; }
.pcb:nth-child(3) { animation-delay: 2s; }

.pcb__cap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 4px 4px 0 0;
}
.pcb--small .pcb__cap { width: 28px; height: 14px; }
.pcb--medium .pcb__cap { width: 36px; height: 18px; }
.pcb__cap--large { width: 50px; height: 20px; border-radius: 6px 6px 0 0; }

.pcb__neck {
  background: rgba(79,195,247,0.2);
  border: 1px solid rgba(79,195,247,0.3);
  border-top: none;
}
.pcb--small .pcb__neck { width: 32px; height: 24px; }
.pcb--medium .pcb__neck { width: 40px; height: 30px; }

.pcb__body {
  position: relative;
  background: linear-gradient(180deg, rgba(10,37,64,0.88) 0%, rgba(10,37,64,0.8) 100%);
  border-radius: 8px;
  border: 1px solid rgba(79,195,247,0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcb--small .pcb__body { width: 60px; height: 100px; }
.pcb--medium .pcb__body { width: 80px; height: 140px; }
.pcb__body--gallon {
  width: 100px;
  height: 120px;
  border-radius: 12px;
}

.pcb__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1;
}
.pcb__brand {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
}
.pcb--small .pcb__brand { font-size: 8px; }
.pcb--medium .pcb__brand { font-size: 10px; }
.pcb__body--gallon .pcb__brand { font-size: 12px; }

.pcb__vol {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--aqua);
}
.pcb--small .pcb__vol { font-size: 10px; }
.pcb--medium .pcb__vol { font-size: 14px; }
.pcb__body--gallon .pcb__vol { font-size: 16px; }

.pcb__shine {
  position: absolute;
  top: 8px; left: 8px;
  width: 6px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  border-radius: 4px;
}
.pcb__body--gallon .pcb__shine { height: 60px; }

.pcb__water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(79,195,247,0.1) 0%, rgba(79,195,247,0.25) 100%);
}

.product-card__info { width: 100%; }

.product-card__size {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-card--featured .product-card__size { color: var(--white); }

.product-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-card--featured .product-card__desc { color: rgba(255,255,255,0.7); }

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  text-align: left;
}
.product-card__features li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card--featured .product-card__features li { color: rgba(255,255,255,0.7); }
.product-card__features li::before {
  content: '◆';
  font-size: 6px;
  color: var(--aqua);
  flex-shrink: 0;
}

.product-card--featured .btn--primary {
  background: var(--aqua);
  color: var(--navy);
}
.product-card--featured .btn--primary:hover {
  background: var(--white);
}

/* ══════════════════════════════════════════════════════
   BOTTLE LABELS
══════════════════════════════════════════════════════ */
.labels { background: var(--white); }

.labels__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.label-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.label-card:hover { transform: translateY(-6px); }

.label-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 2/5;
  display: flex;
  flex-direction: column;
  position: relative;
}

.label-preview--classic {
  background: linear-gradient(180deg, #0A2540 0%, #0D3060 50%, #0A2540 100%);
}
.label-preview--aqua {
  background: linear-gradient(180deg, #B3E5FC 0%, #4FC3F7 50%, #81D4FA 100%);
}
.label-preview--minimal {
  background: linear-gradient(180deg, #F7F5F2 0%, #FFFFFF 50%, #F0EDE8 100%);
  border: 1px solid var(--border);
}
.label-preview--event {
  background: linear-gradient(180deg, #1A1A2E 0%, #0A2540 50%, #1A1A2E 100%);
}

.lp__top-band {
  height: 6px;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  flex-shrink: 0;
}

.lp__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 12px;
  text-align: center;
}

.lp__logo-mark svg { width: 24px; height: 30px; }

.lp__brand {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
}
.lp__brand--dark { color: var(--navy); }
.lp__brand--navy { color: var(--navy); }

.lp__tagline {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.lp__tagline--dark { color: rgba(10,37,64,0.6); }
.lp__tagline--navy { color: rgba(10,37,64,0.5); }

.lp__divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 4px 0;
}
.lp__divider--dark { background: rgba(10,37,64,0.2); }
.lp__divider--navy { background: rgba(10,37,64,0.15); }

.lp__type {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.lp__type--dark { color: rgba(10,37,64,0.5); }
.lp__type--navy { color: rgba(10,37,64,0.4); }

.lp__volume {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--aqua);
}
.lp__volume--dark { color: var(--navy); }
.lp__volume--navy { color: var(--navy); }

.lp__badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.lp__badges span {
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,124,0.4);
  padding: 2px 6px;
  border-radius: 100px;
}
.lp__badges--dark span { color: var(--navy); border-color: rgba(10,37,64,0.3); }
.lp__badges--navy span { color: var(--navy); border-color: rgba(10,37,64,0.2); }

.lp__bottom-band {
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--aqua));
  flex-shrink: 0;
}

.label-card__info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.label-card__info p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.labels__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.labels__cta p {
  font-size: 18px;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════════════
   MINERALS
══════════════════════════════════════════════════════ */
.minerals { background: var(--navy); }
.minerals .section__label { background: rgba(79,195,247,0.15); color: var(--aqua); }
.minerals .section__title { color: var(--white); }
.minerals .section__title em { color: var(--aqua); }
.minerals .section__desc { color: rgba(255,255,255,0.6); }

.minerals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.mineral-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.mineral-card:hover {
  background: rgba(79,195,247,0.1);
  border-color: rgba(79,195,247,0.3);
  transform: translateY(-6px);
}

.mineral-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 auto 20px;
}
.mineral-card__icon--ca { background: rgba(79,195,247,0.2); color: var(--aqua); }
.mineral-card__icon--mg { background: rgba(201,168,124,0.2); color: var(--gold); }
.mineral-card__icon--k  { background: rgba(100,200,100,0.2); color: #81C784; }
.mineral-card__icon--na { background: rgba(200,100,100,0.2); color: #EF9A9A; }

.mineral-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.mineral-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mineral-card__bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.mineral-card__fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  border-radius: 2px;
  transition: width 1.5s ease;
}

.mineral-card__level {
  font-size: 12px;
  font-weight: 600;
  color: var(--aqua);
  letter-spacing: 0.05em;
}

.minerals__ph {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.minerals__ph-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.minerals__ph-label span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.minerals__ph-label strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--aqua);
}

.minerals__ph-track {
  height: 12px;
  background: linear-gradient(90deg,
    #FF5252 0%,
    #FF9800 20%,
    #FFEB3B 35%,
    #8BC34A 50%,
    #4FC3F7 65%,
    #2196F3 80%,
    #673AB7 100%
  );
  border-radius: 6px;
  position: relative;
  margin-bottom: 12px;
}

.minerals__ph-zone {
  position: absolute;
  top: -4px; bottom: -4px;
  left: calc(6.5/14 * 100%);
  width: calc(2/14 * 100%);
  border: 2px solid var(--white);
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
}

.minerals__ph-marker {
  position: absolute;
  top: -8px;
  width: 28px; height: 28px;
  background: var(--white);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transform: translateX(-50%);
  transition: left 1s ease;
  left: calc(7/14 * 100%);
}

.minerals__ph-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   BRAND IDENTITY
══════════════════════════════════════════════════════ */
.brand { background: var(--parchment); }

.brand__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.brand__block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.brand__block:hover { box-shadow: var(--shadow-md); }

.brand__block--logo { grid-column: 1 / -1; }
.brand__block--social { grid-column: 1 / -1; }

.brand__block-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Logo display */
.brand__logo-display {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.brand__logo-light, .brand__logo-dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 48px;
  border-radius: var(--radius-md);
  flex: 1;
  min-width: 200px;
}
.brand__logo-light { background: var(--parchment); border: 1px solid var(--border); }
.brand__logo-dark { background: var(--navy); }

.brand__logo-svg { width: 48px; height: 60px; }

.brand__wordmark {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--navy);
}
.brand__wordmark--white { color: var(--white); }

.brand__tagline-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.brand__tagline-text--white { color: rgba(255,255,255,0.5); }

/* Colors */
.brand__colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand__color { display: flex; flex-direction: column; gap: 8px; }

.brand__color-swatch {
  height: 80px;
  background: var(--c);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.brand__color:hover .brand__color-swatch { transform: scale(1.03); }

.brand__color-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.brand__color-hex {
  font-size: 11px;
  color: var(--text-light);
  font-family: monospace;
}

/* Typography */
.brand__type-samples { display: flex; flex-direction: column; gap: 24px; }

.brand__type-sample { display: flex; flex-direction: column; gap: 8px; }

.brand__type-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.brand__type-display {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  font-style: italic;
}

.brand__type-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.brand__type-label-ex {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Social Templates */
.brand__social-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.social-template {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.social-template--post {
  width: 200px;
  height: 200px;
}

.social-template--story {
  width: 120px;
  height: 213px;
}

.st__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}

.st__orb {
  position: absolute;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(79,195,247,0.3) 0%, transparent 70%);
  top: -30px; right: -30px;
  border-radius: 50%;
}

.st__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.st__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
}

.st__headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}
.st__headline em { color: var(--aqua); font-style: italic; }

.st__headline--story {
  font-size: 22px;
}

.st__sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.st__tag {
  font-size: 9px;
  color: var(--aqua);
  font-weight: 500;
}

.st__cta-pill {
  display: inline-block;
  background: var(--aqua);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.st__format {
  position: absolute;
  bottom: 8px; right: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial:hover {
  border-color: var(--aqua);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--aqua-light);
  line-height: 1;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial__author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact { background: var(--parchment); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section__label { text-align: left; }
.contact__info .section__title { text-align: left; font-size: clamp(32px, 4vw, 48px); }

.contact__info p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__details { display: flex; flex-direction: column; gap: 16px; }

.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-mid);
}
.contact__detail svg {
  width: 20px; height: 20px;
  color: var(--aqua);
  flex-shrink: 0;
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--navy);
  background: var(--parchment);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--aqua);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(79,195,247,0.15);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--midnight);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo { margin-bottom: 20px; }
.footer__logo .nav__logo-mark { color: var(--aqua); }
.footer__logo .nav__logo-text { color: var(--white); }

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer__certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__certs span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua);
  border: 1px solid rgba(79,195,247,0.3);
  padding: 5px 12px;
  border-radius: 100px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__col a:hover { color: var(--aqua); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }
  .hero__content { order: 1; }
  .hero__bottle-wrap { order: 2; }
  .hero__sub { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__scroll-hint { display: none; }

  .story__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__content .section__label,
  .story__content .section__title { text-align: center; }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process__connector { padding-top: 0; padding: 8px 0; }
  .process__connector::after { content: '↓'; }

  .products__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-8px); }

  .labels__showcase { grid-template-columns: repeat(2, 1fr); }

  .minerals__grid { grid-template-columns: repeat(2, 1fr); }

  .brand__grid { grid-template-columns: 1fr; }
  .brand__block--logo { grid-column: 1; }
  .brand__block--social { grid-column: 1; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__info .section__title { text-align: center; }
  .contact__info .section__label { text-align: center; }
  .contact__info p { text-align: center; }
  .contact__details { align-items: center; }

  .footer__top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__headline { font-size: clamp(40px, 10vw, 64px); }

  .labels__showcase { grid-template-columns: repeat(2, 1fr); }

  .minerals__grid { grid-template-columns: 1fr 1fr; }

  .brand__colors { grid-template-columns: repeat(2, 1fr); }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form__row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .labels__showcase { grid-template-columns: 1fr 1fr; }
  .minerals__grid { grid-template-columns: 1fr; }
  .brand__colors { grid-template-columns: repeat(3, 1fr); }
  .footer__links { grid-template-columns: 1fr; }
  .brand__logo-display { flex-direction: column; }
  .brand__social-grid { justify-content: center; }
}