/* ============================================================
   Personalized Bottles of Water — Premium spa-water aesthetic
   ============================================================ */

:root {
  /* palette (overridable by Tweaks) */
  --ink: #0f2e3d;
  --ink-soft: #4a6878;
  --aqua: #3f95bd;
  --aqua-deep: #25697f;
  --aqua-bright: #79c6e3;
  --mist: #eef6fa;
  --mist-2: #e0eff6;
  --paper: #ffffff;
  --line: rgba(15, 46, 61, 0.10);
  --line-soft: rgba(15, 46, 61, 0.06);
  --gold: #c8a86b;

  /* type */
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(15, 46, 61, 0.04), 0 2px 8px rgba(15, 46, 61, 0.05);
  --shadow-md: 0 6px 24px rgba(15, 46, 61, 0.08), 0 2px 6px rgba(15, 46, 61, 0.05);
  --shadow-lg: 0 24px 60px rgba(15, 46, 61, 0.14), 0 6px 16px rgba(15, 46, 61, 0.06);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-weight: 600; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* eyebrow / section label */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--aqua);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--aqua);
  display: inline-block;
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 50ch;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-pill);
  padding: 15px 30px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--aqua-bright), var(--aqua));
  color: #fff;
  box-shadow: 0 10px 24px -8px var(--aqua-deep), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px var(--aqua-deep), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; border-color: var(--aqua); color: var(--aqua-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #163d4f; }

/* round carousel arrows */
.c-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  display: grid; place-items: center;
  transition: all .2s; flex: none;
}
.c-arrow:hover { color: var(--aqua-deep); transform: scale(1.06); }
.c-arrow:active { transform: scale(.96); }
.c-arrow:disabled { opacity: .35; cursor: default; transform: none; }

/* ---------- NAV ---------- */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 18px 0;
  transition: padding .3s;
}
/* solid variant — content pages: the nav sits in normal flow (reserves space) and sticks */
.nav-wrap.solid { position: sticky; }
.nav {
  display: flex; align-items: center; gap: 20px;
  position: relative;
  /* initial (top) state: transparent — blends into the video */
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  border-radius: var(--r-pill);
  padding: 7px 12px 7px 22px;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
/* scrolled state: pronounced frosted white pill */
.nav.scrolled {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(255,255,255,.6);
  box-shadow: var(--shadow-md);
}

/* light text for the transparent top bar — subtle shadow for legibility over video */
.nav .brand b { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav .brand .dom { color: var(--aqua-bright); }
.nav .nav-links a { color: rgba(255,255,255,.9); text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav .nav-links a.active { color: #fff; background: rgba(255,255,255,.16); }
.nav .nav-icon { color: rgba(255,255,255,.82); }
.nav .nav-icon:hover { color: #fff; background: rgba(255,255,255,.14); }
.nav .nav-icon.solid { background: #fff; color: var(--ink); }
.nav .nav-icon.solid:hover { background: var(--aqua-bright); color: #fff; }

/* revert to dark text once scrolled */
.nav.scrolled .brand b { color: var(--ink); text-shadow: none; }
.nav.scrolled .brand .dom { color: var(--aqua-deep); }
.nav.scrolled .nav-links a { color: var(--ink-soft); background: transparent; text-shadow: none; }
.nav.scrolled .nav-links a:hover { color: var(--ink); background: var(--mist); }
.nav.scrolled .nav-links a.active { color: var(--aqua-deep); background: var(--mist-2); }
/* Get Quote CTA — pill button that recolors on scroll */
.nav .nav-links a.nav-cta {
  background: rgba(255,255,255,.16);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.45);
  text-shadow: none;
  font-weight: 700;
  padding: 9px 18px;
}
.nav .nav-links a.nav-cta:hover { background: rgba(255,255,255,.28); }
.nav.scrolled .nav-links a.nav-cta {
  background: linear-gradient(180deg, var(--aqua-bright), var(--aqua));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 8px 18px -8px var(--aqua-deep);
}
.nav.scrolled .nav-links a.nav-cta:hover { background: linear-gradient(180deg, var(--aqua), var(--aqua-deep)); }
.nav.scrolled .nav-icon { color: var(--ink-soft); background: transparent; }
.nav.scrolled .nav-icon:hover { background: var(--mist); color: var(--ink); }
.nav.scrolled .nav-icon.solid { background: var(--ink); color: #fff; }
.nav.scrolled .nav-icon.solid:hover { background: var(--aqua-deep); }

/* ---------- NAV DROPDOWNS / MEGA MENU / RUSH / MOBILE ---------- */
.nav-wrap .shell { max-width: 1360px; }
.nav .nav-links a, .nav .nav-toggle { white-space: nowrap; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; color: #fff; }
.nav.scrolled .nav-burger { color: var(--ink); }
.nav-burger span { width: 24px; height: 2px; border-radius: 2px; background: currentColor; transition: all .25s; }

.nav-item { position: relative; }
.nav-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  font-size: 13.5px; font-weight: 600; padding: 9px 14px; border-radius: var(--r-pill);
  color: rgba(255,255,255,.9); text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: color .2s, background .2s;
}
.nav-toggle:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav.scrolled .nav-toggle { color: var(--ink-soft); text-shadow: none; }
.nav.scrolled .nav-toggle:hover { color: var(--ink); background: var(--mist); }
.nav-caret { display: inline-grid; place-items: center; }
.nav-caret svg { width: 13px; height: 13px; transform: rotate(90deg); transition: transform .25s; }
.nav-item.open .nav-caret svg { transform: rotate(-90deg); }

/* Rush Orders — prominent profit-center link */
.nav .nav-links a.nav-rush { font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.nav .nav-links a.nav-rush::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--aqua-bright); box-shadow: 0 0 0 3px rgba(121,198,227,.3); }
.nav.scrolled .nav-links a.nav-rush { color: var(--aqua-deep); }
.nav.scrolled .nav-links a.nav-rush::before { background: var(--aqua); box-shadow: 0 0 0 3px rgba(63,149,189,.18); }

/* dropdown panels (white cards, regardless of nav state) */
.nav-menu {
  position: absolute; top: calc(100% + 14px); left: 0;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 230px;
  display: none; flex-direction: column; gap: 2px; z-index: 80;
}
.nav-item.open .nav-menu { display: flex; animation: navMenuIn .2s ease; }
@keyframes navMenuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.nav-menu a {
  color: var(--ink-soft) !important; text-shadow: none !important;
  font-size: 14px; font-weight: 600; padding: 10px 14px; border-radius: 10px; white-space: nowrap; background: transparent !important;
}
.nav-menu a:hover { background: var(--mist) !important; color: var(--aqua-deep) !important; }
.nav-mega {
  display: none; grid-template-columns: repeat(3, minmax(165px, 1fr)); gap: 2px 4px;
  min-width: 560px; left: 50%; transform: translateX(-50%);
}
.nav-item.open .nav-mega { display: grid; }
@media (max-width: 1180px) { .nav-mega { left: auto; right: 0; transform: none; } }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(150deg, var(--aqua-bright), var(--aqua-deep));  display: grid; place-items: center; color: #fff; flex: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.brand b { color: var(--ink); }
.brand .dom { color: var(--aqua-deep); font-weight: 700; }
/* image logo mark */
.brand .mark.logo {
  /* matches pbw-icon-logo.png's 500x700 aspect at 42px tall */
  width: 30px; height: 42px; border-radius: 0;
  background: none; box-shadow: none; overflow: visible;
}
.brand .mark.logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* icon-only brand mark (wordmark retired — kept the header slim) */
.brand .brandicon { height: 40px; width: auto; display: block; }
@media (max-width: 760px) { .brand .brandicon { height: 34px; } }
.nav .brand .brandicon { filter: drop-shadow(0 1px 6px rgba(0,0,0,.45)); }
.nav.scrolled .brand .brandicon { filter: none; }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0; }
/* desktop: brand + links + search sit together as one centered cluster
   (mobile keeps brand left / burger right via the burger's auto margin) */
@media (min-width: 1181px) { .nav { justify-content: center; } }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--r-pill); position: relative;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--mist); }
.nav-links a.active { color: var(--aqua-deep); background: var(--mist-2); }
.nav-icons { display: flex; gap: 6px; }
.nav-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-soft);
  transition: all .2s;
}
.nav-icon:hover { background: var(--mist); color: var(--ink); }
.nav-icon.solid { background: var(--ink); color: #fff; }
.nav-icon.solid:hover { background: var(--aqua-deep); }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  background:
    radial-gradient(120% 90% at 80% -10%, #ffffff 0%, rgba(255,255,255,0) 45%),
    linear-gradient(160deg, #d6ebf4 0%, #c4e0ee 38%, #aacfe4 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  align-items: center; min-height: 100vh;
  padding-top: 110px; padding-bottom: 40px;
}
.hero-copy { padding: 30px 0; position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.96; letter-spacing: -0.015em;
  color: var(--ink); margin: 20px 0 0;
}
.hero h1 .accent {
  font-style: italic; font-weight: 500;
  color: var(--aqua-deep);
}
.hero-lede { margin-top: 22px; font-size: 18px; color: #2c5364; max-width: 40ch; }
.hero-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; align-items: stretch; width: 340px; max-width: 100%; }
/* larger hero CTAs */
.hero-cta .btn {
  font-size: 17px;
  padding: 17px 30px;
  border-radius: var(--r-pill);
  gap: 10px;
  justify-content: center;
}
.hero-cta .btn svg { width: 20px; height: 20px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 18px; color: #2c5364; font-size: 13.5px; font-weight: 600; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -10px; background: linear-gradient(135deg, var(--aqua-bright), var(--aqua-deep));
  display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700;
}
.hero-trust .avatars span:first-child { margin-left: 0; }

.hero-stage { position: relative; height: 100%; }

/* full-bleed hero video background */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* crossfade between the two stacked clips for a seamless loop */
.hero-video .hv {
  opacity: 0;
  transition: opacity 1s linear;
}
.hero-video .hv.on { opacity: 1; }
/* legibility scrim — darker on the left where the copy sits */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,28,38,0.86) 0%, rgba(8,28,38,0.6) 34%, rgba(8,28,38,0.12) 62%, rgba(8,28,38,0.34) 100%),
    linear-gradient(0deg, rgba(8,28,38,0.42) 0%, rgba(8,28,38,0) 40%);
}

