/* ============================================================
   CRYSTAL CLEAR CALIFORNIA — Brand Stylesheet v2 "Liquid Clarity"
   Fonts: Fraunces (display serif) + Hanken Grotesk (body)
   Palette: Light Blue + White, water-glass aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Hanken+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

/* ===== Design Tokens ===== */
:root {
  /* Colors */
  --cc-white:    #FFFFFF;
  --cc-snow:     #F8FBFF;
  --cc-mist:     #E8F2FB;
  --cc-sky:      #BCD9F1;
  --cc-azure:    #7FB8E0;
  --cc-ocean:    #4A95C9;
  --cc-deep:     #1F5F8B;
  --cc-ink:      #0B2A45;
  --cc-shadow:   rgba(31, 95, 139, 0.12);
  --cc-shadow-lg: rgba(31, 95, 139, 0.20);
  --cc-glow:     rgba(127, 184, 224, 0.40);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  /* Fluid type scale — capped tight at desktop to prevent overflow */
  --fs-xs:  clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --fs-sm:  clamp(0.875rem, 0.85rem + 0.125vw, 0.9375rem);
  --fs-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --fs-md:  clamp(1.0625rem, 1.02rem + 0.2vw, 1.1875rem);
  --fs-lg:  clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-xl:  clamp(1.5rem, 1.35rem + 0.7vw, 2rem);
  --fs-2xl: clamp(2rem, 1.7rem + 1.4vw, 2.875rem);
  --fs-3xl: clamp(2.5rem, 2rem + 2.2vw, 3.875rem);

  /* Spacing (8pt scale) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Motion */
  --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-quick: 180ms;
  --dur-std: 320ms;
  --dur-slow: 600ms;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--cc-ink);
  background: var(--cc-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cc-ocean); text-decoration: none; transition: color var(--dur-quick) var(--ease-quick); }