/* video hero: white copy over footage */
.hero--video { background: #0c2530; }
.hero--video .eyebrow { color: var(--aqua-bright); }
.hero--video .eyebrow::before, .hero--video .eyebrow::after { background: var(--aqua-bright); }
.hero--video h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.hero--video h1 .accent { color: #bfe7f6; }
.hero--video .hero-lede { color: rgba(255,255,255,0.9); text-shadow: 0 1px 12px rgba(0,0,0,0.3); }

/* premium conversion callouts */
.hero-feats {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.feat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px) saturate(140%);
  padding: 8px 16px 8px 9px;
  border-radius: var(--r-pill);
}
.hero--video .feat {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
}
.feat-ic {
  display: grid; place-items: center;
  width: 27px; height: 27px; border-radius: 50%;
  background: linear-gradient(150deg, var(--aqua-bright), var(--aqua-deep));
  color: #fff; flex: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.feat.trust { padding-left: 8px; }
.feat .avatars { display: flex; }
.feat .avatars span {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -9px; background: linear-gradient(135deg, var(--aqua-bright), var(--aqua-deep));
  display: grid; place-items: center; color: #fff; font-size: 9.5px; font-weight: 800;
}
.feat .avatars span:first-child { margin-left: 0; }
.hero--video .feat .avatars span { border-color: rgba(255,255,255,0.85); }

/* bubbles deco */
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.9), rgba(255,255,255,.15) 60%, transparent 72%); border: 1px solid rgba(255,255,255,.5); pointer-events: none; }

/* slide dots */
.dots { display: flex; gap: 9px; justify-content: center; margin-top: 26px; }
.dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(15,46,61,.2); transition: all .3s; }
.dots button.on { width: 26px; border-radius: var(--r-pill); background: var(--aqua-deep); }

/* ---------- SECTION SHELLS ---------- */
.section { padding: 96px 0; }
.section.mist { background: var(--mist); }

/* ---------- SAMPLE KIT ---------- */
.sample-kit { background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%); }
.sk-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}
.sk-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  color: var(--ink);
  margin-top: 18px;
}
.sk-lede {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
  margin-top: 20px;
  max-width: 46ch;
}
.sk-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
}
.sk-item { display: flex; gap: 18px; align-items: flex-start; }
.sk-ico {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  color: var(--aqua-deep);
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.sk-item h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; color: var(--ink); }
.sk-item p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin-top: 5px; max-width: 42ch; }
.sk-actions { margin-top: 38px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.sk-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #dbe5ec 0%, #c4d2dc 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.sk-price {
  position: absolute;
  left: 22px; bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  background: rgba(15, 46, 61, 0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.sk-price-amt { font-family: var(--display); font-size: 42px; font-weight: 600; line-height: 1; color: var(--aqua-bright); }
.sk-price-note { font-size: 12.5px; line-height: 1.35; color: rgba(255,255,255,.78); }
.sk-price-note b { color: #fff; font-weight: 700; }
@media (max-width: 860px) {
  .sk-grid { grid-template-columns: 1fr; gap: 40px; }
  .sk-visual { aspect-ratio: 16 / 11; max-height: 380px; }
}

/* ---------- BRAND STRIP ---------- */
.brandstrip {
  padding: 80px 0 64px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.brandstrip-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 38px;
}
.brand-marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 72px;
  animation: brandscroll 38s linear infinite;
}
.brandstrip:hover .brand-track { animation-play-state: paused; }
.brand-word {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.42;
  white-space: nowrap;
  transition: opacity .25s;
}
.brand-word svg { color: var(--aqua); opacity: 0.7; flex: none; width: 20px; height: 20px; }
.brand-word:hover { opacity: 0.9; }
@keyframes brandscroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
}

.section.tint {
  background: linear-gradient(180deg, var(--mist) 0%, #ffffff 100%);
}
.section-head { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; margin-bottom: 52px; }
.section-head.left { align-items: flex-start; text-align: left; }

/* ---------- WATER CARDS ---------- */
.water-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.water-card {
  background: #fff; border-radius: var(--r-md); padding: 30px 24px 26px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
  text-align: center; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.water-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--aqua-bright), var(--aqua-deep));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.water-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.water-card:hover::after { transform: scaleX(1); }
/* ---------- BOTTLES 2x2 GRID ---------- */
.shell-wide { max-width: 1560px; }
.bottles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.bottle-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 460px;
  background: linear-gradient(150deg, #ffffff 0%, var(--mist) 55%, var(--mist-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.bottle-panel:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.bp-photo {
  position: relative;
  background: linear-gradient(180deg, #dbe5ec 0%, #c4d2dc 100%);
  overflow: hidden;
}
.bp-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bp-body {
  padding: 44px 46px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bp-material {
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--aqua-deep);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-soft);
  padding: 6px 13px; border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.bp-size {
  font-family: var(--display);
  font-size: 62px; font-weight: 600; line-height: 1;
  color: var(--ink);
}
.bp-name {
  font-family: var(--display);
  font-size: 28px; font-weight: 500; font-style: italic;
  color: var(--aqua-deep);
  margin-top: 6px;
}
.bp-desc { color: var(--ink-soft); font-size: 16px; margin-top: 16px; max-width: 38ch; }
.bp-actions { margin-top: 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.bp-actions .water-link { font-size: 14px; }
/* Tablet + below: drop to one column and stack each panel vertically
   (photo on top, body below) so the size number, CTA and description never
   clip against the panel's overflow:hidden. */
@media (max-width: 1100px) {
  .bottles-grid { grid-template-columns: 1fr; }
  .bottle-panel { grid-template-columns: 1fr; min-height: 0; }
  .bp-photo { min-height: 260px; }
}
@media (max-width: 760px) {
  .bp-photo { min-height: 200px; }
  .bp-body { padding: 28px; }
  .bp-size { font-size: 46px; }
}
.water-card p { color: var(--ink-soft); font-size: 14px; margin-top: 8px; }
.water-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.85); color: var(--aqua-deep);
  padding: 5px 10px; border-radius: var(--r-pill); backdrop-filter: blur(4px);
}
.water-link { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--aqua-deep); display: inline-flex; gap: 6px; align-items: center; }
.water-card:hover .water-link { gap: 10px; }