a:hover { color: var(--cc-deep); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Subtle grain for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 var(--sp-4);
  color: var(--cc-deep);
  letter-spacing: -0.015em;
}
h1 { font-size: var(--fs-3xl); font-weight: 600; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { margin: 0 0 var(--sp-4); }

/* Accent word — italic serif with water gradient + optional squiggle */
.accent {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--cc-ocean) 0%, var(--cc-azure) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  white-space: nowrap;
}
.accent__squiggle {
  position: absolute;
  left: -2%;
  bottom: -0.28em;
  width: 104%;
  height: 0.34em;
  overflow: visible;
  pointer-events: none;
}
.accent__squiggle path {
  fill: none;
  stroke: var(--cc-azure);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.reveal.is-visible .accent__squiggle path,
.is-visible .accent__squiggle path,
.hero .accent__squiggle path {
  animation: svgDraw 1s var(--ease-smooth) 0.55s forwards;
}
@keyframes svgDraw { to { stroke-dashoffset: 0; } }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cc-ocean);
  margin-bottom: var(--sp-3);
  display: inline-block;
}
.eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--cc-sky);
  box-shadow: 0 4px 16px var(--cc-shadow);
  font-size: var(--fs-xs);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.eyebrow--pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cc-ocean);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 var(--cc-glow); }
  50%      { box-shadow: 0 0 0 6px rgba(127, 184, 224, 0); }
}
.lead {
  font-size: var(--fs-md);
  color: rgba(11, 42, 69, 0.78);
  line-height: 1.65;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
  overflow-x: clip;
}
.section--snow { background: var(--cc-snow); }
.section--mist { background: linear-gradient(180deg, var(--cc-snow) 0%, var(--cc-mist) 100%); }
.section--ocean {
  background:
    radial-gradient(circle at 78% 18%, rgba(127, 184, 224, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 12% 85%, rgba(188, 217, 241, 0.18) 0%, transparent 40%),
    linear-gradient(180deg, var(--cc-deep) 0%, var(--cc-ocean) 55%, var(--cc-deep) 100%);
  color: var(--cc-white);
}
.section--ocean h1, .section--ocean h2, .section--ocean h3 { color: var(--cc-white); }
.section--ocean .lead { color: rgba(255, 255, 255, 0.88); }
.section--ocean .eyebrow { color: var(--cc-sky); }
.section--ocean .accent {
  background: linear-gradient(120deg, var(--cc-sky) 0%, var(--cc-white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section__head { text-align: center; max-width: 780px; margin: 0 auto var(--sp-8); }
.section__head--left { text-align: left; margin-left: 0; }

/* ===== SVG Wave Dividers ===== */
.wave-divider {
  height: clamp(44px, 7vw, 100px);
  background: var(--wave-from, var(--cc-white));
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: calc(100% + 96px);
  margin-left: -48px;
  height: 100%;
}
.wave-divider__back {
  fill: var(--wave-to, var(--cc-snow));
  opacity: 0.45;
  animation: waveDrift 9s ease-in-out infinite alternate;
}
.wave-divider__front {
  fill: var(--wave-to, var(--cc-snow));
  animation: waveDrift 13s ease-in-out infinite alternate-reverse;
}
@keyframes waveDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-44px); }
}

/* ===== Scroll progress bar (injected by JS) ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 300;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--cc-azure), var(--cc-ocean), var(--cc-deep));
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

/* ===== SVG line-draw icons ===== */
.icon-draw {
  width: 28px; height: 28px;
  overflow: visible;
}
.icon-draw path,
.icon-draw circle,
.icon-draw line,
.icon-draw rect,
.icon-draw polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.reveal.is-visible .icon-draw path,
.reveal.is-visible .icon-draw circle,
.reveal.is-visible .icon-draw line,
.reveal.is-visible .icon-draw rect,
.reveal.is-visible .icon-draw polyline,
.is-visible .icon-draw path,
.is-visible .icon-draw circle,
.is-visible .icon-draw line,
.is-visible .icon-draw rect,
.is-visible .icon-draw polyline {
  animation: svgDraw 1.4s var(--ease-smooth) forwards;
}
.reveal.is-visible .icon-draw :nth-child(2),
.is-visible .icon-draw :nth-child(2) { animation-delay: 0.25s; }
.reveal.is-visible .icon-draw :nth-child(3),
.is-visible .icon-draw :nth-child(3) { animation-delay: 0.45s; }
.reveal.is-visible .icon-draw :nth-child(4),
.is-visible .icon-draw :nth-child(4) { animation-delay: 0.6s; }
.reveal.is-visible .icon-draw :nth-child(n+5),
.is-visible .icon-draw :nth-child(n+5) { animation-delay: 0.72s; }

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  background: var(--cc-deep);
  color: var(--cc-white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-md);
  z-index: 1000;
  transition: top var(--dur-std) var(--ease-quick);
}
.skip-link:focus { top: var(--sp-4); color: var(--cc-white); }

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(188, 217, 241, 0);
  transition: padding var(--dur-std) var(--ease-quick),
              border-color var(--dur-std) var(--ease-quick),
              background var(--dur-std) var(--ease-quick),
              box-shadow var(--dur-std) var(--ease-quick);
}
.site-header.is-scrolled {
  border-bottom-color: var(--cc-mist);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(31, 95, 139, 0.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-3) 0;
  transition: padding var(--dur-std) var(--ease-quick);
}
.site-header.is-scrolled .site-header__inner { padding: var(--sp-2) 0; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  transition: transform var(--dur-std) var(--ease-bounce);
}
.logo:hover { transform: scale(1.04); }
.logo img {
  height: 78px;
  width: auto;
  filter: drop-shadow(0 2px 8px var(--cc-glow));
  transition: height var(--dur-std) var(--ease-quick);
}
.site-header.is-scrolled .logo img { height: 60px; }
@media (max-width: 600px) {
  .logo img { height: 60px; }
  .site-header.is-scrolled .logo img { height: 50px; }
}

.nav { display: none; }
.nav__list {
  display: flex;
  gap: clamp(var(--sp-5), 3vw, var(--sp-7));
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cc-ink);
  position: relative;
  padding: var(--sp-2) 0;
  text-transform: uppercase;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--cc-ocean);
  transition: width var(--dur-std) var(--ease-smooth),
              left var(--dur-std) var(--ease-smooth);
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%; left: 0;
}
.nav__link--active { color: var(--cc-deep); }
.site-header .nav__cta { display: none; }

@media (min-width: 880px) {
  .nav { display: block; }
  .site-header .menu-toggle { display: none; }
  .site-header .nav__cta { display: inline-flex; }
}

/* Mobile menu */
.menu-toggle {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--cc-mist);
  transition: background var(--dur-quick) var(--ease-quick);
}
.menu-toggle:hover { background: var(--cc-sky); }
.menu-toggle__bar {
  width: 22px; height: 2px;
  background: var(--cc-deep);
  position: relative;
  transition: background var(--dur-quick) var(--ease-quick);
}
.menu-toggle__bar::before, .menu-toggle__bar::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; background: var(--cc-deep);
  transition: transform var(--dur-std) var(--ease-smooth);
}
.menu-toggle__bar::before { top: -7px; }
.menu-toggle__bar::after  { top: 7px; }
.menu-toggle.is-open .menu-toggle__bar { background: transparent; }
.menu-toggle.is-open .menu-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar::after  { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(127, 184, 224, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(188, 217, 241, 0.35) 0%, transparent 50%),
    rgba(248, 251, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 90;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-smooth);
  padding: 120px var(--gutter) var(--sp-7);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: navitem;
  flex: 1;
}
.mobile-nav li {
  border-bottom: 1px solid var(--cc-mist);
  counter-increment: navitem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s var(--ease-smooth), transform 0.45s var(--ease-smooth);
}
.mobile-nav.is-open li { opacity: 1; transform: translateY(0); }
.mobile-nav.is-open li:nth-child(1) { transition-delay: 0.12s; }
.mobile-nav.is-open li:nth-child(2) { transition-delay: 0.18s; }
.mobile-nav.is-open li:nth-child(3) { transition-delay: 0.24s; }
.mobile-nav.is-open li:nth-child(4) { transition-delay: 0.30s; }
.mobile-nav.is-open li:nth-child(5) { transition-delay: 0.36s; }
.mobile-nav.is-open li:nth-child(6) { transition-delay: 0.42s; }
.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  font-weight: 600;
  color: var(--cc-deep);
  padding: var(--sp-5) 0;
  transition: color var(--dur-quick) var(--ease-quick), padding-left var(--dur-std) var(--ease-smooth);
}
.mobile-nav a::before {
  content: '0' counter(navitem);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cc-azure);
}
.mobile-nav a:hover, .mobile-nav a:active { color: var(--cc-ocean); padding-left: var(--sp-3); }
.mobile-nav__foot {
  padding-top: var(--sp-6);
  display: grid;
  gap: var(--sp-4);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s var(--ease-smooth) 0.5s, transform 0.45s var(--ease-smooth) 0.5s;
}
.mobile-nav.is-open .mobile-nav__foot { opacity: 1; transform: translateY(0); }
.mobile-nav__foot .btn { width: 100%; }
.mobile-nav__foot span {
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-ocean);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--dur-std) var(--ease-bounce),
              box-shadow var(--dur-std) var(--ease-quick),
              background var(--dur-std) var(--ease-quick),
              color var(--dur-std) var(--ease-quick);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  min-height: 48px;
}
.btn:focus-visible {
  outline: 3px solid var(--cc-azure);
  outline-offset: 3px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--cc-azure) 0%, var(--cc-ocean) 100%);
  color: var(--cc-white);
  box-shadow: 0 8px 24px var(--cc-shadow);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--cc-ocean) 0%, var(--cc-deep) 100%);
  color: var(--cc-white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px var(--cc-shadow-lg);
}
/* Shine sweep */
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease-smooth);
}
.btn--primary:hover::after { left: 130%; }
.btn--secondary {
  background: var(--cc-white);
  color: var(--cc-deep);
  border: 2px solid var(--cc-sky);
}
.btn--secondary:hover {
  background: var(--cc-mist);
  color: var(--cc-deep);
  border-color: var(--cc-ocean);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--cc-ocean);
  padding: 12px 20px;
}
.btn--ghost:hover { color: var(--cc-deep); }
.btn--ghost::after {
  content: '→';
  margin-left: var(--sp-2);
  transition: transform var(--dur-std) var(--ease-smooth);
}
.btn--ghost:hover::after { transform: translateX(6px); }
.btn--lg { padding: 18px 36px; font-size: var(--fs-base); }
.btn--sm { padding: 10px 20px; font-size: var(--fs-xs); min-height: 40px; }