/* ---------- LIFESTYLE BAND ---------- */
.lifestyle-band {
  position: relative;
  height: 54vh;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(150deg, #12384a, var(--aqua-deep));
  display: flex;
  align-items: flex-end;
}
.lifestyle-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,28,38,0.1) 0%, rgba(8,28,38,0) 40%, rgba(8,28,38,0.72) 100%);
  pointer-events: none;
}
.lifestyle-band .shell { position: relative; z-index: 2; padding-bottom: 48px; padding-top: 48px; }
.lifestyle-line {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* ---------- LABEL TYPES ---------- */
.labels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.label-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
}
.label-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.label-photo {
  height: 320px;
  background: linear-gradient(180deg, #dbe5ec 0%, #c4d2dc 100%);
  overflow: hidden;
}
.label-body { padding: 28px 30px 32px; }
.label-body h3 {
  font-family: var(--display);
  font-size: 28px; font-weight: 600;
  color: var(--ink);
}
.label-body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin-top: 10px; }
@media (max-width: 860px) {
  .labels-grid { grid-template-columns: 1fr; }
  /* single column: let the photo well follow the portrait image's aspect
     (928x1152) so the bottle isn't cropped top and bottom; capped so
     wide-but-single-column tablets don't get a huge tile */
  .label-photo { height: auto; aspect-ratio: 928 / 1152; max-height: 520px; }
  .label-photo img { height: 100%; }
}

/* ---------- INDUSTRIES ---------- */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.industry-card {
  position: relative;
  display: block;
  flex: 0 1 calc((100% - 4 * 22px) / 5);
  height: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(150deg, #12384a, var(--aqua-deep));
  transition: transform .35s, box-shadow .35s;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,28,38,0.05) 0%, rgba(8,28,38,0.15) 45%, rgba(8,28,38,0.82) 100%);
  pointer-events: none;
}
.industry-overlay {
  position: absolute; inset: 0; z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.industry-ico {
  width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  color: #fff;
  margin-bottom: auto;
}
.industry-overlay h3 {
  font-family: var(--display);
  font-size: 23px; font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.industry-overlay p {
  color: rgba(255,255,255,0.86);
  font-size: 13.5px; line-height: 1.5;
  margin-top: 6px; max-width: 32ch;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.industry-link {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .02em;
  color: #fff;
  transition: gap .3s;
}
.industry-card:hover .industry-link { gap: 12px; }
@media (max-width: 1180px) {
  .industry-card { flex: 0 1 calc((100% - 2 * 22px) / 3); }
}
@media (max-width: 760px) {
  .industry-card { flex: 0 1 calc((100% - 22px) / 2); }
}
@media (max-width: 500px) {
  .industry-card { flex: 0 1 100%; }
}

/* ---------- BRAND CTA BAND ---------- */
.brand-cta {
  padding: 96px 0;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(121,198,227,0.18) 0%, rgba(121,198,227,0) 50%),
    linear-gradient(150deg, var(--ink) 0%, #12384a 60%, var(--aqua-deep) 130%);
  color: #fff;
}
.bcta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.bcta-copy .eyebrow { color: var(--aqua-bright); }
.bcta-copy .eyebrow::before, .bcta-copy .eyebrow::after { background: var(--aqua-bright); }
.bcta-copy h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.04;
  margin-top: 18px;
  color: #fff;
}
.bcta-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 46ch;
}
.bcta-actions { margin-top: 34px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.brand-cta .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.brand-cta .btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.5); }
.bcta-figure {
  height: 440px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.55);
}
@media (max-width: 860px) {
  .bcta-inner { grid-template-columns: 1fr; gap: 38px; }
  .bcta-figure { height: 320px; }
}