/* Ripple */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn--primary:active::before { width: 360px; height: 360px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 110px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(127, 184, 224, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(232, 242, 251, 0.85) 0%, transparent 50%),
    linear-gradient(170deg, var(--cc-white) 0%, var(--cc-snow) 55%, var(--cc-mist) 100%);
}
@media (max-width: 879px) {
  .hero { min-height: auto; padding: 130px 0 90px; }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 880px) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: var(--sp-9); }
}
.hero__title {
  font-size: clamp(2.4rem, 1.7rem + 3vw, 4.25rem);
  line-height: 1.06;
  margin: var(--sp-4) 0 var(--sp-5);
  color: var(--cc-ink);
  font-weight: 600;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__line > span {
  display: block;
  transform: translateY(112%);
  animation: lineRise 0.95s var(--ease-smooth) forwards;
}
.hero__line:nth-child(1) > span { animation-delay: 0.1s; }
.hero__line:nth-child(2) > span { animation-delay: 0.26s; }
.hero__line:nth-child(3) > span { animation-delay: 0.42s; }
@keyframes lineRise { to { transform: translateY(0); } }

.hero__copy > .eyebrow,
.hero__lead, .hero__cta, .hero__trust {
  opacity: 0;
  animation: fadeRise 0.9s var(--ease-smooth) forwards;
}
.hero__copy > .eyebrow { animation-delay: 0.05s; }
.hero__lead  { animation-delay: 0.62s; }
.hero__cta   { animation-delay: 0.78s; }
.hero__trust { animation-delay: 0.94s; }
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__lead { max-width: 520px; margin-bottom: var(--sp-6); }
.hero__cta { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11, 42, 69, 0.6);
}
.hero__trust span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.hero__trust span::before { content: '✓'; color: var(--cc-ocean); font-weight: 700; }
@media (max-width: 600px) {
  .hero__cta .btn { flex: 1 1 100%; }
}

/* Floating product image */
.hero__visual {
  position: relative;
  display: grid; place-items: center;
  min-height: 480px;
}
@media (max-width: 879px) {
  .hero__visual { min-height: 340px; order: -1; }
}
.hero__product {
  position: relative;
  z-index: 3;
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 30px 60px var(--cc-shadow-lg));
  animation: float 6s ease-in-out infinite;
  border-radius: var(--radius-xl);
}
@media (max-width: 879px) {
  .hero__product { max-width: 250px; }
}
.hero__blob {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cc-sky), var(--cc-azure) 60%, transparent 75%);
  filter: blur(40px);
  opacity: 0.55;
  z-index: 1;
  animation: blob 14s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-22px) rotate(2deg); }
}
@keyframes blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-30px,30px) scale(0.95); }
}

/* Rotating SVG rings behind hero product */
.hero__rings {
  position: absolute;
  width: min(560px, 110%);
  height: auto;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}
.hero__rings circle {
  fill: none;
  stroke: var(--cc-ocean);
  stroke-linecap: round;
  transform-origin: 300px 300px;
}
.hero__rings .ring--1 {
  stroke-width: 1.2;
  stroke-dasharray: 5 14;
  opacity: 0.5;
  animation: ringSpin 38s linear infinite;
}
.hero__rings .ring--2 {
  stroke-width: 1;
  stroke-dasharray: 2 10;
  opacity: 0.35;
  animation: ringSpin 56s linear infinite reverse;
}
.hero__rings .ring--3 {
  stroke: var(--cc-azure);
  stroke-width: 1.4;
  stroke-dasharray: 60 480;
  opacity: 0.6;
  animation: ringSpin 24s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* Floating SVG droplets in hero */
.hero__drops {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__drops .drop {
  fill: var(--cc-azure);
  opacity: 0;
  animation: dropRise 11s ease-in-out infinite;
}
.hero__drops .drop--ring {
  fill: none;
  stroke: var(--cc-azure);
  stroke-width: 1.5;
}
.hero__drops .drop:nth-child(1) { animation-delay: 0s;   animation-duration: 12s; }
.hero__drops .drop:nth-child(2) { animation-delay: 2.2s; animation-duration: 14s; }
.hero__drops .drop:nth-child(3) { animation-delay: 4.5s; animation-duration: 10s; }
.hero__drops .drop:nth-child(4) { animation-delay: 1.2s; animation-duration: 16s; }
.hero__drops .drop:nth-child(5) { animation-delay: 6s;   animation-duration: 13s; }
.hero__drops .drop:nth-child(6) { animation-delay: 3.4s; animation-duration: 15s; }
@keyframes dropRise {
  0%   { transform: translateY(40px); opacity: 0; }
  12%  { opacity: 0.5; }
  85%  { opacity: 0.25; }
  100% { transform: translateY(-340px); opacity: 0; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-ocean);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue__line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--cc-ocean), transparent);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
@media (max-width: 879px) { .scroll-cue { display: none; } }

/* ===== Marquee strip ===== */
.marquee {
  background: linear-gradient(90deg, var(--cc-deep), var(--cc-ocean), var(--cc-deep));
  color: var(--cc-white);
  padding: var(--sp-4) 0;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: var(--sp-8);
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-base);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee__track span { display: inline-flex; align-items: center; gap: var(--sp-3); }
.marquee__track span::after { content: '◆'; color: var(--cc-sky); font-size: 8px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Feature Grid ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
}
@media (max-width: 640px) {
  .features { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.feature-card {
  background: var(--cc-white);
  border: 1px solid var(--cc-mist);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  transition: transform var(--dur-std) var(--ease-smooth),
              box-shadow var(--dur-std) var(--ease-quick),
              border-color var(--dur-std) var(--ease-quick);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--cc-mist) 100%);
  opacity: 0;
  transition: opacity var(--dur-std) var(--ease-quick);
  z-index: 0;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--cc-shadow);
  border-color: var(--cc-sky);
}
.feature-card:hover::before { opacity: 0.4; }
.feature-card > * { position: relative; z-index: 1; }
.feature-card__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cc-mist), rgba(188, 217, 241, 0.55));
  border: 1px solid var(--cc-sky);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--cc-deep);
  margin-bottom: var(--sp-5);
  box-shadow: 0 8px 20px var(--cc-shadow);
  transition: transform var(--dur-std) var(--ease-bounce);
}
.feature-card:hover .feature-card__icon { transform: translateY(-3px) rotate(-4deg) scale(1.06); }
.feature-card__icon .icon-draw { width: 30px; height: 30px; color: var(--cc-deep); }
.feature-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-3); }
.feature-card p { color: rgba(11, 42, 69, 0.72); margin: 0; font-size: var(--fs-sm); }