/* ---------- STEPS ---------- */
@media (max-width: 1080px) and (min-width: 761px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 42px 30px 40px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--display); font-size: 17px; font-weight: 700;
  color: var(--aqua-deep); letter-spacing: .04em;
}
.step-ico {
  width: 70px; height: 70px; border-radius: 18px; margin: 18px 0 24px;
  background: linear-gradient(150deg, #e6f4fa, #cfe9f4);
  color: var(--aqua-deep); display: grid; place-items: center;
}
.step-ico svg { width: 32px; height: 32px; }
.step h3 { font-family: var(--display); font-size: 26px; font-weight: 600; }
.step p { color: var(--ink-soft); font-size: 15.5px; margin-top: 11px; line-height: 1.55; }
.steps-cta {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.steps-cta p {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink);
}
.steps-cta .btn { font-size: 16px; padding: 16px 30px; }
.steps-visual { margin-top: 0; }

/* ---------- ABOUT ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-top: 16px; }
.about-figure {
  height: 440px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #dbe5ec, #c4d2dc);
  box-shadow: 0 24px 50px -22px rgba(15,46,61,0.4);
}
.sales-banner {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink) 0%, #12384a 70%, var(--aqua-deep) 130%);
  box-shadow: var(--shadow-md);
}
.sales-photo {
  min-height: 280px;
  background: linear-gradient(180deg, #dbe5ec, #c4d2dc);
}
.sales-text {
  padding: 44px 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sales-text .eyebrow { color: var(--aqua-bright); }
.sales-text .eyebrow::before, .sales-text .eyebrow::after { background: var(--aqua-bright); }
.sales-text h3 { font-family: var(--display); font-size: 34px; font-weight: 600; margin-top: 16px; color: #fff; }
.sales-text p { color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.6; margin-top: 12px; max-width: 46ch; }
.sales-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sales-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.sales-phone-ic {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-figure { height: 320px; }
  .sales-banner { grid-template-columns: 1fr; }
  .sales-photo { min-height: 220px; }
  .sales-text { padding: 34px 30px; }
}
/* about detail subsections */
.about-detail {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.about-point { border-top: 2px solid var(--mist-2); padding-top: 22px; }
.about-point h3 { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.about-point p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin-top: 12px; }
@media (max-width: 860px) {
  .about-detail { grid-template-columns: 1fr; gap: 28px; margin-top: 44px; }
}

/* ---------- CREDIBILITY ---------- */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.cert-badge {
  flex: 0 1 calc((100% - 4 * 22px) / 5);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .3s, box-shadow .3s;
}
.cert-badge:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cert-ico {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, #e6f4fa, #cfe9f4);
  color: var(--aqua-deep);
}
.cert-badge h3 { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.cert-badge p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
.eco-note {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(150deg, #eef6fa, #e0eff6);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px 34px;
}
.eco-ico {
  flex: none;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, #2fa39a, #1c7269);
  color: #fff;
}
.eco-note p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.eco-note strong { color: var(--ink); }
@media (max-width: 1080px) { .cert-badge { flex: 0 1 calc((100% - 2 * 22px) / 3); } }
@media (max-width: 640px) {
  .cert-badge { flex: 0 1 calc((100% - 22px) / 2); }
  .eco-note { flex-direction: column; text-align: center; gap: 16px; }
}

/* ---------- REVIEWS ---------- */
.reviews-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; transition: opacity .3s; }
.review {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.review-quote { font-family: var(--display); font-size: 21px; line-height: 1.35; font-weight: 500; color: var(--ink); }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--aqua-bright), var(--aqua-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex: none; }
.review-name { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 6px; }
.review-role { font-size: 12.5px; color: var(--ink-soft); }
.verified { color: var(--aqua); display: inline-grid; place-items: center; }

/* ---------- PROJECTS ---------- */
.projects {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px;
}
.project {
  border-radius: var(--r-md); overflow: hidden; position: relative;
  display: flex; align-items: flex-end; padding: 24px; color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .35s; cursor: pointer;
}
.project::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(8,30,40,.78)); z-index:1; }
.project:hover { transform: translateY(-5px); }
.project .pj-body { position: relative; z-index: 2; }
.project .pj-cat { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.project .pj-title { font-family: var(--display); font-size: 23px; font-weight: 600; margin-top: 4px; }
.project.big { grid-column: span 2; grid-row: span 2; }
.project.tall { grid-row: span 2; }
.pj-logo { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; opacity: .9; }

/* ---------- QUOTE STRIP ---------- */
.quote-band {
  background:
    radial-gradient(100% 140% at 0% 0%, rgba(121,198,227,.5), transparent 50%),
    linear-gradient(135deg, var(--ink) 0%, #103948 60%, #15576b 100%);
  border-radius: var(--r-lg); color: #fff; overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  padding: 56px;
}
.quote-band h2 { font-family: var(--display); font-size: clamp(32px,3.4vw,46px); font-weight: 600; line-height: 1.04; }
.quote-band p { color: rgba(255,255,255,.78); margin-top: 16px; font-size: 16.5px; max-width: 42ch; }
.qform { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-md); padding: 26px; backdrop-filter: blur(8px); }
.qform .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qform label { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.7); display: block; margin: 14px 0 6px; }
.qform .frow .field:first-child label, .qform .frow .field label { margin-top: 0; }
.qform input, .qform select {
  width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1); color: #fff; padding: 13px 14px; font-family: inherit; font-size: 14px;
  transition: border .2s, background .2s;
}
.qform input::placeholder { color: rgba(255,255,255,.45); }
.qform input:focus, .qform select:focus { outline: none; border-color: var(--aqua-bright); background: rgba(255,255,255,.16); }
.qform select option { color: #0f2e3d; }
.qform .btn { width: 100%; margin-top: 20px; }
.qform-done { text-align: center; padding: 30px 10px; }
.qform-done .check { width: 64px; height: 64px; border-radius: 50%; background: var(--aqua); display: grid; place-items: center; margin: 0 auto 18px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.6fr; gap: 40px; }
.footer .brand b, .footer .brand .dom { color: #fff; }
.footer-about { font-size: 14.5px; color: rgba(255,255,255,.6); margin-top: 18px; max-width: 32ch; }
.footer h3, .footer h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .2s; }
.footer-links a:hover { color: var(--aqua-bright); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .2s; }
.socials a:hover { background: var(--aqua); transform: translateY(-3px); }
.news-form { display: flex; gap: 8px; margin-top: 16px; }
.news-form input { flex: 1; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; padding: 13px 18px; font-family: inherit; font-size: 14px; }
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form input:focus { outline: none; border-color: var(--aqua-bright); }
.news-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--aqua); color: #fff; display: grid; place-items: center; flex: none; transition: all .2s; }
.news-btn:hover { background: var(--aqua-bright); transform: scale(1.05); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* dark hero variant — light text on deep background */
.dark-hero .hero h1, .dark-hero .hero .brand b { color: #ffffff; }
.dark-hero .hero h1 .accent { color: var(--aqua-bright); }
.dark-hero .hero .eyebrow { color: var(--aqua-bright); }
.dark-hero .hero .eyebrow::before, .dark-hero .hero .eyebrow::after { background: var(--aqua-bright); }
.dark-hero .hero .hero-lede { color: rgba(255,255,255,.82); }
.dark-hero .hero .hero-trust { color: rgba(255,255,255,.82); }
.dark-hero .hero .feat { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: #fff; }
.dark-hero .hero .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.dark-hero .hero .btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.dark-hero .hero .dots button { background: rgba(255,255,255,.3); }
.dark-hero .hero .dots button.on { background: #fff; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* nav collapses to a hamburger on mid + small screens (many items + long wordmark) */
@media (max-width: 1180px) {
  .nav-burger { display: flex; }
  .nav-icons { display: none; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    background: #fff; border: 1px solid var(--line-soft); border-radius: 18px;
    box-shadow: var(--shadow-lg); flex-direction: column; align-items: stretch;
    gap: 2px; padding: 12px; max-height: 72vh; overflow-y: auto; z-index: 90;
  }
  .nav-links.open { display: flex; }
  .nav .nav-links a, .nav.scrolled .nav-links a,
  .nav .nav-toggle, .nav.scrolled .nav-toggle {
    color: var(--ink-soft) !important; text-shadow: none !important;
    width: 100%; text-align: left; justify-content: space-between; border-radius: 10px; white-space: normal;
  }
  .nav .nav-links a:hover, .nav .nav-toggle:hover { background: var(--mist) !important; color: var(--aqua-deep) !important; }
  .nav .nav-links a.nav-cta { background: linear-gradient(180deg, var(--aqua-bright), var(--aqua)) !important; color: #fff !important; text-align: center; justify-content: center; margin-top: 6px; }
  .nav .nav-links a.nav-rush { color: var(--aqua-deep) !important; justify-content: flex-start; }
  .nav-item { width: 100%; }
  .nav-menu, .nav-mega {
    position: static; transform: none; box-shadow: none; border: none;
    min-width: 0; padding: 2px 0 8px 14px; background: transparent; left: auto; right: auto;
  }
  .nav-item.open .nav-mega { display: flex; flex-direction: column; }
  .nav-menu a { white-space: normal; }
}

@media (max-width: 980px) {
  .shell { padding: 0 22px; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding-top: 0; }
  .hero-stage { display: none; }
  /* Top-align the home video hero and pad it below the transparent overlay
     nav so the eyebrow kicker isn't occluded by the bar on phones. */
  .hero--video { min-height: 78vh; display: flex; align-items: flex-start; }
  .hero--video .hero-inner { padding-top: 96px; padding-bottom: 48px; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8,28,38,0.5) 0%, rgba(8,28,38,0.78) 100%);
  }
  .water-rail { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .reviews-rail { grid-template-columns: 1fr; }
  .projects { grid-template-columns: repeat(2, 1fr); }
  .quote-band { grid-template-columns: 1fr; padding: 34px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Phones: collapse the 4-col footer to a single column so its wide link
   columns stop forcing the page minimum width past the viewport, and guard
   against any stray element causing sideways scroll. */
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
/* overflow-x must be "clip", not "hidden": hidden makes html/body a scroll
   container, which silently disables position:sticky on the content-page nav.
   clip prevents the same horizontal scroll without breaking sticky. */
html, body { overflow-x: clip; }
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }

/* ============================================================
   WHY CUSTOM · ESTIMATOR · FAQ
   ============================================================ */
.shell-narrow { max-width: 880px; }

/* Why custom water */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.why-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 36px 34px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-ico {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, #e6f4fa, #cfe9f4);
  color: var(--aqua-deep);
}
.why-card h3 { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--ink); }
.why-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }

/* Estimator */
.est-card {
  display: grid; grid-template-columns: 1.3fr 1fr;
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.est-controls { padding: 40px 42px; display: flex; flex-direction: column; gap: 30px; }
.est-field label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px;
}
.est-qval { text-transform: none; letter-spacing: 0; color: var(--aqua-deep); font-size: 14px; }
.est-options { display: flex; flex-wrap: wrap; gap: 10px; }
.est-opt {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  background: var(--mist); border: 1.5px solid transparent; border-radius: var(--r-pill);
  padding: 10px 18px; transition: all .2s;
}
.est-opt:hover { background: var(--mist-2); }
.est-opt.on { background: #fff; border-color: var(--aqua); color: var(--aqua-deep); box-shadow: var(--shadow-sm); }
.est-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--mist-2); outline: none; }
.est-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(150deg, var(--aqua-bright), var(--aqua)); cursor: pointer; box-shadow: 0 4px 10px -2px var(--aqua-deep); border: 3px solid #fff; }
.est-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--aqua); cursor: pointer; border: 3px solid #fff; }
.est-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.est-chip {
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  background: transparent; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 14px; transition: all .2s;
}
.est-chip:hover { border-color: var(--aqua); color: var(--aqua-deep); }
.est-chip.on { background: var(--aqua-deep); border-color: var(--aqua-deep); color: #fff; }
/* quantity helper */
.est-helper-toggle {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--mist); border: 1px dashed var(--aqua); border-radius: var(--r-pill);
  color: var(--aqua-deep); font-size: 13.5px; font-weight: 700;
  padding: 11px 18px; cursor: pointer; transition: background .2s;
}
.est-helper-toggle:hover { background: var(--mist-2); }
.est-helper-chev { display: inline-grid; place-items: center; transition: transform .3s; }
.est-helper-chev svg { width: 15px; height: 15px; transform: rotate(90deg); }
.est-helper-toggle.open .est-helper-chev svg { transform: rotate(-90deg); }
.est-helper {
  margin-top: 16px;
  background: var(--mist);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 22px;
  animation: fadeUp .35s ease;
}
.est-helper-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; }
.est-helper-field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.est-helper-field input, .est-helper-field select {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 11px 14px; outline: none; transition: border-color .2s;
}
.est-helper-field input:focus, .est-helper-field select:focus { border-color: var(--aqua); }
.est-helper-out {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.est-helper-sugg { font-family: var(--display); font-size: 20px; color: var(--ink); }
.est-helper-sugg strong { color: var(--aqua-deep); }
.est-apply {
  background: var(--aqua-deep); color: #fff; border: none; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 700; padding: 10px 20px; cursor: pointer; transition: background .2s;
}
.est-apply:hover { background: var(--ink); }
.est-helper-note { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; margin-top: 14px; }
@media (max-width: 460px) { .est-helper-grid { grid-template-columns: 1fr; } }
.est-result {
  padding: 40px 42px;
  background: linear-gradient(160deg, var(--ink) 0%, #12384a 75%, var(--aqua-deep) 140%);
  color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.est-label { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--aqua-bright); }
.est-total { font-family: var(--display); font-size: clamp(34px, 4vw, 46px); font-weight: 600; line-height: 1.05; margin-top: 10px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; }
.est-dash { opacity: .6; }
.est-per { color: rgba(255,255,255,.78); font-size: 14.5px; margin-top: 10px; }
.est-note { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.5; border-top: 1px solid rgba(255,255,255,.14); padding-top: 16px; }
.est-cta { width: 100%; justify-content: center; }
.est-call { display: inline-flex; align-items: center; gap: 8px; justify-content: center; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; }
.est-call svg { width: 16px; height: 16px; }
@media (max-width: 820px) { .est-card { grid-template-columns: 1fr; } .est-controls, .est-result { padding: 32px 28px; } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 28px; font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--ink);
}
.faq-plus { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--mist); color: var(--aqua-deep); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq-plus svg { transform: rotate(90deg); transition: transform .3s; }
.faq-item.open .faq-plus { background: var(--aqua-deep); color: #fff; }
.faq-item.open .faq-plus svg { transform: rotate(-90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 28px 26px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

/* ============================================================
   INDUSTRY LANDING PAGES
   ============================================================ */
.ind-page { background: #fff; }
.ind-topbar { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.88); backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid var(--line-soft); padding: 14px 0; }
.ind-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ind-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% -10%, #ffffff 0%, rgba(255,255,255,0) 46%),
    linear-gradient(160deg, #d6ebf4 0%, #c4e0ee 38%, #aacfe4 100%);
  padding: 72px 0 84px;
}
.ind-hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.ind-crumb { font-size: 13px; font-weight: 700; color: var(--aqua-deep); display: block; margin-bottom: 16px; }
.ind-crumb:hover { text-decoration: underline; }
.ind-hero h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 56px); font-weight: 600; line-height: 1.05; color: var(--ink); margin-top: 14px; }
.ind-lead { font-size: 19px; line-height: 1.6; color: #2c5364; margin-top: 20px; max-width: 48ch; }
.ind-hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.ind-hero-visual { display: grid; place-items: center; }
.ind-hero-ico {
  width: 230px; height: 230px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--aqua-bright), var(--aqua-deep));
  color: #fff; box-shadow: 0 34px 70px -28px var(--aqua-deep);
}
.ind-hero-ico svg { width: 100px; height: 100px; }
.ind-section { padding: 66px 0; }
.ind-section.tint { background: linear-gradient(180deg, var(--mist) 0%, #ffffff 100%); }
.ind-narrow { max-width: 800px; }
.ind-body { font-size: 18px; line-height: 1.78; color: var(--ink-soft); }
.ind-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 12px; }
.ind-benefit { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.ind-benefit h3 { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.ind-benefit p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-top: 10px; }
.ind-uses { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; margin-top: 26px; }
.ind-uses li { position: relative; padding-left: 32px; font-size: 16.5px; color: var(--ink-soft); line-height: 1.45; }
.ind-uses li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--aqua); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.ind-cta-band { background: linear-gradient(150deg, var(--ink) 0%, #12384a 70%, var(--aqua-deep) 130%); color: #fff; padding: 74px 0; text-align: center; }
.ind-cta-band h2 { font-family: var(--display); font-size: clamp(30px, 4vw, 44px); font-weight: 600; color: #fff; }
.ind-cta-band p { color: rgba(255,255,255,.82); font-size: 18px; margin-top: 14px; }
.ind-cta-actions { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ind-cta-band .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.ind-cta-band .btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.ind-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 30px 0; font-size: 14px; }
.ind-footer a { color: rgba(255,255,255,.82); }
.ind-footer a:hover { color: #fff; }
@media (max-width: 860px) {
  .ind-hero-inner { grid-template-columns: 1fr; }
  .ind-hero-visual { order: -1; }
  .ind-hero-ico { width: 160px; height: 160px; }
  .ind-hero-ico svg { width: 72px; height: 72px; }
  .ind-benefits { grid-template-columns: 1fr; }
  .ind-uses { grid-template-columns: 1fr; }
}

/* ---------- RUSH ORDERS BAND ---------- */
.rush-band { background: linear-gradient(150deg, var(--ink) 0%, #12384a 60%, var(--aqua-deep) 130%); color: #fff; }
.rush-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.rush-copy .eyebrow { color: var(--aqua-bright); }
.rush-copy .eyebrow::before, .rush-copy .eyebrow::after { background: var(--aqua-bright); }
.rush-copy h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 48px); font-weight: 600; color: #fff; margin-top: 16px; line-height: 1.05; }
.rush-copy p { color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.6; margin-top: 18px; max-width: 46ch; }
.rush-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.rush-band .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.rush-band .btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }
.rush-points { display: flex; flex-direction: column; gap: 16px; }
.rush-point { display: flex; gap: 18px; align-items: flex-start; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); padding: 22px 24px; }
.rush-point .rp-ico { flex: none; width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); display: grid; place-items: center; color: #fff; }
.rush-point h3 { font-family: var(--display); font-size: 20px; font-weight: 600; color: #fff; }
.rush-point p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.55; margin-top: 4px; }
@media (max-width: 860px) { .rush-inner { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- PRICING PAGE ---------- */
.price-jump { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.price-jump a { font-size: 13.5px; font-weight: 700; color: var(--aqua-deep); background: var(--mist); border: 1px solid var(--line-soft); border-radius: var(--r-pill); padding: 10px 18px; transition: all .2s; }
.price-jump a:hover { background: var(--aqua-deep); color: #fff; border-color: var(--aqua-deep); }
.price-group { margin-top: 60px; scroll-margin-top: 90px; }
.price-group-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--mist-2); }
.price-group-head h2 { font-family: var(--display); font-size: 32px; font-weight: 600; color: var(--ink); }
.price-group-head span { color: var(--ink-soft); font-size: 15px; }
.price-card { display: grid; grid-template-columns: 210px 1fr; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.price-visual { background: linear-gradient(160deg, var(--ink), var(--aqua-deep)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 30px 22px; text-align: center; }
.price-oz { font-family: var(--display); font-size: 44px; font-weight: 600; line-height: 1; }
.price-vis-label { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--aqua-bright); }
.price-body { padding: 28px 30px 26px; }
.price-name { font-family: var(--display); font-size: 23px; font-weight: 600; color: var(--ink); }
.price-desc { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-top: 8px; max-width: 70ch; }
.price-tiers { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.price-tier { flex: 1 1 116px; min-width: 104px; background: var(--mist); border: 1px solid var(--line-soft); border-radius: 12px; padding: 13px 10px 14px; text-align: center; }
.price-tier .q { display: block; font-size: 12px; color: var(--ink); font-weight: 700; line-height: 1.25; }
.price-tier .cases { display: block; font-size: 10.5px; color: var(--aqua-deep); font-weight: 700; margin-top: 2px; }
.price-tier .p { display: block; font-family: var(--display); font-size: 25px; font-weight: 600; color: var(--ink); margin-top: 9px; }
.price-tier .pe { font-size: 13px; color: var(--ink-soft); }
.price-tier.best { background: #fff; border-color: var(--aqua); box-shadow: var(--shadow-sm); position: relative; }
.price-tier.best::after { content: "Best value"; position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--aqua-deep); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.price-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.price-greatfor { font-size: 12.5px; color: var(--ink-soft); font-style: italic; max-width: 56ch; }
.price-note-banner { background: linear-gradient(150deg, #eef6fa, #e0eff6); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 26px 32px; margin-top: 44px; display: flex; align-items: center; gap: 22px; }
.price-note-banner .pnb-ico { flex: none; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(150deg, var(--aqua-bright), var(--aqua-deep)); color: #fff; display: grid; place-items: center; }
.price-note-banner p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.price-note-banner strong { color: var(--ink); }
@media (max-width: 760px) {
  .price-card { grid-template-columns: 1fr; }
  .price-visual { flex-direction: row; gap: 16px; padding: 18px 22px; justify-content: flex-start; }
  .price-oz { font-size: 34px; }
}

/* ============================================================
   ENTERPRISE — home-page router band
   ============================================================ */
.enterprise-router { background: #fff; }
.ent-router {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
  /* skyline photo (shared with the enterprise page) under a light mist overlay (::before) */
  background: url("assets/enterprise-trusted-bg.jpg") center / cover no-repeat;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 54px 58px;
  box-shadow: var(--shadow-sm);
}
.ent-router::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(121,198,227,.16), transparent 55%),
    linear-gradient(160deg, rgba(245,251,253,.93) 0%, rgba(234,244,249,.86) 100%);
}
.ent-router > * { position: relative; z-index: 1; }
.ent-router-copy h2 {
  font-family: var(--display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 600;
  color: var(--ink); line-height: 1.04; margin-top: 16px;
}
.ent-router-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin-top: 16px; max-width: 42ch; }
.ent-router-copy .btn { margin-top: 28px; }
.ent-router-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ent-feat {
  background: rgba(255,255,255,.78); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 22px 22px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
}
.ent-feat-ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, #e6f4fa, #cfe9f4); color: var(--aqua-deep);
}
.ent-feat-ic svg { width: 24px; height: 24px; }
.ent-feat h3 { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.15; }
.ent-feat p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
@media (max-width: 920px) {
  .ent-router { grid-template-columns: 1fr; gap: 36px; padding: 40px 34px; }
}
@media (max-width: 460px) {
  .ent-router-feats { grid-template-columns: 1fr; }
}

/* ============================================================
   ENTERPRISE — standalone solutions page
   ============================================================ */
.ent-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(110% 120% at 88% -10%, rgba(121,198,227,.32), transparent 52%),
    linear-gradient(155deg, #0b2733 0%, #123a4c 55%, #1d6075 130%);
  padding: 90px 0 92px;
}
.ent-hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.ent-hero .ind-crumb { color: var(--aqua-bright); display: block; margin-bottom: 22px; }
.ent-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--aqua-bright);
}
.ent-tag::before { content: ""; width: 26px; height: 1.5px; background: var(--aqua-bright); }
.ent-hero h1 {
  font-family: var(--display); font-size: clamp(38px, 5vw, 62px); font-weight: 600;
  line-height: 1.02; color: #fff; margin-top: 18px; letter-spacing: -0.01em;
}
.ent-hero h1 .accent { font-style: italic; font-weight: 500; color: var(--aqua-bright); }
.ent-hero-lead { font-size: 19px; line-height: 1.62; color: rgba(255,255,255,.84); margin-top: 22px; max-width: 50ch; }
.ent-hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ent-hero .btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.32); }
.ent-hero .btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.5); }
.ent-hero-trust { margin-top: 36px; display: flex; gap: 34px; flex-wrap: wrap; }
.ent-trust-item { display: flex; flex-direction: column; gap: 3px; }
.ent-trust-num { font-family: var(--display); font-size: 34px; font-weight: 600; color: #fff; line-height: 1; }
.ent-trust-label { font-size: 12.5px; color: rgba(255,255,255,.66); font-weight: 600; letter-spacing: .02em; }
/* hero side card */
.ent-hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg); padding: 32px 34px; backdrop-filter: blur(8px);
}
.ent-hero-card h3 { font-family: var(--display); font-size: 24px; font-weight: 600; color: #fff; }
.ent-hero-card p { color: rgba(255,255,255,.74); font-size: 14.5px; line-height: 1.6; margin-top: 8px; }
.ent-hero-card .ent-card-list { margin-top: 20px; display: flex; flex-direction: column; gap: 13px; }
.ent-card-row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.92); font-weight: 600; }
.ent-card-row svg { width: 20px; height: 20px; color: var(--aqua-bright); flex: none; }
.ent-hero-card .btn { width: 100%; justify-content: center; margin-top: 24px; }
.ent-hero-card .ent-card-phone { display: block; text-align: center; margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,.7); font-weight: 600; }
.ent-hero-card .ent-card-phone a { color: var(--aqua-bright); }

/* capabilities grid */
.ent-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ent-cap {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 32px 30px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; gap: 14px;
}
.ent-cap:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ent-cap-ic {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(150deg, #e6f4fa, #cfe9f4); color: var(--aqua-deep);
}
.ent-cap-ic svg { width: 28px; height: 28px; }
.ent-cap h3 { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.15; }
.ent-cap p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 1000px) { .ent-caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ent-caps { grid-template-columns: 1fr; } }

/* engagement model — numbered steps */
.ent-model { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: emodel; }
.ent-step { position: relative; padding-top: 30px; }
.ent-step::before {
  counter-increment: emodel; content: counter(emodel, decimal-leading-zero);
  font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--aqua-deep); letter-spacing: .06em;
}
.ent-step h3 { font-family: var(--display); font-size: 23px; font-weight: 600; color: var(--ink); margin-top: 10px; }
.ent-step p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-top: 10px; }
.ent-step-bar { height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--aqua-bright), var(--aqua-deep)); width: 44px; }
@media (max-width: 860px) { .ent-model { grid-template-columns: 1fr 1fr; gap: 30px 22px; } }
@media (max-width: 480px) { .ent-model { grid-template-columns: 1fr; } }