/* ===== Product Grid ===== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.product-card {
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cc-mist);
  transition: transform var(--dur-std) var(--ease-smooth),
              box-shadow var(--dur-std) var(--ease-quick);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px var(--cc-shadow-lg);
}
.product-card__image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cc-snow), var(--cc-mist));
  overflow: hidden;
  position: relative;
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.product-card:hover .product-card__image img { transform: scale(1.08) rotate(-1deg); }
.product-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
}
.product-card__type {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-ocean);
  margin-bottom: var(--sp-2);
}
.product-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
  color: var(--cc-deep);
}
.product-card__strain {
  font-size: var(--fs-sm);
  color: rgba(11, 42, 69, 0.65);
  margin-bottom: var(--sp-4);
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--cc-mist);
}
.product-card__meta span {
  font-size: var(--fs-xs);
  color: var(--cc-deep);
  font-weight: 600;
}

/* Mobile: products become a swipeable snap carousel */
@media (max-width: 640px) {
  .products {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(78%, 300px);
    grid-template-columns: none;
    gap: var(--sp-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--gutter);
    padding: var(--sp-2) var(--gutter) var(--sp-5);
    margin: 0 calc(-1 * var(--gutter));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .products::-webkit-scrollbar { display: none; }
  .products .product-card { scroll-snap-align: start; }
}

.badge {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 14px var(--cc-shadow);
}
.badge--new { background: var(--cc-sky); color: var(--cc-deep); }
.badge--best { background: var(--cc-deep); color: var(--cc-white); }
.badge--lab { background: var(--cc-white); color: var(--cc-ocean); border: 1px solid var(--cc-sky); }

/* ===== Editorial / Mission Section ===== */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}
@media (min-width: 880px) {
  .editorial { grid-template-columns: 1fr 1fr; gap: var(--sp-9); }
  .editorial--reverse > :first-child { order: 2; }
}
.editorial__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px var(--cc-shadow);
}
.editorial__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.editorial__media:hover img { transform: scale(1.05); }
.editorial__media--product {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cc-snow), var(--cc-mist));
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 48px);
}
.editorial__media--product img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.editorial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: 1.3;
  color: var(--cc-deep);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: var(--sp-5);
  border-left: 4px solid var(--cc-azure);
}
.editorial cite {
  display: block;
  margin-top: var(--sp-4);
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--cc-ocean);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Giant parallax watermark droplet (decoration) */
.watermark {
  position: absolute;
  right: -120px;
  top: 50%;
  width: clamp(280px, 32vw, 480px);
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.watermark path {
  fill: none;
  stroke: var(--cc-sky);
  stroke-width: 1.5;
}
.section > .container { position: relative; z-index: 1; }

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-6);
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
}
.stat {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: transform var(--dur-std) var(--ease-smooth),
              background var(--dur-std) var(--ease-quick);
}
.stat:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.1); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 3vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--cc-white);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}
@media (max-width: 640px) {
  .testimonials { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.testimonial {
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  border: 1px solid var(--cc-mist);
  transition: transform var(--dur-std) var(--ease-smooth),
              box-shadow var(--dur-std) var(--ease-quick);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 6px; right: var(--sp-5);
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  color: var(--cc-mist);
  pointer-events: none;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 20px 40px var(--cc-shadow); }
.testimonial__stars { color: var(--cc-azure); margin-bottom: var(--sp-4); letter-spacing: 4px; }
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--cc-deep);
  line-height: 1.45;
  margin-bottom: var(--sp-5);
  position: relative;
}
.testimonial__author { font-weight: 600; color: var(--cc-ocean); font-size: var(--fs-sm); }
.testimonial__role { font-size: var(--fs-xs); color: rgba(11, 42, 69, 0.6); }

/* ===== Compare Table ===== */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px var(--cc-shadow);
}
.compare th, .compare td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--cc-mist);
  font-size: var(--fs-sm);
}
.compare thead th {
  background: var(--cc-deep);
  color: var(--cc-white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.compare tbody tr:hover { background: var(--cc-snow); }
.compare td:first-child { font-weight: 600; color: var(--cc-deep); }
.compare__check { color: var(--cc-ocean); font-weight: 700; }
.compare__cross { color: rgba(11, 42, 69, 0.3); }
.compare__highlight { background: var(--cc-mist) !important; }

/* ===== Gallery Mosaic ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-std) var(--ease-smooth);
  background: var(--cc-mist);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.gallery__item--tall img { aspect-ratio: 4 / 8.4; }
.gallery__item:hover { transform: scale(1.02); z-index: 2; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-7) var(--sp-4) var(--sp-4);
  background: linear-gradient(transparent, rgba(11, 42, 69, 0.88));
  color: var(--cc-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-std) var(--ease-quick),
              transform var(--dur-std) var(--ease-smooth);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }
/* Touch devices: captions always visible */
@media (hover: none) {
  .gallery__caption { opacity: 1; transform: translateY(0); padding: var(--sp-5) var(--sp-3) var(--sp-3); }
}

/* ===== Forms ===== */
.form {
  display: grid;
  gap: var(--sp-5);
  max-width: 640px;
  margin: 0 auto;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 720px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 22px 18px 10px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--cc-ink);
  background: var(--cc-white);
  border: 1.5px solid var(--cc-mist);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-std) var(--ease-quick),
              box-shadow var(--dur-std) var(--ease-quick);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cc-ocean);
  box-shadow: 0 0 0 4px var(--cc-glow);
}
.field label {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: rgba(11, 42, 69, 0.5);
  pointer-events: none;
  transition: top var(--dur-std) var(--ease-smooth),
              font-size var(--dur-std) var(--ease-smooth),
              color var(--dur-std) var(--ease-quick);
  background: var(--cc-white);
  padding: 0 4px;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -9px; font-size: 12px;
  color: var(--cc-ocean);
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--cc-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-9) 0 var(--sp-6);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(127, 184, 224, 0.18), transparent 50%);
  pointer-events: none;
}
.site-footer > * { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
@media (min-width: 480px) and (max-width: 719px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}
.footer-brand p { max-width: 320px; font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.7); }
.footer-brand img { height: 64px; margin-bottom: var(--sp-4); filter: brightness(0) invert(1); }
.footer-col h4 {
  color: var(--cc-white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  transition: color var(--dur-quick) var(--ease-quick),
              transform var(--dur-quick) var(--ease-quick);
  display: inline-block;
  padding: 2px 0;
}
.footer-col a:hover { color: var(--cc-sky); transform: translateX(4px); }

.newsletter {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
}
.newsletter input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cc-white);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter input:focus {
  outline: none;
  border-color: var(--cc-azure);
  background: rgba(255, 255, 255, 0.12);
}
.newsletter button {
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--cc-azure);
  color: var(--cc-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--dur-quick) var(--ease-quick),
              transform var(--dur-quick) var(--ease-bounce);
}
.newsletter button:hover { background: var(--cc-sky); color: var(--cc-deep); transform: translateY(-2px); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.compliance {
  background: var(--cc-ink);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: var(--sp-4);
  font-size: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

/* ===== Age Gate Dialog ===== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 69, 0.85);
  backdrop-filter: blur(18px);
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  animation: fadeIn var(--dur-std) var(--ease-quick);
}
.age-gate__card {
  background: var(--cc-white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  animation: popUp 0.5s var(--ease-bounce);
}
.age-gate__card img { height: 80px; margin: 0 auto var(--sp-5); }
.age-gate h2 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.age-gate p { color: rgba(11, 42, 69, 0.7); margin-bottom: var(--sp-6); }
.age-gate__actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }
@media (max-width: 480px) {
  .age-gate__actions { flex-direction: column; }
  .age-gate__actions .btn { width: 100%; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popUp {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-smooth),
              transform 0.8s var(--ease-smooth);
}
.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(0.94); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }

/* ===== Decorative blobs ===== */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.deco-blob--1 {
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--cc-sky);
  opacity: 0.4;
  animation: blob 18s ease-in-out infinite;
}
.deco-blob--2 {
  bottom: -150px; left: -120px;
  width: 360px; height: 360px;
  background: var(--cc-azure);
  opacity: 0.25;
  animation: blob 22s ease-in-out infinite reverse;
}

/* ===== Page header (sub-pages) ===== */
.page-header {
  position: relative;
  padding: 190px 0 100px;
  text-align: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(127, 184, 224, 0.45) 0%, transparent 50%),
    linear-gradient(170deg, var(--cc-snow) 0%, var(--cc-mist) 100%);
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-header { padding: 150px 0 70px; }
}
.page-header h1 { margin-bottom: var(--sp-4); }
.page-header__lead { max-width: 640px; margin: 0 auto; }
.page-header .hero__drops { z-index: 0; }
.page-header .container { position: relative; z-index: 1; }

/* ===== Process steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-6);
  counter-reset: step;
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; gap: var(--sp-7); }
}
.step {
  position: relative;
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  background: var(--cc-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cc-mist);
  text-align: center;
  transition: transform var(--dur-std) var(--ease-smooth),
              box-shadow var(--dur-std) var(--ease-quick);
  counter-increment: step;
}
.step:hover { transform: translateY(-6px); border-color: var(--cc-sky); box-shadow: 0 16px 36px var(--cc-shadow); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cc-azure), var(--cc-ocean));
  color: var(--cc-white);
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  box-shadow: 0 8px 20px var(--cc-shadow);
}
.step h3 { font-size: var(--fs-md); margin: var(--sp-3) 0 var(--sp-3); }
.step p { font-size: var(--fs-sm); color: rgba(11, 42, 69, 0.7); margin: 0; }

/* ===== Strain pills ===== */
.strain-pills {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-7);
}
@media (max-width: 640px) {
  .strain-pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: var(--sp-2) var(--gutter) var(--sp-3);
    margin: 0 calc(-1 * var(--gutter)) var(--sp-5);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .strain-pills::-webkit-scrollbar { display: none; }
  .strain-pill { flex: 0 0 auto; }
}
.strain-pill {
  padding: 10px 22px;
  background: var(--cc-white);
  border: 1.5px solid var(--cc-mist);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--cc-deep);
  cursor: pointer;
  min-height: 44px;
  transition: background var(--dur-quick) var(--ease-quick),
              border-color var(--dur-quick) var(--ease-quick),
              transform var(--dur-quick) var(--ease-quick);
}
.strain-pill:hover, .strain-pill.is-active {
  background: linear-gradient(135deg, var(--cc-azure), var(--cc-ocean));
  color: var(--cc-white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ===== FAQ ===== */
.faq { display: grid; gap: var(--sp-3); max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--cc-white);
  border: 1px solid var(--cc-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-quick) var(--ease-quick);
}
.faq__item[open] { border-color: var(--cc-sky); box-shadow: 0 8px 20px var(--cc-shadow); }
.faq__item summary {
  padding: var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--cc-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--cc-ocean);
  flex-shrink: 0;
  transition: transform var(--dur-std) var(--ease-bounce);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 var(--sp-5) var(--sp-5); color: rgba(11, 42, 69, 0.72); font-size: var(--fs-sm); }