/* logo wall */
.ent-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 18px; margin-top: 8px; }
.ent-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--ink);
  opacity: .5; padding: 12px 22px; border: 1px solid var(--line-soft); border-radius: var(--r-pill);
  background: #fff;
}
.ent-logo svg { width: 17px; height: 17px; color: var(--aqua); opacity: .8; }

/* contact / sales form */
.ent-contact { background: linear-gradient(180deg, var(--mist) 0%, #ffffff 100%); }
.ent-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.ent-contact-copy .eyebrow { margin-bottom: 16px; }
.ent-contact-copy h2 { font-family: var(--display); font-size: clamp(30px, 3.6vw, 46px); font-weight: 600; color: var(--ink); line-height: 1.04; }
.ent-contact-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin-top: 18px; max-width: 42ch; }
.ent-contact-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.ent-contact-point { display: flex; gap: 14px; align-items: flex-start; }
.ent-contact-point svg { width: 22px; height: 22px; color: var(--aqua-deep); flex: none; margin-top: 2px; }
.ent-contact-point b { color: var(--ink); font-size: 15.5px; }
.ent-contact-point span { display: block; color: var(--ink-soft); font-size: 14px; margin-top: 2px; line-height: 1.5; }
.ent-contact-direct { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.ent-contact-direct a { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 12px; }
.ent-contact-direct a svg { width: 22px; height: 22px; color: var(--aqua-deep); }
.ent-contact-direct span { font-size: 13.5px; color: var(--ink-soft); }

.ent-form {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 38px 40px;
}
.ent-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.ent-field { display: flex; flex-direction: column; }
.ent-field[hidden] { display: none; }
.ent-field.full { grid-column: 1 / -1; }
.ent-field label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.ent-field label .req { color: var(--aqua-deep); }
.ent-field input, .ent-field select, .ent-field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.ent-field textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.ent-field input:focus, .ent-field select:focus, .ent-field textarea:focus { border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(121,198,227,.22); }
.ent-form .btn { width: 100%; justify-content: center; margin-top: 22px; font-size: 16px; padding: 16px 30px; }
.ent-form-note { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; margin-top: 16px; text-align: center; }
.ent-form-done { text-align: center; padding: 30px 12px; }
.ent-form-done .ent-done-check { width: 66px; height: 66px; border-radius: 50%; background: var(--aqua); display: grid; place-items: center; margin: 0 auto 20px; }
.ent-form-done .ent-done-check svg { width: 32px; height: 32px; color: #fff; }
.ent-form-done h3 { font-family: var(--display); font-size: 28px; font-weight: 600; color: var(--ink); }
.ent-form-done p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-top: 12px; }
@media (max-width: 940px) {
  .ent-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ent-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .ent-form { padding: 28px 24px; }
  .ent-form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NEED SOMETHING ELSE — promotional-products cross-sell
   ============================================================ */
/* landing — full band: copy card overlapping a product photo */
.needelse { background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%); }
.needelse-inner { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; }
.needelse-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 54px 54px; position: relative; z-index: 2; margin-right: -90px;
}
.needelse-card h2 { font-family: var(--display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; color: var(--ink); line-height: 1.04; margin-top: 16px; }
.needelse-card p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; margin-top: 18px; max-width: 42ch; }
.needelse-card .btn { margin-top: 28px; }
.needelse-photo {
  height: 500px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: linear-gradient(180deg, #dbe5ec, #c4d2dc);
}
@media (max-width: 880px) {
  .needelse-inner { grid-template-columns: 1fr; }
  .needelse-card { margin-right: 0; margin-bottom: -50px; }
  .needelse-photo { height: 340px; }
}

/* industry pages — compact card */
.needelse-mini {
  display: grid; grid-template-columns: .82fr 1.18fr;
  border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); background: #fff;
}
.needelse-mini-photo { min-height: 250px; background: linear-gradient(180deg, #dbe5ec, #c4d2dc); }
.needelse-mini-copy { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.needelse-mini-copy h2 { font-family: var(--display); font-size: clamp(26px, 3vw, 34px); font-weight: 600; color: var(--ink); margin-top: 12px; line-height: 1.08; }
.needelse-mini-copy p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin-top: 12px; max-width: 50ch; }
.needelse-mini-copy .btn { margin-top: 22px; align-self: flex-start; }
@media (max-width: 760px) {
  .needelse-mini { grid-template-columns: 1fr; }
  .needelse-mini-photo { min-height: 200px; }
  .needelse-mini-copy { padding: 30px 28px; }
}

/* ============================================================
   BLOG TEASER
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-photo { height: 210px; background: linear-gradient(180deg, #dbe5ec, #c4d2dc); overflow: hidden; }
.blog-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--aqua-deep); }
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-soft); opacity: .45; }
.blog-meta .date { color: var(--ink-soft); font-weight: 600; letter-spacing: .02em; }
.blog-card h3 { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--ink); line-height: 1.18; margin-top: 14px; }
.blog-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-top: 12px; }
.blog-readmore { margin-top: auto; padding-top: 18px; font-size: 13.5px; font-weight: 700; color: var(--aqua-deep); display: inline-flex; align-items: center; gap: 7px; transition: gap .3s; }
.blog-card:hover .blog-readmore { gap: 11px; }
.blog-all { display: flex; justify-content: center; margin-top: 40px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ============================================================
   PROMOTIONAL PRODUCTS PAGE
   ============================================================ */
.promo-hero-photo {
  height: 100%; min-height: 360px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: linear-gradient(180deg, #dbe5ec, #c4d2dc);
}
@media (max-width: 860px) { .promo-hero-photo { min-height: 280px; } }

.promo-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-cat {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.promo-cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promo-cat-photo { height: 200px; background: linear-gradient(180deg, #dbe5ec, #c4d2dc); overflow: hidden; }
.promo-cat-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.promo-cat-sub { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--aqua-deep); }
.promo-cat h3 { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--ink); line-height: 1.15; margin-top: 6px; }
.promo-cat p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin-top: 10px; }
.promo-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.promo-chip {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--mist); border: 1px solid var(--line-soft); border-radius: var(--r-pill); padding: 7px 13px;
}
/* Full-width "just ask" banner spanning all columns, shorter than the photo tiles */
.promo-cat-ask { grid-column: 1 / -1; }
.promo-cat-ask .promo-cat-body { padding: 30px 28px; }
@media (max-width: 980px) { .promo-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .promo-cats { grid-template-columns: 1fr; }
  /* taller well so portrait product shots (e.g. the engraved glass) aren't beheaded */
  .promo-cat-photo { height: 300px; }
}

/* ============================================================
   LABEL GALLERY
   ============================================================ */
.gallery-teaser-cta { display: flex; justify-content: center; margin-top: 40px; }

.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 auto 40px; }
.gallery-filter {
  font-size: 13.5px; font-weight: 700; color: var(--ink-soft);
  background: var(--mist); border: 1.5px solid transparent; border-radius: var(--r-pill);
  padding: 10px 20px; cursor: pointer; transition: all .2s;
}
.gallery-filter:hover { background: var(--mist-2); }
.gallery-filter.on { background: var(--aqua-deep); border-color: var(--aqua-deep); color: #fff; box-shadow: var(--shadow-sm); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-tile {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); background: linear-gradient(150deg, #12384a, var(--aqua-deep));
  transition: transform .35s, box-shadow .35s;
}
.gallery-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-tile image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.gallery-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; object-fit: cover; }
.gallery-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,28,38,0) 42%, rgba(8,28,38,.74)); pointer-events: none; }
.gallery-tag { position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2; color: #fff; pointer-events: none; }
.gallery-tag .g-cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--aqua-bright); }
.gallery-tag .g-title { font-family: var(--display); font-size: 20px; font-weight: 600; margin-top: 2px; line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.gallery-tile.hide { display: none; }
.gallery-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 50px 0; font-size: 16px; display: none; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   QUOTE WIZARD PAGE
   ============================================================ */
.quote-layout { display: grid; grid-template-columns: 1.9fr 1fr; gap: 34px; align-items: start; }
.quote-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 36px 40px 34px; }