/* ===== Store Locator ===== */
.locator__intro {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
  margin-bottom: var(--sp-8);
}
@media (min-width: 880px) {
  .locator__intro { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-9); }
}
.locator__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cc-snow), var(--cc-mist));
  box-shadow: 0 30px 60px var(--cc-shadow);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  place-items: center;
}
.locator__media img {
  max-width: 330px;
  width: 100%;
  mix-blend-mode: multiply;
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.locator__media:hover img { transform: scale(1.04) rotate(-1deg); }
.locator__media .badge { top: var(--sp-4); left: var(--sp-4); }

.locator__search { position: relative; margin-top: var(--sp-5); max-width: 480px; }
.locator__search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--cc-ink);
  background: var(--cc-white);
  border: 1.5px solid var(--cc-sky);
  border-radius: var(--radius-pill);
  transition: border-color var(--dur-std) var(--ease-quick),
              box-shadow var(--dur-std) var(--ease-quick);
}
.locator__search input:focus {
  outline: none;
  border-color: var(--cc-ocean);
  box-shadow: 0 0 0 4px var(--cc-glow);
}
.locator__search svg {
  position: absolute;
  left: 20px; top: 50%;
  translate: 0 -50%;
  width: 20px; height: 20px;
  stroke: var(--cc-ocean);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  pointer-events: none;
}
.locator__count {
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--cc-ocean);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.locator__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
@media (max-width: 640px) {
  .locator__grid { grid-template-columns: 1fr; }
}
.store-card {
  background: var(--cc-white);
  border: 1px solid var(--cc-mist);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform var(--dur-std) var(--ease-smooth),
              box-shadow var(--dur-std) var(--ease-quick),
              border-color var(--dur-std) var(--ease-quick);
}
.store-card:hover {
  transform: translateY(-4px);
  border-color: var(--cc-sky);
  box-shadow: 0 14px 32px var(--cc-shadow);
}
.store-card h3 { font-size: var(--fs-md); margin: 0 0 var(--sp-1); }
.store-card__city {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-deep);
  background: var(--cc-mist);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.store-card__addr {
  font-size: var(--fs-sm);
  color: rgba(11, 42, 69, 0.65);
  margin: 0;
  flex: 1;
}
.store-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--cc-ocean);
  margin-top: var(--sp-2);
}
.store-card__link::after {
  content: '→';
  transition: transform var(--dur-std) var(--ease-smooth);
}
.store-card__link:hover::after { transform: translateX(5px); }

.locator__more { text-align: center; margin-top: var(--sp-6); }
.locator__empty {
  text-align: center;
  padding: var(--sp-7);
  color: rgba(11, 42, 69, 0.6);
  font-size: var(--fs-md);
  font-family: var(--font-display);
  font-style: italic;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__line > span { transform: none; }
  .hero__copy > .eyebrow, .hero__lead, .hero__cta, .hero__trust { opacity: 1; }
  .icon-draw path, .icon-draw circle, .icon-draw line, .icon-draw rect, .icon-draw polyline,
  .accent__squiggle path { stroke-dasharray: none; stroke-dashoffset: 0; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.flex--center { justify-content: center; align-items: center; }
.hidden { display: none; }