/* progress */
.quote-progress { display: flex; gap: 10px; margin-bottom: 30px; }
.qprog { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.qprog-bar { height: 5px; border-radius: 999px; background: var(--mist-2); overflow: hidden; }
.qprog-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--aqua-bright), var(--aqua-deep)); transition: width .4s ease; }
.qprog.done .qprog-bar span, .qprog.active .qprog-bar span { width: 100%; }
.qprog-label { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.qprog.active .qprog-label, .qprog.done .qprog-label { color: var(--aqua-deep); }
.qprog-num { width: 18px; height: 18px; border-radius: 50%; background: var(--mist-2); color: var(--ink-soft); font-size: 10.5px; font-weight: 800; display: grid; place-items: center; }
.qprog.active .qprog-num, .qprog.done .qprog-num { background: var(--aqua-deep); color: #fff; }

/* steps */
.qstep { display: none; }
.qstep.active { display: block; animation: fadeUp .35s ease; }
.qstep-title { font-family: var(--display); font-size: 28px; font-weight: 600; color: var(--ink); }
.qstep-sub { color: var(--ink-soft); font-size: 15px; margin-top: 6px; }
.qgroup { margin-top: 24px; }
.qgroup > label.qlabel { display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.qchips { display: flex; flex-wrap: wrap; gap: 9px; }
.qchip {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  background: var(--mist); border: 1.5px solid transparent; border-radius: var(--r-pill);
  padding: 10px 18px; cursor: pointer; transition: all .2s;
}
.qchip:hover { background: var(--mist-2); }
.qchip.on { background: #fff; border-color: var(--aqua); color: var(--aqua-deep); box-shadow: var(--shadow-sm); }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.qrow.full { grid-template-columns: 1fr; }
.qval { text-transform: none; letter-spacing: 0; color: var(--aqua-deep); font-weight: 700; }

/* nav buttons */
.quote-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.qback { background: none; border: none; color: var(--ink-soft); font-weight: 700; font-size: 14.5px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; padding: 10px 4px; }
.qback:hover { color: var(--ink); }
.qback[hidden] { visibility: hidden; }

/* rail */
.quote-rail { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.qest { background: linear-gradient(160deg, var(--ink) 0%, #12384a 75%, var(--aqua-deep) 140%); color: #fff; border-radius: var(--r-lg); padding: 28px 30px; box-shadow: var(--shadow-md); }
.qest-label { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--aqua-bright); }
.qest-total { font-family: var(--display); font-size: clamp(30px, 4vw, 40px); font-weight: 600; line-height: 1.05; margin-top: 10px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px; }
.qest-total .dash { opacity: .55; }
.qest-per { color: rgba(255,255,255,.78); font-size: 14px; margin-top: 10px; }
.qest-note { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; border-top: 1px solid rgba(255,255,255,.14); padding-top: 14px; margin-top: 16px; }
.qest-lines { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.qest-line { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: rgba(255,255,255,.8); }
.qest-line span:last-child { color: #fff; font-weight: 600; white-space: nowrap; }
.qhint { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }

/* selectable bottle cards (quote step 1) */
.qbottles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.qbottle {
  background: var(--mist); border: 1.5px solid transparent; border-radius: var(--r-md);
  padding: 12px 12px 14px; cursor: pointer; display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center; transition: all .2s; font-family: inherit;
}
.qbottle:hover { background: var(--mist-2); }
.qbottle.on { background: #fff; border-color: var(--aqua); box-shadow: var(--shadow-sm); }
.qbottle-img { width: 100%; height: 92px; border-radius: 10px; overflow: hidden; background: linear-gradient(180deg, #dbe5ec, #c4d2dc); }
.qbottle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qbottle-size { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1; }
.qbottle-name { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--aqua-deep); }
@media (max-width: 540px) { .qbottles { grid-template-columns: repeat(2, 1fr); } .qbottles > :last-child:nth-child(odd) { grid-column: 1 / -1; } }
.qtrust { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.qtrust h4 { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.qtrust ul { display: flex; flex-direction: column; gap: 12px; }
.qtrust li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.qtrust li svg { width: 19px; height: 19px; color: var(--aqua-deep); flex: none; margin-top: 1px; }
.qtrust li b { color: var(--ink); }

/* success */
.quote-done { text-align: center; padding: 40px 16px; }
.quote-done .qdone-check { width: 72px; height: 72px; border-radius: 50%; background: var(--aqua); display: grid; place-items: center; margin: 0 auto 22px; }
.quote-done .qdone-check svg { width: 36px; height: 36px; color: #fff; }
.quote-done h2 { font-family: var(--display); font-size: 34px; font-weight: 600; color: var(--ink); }
.quote-done p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; margin-top: 14px; max-width: 46ch; margin-left: auto; margin-right: auto; }

@media (max-width: 920px) {
  .quote-layout { grid-template-columns: 1fr; }
  .quote-rail { position: static; }
}
@media (max-width: 540px) {
  .quote-card { padding: 26px 22px; }
  .qrow { grid-template-columns: 1fr; }
  .quote-progress .qprog-label span.txt { display: none; }
}


/* ---------- Accessibility: skip link + keyboard focus ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--aqua-deep); color: #fff;
  font: 700 14px Manrope, sans-serif; padding: 12px 22px;
  border-radius: 0 0 12px 0; text-decoration: none;
}
.skip-link:focus { left: 0; outline: 3px solid var(--aqua-bright); }
/* visible keyboard focus on every interactive control (mouse clicks unaffected) */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--aqua-deep); outline-offset: 2px;
}
/* higher-contrast ring on dark surfaces */
.est-card :focus-visible, .ind-cta-band :focus-visible, .quote-band :focus-visible,
.dark-hero :focus-visible, .footer :focus-visible {
  outline-color: var(--aqua-bright);
}
/* ---------- Sticky mobile CTA (phones only) ---------- */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; gap: 10px; align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid var(--line-soft);
  box-shadow: 0 -10px 30px -12px rgba(15,46,61,.35);
  transform: translateY(110%); transition: transform .28s ease;
}
.mcta.on { transform: translateY(0); }
.mcta-quote {
  flex: 1; text-align: center; text-decoration: none;
  background: linear-gradient(150deg, var(--aqua) 0%, var(--aqua-deep) 100%);
  color: #fff; font: 700 15px var(--sans); padding: 14px 18px; border-radius: var(--r-pill);
  box-shadow: 0 10px 22px -10px var(--aqua-deep);
}
.mcta-call {
  flex: none; display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  border: 1.5px solid var(--line-soft); border-radius: var(--r-pill);
  padding: 13px 18px; color: var(--aqua-deep); font: 700 15px var(--sans); background: #fff;
}
@media (max-width: 760px) {
  .mcta { display: flex; }
  /* keep the last content clear of the bar */
  body { padding-bottom: 78px; }
}

/* ---------- Promotional products: customer spotlight ---------- */
.pspot { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pspot-quote {
  font-family: var(--display); font-size: clamp(23px, 2.6vw, 31px); font-weight: 500;
  line-height: 1.3; color: var(--ink); margin: 14px 0 0;
}
.pspot-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.pspot-av {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--aqua) 0%, var(--aqua-deep) 100%);
  color: #fff; font-weight: 700; font-size: 15px;
}
.pspot-name { font-weight: 700; color: var(--ink); }
.pspot-role { font-size: 13.5px; color: var(--ink-soft); }
.pspot-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pspot-shots img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 3 / 4;
}
@media (max-width: 860px) { .pspot { grid-template-columns: 1fr; gap: 30px; } }
