/* ==========================================================================
   HOT TUB SHINE — Design System
   Cinematic Pacific Northwest: pre-dawn navy -> sunrise gold -> daylight.
   Tokens first; components below. See DESIGN_SYSTEM.md for usage.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/outfit-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin-var.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  /* Pre-dawn / night */
  --night-950: #040b16;
  --night-900: #061224;
  --navy-900: #08192e;
  --navy-800: #0b2342;
  --navy-700: #103058;
  --navy-600: #16407a;

  /* Water + sky */
  --water-600: #0a75c9;
  --water-500: #0c8ce9;
  --aqua-400: #35c7f0;
  --aqua-300: #7fe0f7;
  --ice-100: #e9f6fd;
  --ice-50: #f4fafe;

  /* Silver / chrome (logo anchor) */
  --silver-300: #c9d6e3;
  --silver-400: #aebfd0;
  --silver-500: #8fa5b9;

  /* Sunrise */
  --gold-300: #ffd9a0;
  --gold-400: #f6b866;
  --gold-500: #ee9f3f;
  --ember-500: #e97f3c;

  /* Evergreen + earth */
  --ever-700: #1d4a3a;
  --ever-800: #16382d;
  --cedar-500: #8a6242;
  --stone-200: #e2e8ee;

  /* Text */
  --ink-900: #101f31;
  --ink-700: #2c4258;
  --ink-500: #51677c;
  --ink-on-dark: #e8f2fb;
  --ink-on-dark-dim: #b8cbdd;

  /* Semantic */
  --bg-page: var(--ice-50);
  --accent-grad: linear-gradient(120deg, var(--water-500), var(--aqua-400));
  --sunrise-grad: linear-gradient(120deg, var(--gold-400), var(--gold-300));
  --focus-ring: 0 0 0 3px rgba(53, 199, 240, 0.55);

  /* Type scale (fluid) */
  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-hero: clamp(2.6rem, 1.2rem + 6vw, 5.4rem);
  --text-h2: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  --text-h3: clamp(1.25rem, 1.05rem + 0.9vw, 1.65rem);
  --text-lead: clamp(1.06rem, 1rem + 0.35vw, 1.25rem);
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-eyebrow: 0.78rem;

  /* Space scale */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4.5rem; --sp-9: 7rem;
  --section-y: clamp(4rem, 3rem + 5vw, 7.5rem);

  /* Radii + shadows */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;
  --shadow-1: 0 4px 16px rgba(8, 25, 46, 0.08);
  --shadow-2: 0 14px 40px rgba(8, 25, 46, 0.14);
  --shadow-3: 0 28px 80px rgba(4, 11, 22, 0.28);
  --glow-aqua: 0 10px 36px rgba(12, 140, 233, 0.35);
  --glow-gold: 0 10px 36px rgba(246, 184, 102, 0.35);

  /* Motion */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.5, 1);
  --dur-1: 180ms; --dur-2: 320ms; --dur-3: 700ms; --dur-4: 1200ms;

  --header-h: 76px;
  --container: 1180px;
  --container-wide: 1400px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--water-600); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; margin: 0 0 0.5em; letter-spacing: -0.02em; }
h1 { font-size: var(--text-hero); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: var(--text-h2); font-weight: 750; letter-spacing: -0.028em; }
h3 { font-size: var(--text-h3); font-weight: 650; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 4px; }
::selection { background: rgba(53, 199, 240, 0.3); }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.container--wide { width: min(var(--container-wide), 100% - 2.5rem); margin-inline: auto; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 200;
  padding: 0.7rem 1.2rem; background: var(--navy-800); color: #fff;
  border-radius: var(--r-sm); transition: top var(--dur-1);
}
.skip-link:focus { top: 1rem; }

/* ---------- Section moods (the dark -> light narrative) ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--night {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(12, 140, 233, 0.14), transparent 60%),
    linear-gradient(180deg, var(--night-950), var(--night-900) 55%, var(--navy-900));
  color: var(--ink-on-dark);
}
.section--dawn {
  background:
    radial-gradient(900px 480px at 90% 0%, rgba(246, 184, 102, 0.12), transparent 55%),
    radial-gradient(800px 420px at 5% 100%, rgba(12, 140, 233, 0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--ink-on-dark);
}
.section--day { background: #fff; }
.section--mist { background: var(--ice-50); }
.section--gold {
  background:
    radial-gradient(1100px 560px at 50% -20%, rgba(246, 184, 102, 0.24), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: var(--ink-on-dark);
}
.section--night .lead, .section--dawn .lead, .section--gold .lead { color: var(--ink-on-dark-dim); }
.section--night a:not(.btn), .section--dawn a:not(.btn), .section--gold a:not(.btn) { color: var(--aqua-300); }

/* Scene bridges: mood sections dissolve into each other instead of hard edges */
.section--night + .section--day::before,
.section--night + .section--mist::before,
.section--dawn + .section--day::before,
.section--dawn + .section--mist::before,
.section--gold + .section--day::before,
.section--gold + .section--mist::before,
.trust-bar + .section--day::before,
.trust-bar + .section--mist::before,
.page-hero + .section--day::before,
.page-hero + .section--mist::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(180deg, rgba(8, 25, 46, 0.14), transparent);
  pointer-events: none;
}
.section--day + .section--dawn::before,
.section--mist + .section--dawn::before,
.section--day + .section--night::before,
.section--mist + .section--night::before,
.section--day + .section--gold::before,
.section--mist + .section--gold::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, rgba(244, 250, 254, 0.06), transparent);
  pointer-events: none;
}

/* Water ripple divider between mood shifts */
.ripple-divider { display: block; width: 100%; height: 70px; margin-top: -1px; }
.ripple-divider--flip { transform: scaleY(-1); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: 0 0 var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-eyebrow); font-weight: 650;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--water-600);
}
/* brand droplet mark on every section label */
.eyebrow::before {
  content: ""; width: 12px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C12 2 5.5 10 5.5 14.8a6.5 6.5 0 0 0 13 0C18.5 10 12 2 12 2z' fill='%2335c7f0'/%3E%3C/svg%3E") center / contain no-repeat;
}
.section--night .eyebrow, .section--dawn .eyebrow, .section--gold .eyebrow { color: var(--aqua-300); }
.eyebrow--gold { color: var(--gold-400) !important; }
.eyebrow--gold::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C12 2 5.5 10 5.5 14.8a6.5 6.5 0 0 0 13 0C18.5 10 12 2 12 2z' fill='%23ffc46b'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lead { font-size: var(--text-lead); line-height: 1.7; color: var(--ink-500); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  position: relative; overflow: hidden;
  border: 0; border-radius: var(--r-pill); cursor: pointer;
  font-family: var(--font-display); font-size: 1rem; font-weight: 650; letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: transform var(--dur-2) var(--ease-spring), box-shadow var(--dur-2), background-color var(--dur-2), filter var(--dur-2);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--accent-grad); color: var(--night-950);
  box-shadow: var(--glow-aqua);
}
.btn--primary:hover { filter: brightness(1.07); box-shadow: 0 14px 44px rgba(12, 140, 233, 0.45); }
.btn--sunrise {
  background: var(--sunrise-grad); color: var(--night-950);
  box-shadow: var(--glow-gold);
}
.btn--sunrise:hover { filter: brightness(1.05); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.4); }
.btn--outline {
  background: transparent; color: var(--navy-800);
  border: 1.5px solid var(--silver-400);
}
.btn--outline:hover { border-color: var(--water-500); color: var(--water-600); background: rgba(12, 140, 233, 0.05); }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.08rem; }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.92rem; }
.btn svg { flex: 0 0 auto; }

.button-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background-color var(--dur-2), box-shadow var(--dur-2), backdrop-filter var(--dur-2);
}
.site-header.is-scrolled {
  background: rgba(4, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(4, 11, 22, 0.35);
}
.nav-bar {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none !important; position: relative; overflow: hidden; border-radius: 8px; }
.brand img { height: 46px; width: auto; }
/* periodic chrome shimmer sweep across the logo */
.brand::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.32) 50%, transparent 68%);
  transform: translateX(-130%);
  animation: logo-shimmer 9s var(--ease-soft) infinite;
  mix-blend-mode: screen;
}
@keyframes logo-shimmer {
  0%, 84% { transform: translateX(-130%); }
  97%, 100% { transform: translateX(130%); }
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink-on-dark); font-family: var(--font-display); font-weight: 550; font-size: 0.98rem;
  text-decoration: none; position: relative; padding-block: 0.4rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--accent-grad); border-radius: 2px;
  transition: right var(--dur-2) var(--ease-soft);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a:hover { text-decoration: none; color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: #fff; font-family: var(--font-display); font-weight: 650; font-size: 0.98rem;
  text-decoration: none !important;
}
.nav-phone:hover { color: var(--aqua-300); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.6rem;
  border-radius: var(--r-sm);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform var(--dur-2) var(--ease-soft), opacity var(--dur-2);
  content: ""; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; inset: 0; top: var(--header-h); z-index: 99;
  background: linear-gradient(180deg, rgba(4, 11, 22, 0.97), rgba(8, 25, 46, 0.97));
  backdrop-filter: blur(10px);
  padding: var(--sp-6) var(--sp-5);
  overflow-y: auto;
}
.nav-drawer.is-open { display: block; }
.nav-drawer .nav-links { flex-direction: column; align-items: flex-start; gap: 0; }
.nav-drawer .nav-links li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.nav-drawer .nav-links a { display: block; padding: 1.05rem 0.25rem; font-size: 1.15rem; }
.nav-drawer .button-row { margin-top: var(--sp-5); }

/* Sticky mobile action bar */
.action-bar {
  display: none;
  position: fixed; inset-inline: 0; bottom: 0; z-index: 95;
  background: rgba(4, 11, 22, 0.92); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.55rem;
}
.action-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 0.5rem; border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 650; font-size: 0.95rem;
  text-decoration: none !important;
}
.action-bar .ab-call { background: rgba(255, 255, 255, 0.1); color: #fff; }
.action-bar .ab-text { background: rgba(255, 255, 255, 0.1); color: #fff; }
.action-bar .ab-book { background: var(--accent-grad); color: var(--night-950); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  background: var(--night-950);
}
.hero__media, .hero__media video, .hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.55) 0%, rgba(4, 11, 22, 0.05) 34%, rgba(4, 11, 22, 0.12) 62%, rgba(4, 11, 22, 0.78) 100%),
    linear-gradient(100deg, rgba(4, 11, 22, 0.5) 0%, transparent 55%);
}
.hero__media video { opacity: 0; transition: opacity 1.4s var(--ease-soft); }
.hero__media.video-ready video { opacity: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}
.hero__content {
  position: relative; z-index: 2;
  padding-block: calc(var(--header-h) + 3rem) clamp(3.5rem, 8vh, 6.5rem);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: var(--text-eyebrow);
  letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-300); margin-bottom: var(--sp-4);
}
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--sunrise-grad); }
.hero h1 { max-width: 13ch; margin-bottom: var(--sp-4); text-wrap: balance; }
.hero h1 .shine-word {
  background: linear-gradient(100deg, #fff 10%, var(--aqua-300) 38%, #fff 52%, var(--gold-300) 78%, #fff 95%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine-sweep 6.5s var(--ease-soft) infinite;
}
@keyframes shine-sweep {
  0%, 20% { background-position: 110% 0; }
  55%, 100% { background-position: -60% 0; }
}
.hero__lead { font-size: var(--text-lead); color: rgba(238, 247, 255, 0.92); max-width: 56ch; margin-bottom: var(--sp-5); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; align-items: center;
  margin-top: var(--sp-6); color: rgba(230, 242, 252, 0.85); font-size: var(--text-small);
}
.hero__trust .t-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__trust svg { color: var(--gold-300); }
.hero__scroll-cue {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); z-index: 2;
  color: rgba(255, 255, 255, 0.7); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); text-decoration: none !important;
}
.hero__scroll-cue::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  animation: cue-drop 2.2s var(--ease-soft) infinite;
}
@media (max-height: 880px) {
  .hero__scroll-cue { display: none; }
}

/* ============ HERO BRANDMARK — "the name rises with the sun" ============ */
.hero-brandmark {
  position: absolute; z-index: 2;
  right: clamp(2rem, 8vw, 9rem); top: 21%;
  text-align: center; pointer-events: none;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform 0.7s var(--ease-soft);
}
.hero-brandmark__word {
  margin: 0; display: flex; gap: clamp(0.7rem, 1.5vw, 1.2rem);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 3.3rem); line-height: 1; letter-spacing: 0.04em;
}
.bw { display: inline-flex; }
.bl {
  display: inline-block; pointer-events: auto; cursor: default;
  background: linear-gradient(180deg, #ffffff 8%, #dbe6f0 38%, #93a9bd 52%, #f2f8fd 62%, #aebfd0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 10px rgba(4, 11, 22, 0.6));
  transition: transform var(--dur-2) var(--ease-spring), filter var(--dur-2);
}
.bw--shine .bl {
  background: linear-gradient(180deg, #bfeeff 5%, #35c7f0 45%, #0a75c9 58%, #9fe7fb 74%, #0c8ce9 100%);
  -webkit-background-clip: text; background-clip: text;
}
.bl:hover {
  transform: translateY(-5px) scale(1.1);
  filter: drop-shadow(0 7px 18px rgba(53, 199, 240, 0.55)) brightness(1.3);
}
.hero-brandmark__tag {
  margin: 0.8rem 0 0; font-family: var(--font-display); font-weight: 650;
  font-size: clamp(0.58rem, 0.8vw, 0.72rem); letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--gold-300); text-shadow: 0 1px 8px rgba(4, 11, 22, 0.65);
}
.hero-brandmark__glow {
  position: absolute; inset: -75% -35%; z-index: -1;
  background: radial-gradient(ellipse at 50% 55%, rgba(255, 196, 107, 0.32), rgba(255, 196, 107, 0.08) 45%, transparent 70%);
  filter: blur(5px);
}
.hero-brandmark__glow::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg at 50% 55%, rgba(255, 215, 160, 0.10) 0deg 4deg, transparent 4deg 15deg);
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, #000 18%, transparent 60%);
  mask-image: radial-gradient(ellipse at 50% 55%, #000 18%, transparent 60%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-brandmark { opacity: 0; animation: brand-in 1.6s var(--ease-soft) 1.1s forwards; }
  .bl { animation: bl-float 6.5s ease-in-out calc(2s + var(--i) * 0.28s) infinite; }
  .hero-brandmark__glow { animation: glow-breathe 7s ease-in-out 2s infinite; }
  .hero-brandmark__glow::before { animation: rays-turn 90s linear infinite; }
}
@keyframes brand-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes bl-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
@keyframes glow-breathe { 0%, 100% { opacity: 0.72; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes rays-turn { to { transform: rotate(360deg); } }
@media (max-width: 900px) {
  .hero-brandmark {
    right: auto; left: 50%; top: calc(var(--header-h) + 4vh);
    translate: -50% 0; transform: none;
  }
  .hero-brandmark__word { font-size: clamp(1.35rem, 6.4vw, 1.8rem); }
}

/* branded shine sweep on button hover */
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -10%; width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg) translateX(-160%); opacity: 0; pointer-events: none;
}
.btn:hover::after, .btn:focus-visible::after { animation: btn-sweep 0.7s var(--ease-soft); }
@keyframes btn-sweep {
  from { opacity: 1; transform: skewX(-20deg) translateX(-160%); }
  to { opacity: 1; transform: skewX(-20deg) translateX(430%); }
}

/* footer chrome watermark */
.site-footer { overflow: hidden; }
.footer-watermark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 10.5vw, 8.4rem); line-height: 0.95;
  text-align: center; letter-spacing: 0.02em; white-space: nowrap;
  background: linear-gradient(180deg, #e8f2fb 0%, #8fa5b9 55%, #16407a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.09; user-select: none; margin: 0 0 -0.12em;
}
@keyframes cue-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: var(--sp-5); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  border-radius: var(--r-lg); padding: var(--sp-6);
  background: #fff; border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-2) var(--ease-soft), box-shadow var(--dur-2), border-color var(--dur-2);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--silver-300); }

.card--glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09); /* chrome edge, echoes the logo */
  color: var(--ink-on-dark);
}
.card--glass:hover { border-color: rgba(53, 199, 240, 0.45); background: rgba(255, 255, 255, 0.09); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 44px rgba(4, 11, 22, 0.3); }
.price-banner, .cta-band { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow-3); }
.card--glass h3 { color: #fff; }
.card--glass p { color: var(--ink-on-dark-dim); }

.card__icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 14px; margin-bottom: var(--sp-4);
  background: linear-gradient(135deg, rgba(12, 140, 233, 0.18), rgba(53, 199, 240, 0.12));
  border: 1px solid rgba(53, 199, 240, 0.35);
  color: var(--aqua-300);
}
.section--day .card__icon, .section--mist .card__icon { color: var(--water-600); }

.card__price {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; letter-spacing: -0.02em;
  color: var(--aqua-300); margin: 0.4rem 0 0.1rem;
}
.card__price small { font-size: 0.85rem; font-weight: 550; color: var(--ink-on-dark-dim); letter-spacing: 0; }
.section--day .card__price, .section--mist .card__price { color: var(--water-600); }
.section--day .card__price small, .section--mist .card__price small { color: var(--ink-500); }
.card__note { font-size: var(--text-small); color: var(--ink-on-dark-dim); margin-bottom: var(--sp-3); }
.card .text-link { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }

.text-link { display: inline-flex; align-items: center; gap: 0.35rem; }
.text-link::after { content: "→"; transition: transform var(--dur-2) var(--ease-soft); }
.text-link:hover::after { transform: translateX(4px); }
.text-link:hover { text-decoration: none; }

/* ---------- Price banner ---------- */
.price-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-5);
  border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.6rem);
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(246, 184, 102, 0.18), transparent 60%),
    linear-gradient(120deg, var(--navy-800), var(--navy-700));
  color: #fff; border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-3);
}
.price-banner__amount {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff, var(--aqua-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}

/* ---------- Before / After slider ---------- */
.ba-slider {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--navy-900);
  box-shadow: var(--shadow-2);
  touch-action: none; user-select: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 var(--ba-pos, 50%)); }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); z-index: 3;
  width: 2px; background: rgba(255, 255, 255, 0.9); transform: translateX(-1px);
  pointer-events: none;
}
.ba-slider .ba-handle::after {
  content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; display: grid; place-items: center;
  background: #fff; color: var(--navy-800); border-radius: 50%;
  font-size: 1.15rem; box-shadow: var(--shadow-2);
}
.ba-slider .ba-label {
  position: absolute; top: 0.9rem; z-index: 2; padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill); font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(4, 11, 22, 0.65); color: #fff; backdrop-filter: blur(6px);
}
.ba-slider .ba-label--before { left: 0.9rem; }
.ba-slider .ba-label--after { right: 0.9rem; background: rgba(12, 140, 233, 0.8); }
.ba-slider input[type="range"] {
  position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-slider input[type="range"]:focus-visible ~ .ba-handle::after { box-shadow: var(--focus-ring), var(--shadow-2); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.gallery-item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--navy-900); cursor: zoom-in;
  border: 0; padding: 0; display: block; width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-3) var(--ease-soft);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 11, 22, 0.55));
  opacity: 0; transition: opacity var(--dur-2);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gi-caption {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.75rem; z-index: 2;
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--dur-2), transform var(--dur-2);
}
.gallery-item:hover .gi-caption { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  border: 0; padding: 0; background: rgba(2, 6, 12, 0.92);
  max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh;
}
.lightbox::backdrop { background: rgba(2, 6, 12, 0.92); }
.lightbox__inner { display: grid; place-items: center; width: 100%; height: 100%; padding: 3.5rem 1rem 4.5rem; }
.lightbox__inner img { max-width: min(1200px, 96vw); max-height: 82vh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: var(--shadow-3); }
.lightbox__caption { color: var(--ink-on-dark-dim); text-align: center; margin-top: 0.9rem; font-size: var(--text-small); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed; z-index: 5; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255, 255, 255, 0.08); color: #fff; cursor: pointer; font-size: 1.2rem;
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255, 255, 255, 0.18); }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-4); }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: var(--sp-4); align-items: start;
  padding: var(--sp-5); border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
}
.section--day .step, .section--mist .step { background: #fff; border-color: var(--stone-200); box-shadow: var(--shadow-1); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 140, 233, 0.2), rgba(53, 199, 240, 0.1));
  border: 1px solid rgba(53, 199, 240, 0.4); color: var(--aqua-300);
}
.section--day .step::before, .section--mist .step::before { color: var(--water-600); }
.step h3 { margin-bottom: 0.3rem; font-size: 1.15rem; }
.step p { margin: 0; font-size: 0.97rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--sp-3); }
.faq details {
  border-radius: var(--r-md); background: #fff; border: 1px solid var(--stone-200);
  overflow: hidden; transition: box-shadow var(--dur-2);
}
.faq details[open] { box-shadow: var(--shadow-1); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display); font-weight: 630; font-size: 1.04rem; color: var(--ink-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--water-500);
  transition: transform var(--dur-2) var(--ease-soft); line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.4rem 1.3rem; color: var(--ink-700); }
.faq .faq__body p:last-child { margin-bottom: 0; }
.section--night .faq details, .section--dawn .faq details {
  background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12);
}
.section--night .faq summary, .section--dawn .faq summary { color: #fff; }
.section--night .faq .faq__body, .section--dawn .faq .faq__body { color: var(--ink-on-dark-dim); }

/* ---------- Reviews ---------- */
.review-card { display: flex; flex-direction: column; gap: var(--sp-3); }
.review-stars { color: var(--gold-400); letter-spacing: 3px; font-size: 1.05rem; }
.review-card blockquote { margin: 0; font-size: 1.02rem; line-height: 1.65; color: var(--ink-700); }
.review-card cite { font-style: normal; font-family: var(--font-display); font-weight: 650; color: var(--ink-900); font-size: 0.95rem; }
.review-card .review-source { font-size: 0.8rem; color: var(--ink-500); }

.rating-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.1rem; border-radius: var(--r-pill);
  background: rgba(246, 184, 102, 0.12); border: 1px solid rgba(246, 184, 102, 0.4);
  font-family: var(--font-display); font-weight: 650; color: var(--gold-300);
}
.section--day .rating-pill, .section--mist .rating-pill { color: #9a6a1f; background: rgba(246, 184, 102, 0.14); border-color: rgba(238, 159, 63, 0.45); }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem;
  padding: 1.1rem 1rem;
  background: var(--night-950); color: var(--silver-300);
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 550; letter-spacing: 0.04em;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-bar svg { color: var(--aqua-400); }

/* ---------- Brand pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.pill {
  padding: 0.55rem 1.05rem; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); color: var(--ink-on-dark);
}
.section--day .pill, .section--mist .pill { background: #fff; border-color: var(--stone-200); color: var(--ink-700); box-shadow: var(--shadow-1); }

/* ---------- Service area ---------- */
.area-panel {
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255, 255, 255, 0.1); color: #fff;
}
.area-map { position: relative; min-height: 420px; background: var(--navy-900); }
.area-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(1.05); }
.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.city-chip {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1rem; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  text-decoration: none !important;
  transition: background var(--dur-2), border-color var(--dur-2), transform var(--dur-2);
}
.city-chip:hover { background: rgba(53, 199, 240, 0.16); border-color: rgba(53, 199, 240, 0.4); transform: translateY(-2px); }
.city-chip svg { color: var(--aqua-300); flex: 0 0 auto; }
.city-chip--muted { opacity: 0.65; pointer-events: none; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: var(--text-small); color: var(--ink-500); margin-bottom: var(--sp-5); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li + li::before { content: "/"; color: var(--silver-400); }
.breadcrumbs a { color: var(--ink-500); }
.breadcrumbs [aria-current="page"] { color: var(--ink-900); font-weight: 550; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(2.8rem, 6vw, 4.5rem);
  background:
    radial-gradient(900px 400px at 88% -10%, rgba(12, 140, 233, 0.16), transparent 60%),
    radial-gradient(700px 300px at 8% 110%, rgba(246, 184, 102, 0.1), transparent 55%),
    linear-gradient(180deg, var(--night-950), var(--navy-900));
  color: #fff;
}
.page-hero h1 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.6rem); max-width: 20ch; }
.page-hero .lead { color: var(--ink-on-dark-dim); }
.page-hero .breadcrumbs, .page-hero .breadcrumbs a { color: var(--silver-400); }
.page-hero .breadcrumbs [aria-current="page"] { color: #fff; }

/* ---------- Product cards ---------- */
.product-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.product-card__media {
  aspect-ratio: 1; display: grid; place-items: center; background: #fff; padding: 1.4rem;
  border-bottom: 1px solid var(--stone-200);
}
.product-card__media img { max-height: 100%; width: auto; object-fit: contain; }
.product-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card__tag {
  align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-display); font-weight: 650; color: var(--water-600);
  background: rgba(12, 140, 233, 0.09); border: 1px solid rgba(12, 140, 233, 0.25);
  padding: 0.25rem 0.6rem; border-radius: var(--r-pill); margin-bottom: 0.35rem;
}
.product-card h3 { font-size: 1.12rem; margin-bottom: 0.15rem; }
.product-card p { font-size: 0.93rem; color: var(--ink-500); margin: 0; }
.product-card .product-price { font-family: var(--font-display); font-weight: 750; color: var(--ink-900); margin-top: auto; padding-top: 0.7rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 4rem);
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(246, 184, 102, 0.28), transparent 55%),
    radial-gradient(600px 300px at 10% 90%, rgba(12, 140, 233, 0.3), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff; text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-3);
}
.cta-band h2 { max-width: 24ch; margin-inline: auto; }
.cta-band .lead { margin-inline: auto; color: var(--ink-on-dark-dim); }
.cta-band .button-row { justify-content: center; margin-top: var(--sp-5); }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--night-900), var(--night-950));
  color: var(--ink-on-dark-dim); padding: var(--sp-8) 0 var(--sp-5);
  font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-6); }
.site-footer h3 {
  color: #fff; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 650; margin-bottom: var(--sp-4);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: var(--ink-on-dark-dim); }
.site-footer a:hover { color: var(--aqua-300); text-decoration: none; }
.footer-brand img { height: 54px; width: auto; margin-bottom: var(--sp-4); }
.footer-bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.85rem; color: var(--silver-500);
}

/* ---------- Scroll reveals ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-3) var(--ease-soft), transform var(--dur-3) var(--ease-soft); }
.reveal--left { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(0.94); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-3) var(--ease-soft), transform var(--dur-3) var(--ease-soft); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }

/* Parallax layers */
[data-parallax] { will-change: transform; }

/* ---------- Split layouts ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--wide-media { grid-template-columns: 1.15fr 0.85fr; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-field { display: grid; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink-900); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; padding: 0.85rem 1rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--stone-200); background: #fff; color: var(--ink-900);
  transition: border-color var(--dur-1), box-shadow var(--dur-1);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--water-500); box-shadow: 0 0 0 3px rgba(12, 140, 233, 0.18);
}
.form-field .field-error { color: #b3261e; font-size: 0.83rem; display: none; }
.form-field.has-error input, .form-field.has-error textarea { border-color: #b3261e; }
.form-field.has-error .field-error { display: block; }
.form-status { padding: 1rem 1.2rem; border-radius: var(--r-sm); font-weight: 550; display: none; }
.form-status.is-success { display: block; background: #e8f6ec; color: #1d5b34; border: 1px solid #bfe4cb; }
.form-status.is-error { display: block; background: #fdecea; color: #8c231c; border: 1px solid #f4c3bf; }

/* ---------- Utility ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-header .nav-links, .nav-cta .btn { display: none; }
  /* horizontal reveal offsets would widen the mobile layout viewport */
  .reveal--left, .reveal--right { transform: translateY(28px); }
  .nav-toggle { display: block; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .split, .split--wide-media { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .action-bar { display: flex; }
  body { padding-bottom: 64px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92svh; }
}
@media (max-width: 560px) {
  .card-grid--2, .card-grid--4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .brand img { height: 38px; }
  .price-banner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero h1 .shine-word { animation: none; background-position: 50% 0; }
  .hero__scroll-cue::after { animation: none; }
}

/* ================= V2 STUDIO LAYER (Astro build only) ================= */
/* scene tint: one continuous color grade across the scroll journey */
.scene-tint {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  mix-blend-mode: soft-light; opacity: 0.38;
  background: linear-gradient(160deg, var(--tint-a, #08192e), var(--tint-b, #0a2444));
}
html:not(.js-motion) .scene-tint { display: none; }

/* scroll-scrubbed sunrise layer over the hero video */
.sunrise-layer { opacity: 0; }

/* living-water WebGL layer */
.water-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  mix-blend-mode: screen; opacity: 0; pointer-events: none;
  transition: opacity 1.4s var(--ease-soft);
}
.water-canvas.is-live { opacity: 0.55; }

/* scrub mode: GSAP owns the brandmark timing, kill the CSS entrance */
.js-scrub .hero-brandmark { animation: none; opacity: 1; }

/* headline hidden until SplitText is ready (motion.js reveals it) */
.js-motion .hero h1 { visibility: hidden; }
.h1-word { display: inline-block; }

/* ========== V2 FULL-CINEMA SKIN — the dawn never goes fluorescent ========== */
/* Token flip: light-section inks become luminous; glassy surfaces replace white.
   Inline styles reference these same vars, so the whole site follows. */
:root {
  --ink-900: #f2f8fd;
  --ink-700: #dbe8f4;
  --ink-600: #c3d5e6;
  --ink-500: #a9bfd4;
  --stone-200: rgba(255, 255, 255, 0.14);
  --ice-100: rgba(255, 255, 255, 0.08);
  --water-600: #4fd1f5;
}
body { background: #0a1c33; }
.section--day { background: linear-gradient(180deg, #0c2240 0%, #0e2947 100%); color: var(--ink-on-dark); }
.section--mist { background: linear-gradient(180deg, #0a1c33 0%, #113050 100%); color: var(--ink-on-dark); }
main h2, main h3, main h4 { color: #fff; }
.lead { color: var(--ink-on-dark-dim); }
.card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), var(--shadow-1);
}
.card:hover { border-color: rgba(53, 199, 240, 0.45); }
.faq details { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); }
.faq details[open] { background: rgba(255, 255, 255, 0.08); }
.review-card { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); }
.product-card__media { background: #fff; border-radius: var(--r-sm); }
.pill { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); color: #e8f2fb; }
.text-link { color: var(--aqua-300); }
.text-link:hover { color: #bfeeff; }

/* ambient caustic light drifting through every section */
.section { position: relative; }
@media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
  .section::after {
    content: ""; position: absolute; inset: -4%; pointer-events: none; z-index: 0;
    background:
      radial-gradient(42% 30% at 18% 22%, rgba(53, 199, 240, 0.07), transparent 70%),
      radial-gradient(36% 26% at 84% 74%, rgba(255, 196, 107, 0.05), transparent 70%),
      radial-gradient(50% 38% at 62% 12%, rgba(12, 140, 233, 0.06), transparent 70%);
    animation: caustics-drift 26s ease-in-out infinite alternate;
  }
  .section > .container { position: relative; z-index: 1; }
}
@keyframes caustics-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to { transform: translate3d(1.5%, 1.4%, 0) scale(1.05); }
}

/* the shine follows your cursor, everywhere */
.cursor-glow {
  position: fixed; left: 0; top: 0; width: 620px; height: 620px; border-radius: 50%;
  pointer-events: none; z-index: 85; mix-blend-mode: screen; opacity: 0;
  background: radial-gradient(circle, rgba(127, 224, 247, 0.15), rgba(53, 199, 240, 0.06) 42%, transparent 68%);
  transition: opacity 0.7s var(--ease-soft);
  will-change: transform;
}
.cursor-glow.is-on { opacity: 1; }

/* brandmark: born at the sun, ends owning the mountain range */
@media (min-width: 901px) {
  .hero-brandmark { right: auto; left: 50%; top: 16%; translate: -50% 0; }
  .hero-brandmark__word { font-size: clamp(2.2rem, 6vw, 5.6rem); gap: clamp(1rem, 2.4vw, 2rem); }
  .hero-brandmark__tag { font-size: clamp(0.66rem, 1.05vw, 0.95rem); letter-spacing: 0.5em; margin-top: 1.1rem; }
}
@media (max-width: 900px) {
  .hero-brandmark__word { font-size: clamp(1.5rem, 7.6vw, 2.2rem); }
}

/* new wordmark logo trial (concept r1-b1): pure wordmark needs different scale */
.brand img { height: 30px; width: auto; background: none; border-radius: 0; }
.site-footer .footer-grid img { height: 26px; width: auto; }
@media (max-width: 520px) {
  .brand img { height: 17px; width: auto; }
}
/* the brand shimmer sweep reads better tighter on the wordmark */
.brand::after { background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.4) 50%, transparent 62%); }

/* hero brandmark — owner pass 2: bigger, lower-centered, brighter+wider silver */
@media (min-width: 901px) {
  .hero-brandmark { top: 20%; }
  .hero-brandmark__word { font-size: clamp(2.4rem, 6.6vw, 6.2rem); }
}
.bw:not(.bw--shine) .bl {
  background: linear-gradient(180deg, #ffffff 8%, #f0f6fb 38%, #bccddd 52%, #ffffff 64%, #d4e0eb 100%);
  -webkit-background-clip: text; background-clip: text;
  letter-spacing: 0.06em;
  filter: drop-shadow(0 3px 12px rgba(4, 11, 22, 0.6)) brightness(1.1);
}
/* GSAP owns the entrance whenever motion is on (auto flight, not scroll) */
.js-motion .hero-brandmark { animation: none; opacity: 0; }
html:not(.js-motion) .hero-brandmark { opacity: 1; }

/* owner pass 3: brandmark rides right to the tree line; letters wobble a touch more */
@media (min-width: 901px) {
  .hero-brandmark { left: 62%; }
}
@keyframes bl-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* ========== owner pass 4: studio backgrounds + stronger glow + readable glass ========== */
/* cursor glow: same presence at the bottom of the page as at the top */
.cursor-glow {
  width: 700px; height: 700px;
  background:
    radial-gradient(circle, rgba(191, 238, 255, 0.20) 0%, rgba(127, 224, 247, 0.13) 22%, rgba(53, 199, 240, 0.06) 48%, transparent 70%);
}

/* true frosted glass: readable text, defined edges, studio depth */
.card, .faq details, .review-card, .product-card {
  background: rgba(13, 34, 60, 0.55);
  border-color: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
  backdrop-filter: blur(12px) saturate(1.25);
}
.card:hover { background: rgba(16, 41, 72, 0.62); }
.faq details[open] { background: rgba(16, 41, 72, 0.62); }
.step { background: rgba(13, 34, 60, 0.5); border-color: rgba(255, 255, 255, 0.14); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }

/* brighter body inks over the richer backgrounds */
:root {
  --ink-600: #cfdfee;
  --ink-500: #b6cbdf;
  --ink-on-dark-dim: #c6d7e7;
}

/* studio section backgrounds: living water + the PNW ridge (owner pass 4) */
.section--day {
  background:
    linear-gradient(180deg, rgba(11, 30, 56, 0.90) 0%, rgba(13, 37, 66, 0.93) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
  color: var(--ink-on-dark);
}
.section--dawn {
  background:
    linear-gradient(160deg, rgba(6, 17, 33, 0.93) 0%, rgba(14, 36, 68, 0.90) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
}
.section--mist {
  background:
    linear-gradient(180deg, rgba(7, 19, 37, 0.55) 0%, rgba(10, 28, 51, 0.88) 60%, rgba(10, 28, 51, 0.97) 100%),
    url('/assets/img/ambient/ridgeline-2200.jpg') center 30% / cover no-repeat;
  color: var(--ink-on-dark);
}
/* the water slides beneath the page as you scroll */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .section--day, .section--dawn { background-attachment: scroll, fixed; }
}

/* owner pass 5: global living-water layer + rays down the sides + airier overlays */
.water-global {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 84; pointer-events: none; mix-blend-mode: screen;
  opacity: 0; transition: opacity 1.4s var(--ease-soft);
}
.water-global.is-live { opacity: 0.5; }

/* vertical light rays running down the side of alternating panels */
.section--dawn {
  background:
    linear-gradient(160deg, rgba(6, 17, 33, 0.86) 0%, rgba(14, 36, 68, 0.82) 100%),
    url('/assets/img/ambient/rays-1920.jpg') right center / auto 130% no-repeat,
    #0a1c33;
}
/* airier overlays: let the imagery breathe (glass cards keep the text safe) */
.section--day {
  background:
    linear-gradient(180deg, rgba(11, 30, 56, 0.80) 0%, rgba(13, 37, 66, 0.85) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
}
.section--mist {
  background:
    linear-gradient(180deg, rgba(7, 19, 37, 0.42) 0%, rgba(10, 28, 51, 0.80) 60%, rgba(10, 28, 51, 0.95) 100%),
    url('/assets/img/ambient/ridgeline-2200.jpg') center 30% / cover no-repeat;
}
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .section--day, .section--dawn { background-attachment: scroll, fixed; }
}

/* owner pass 6: rays image retired (read as moving dots), original overlay strength restored */
.section--dawn {
  background:
    linear-gradient(160deg, rgba(6, 17, 33, 0.93) 0%, rgba(14, 36, 68, 0.90) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
}
.section--day {
  background:
    linear-gradient(180deg, rgba(11, 30, 56, 0.90) 0%, rgba(13, 37, 66, 0.93) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
}
.section--mist {
  background:
    linear-gradient(180deg, rgba(7, 19, 37, 0.55) 0%, rgba(10, 28, 51, 0.88) 60%, rgba(10, 28, 51, 0.97) 100%),
    url('/assets/img/ambient/ridgeline-2200.jpg') center 30% / cover no-repeat;
}
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .section--day, .section--dawn { background-attachment: scroll, fixed; }
}

/* owner pass 6b: glow-proof card interiors — glass look, denser backing so the
   screen-blend water/glow layers can never wash out white lettering inside boxes */
.card, .faq details, .review-card, .product-card {
  background: rgba(11, 28, 52, 0.80);
}
.card:hover, .faq details[open] { background: rgba(14, 35, 63, 0.86); }
.step { background: rgba(11, 28, 52, 0.74); }
/* headings that sit directly on imagery get a grounding shadow */
main h2, .section-head .lead, .page-hero h1 { text-shadow: 0 2px 16px rgba(4, 11, 22, 0.55); }

/* owner pass 7: water layer yields to the hero sunrise; slightly tighter cursor */
.water-global.water-dim { opacity: 0; }
.cursor-glow { width: 620px; height: 620px; }

/* owner pass 8: footer watermark warmed with sunrise gold and brought to life */
.footer-watermark {
  background: linear-gradient(180deg, #f2f8fd 0%, #c9d6e3 38%, #ffc46b 70%, #e97f3c 100%);
  -webkit-background-clip: text; background-clip: text;
  opacity: 0.22;
  filter: drop-shadow(0 0 26px rgba(255, 196, 107, 0.3));
}

/* owner pass 9: drain & clean video feature as first section */
.feature-water-video {
  display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--r-xl); border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 60px rgba(4, 11, 22, 0.5);
  background: #0a1c33;
}
.dc-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.4rem; list-style: none; margin: 1.4rem 0 0; padding: 0;
}
.dc-list li {
  position: relative; padding-left: 1.5rem; color: var(--ink-on-dark);
  font-weight: 550; font-size: 0.98rem;
}
.dc-list li::before {
  content: ""; position: absolute; left: 0; top: 0.18em; width: 13px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C12 2 5.5 10 5.5 14.8a6.5 6.5 0 0 0 13 0C18.5 10 12 2 12 2z' fill='%2335c7f0'/%3E%3C/svg%3E") center / contain no-repeat;
}
@media (max-width: 560px) {
  .dc-list { grid-template-columns: 1fr; }
}

/* owner pass 10: kill the last white-box leftovers (matching specificity) */
.section--day .step, .section--mist .step {
  background: rgba(11, 28, 52, 0.80); border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.section--day .step::before, .section--mist .step::before { color: var(--aqua-300); }
.section--day .pill, .section--mist .pill {
  background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.16);
  color: #e8f2fb; box-shadow: none;
}
/* photo-backed service cards: hover lifts the veil slightly */
.card--photo { transition: transform var(--dur-2) var(--ease-soft), box-shadow var(--dur-2), filter var(--dur-2); }
.card--photo:hover { filter: brightness(1.12); }

/* owner pass 11: brandmark scroll-track wrapper + more visible tile photos */
.hero-brandmark-track { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

/* owner pass 12: studio photo marquee + expandable $349 panel */
.photo-marquee {
  overflow: hidden; margin-top: 2.4rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.photo-marquee__track {
  display: flex; gap: 1.2rem; width: max-content;
  animation: pm-scroll 70s linear infinite;
}
.photo-marquee:hover .photo-marquee__track { animation-play-state: paused; }
.pm-card {
  flex: 0 0 auto; width: clamp(250px, 26vw, 390px); aspect-ratio: 4 / 3;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 44px rgba(4, 11, 22, 0.45);
}
.pm-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-soft);
}
.pm-card:hover img { transform: scale(1.07); }
@keyframes pm-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .photo-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .photo-marquee__track { animation: none; }
}

.dc-more { margin-top: 1.2rem; }
.dc-more summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.5rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.24); color: #e8f2fb;
  font-family: var(--font-display); font-weight: 650; font-size: 0.98rem;
  transition: border-color var(--dur-2), background-color var(--dur-2);
}
.dc-more summary::-webkit-details-marker { display: none; }
.dc-more summary::after { content: "+"; font-weight: 800; font-size: 1.15rem; color: var(--aqua-300); }
.dc-more[open] summary::after { content: "\2212"; }
.dc-more summary:hover, .dc-more[open] summary {
  border-color: rgba(53, 199, 240, 0.5); background: rgba(53, 199, 240, 0.08);
}
.dc-more__steps { margin: 1.3rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.7rem; }

/* owner pass 15: hero dealer pitch, review marquee, route board */
.hero-dealer { margin-top: 1.3rem; position: relative; }
.js-motion .hero-dealer { opacity: 0; }
html:not(.js-motion) .hero-dealer { opacity: 1; }
.hero-dealer__line {
  margin: 0 0 0.55rem; font-family: var(--font-display); font-weight: 750;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--gold-300);
  text-shadow: 0 2px 14px rgba(4, 11, 22, 0.6), 0 0 26px rgba(255, 196, 107, 0.25);
}
.dealer-brands { position: relative; display: inline-block; }
.dealer-brands summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.1rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.28); color: #e8f2fb;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  background: rgba(4, 11, 22, 0.35);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: border-color var(--dur-2), background-color var(--dur-2);
}
.dealer-brands summary::-webkit-details-marker { display: none; }
.dealer-brands summary::after { content: "+"; color: var(--aqua-300); font-weight: 800; }
.dealer-brands[open] summary::after { content: "\2212"; }
.dealer-brands summary:hover, .dealer-brands[open] summary { border-color: rgba(53, 199, 240, 0.55); }
.dealer-brands__panel {
  position: absolute; bottom: calc(100% + 0.7rem); left: 0; z-index: 5;
  width: min(560px, 78vw); padding: 1.1rem 1.2rem;
  background: rgba(7, 18, 34, 0.92); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg); box-shadow: 0 24px 60px rgba(4, 11, 22, 0.6);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.dealer-brands__note { margin: 0.9rem 0 0; color: var(--ink-on-dark-dim); font-size: 0.88rem; }

/* reviews: dual-row marquee wall */
#reviews {
  background:
    radial-gradient(60% 45% at 70% 8%, rgba(255, 196, 107, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(11, 30, 56, 0.92) 0%, rgba(13, 37, 66, 0.95) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
}
.review-marquee {
  overflow: hidden; margin-top: 1.6rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.review-track { display: flex; gap: 1.1rem; width: max-content; animation: rm-scroll 55s linear infinite; }
.review-marquee--reverse .review-track { animation-direction: reverse; animation-duration: 63s; }
.review-marquee:hover .review-track { animation-play-state: paused; }
.rm-card { flex: 0 0 auto; width: min(360px, 78vw); }
.rm-card .review-stars { color: var(--gold-400); letter-spacing: 0.18em; text-shadow: 0 0 14px rgba(255, 196, 107, 0.45); }
.rm-card blockquote { margin: 0.5rem 0 0; color: var(--ink-on-dark-dim); font-size: 0.94rem; }
@keyframes rm-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .review-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .review-track { animation: none; }
}

/* service-area route board */
.route-board {
  border-radius: var(--r-xl); border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(70% 60% at 50% 100%, rgba(53, 199, 240, 0.08), transparent 70%),
    rgba(7, 18, 34, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(4, 11, 22, 0.4);
  padding: clamp(0.6rem, 2vw, 1.6rem);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.route-board svg { width: 100%; height: auto; display: block; }
.route-path {
  fill: none; stroke: url(#rt); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 7 11; opacity: 0.75;
}
@media (prefers-reduced-motion: no-preference) {
  .route-path { animation: route-flow 2.6s linear infinite; }
  .route-city circle { animation: city-pulse 3.2s ease-in-out infinite; }
  .route-hub__glow { animation: hub-breathe 4s ease-in-out infinite; }
}
@keyframes route-flow { to { stroke-dashoffset: -36; } }
.route-city circle { fill: #7fe0f7; stroke: rgba(127, 224, 247, 0.35); stroke-width: 6; }
@keyframes city-pulse { 0%, 100% { stroke-width: 4; } 50% { stroke-width: 9; } }
.route-hub circle { fill: var(--gold-400); }
.route-hub__glow { fill: rgba(255, 196, 107, 0.16); }
@keyframes hub-breathe { 0%, 100% { r: 18; } 50% { r: 26; } }
.route-label {
  fill: #e8f2fb; font-family: var(--font-display); font-size: 14px; font-weight: 650;
  paint-order: stroke; stroke: rgba(4, 11, 22, 0.8); stroke-width: 3px;
}
.route-label--hub { fill: var(--gold-300); font-size: 13px; letter-spacing: 0.14em; }

/* owner pass 16: brandmark dealer pitch, glass map frame, photo chips, product polish */
.hero-brandmark .hero-dealer { margin-top: 1.4rem; text-align: center; pointer-events: auto; }
.hero-brandmark .hero-dealer__line { font-size: clamp(1.1rem, 1.7vw, 1.5rem); }
.hero-brandmark .dealer-brands__panel {
  bottom: auto; top: calc(100% + 0.7rem); left: 50%; transform: translateX(-50%);
}
@media (max-width: 900px) {
  .hero-brandmark .hero-dealer { display: none; }
}

.map-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16); aspect-ratio: 16 / 8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(4, 11, 22, 0.45);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(0.9) contrast(1.04); }
.map-frame__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 18, 34, 0.35), transparent 22%, transparent 72%, rgba(7, 18, 34, 0.55));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 90px rgba(7, 18, 34, 0.5);
}
.map-frame__badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1rem; border-radius: var(--r-pill);
  background: rgba(7, 18, 34, 0.85); border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8f2fb; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.map-frame__badge svg { color: var(--gold-400); }
@media (max-width: 700px) { .map-frame { aspect-ratio: 4 / 3; } }

.city-chip--photo {
  min-height: 104px; align-items: flex-end; justify-content: flex-start;
  padding: 0.8rem 1rem; font-weight: 700; color: #fff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  text-shadow: 0 2px 10px rgba(4, 11, 22, 0.8);
  border-radius: var(--r-md);
  transition: transform var(--dur-2) var(--ease-spring), filter var(--dur-2), border-color var(--dur-2);
}
.city-chip--photo:hover { transform: translateY(-4px); filter: brightness(1.15); border-color: rgba(53, 199, 240, 0.6) !important; }
#service-area .city-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.9rem; }
@media (max-width: 900px) { #service-area .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* google badge on each review card */
.rm-card { position: relative; }
.rm-card::after {
  content: ""; position: absolute; top: 1.1rem; right: 1.1rem; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.6 20.1H42V20H24v8h11.3C33.7 32.7 29.2 36 24 36c-6.6 0-12-5.4-12-12s5.4-12 12-12c3.1 0 5.9 1.2 8 3l5.7-5.7C34.3 6.1 29.4 4 24 4 13 4 4 13 4 24s9 20 20 20 20-9 20-20c0-1.3-.1-2.6-.4-3.9z'/%3E%3Cpath fill='%23FF3D00' d='M6.3 14.7l6.6 4.8C14.7 15.1 19 12 24 12c3.1 0 5.9 1.2 8 3l5.7-5.7C34.3 6.1 29.4 4 24 4 16.3 4 9.7 8.3 6.3 14.7z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.2 0 9.9-2 13.4-5.2l-6.2-5.2C29.2 35.1 26.7 36 24 36c-5.2 0-9.6-3.3-11.3-8l-6.5 5C9.5 39.6 16.2 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.6 20.1H42V20H24v8h11.3c-.8 2.2-2.2 4.2-4.1 5.6l6.2 5.2C36.9 39.2 44 34 44 24c0-1.3-.1-2.6-.4-3.9z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* products: clean professional wells */
#products-home {
  background:
    radial-gradient(50% 40% at 22% 10%, rgba(53, 199, 240, 0.08), transparent 70%),
    linear-gradient(180deg, #0b1e38 0%, #0d2542 100%);
}
#products-home .product-card__media {
  aspect-ratio: 1; display: grid; place-items: center; padding: 16%;
  background: #fff; border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px rgba(4, 11, 22, 0.06);
}
#products-home .product-card__media img { width: 100%; height: 100%; object-fit: contain; }
#products-home .product-card { display: flex; flex-direction: column; gap: 0.9rem; }
#products-home .product-card__tag { color: var(--aqua-300); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }

/* the closing band glows */
.cta-band { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 90px rgba(255, 196, 107, 0.14), var(--shadow-3); }

/* live google review cards */
.rm-card__meta { margin: 0.7rem 0 0; color: var(--ink-500); font-size: 0.85rem; }
.rm-card--live blockquote { font-style: italic; }

/* ========== owner pass 17: chemical picker + FAQ flare + sunrise finale ========== */
.chem-add {
  align-self: flex-start; margin-top: 0.2rem;
  padding: 0.5rem 1rem; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid rgba(53, 199, 240, 0.45); background: rgba(53, 199, 240, 0.08);
  color: var(--aqua-300); font-family: var(--font-display); font-weight: 650; font-size: 0.85rem;
  transition: background-color var(--dur-2), border-color var(--dur-2), color var(--dur-2), transform var(--dur-1);
}
.chem-add:hover { background: rgba(53, 199, 240, 0.16); transform: translateY(-1px); }
.chem-add[aria-pressed="true"] {
  background: var(--accent-grad); border-color: transparent; color: #04121f;
}
.chem-tray {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding: 0.9rem 1.2rem; border-radius: var(--r-lg);
  background: rgba(7, 18, 34, 0.85); border: 1px solid rgba(53, 199, 240, 0.35);
  box-shadow: 0 0 40px rgba(53, 199, 240, 0.12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.chem-tray__label { font-family: var(--font-display); font-weight: 700; color: var(--aqua-300); font-size: 0.9rem; }
.chem-tray__items { color: var(--ink-on-dark); font-size: 0.92rem; flex: 1; min-width: 200px; }
.chem-tray__actions { display: inline-flex; gap: 0.6rem; flex-wrap: wrap; }
.chem-panel {
  margin-bottom: 1.6rem; padding: 1.1rem 1.3rem; border-radius: var(--r-lg);
  background: rgba(53, 199, 240, 0.07); border: 1px solid rgba(53, 199, 240, 0.35);
}
.chem-panel__title { margin: 0 0 0.5rem; font-family: var(--font-display); font-weight: 700; color: var(--aqua-300); }
.chem-panel__items { margin: 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chem-panel__hint { margin: 0.7rem 0 0; color: var(--ink-on-dark-dim); font-size: 0.88rem; }

/* FAQ: numbered gold questions, two-column rhythm on wide screens */
.faq { counter-reset: faq; }
.faq details summary { counter-increment: faq; }
.faq details summary::before {
  content: counter(faq, decimal-leading-zero);
  margin-right: 0.8rem; font-family: var(--font-display); font-weight: 800;
  color: var(--gold-400); font-size: 0.9em; letter-spacing: 0.05em;
}
.faq details { transition: border-color var(--dur-2), box-shadow var(--dur-2); }
.faq details:hover { border-color: rgba(255, 196, 107, 0.4); }
.faq details[open] { box-shadow: 0 0 40px rgba(255, 196, 107, 0.08); }

/* the finale: the sunrise comes back to close the story */
.cta-band {
  background:
    linear-gradient(180deg, rgba(6, 15, 29, 0.78) 0%, rgba(6, 15, 29, 0.62) 50%, rgba(6, 15, 29, 0.82) 100%),
    url('/assets/img/hero/hero-sunrise-acrylic-1280.jpg') center 62% / cover no-repeat;
  border: 1px solid rgba(255, 196, 107, 0.25);
}
.cta-band h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); text-shadow: 0 2px 20px rgba(4, 11, 22, 0.7); }
.cta-band .lead { text-shadow: 0 1px 12px rgba(4, 11, 22, 0.7); }
@media (prefers-reduced-motion: no-preference) {
  .cta-band .btn--sunrise { animation: cta-breathe 3.2s ease-in-out infinite; }
}
@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 8px 30px rgba(233, 127, 60, 0.35); }
  50% { box-shadow: 0 8px 46px rgba(255, 196, 107, 0.6); }
}

/* ========== owner pass 18: hover-reveal veils + dressed page heroes ========== */
/* veil lives on a fadeable layer between the photo and the text */
.card--photo, .city-chip--photo { position: relative; overflow: hidden; }
.card--photo::before, .city-chip--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  transition: opacity 0.55s var(--ease-soft);
}
.card--photo::before { background: linear-gradient(180deg, rgba(9, 24, 45, 0.60), rgba(9, 24, 45, 0.78)); }
.city-chip--photo::before { background: linear-gradient(180deg, rgba(7, 18, 34, 0.30), rgba(7, 18, 34, 0.82)); }
/* hover: the photo steps forward, the veil and copy step back */
.card--photo:hover::before { opacity: 0.10; }
.card--photo > * { transition: opacity 0.5s var(--ease-soft); }
.card--photo:hover > *:not(.text-link):not(.chem-add):not(h3) { opacity: 0.32; }
.card--photo:hover > h3 { opacity: 0.78; }
.card--photo:hover > .text-link, .card--photo:hover > .chem-add { opacity: 1; }
.city-chip--photo:hover::before { opacity: 0.06; }
@media (prefers-reduced-motion: reduce) {
  .card--photo:hover::before, .city-chip--photo:hover::before { opacity: 1; }
  .card--photo:hover > * { opacity: 1; }
}

/* every interior page opens on the ridgeline, not a blank slab */
.page-hero {
  background:
    linear-gradient(180deg, rgba(5, 13, 26, 0.86) 0%, rgba(7, 19, 37, 0.78) 55%, #0a1c33 100%),
    url('/assets/img/ambient/ridgeline-2200.jpg') center 30% / cover no-repeat;
}
.page-hero h1, .page-hero .lead { text-shadow: 0 2px 18px rgba(4, 11, 22, 0.7); }

/* owner pass 19: fixes + polish */
/* outline buttons were wearing unflipped dark ink — invisible on dark */
.btn--outline { color: #e8f2fb; border-color: rgba(255, 255, 255, 0.4); }
.btn--outline:hover { border-color: var(--aqua-300); color: var(--aqua-300); background: rgba(53, 199, 240, 0.08); }

/* footer watermark: bigger, lifted, no overlap with footer content */
.footer-watermark {
  font-size: clamp(2.8rem, 11.5vw, 10rem);
  margin: 0 0 clamp(1.2rem, 3vw, 2.4rem);
  opacity: 0.26;
}

/* clarifier card placeholder well icon */
.product-well-icon { width: 46%; height: 46%; color: #0c8ce9; }

/* owner pass 20: card text pops; header scenes breathe */
.card--photo h3 { color: #ffffff; text-shadow: 0 2px 10px rgba(4, 11, 22, 0.85); }
.card--photo p { color: #e6f1fb; text-shadow: 0 1px 8px rgba(4, 11, 22, 0.8); }
.card--photo .card__price { color: #5fdcff; font-weight: 800; text-shadow: 0 2px 12px rgba(4, 11, 22, 0.9); }
.card--photo .card__price small { color: #cfe3f4; }
.card--photo .card__note { color: #ffd9a0; text-shadow: 0 1px 8px rgba(4, 11, 22, 0.85); }
.card--photo .text-link { color: #7fe0f7; text-shadow: 0 1px 8px rgba(4, 11, 22, 0.8); }

/* default page-hero (hub/404): same lighter veil as the inline ones */
.page-hero {
  background:
    linear-gradient(180deg, rgba(5, 13, 26, 0.60) 0%, rgba(7, 19, 37, 0.52) 55%, #0a1c33 100%),
    url('/assets/img/ambient/ridgeline-2200.jpg') center 30% / cover no-repeat;
}

/* body sections: a touch more image through the veil */
.section--day {
  background:
    linear-gradient(180deg, rgba(11, 30, 56, 0.85) 0%, rgba(13, 37, 66, 0.89) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
}
.section--dawn {
  background:
    linear-gradient(160deg, rgba(6, 17, 33, 0.88) 0%, rgba(14, 36, 68, 0.85) 100%),
    url('/assets/img/ambient/caustics-1920.jpg') center / cover no-repeat;
}
.section--mist {
  background:
    linear-gradient(180deg, rgba(7, 19, 37, 0.48) 0%, rgba(10, 28, 51, 0.84) 60%, rgba(10, 28, 51, 0.96) 100%),
    url('/assets/img/ambient/ridgeline-2200.jpg') center 30% / cover no-repeat;
}
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .section--day, .section--dawn { background-attachment: scroll, fixed; }
}

/* owner pass 21: airier headers everywhere */
.page-hero {
  background:
    linear-gradient(180deg, rgba(5, 13, 26, 0.45) 0%, rgba(7, 19, 37, 0.36) 55%, #0a1c33 100%),
    url('/assets/img/ambient/ridgeline-2200.jpg') center 30% / cover no-repeat;
}

/* owner pass 22: the signature mark on every interior page header */
.page-hero { position: relative; }
.mini-brand {
  position: absolute; right: clamp(1.5rem, 6vw, 6rem); top: calc(var(--header-h) + 1.6rem);
  text-align: center; pointer-events: none; z-index: 2;
}
.js-motion .mini-brand { opacity: 0; }
.mini-brand__word {
  margin: 0; display: flex; gap: clamp(0.5rem, 1vw, 0.85rem);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem); line-height: 1; letter-spacing: 0.05em;
}
.mini-brand__glow {
  position: absolute; inset: -120% -45%; z-index: -1;
  background: radial-gradient(ellipse at 50% 58%, rgba(255, 196, 107, 0.28), rgba(255, 196, 107, 0.07) 45%, transparent 70%);
  filter: blur(4px);
}
@media (prefers-reduced-motion: no-preference) {
  .mini-brand__glow { animation: glow-breathe 6.5s ease-in-out 1.4s infinite; }
}

/* owner pass 23: per-scene signature placement, bigger letters, scene-tinted glows */
.mini-brand__word { font-size: clamp(1.35rem, 2.3vw, 2.15rem); gap: clamp(0.6rem, 1.2vw, 1rem); }

/* Rainier pages: beside the summit light, upper right */
.mini-brand--rainier { top: calc(var(--header-h) + 1.3rem); right: 7%; }
.mini-brand--rainier .mini-brand__glow {
  background: radial-gradient(ellipse at 50% 58%, rgba(255, 176, 156, 0.32), rgba(255, 176, 156, 0.08) 45%, transparent 70%);
}

/* Sound city pages: settled low over the dark water */
.mini-brand--sound { top: auto; bottom: 1.4rem; right: 6%; }
.mini-brand--sound .mini-brand__glow {
  background: radial-gradient(ellipse at 50% 58%, rgba(255, 196, 107, 0.30), rgba(255, 196, 107, 0.08) 45%, transparent 70%);
}

/* Starry-lake pages: rising off the water, center frame, starlight glow */
.mini-brand--night { top: 52%; left: 50%; right: auto; translate: -50% 0; }
.mini-brand--night .mini-brand__glow {
  background: radial-gradient(ellipse at 50% 58%, rgba(127, 224, 247, 0.30), rgba(127, 224, 247, 0.08) 45%, transparent 70%);
}
.mini-brand--night .mini-brand__word { font-size: clamp(1.5rem, 2.7vw, 2.5rem); }

/* Cedar pages: up in the misty light */
.mini-brand--cedars { top: calc(var(--header-h) + 1.6rem); right: 8%; }
.mini-brand--cedars .mini-brand__glow {
  background: radial-gradient(ellipse at 50% 58%, rgba(205, 232, 255, 0.26), rgba(205, 232, 255, 0.07) 45%, transparent 70%);
}

/* owner pass 24: the mark is a toy — grab, snake, spin the colors, park it */
.mini-brand .bl { user-select: none; }
.brand-playing { cursor: grabbing !important; }
.brand-playing .mini-brand .bl, .mini-brand:hover .bl {
  animation: hue-play 2.2s linear infinite;
}
@keyframes hue-play {
  from { filter: drop-shadow(0 3px 10px rgba(4, 11, 22, 0.6)) hue-rotate(0deg) brightness(1.15); }
  to { filter: drop-shadow(0 3px 10px rgba(4, 11, 22, 0.6)) hue-rotate(360deg) brightness(1.15); }
}

/* freed letters live at the document root while being played with */
.brand-free { position: fixed; inset: auto; margin: 0; z-index: 200; pointer-events: none; }
.brand-free .bl { pointer-events: auto; }
.brand-playing .brand-free .bl { animation: hue-play 2.2s linear infinite !important; }

/* owner pass 25: annotated placements — each mark sits where the owner circled */
.mini-brand__word { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }

/* services hub: centered beneath the intro copy, floating in the open ridge air */
.mini-brand--hub { top: 92.7%; bottom: auto; left: 47.1%; right: auto; }

/* gallery: up in the starry sky, right of the headline */
.mini-brand--gallery { top: 41.6%; left: 76.8%; right: auto; }
.mini-brand--gallery .mini-brand__word { font-size: clamp(1.7rem, 2.9vw, 2.7rem); }
.mini-brand--gallery .mini-brand__glow {
  background: radial-gradient(ellipse at 50% 58%, rgba(127, 224, 247, 0.30), rgba(127, 224, 247, 0.08) 45%, transparent 70%);
}

/* products: low over the lake, right of center */
.mini-brand--products { top: 90.1%; bottom: auto; left: 24.7%; right: auto; }
.mini-brand--products .mini-brand__word { font-size: clamp(1.7rem, 2.8vw, 2.6rem); }
.mini-brand--products .mini-brand__glow {
  background: radial-gradient(ellipse at 50% 58%, rgba(127, 224, 247, 0.30), rgba(127, 224, 247, 0.08) 45%, transparent 70%);
}

/* contact: under the headline, drifting on the lake mist, left of center */
.mini-brand--contact { top: 63.5%; bottom: auto; left: 42%; right: auto; }
.mini-brand--contact .mini-brand__glow {
  background: radial-gradient(ellipse at 50% 58%, rgba(127, 224, 247, 0.30), rgba(127, 224, 247, 0.08) 45%, transparent 70%);
}

/* sound cities: low over the dark water, LEFT side per annotation */
.mini-brand--sound { top: 96.1%; bottom: auto; left: 29.8%; right: auto; }

/* cedars: right side, nestled between the trunks (lower than before) */
.mini-brand--cedars { top: 43.3%; left: 77.9%; right: auto; }
.mini-brand--cedars .mini-brand__word { font-size: clamp(1.65rem, 2.7vw, 2.5rem); }

/* the whisper */
.mini-brand__hint {
  position: absolute; left: 50%; top: calc(100% + 0.5rem); transform: translateX(-50%);
  padding: 0.25rem 0.7rem; border-radius: var(--r-pill); white-space: nowrap;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 650; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--aqua-300);
  background: rgba(7, 18, 34, 0.75); border: 1px solid rgba(53, 199, 240, 0.35);
  opacity: 0; pointer-events: none;
}

/* owner pass 26: contact page brought to life */
.contact-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: clamp(250px, 28vw, 330px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; text-decoration: none;
  background: #0a1c33; border: 1px solid rgba(53, 199, 240, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.contact-card__bg {
  position: absolute; inset: 0; z-index: 0;
  background-position: center; background-size: cover;
  opacity: 0.55; transition: opacity 0.45s ease, transform 0.8s ease;
}
.contact-card::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(5, 13, 26, 0.05) 18%, rgba(5, 13, 26, 0.90) 80%);
}
.contact-card > *:not(.contact-card__bg):not(.contact-card__flag) { position: relative; z-index: 1; }
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 199, 240, 0.6);
  box-shadow: 0 20px 50px rgba(2, 8, 18, 0.55), 0 0 34px rgba(53, 199, 240, 0.16);
}
.contact-card:hover .contact-card__bg { opacity: 0.75; transform: scale(1.06); }
.contact-card__chip {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  margin-bottom: 0.9rem; box-shadow: 0 8px 24px rgba(2, 8, 18, 0.45);
}
.contact-card__chip--call { background: linear-gradient(135deg, #35c7f0, #0a75c9); }
.contact-card__chip--text { background: linear-gradient(135deg, #ffb457, #ff7a3d); }
.contact-card__chip--mail { background: linear-gradient(135deg, #57e0c4, #0a9c86); }
.contact-card h3 { margin: 0 0 0.3rem; font-size: 1.35rem; color: #fff; }
.contact-card p { margin: 0 0 0.4rem; color: rgba(226, 240, 252, 0.82); font-size: 0.95rem; }
.contact-card__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; color: var(--aqua-300) !important; margin: 0 !important;
}
.contact-card__flag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.3rem 0.75rem; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #1a0c02;
  background: linear-gradient(135deg, #ffd98a, #ff9a4d);
  box-shadow: 0 6px 18px rgba(255, 154, 77, 0.35);
}
.trust-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin: 1.5rem 0 0; }
.trust-chip {
  padding: 0.4rem 0.9rem; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 650;
  color: var(--aqua-300); background: rgba(10, 34, 60, 0.72);
  border: 1px solid rgba(53, 199, 240, 0.32);
}
.arrival-clip { margin-top: 1.6rem; }
.arrival-clip .feature-water-video {
  border-radius: var(--r-lg); width: 100%;
  border: 1px solid rgba(53, 199, 240, 0.28);
  box-shadow: 0 18px 44px rgba(2, 8, 18, 0.5);
}
.arrival-clip__caption { margin: 0.7rem 0 0; font-size: 0.9rem; color: rgba(226, 240, 252, 0.7); }
.form-glow {
  border: 1px solid rgba(53, 199, 240, 0.4) !important;
  box-shadow: 0 0 0 1px rgba(53, 199, 240, 0.08), 0 24px 60px rgba(2, 8, 18, 0.5), 0 0 44px rgba(53, 199, 240, 0.14) !important;
}

/* owner pass 27: services dropdown in the primary nav */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-links .nav-caret { transition: transform 0.25s ease; flex: none; }
.nav-links .has-sub:hover > a .nav-caret,
.nav-links .has-sub:focus-within > a .nav-caret { transform: rotate(180deg); }
.nav-links .has-sub::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.nav-sub {
  position: absolute; top: calc(100% + 10px); left: -0.6rem; min-width: 252px;
  list-style: none; margin: 0; padding: 0.55rem; z-index: 80;
  background: rgba(7, 18, 34, 0.97);
  border: 1px solid rgba(53, 199, 240, 0.30); border-radius: var(--r-md);
  box-shadow: 0 20px 48px rgba(2, 8, 18, 0.6), 0 0 30px rgba(53, 199, 240, 0.08);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-links .has-sub:hover .nav-sub,
.nav-links .has-sub:focus-within .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sub li { margin: 0; }
.nav-sub a {
  display: block; padding: 0.55rem 0.85rem; border-radius: var(--r-sm);
  font-size: 0.92rem; font-weight: 600; color: #e2f0fc; white-space: nowrap;
}
.nav-sub a:hover { background: rgba(53, 199, 240, 0.14); color: var(--aqua-300); }
.nav-sub__all a {
  margin-top: 0.3rem; padding-top: 0.7rem; color: var(--aqua-300);
  border-top: 1px solid rgba(53, 199, 240, 0.2); border-radius: 0 0 var(--r-sm) var(--r-sm);
}
@media (prefers-reduced-motion: reduce) { .nav-sub, .nav-links .nav-caret { transition: none; } }

/* owner pass 28: city dropdown flows in two columns; the map link spans both */
.nav-sub--cities { min-width: 340px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 0.2rem; }
.nav-sub--cities .nav-sub__all { grid-column: 1 / -1; }

/* owner pass 29: city fact flip-cards + local links */
.fact-flip {
  display: block; width: 100%; min-height: 230px; padding: 0; border: 0;
  background: none; cursor: pointer; perspective: 1100px; text-align: left;
  font: inherit; color: inherit;
}
.fact-flip__inner {
  position: relative; display: block; width: 100%; height: 100%; min-height: 230px;
  transform-style: preserve-3d; transition: transform 0.65s cubic-bezier(0.4, 0.9, 0.3, 1);
}
.fact-flip:hover .fact-flip__inner,
.fact-flip:focus-visible .fact-flip__inner,
.fact-flip.is-flipped .fact-flip__inner { transform: rotateY(180deg); }
.fact-flip__front, .fact-flip__back {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 1.5rem; border-radius: var(--r-lg); backface-visibility: hidden; -webkit-backface-visibility: hidden;
}
.fact-flip__front {
  background: rgba(9, 26, 47, 0.88); border: 1px solid rgba(53, 199, 240, 0.28);
  box-shadow: 0 14px 36px rgba(2, 8, 18, 0.45);
}
.fact-flip__kicker {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sun-400, #f6b866);
  margin-bottom: 0.5rem;
}
.fact-flip__stat {
  font-family: var(--font-display); font-weight: 800; line-height: 1.1;
  font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--aqua-300);
}
.fact-flip__hint {
  margin-top: auto; padding-top: 0.9rem; font-size: 0.78rem; font-weight: 650;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(226, 240, 252, 0.45);
}
.fact-flip__back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, rgba(18, 58, 99, 0.96), rgba(9, 26, 47, 0.96));
  border: 1px solid rgba(53, 199, 240, 0.5);
  box-shadow: 0 14px 36px rgba(2, 8, 18, 0.45), 0 0 30px rgba(53, 199, 240, 0.12);
  color: #e2f0fc; font-size: 0.98rem; line-height: 1.55;
}
@media (prefers-reduced-motion: reduce) {
  .fact-flip__inner { transition: none; }
}
.hood-block { margin-top: 2.2rem; }
.local-links { margin: 1.6rem 0 0; display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; align-items: center; font-size: 0.95rem; }
.local-links__label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(226, 240, 252, 0.55);
}
.local-links a { color: var(--aqua-300); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(53, 199, 240, 0.35); }
.local-links a:hover { border-bottom-color: var(--aqua-300); }

/* owner pass 30: two-phase hero video — B sits hidden above A, fades in for the handoff */
.hero__media .hero-vid--b { opacity: 0; transition: opacity 0.9s var(--ease-soft); }
.hero__media.video-ready .hero-vid--b { opacity: 0; }
.hero__media .hero-vid--b.is-live { opacity: 1; }

/* owner pass 31: transformation film sections — bright living water */
.film-section { position: relative; overflow: hidden; }
.film-section::before {
  content: ''; position: absolute; inset: -6%; z-index: 0;
  background: url('/assets/img/ambient/brightwater-1920.jpg') center / cover no-repeat;
  animation: film-drift 20s ease-in-out infinite alternate;
}
.film-section::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.15) 50%, transparent 58%),
    linear-gradient(180deg, rgba(5, 26, 42, 0.52), rgba(6, 34, 54, 0.58));
  background-size: 300% 100%, auto;
  animation: film-sheen 9s linear infinite;
}
.film-section > .container { position: relative; z-index: 1; }
.film-section .lead { color: #f2f9ff; text-shadow: 0 1px 14px rgba(4, 16, 28, 0.55); }
.film-section h2 { text-shadow: 0 2px 18px rgba(4, 16, 28, 0.6); }
.film-glow {
  border-radius: var(--r-lg);
  animation: film-glow-pulse 3.8s ease-in-out infinite;
}
@keyframes film-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2.5%, 2%, 0) scale(1.08); }
}
@keyframes film-sheen {
  from { background-position: 250% 0, 0 0; }
  to { background-position: -150% 0, 0 0; }
}
@keyframes film-glow-pulse {
  0%, 100% { box-shadow: 0 18px 44px rgba(2, 8, 18, 0.45), 0 0 34px rgba(53, 199, 240, 0.4); }
  50% { box-shadow: 0 18px 44px rgba(2, 8, 18, 0.45), 0 0 56px rgba(246, 184, 102, 0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .film-section::before, .film-section::after, .film-glow { animation: none; }
}

/* owner pass 32: Strong Spas dealer presentation */
.ss-logo-chip {
  display: inline-block; padding: 0.9rem 1.6rem; margin-bottom: 1.3rem;
  background: #f5f8fb; border-radius: var(--r-md);
  box-shadow: 0 14px 40px rgba(2, 8, 18, 0.5), 0 0 0 1px rgba(53, 199, 240, 0.25);
}
.ss-logo-chip img { display: block; width: min(300px, 60vw); height: auto; }
.series-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-5); }
@media (max-width: 1100px) { .series-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .series-grid { grid-template-columns: 1fr; } }
.series-tile {
  display: flex; flex-direction: column; gap: 0.45rem;
  padding: 1.4rem 1.3rem; border-radius: var(--r-lg); text-decoration: none;
  background: rgba(9, 26, 47, 0.85); border: 1px solid rgba(53, 199, 240, 0.26);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.series-tile:hover {
  transform: translateY(-5px); border-color: rgba(53, 199, 240, 0.6);
  box-shadow: 0 16px 40px rgba(2, 8, 18, 0.5), 0 0 26px rgba(53, 199, 240, 0.15);
}
.series-tile__tier {
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 750;
  letter-spacing: 0.2em; text-transform: uppercase; color: #f6b866;
}
.series-tile h3 { margin: 0; font-size: 1.12rem; color: #fff; }
.series-tile p { margin: 0; font-family: var(--font-body); font-size: 0.88rem; line-height: 1.5; color: rgba(226, 240, 252, 0.75); flex: 1; }
.series-tile__cta {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--aqua-300); letter-spacing: 0.06em;
}
.series-tile:hover .series-tile__cta { text-decoration: underline; }
.dealer-strip {
  position: relative; z-index: 2;
  background: linear-gradient(100deg, #f5f8fb 0%, #e8f4fb 60%, #dbeefa 100%);
  border-block: 1px solid rgba(10, 117, 201, 0.25);
}
.dealer-strip .container {
  display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.4rem);
  padding-block: 1.1rem; flex-wrap: wrap;
}
.dealer-strip__logo img { display: block; width: min(230px, 44vw); height: auto; }
.dealer-strip__new {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, #ff9a4d, #ff7a3d); border-radius: var(--r-pill);
  padding: 0.3rem 0.75rem;
}
.dealer-strip__copy { flex: 1; min-width: 260px; font-family: var(--font-display); font-weight: 650; color: #0b2342; font-size: 1.02rem; }
.dealer-strip__copy small { display: block; font-weight: 550; color: #3d5a77; font-size: 0.85rem; margin-top: 0.15rem; }

/* owner pass 33: Strong Spas luxury collection cards */
.collection-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-5); }
@media (max-width: 1100px) { .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .collection-grid { grid-template-columns: 1fr; } }
.model-card {
  display: flex; flex-direction: column; text-decoration: none; overflow: hidden;
  border-radius: var(--r-lg); background: rgba(9, 26, 47, 0.92);
  border: 1px solid rgba(53, 199, 240, 0.24);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.model-card:hover {
  transform: translateY(-6px); border-color: rgba(246, 184, 102, 0.55);
  box-shadow: 0 22px 52px rgba(2, 8, 18, 0.55), 0 0 34px rgba(246, 184, 102, 0.14);
}
.model-card__media {
  display: block; aspect-ratio: 4 / 3; overflow: hidden;
  background: linear-gradient(180deg, #f5f8fb, #dde9f2);
}
.model-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.model-card:hover .model-card__media img { transform: scale(1.06); }
.model-card__body { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.1rem 1.2rem 1.25rem; flex: 1; }
.model-card__tier {
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 750;
  letter-spacing: 0.2em; text-transform: uppercase; color: #f6b866;
}
.model-card h3 { margin: 0; font-size: 1.1rem; color: #fff; }
.model-card__body p { margin: 0; font-family: var(--font-body); font-size: 0.86rem; line-height: 1.5; color: rgba(226, 240, 252, 0.72); flex: 1; }
.model-card__specs { font-family: var(--font-display); font-size: 0.82rem; color: #cfe6f7; }
.model-card__specs strong { color: var(--aqua-300); font-weight: 750; }
.model-card__cta {
  margin-top: 0.35rem; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--aqua-300); letter-spacing: 0.05em;
}
.model-card:hover .model-card__cta { color: #f6b866; }
.collection-note {
  margin: 1.8rem 0 0; font-family: var(--font-body); font-size: 0.88rem;
  color: rgba(226, 240, 252, 0.6); max-width: 70ch;
}
/* homepage dealer strip: real Strong Spa glinting through the white band */
.dealer-strip {
  background:
    linear-gradient(100deg, rgba(245, 248, 251, 0.94) 0%, rgba(232, 244, 251, 0.90) 55%, rgba(214, 236, 248, 0.86) 100%),
    url('/assets/img/gallery/img20260430131237-1600.jpg') center 58% / cover no-repeat;
}

/* owner pass 34: Strong Spas polish — nav badge, flip tiles, living strip, capitol motion */
.nav-strong { position: relative; }
.nav-strong::after {
  content: 'NEW'; display: inline-block; margin-left: 0.4em; vertical-align: 0.55em;
  font-size: 0.5em; font-weight: 800; letter-spacing: 0.12em;
  color: #1a0c02; background: linear-gradient(135deg, #ffd98a, #ff9a4d);
  padding: 0.14em 0.4em; border-radius: 999px;
}
.why-flip .fact-flip__front.why-flip__front {
  background-size: cover; background-position: center;
  border-color: rgba(53, 199, 240, 0.4);
}
.why-flip .fact-flip__stat { font-size: clamp(1.25rem, 1.8vw, 1.55rem); color: #fff; text-shadow: 0 2px 14px rgba(2, 8, 18, 0.7); }
.why-flip .fact-flip__kicker { text-shadow: 0 1px 8px rgba(2, 8, 18, 0.8); }
.why-flip .fact-flip__hint { color: rgba(226, 240, 252, 0.75); }
.capitol-photo { border-radius: var(--r-lg); overflow: hidden; }
.capitol-photo img { display: block; width: 100%; height: auto; animation: capitol-drift 16s ease-in-out infinite alternate; transform-origin: 50% 60%; }
@keyframes capitol-drift { from { transform: scale(1); } to { transform: scale(1.07); } }
/* the strip comes alive: rippling bright water under the white glass */
.dealer-strip { position: relative; overflow: hidden; background: #eef6fb; }
.dealer-strip::before {
  content: ''; position: absolute; inset: -8%; z-index: 0;
  background: url('/assets/img/ambient/brightwater-1920.jpg') center / cover no-repeat;
  opacity: 0.55; animation: film-drift 16s ease-in-out infinite alternate;
}
.dealer-strip::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%),
    linear-gradient(100deg, rgba(245, 248, 251, 0.88) 0%, rgba(232, 244, 251, 0.78) 55%, rgba(214, 236, 248, 0.68) 100%);
  background-size: 300% 100%, auto;
  animation: film-sheen 8s linear infinite;
}
.dealer-strip .container { position: relative; z-index: 1; }
.dealer-strip { border-block: 2px solid rgba(53, 199, 240, 0.45); box-shadow: inset 0 0 44px rgba(53, 199, 240, 0.12); }
@media (prefers-reduced-motion: reduce) {
  .dealer-strip::before, .dealer-strip::after, .capitol-photo img { animation: none; }
}

/* owner pass 35: film sections adopt the bright white-glass ripple; header stays on one line */
.film-section::before { opacity: 0.55; }
.film-section::after {
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%),
    linear-gradient(100deg, rgba(245, 248, 251, 0.88) 0%, rgba(232, 244, 251, 0.78) 55%, rgba(214, 236, 248, 0.68) 100%);
  background-size: 300% 100%, auto;
}
.film-section h2 { color: #0b2342; text-shadow: none; }
.film-section .lead { color: #2e4d6b; text-shadow: none; }
.film-section .eyebrow, .film-section .eyebrow--gold { color: #a35f0b; }
.film-section .btn--outline { color: #0b2342; border-color: rgba(11, 35, 66, 0.45); }
.film-section .btn--outline:hover { border-color: #0b2342; background: rgba(11, 35, 66, 0.06); color: #0b2342; }

/* header: no two-line nav items, everything centers on the bubble */
.site-header .nav-links { flex-wrap: nowrap; }
.site-header .nav-links a { white-space: nowrap; }
.site-header .nav-phone, .site-header .nav-cta .btn { white-space: nowrap; }
@media (max-width: 1460px) {
  .site-header .nav-links { gap: 1.05rem; }
  .site-header .nav-links a { font-size: 0.95rem; }
}
@media (max-width: 1274px) and (min-width: 901px) {
  .site-header .nav-phone { display: none; }
  .site-header .nav-links { gap: 0.85rem; }
}

/* nav-strong: restore the base hover underline; the NEW badge is real markup now */
.nav-strong::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  margin: 0; padding: 0; background: var(--accent-grad); border-radius: 2px;
  display: block; vertical-align: baseline;
}
.nav-newtag {
  font-size: 0.55em; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a0c02; background: linear-gradient(135deg, #ffd98a, #ff9a4d);
  padding: 0.18em 0.5em; border-radius: 999px; margin-left: 0.35em; vertical-align: 0.6em;
}

/* owner pass 36: Water Care Guide — interactive owner walkthrough */
.wc-pick-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.wc-pill-btn {
  padding: 0.65rem 1.3rem; border-radius: var(--r-pill); cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: #cfe6f7; background: rgba(9, 26, 47, 0.85); border: 1.5px solid rgba(53, 199, 240, 0.3);
  transition: all 0.25s ease;
}
.wc-pill-btn:hover { border-color: rgba(53, 199, 240, 0.6); color: #fff; }
.wc-pill-btn.selected {
  color: #04101e; background: linear-gradient(135deg, #7fe0f7, #35c7f0);
  border-color: transparent; box-shadow: 0 6px 20px rgba(53, 199, 240, 0.35);
}
.film-section .wc-pill-btn { background: rgba(255, 255, 255, 0.75); color: #0b2342; border-color: rgba(10, 117, 201, 0.35); }
.film-section .wc-pill-btn.selected { color: #04101e; background: linear-gradient(135deg, #7fe0f7, #35c7f0); }
.wc-help-line { margin: 1.2rem 0 0; font-family: var(--font-display); font-weight: 650; color: #0b2342; }
.film-section .wc-help-line a { color: #0a75c9; }
.wc-id-card {
  padding: 1.4rem; border-radius: var(--r-lg); text-align: center;
  background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(10, 117, 201, 0.25);
}
.wc-id-card img { width: 120px; height: 120px; object-fit: contain; margin-bottom: 0.8rem; }
.wc-id-card h3 { margin: 0 0 0.4rem; color: #0b2342; font-size: 1.15rem; }
.wc-id-card p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: #2e4d6b; }
.wc-note { display: block; margin: 1rem 0 0; font-size: 0.95rem; color: #9fc0da; max-width: 76ch; }
.wc-hint { margin: 0.6rem 0 0; font-size: 0.85rem; color: #8fb4d4; line-height: 1.5; }
.wc-chem-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); margin-top: 1.8rem; }
@media (max-width: 900px) { .wc-chem-grid { grid-template-columns: 1fr; } }
.wc-chem-card {
  padding: 1.4rem 1.5rem; border-radius: var(--r-lg);
  background: rgba(9, 26, 47, 0.9); border: 1px solid rgba(53, 199, 240, 0.28);
}
.wc-chem-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.wc-chem-head h3 { margin: 0; font-size: 1.15rem; color: #fff; }
.wc-chem-ideal { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: #f6b866; }
.wc-chem-why { margin: 0.5rem 0 1rem; font-size: 0.9rem; color: #9fc0da; }
.wc-range-track { position: relative; height: 8px; border-radius: 4px; background: rgba(53, 199, 240, 0.15); }
.wc-range-ideal { position: absolute; top: 0; bottom: 0; border-radius: 4px; background: linear-gradient(90deg, rgba(87, 224, 196, 0.65), rgba(53, 199, 240, 0.65)); }
.wc-range-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: #7d9cb8; margin-top: 0.3rem; }
.wc-slider { width: 100%; margin-top: 0.7rem; accent-color: #35c7f0; cursor: pointer; }
.wc-readout { display: flex; justify-content: space-between; align-items: center; margin-top: 0.6rem; }
.wc-value { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: #7fe0f7; }
.wc-value small { font-size: 0.85rem; font-weight: 650; color: #7d9cb8; margin-left: 0.3rem; }
.wc-chip {
  padding: 0.3rem 0.8rem; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 750;
}
.wc-chip.ok { color: #57e0c4; background: rgba(87, 224, 196, 0.12); border: 1px solid rgba(87, 224, 196, 0.4); }
.wc-chip.warn { color: #f6b866; background: rgba(246, 184, 102, 0.12); border: 1px solid rgba(246, 184, 102, 0.45); }
.wc-chip.bad { color: #ff8a80; background: rgba(255, 138, 128, 0.12); border: 1px solid rgba(255, 138, 128, 0.45); }
.wc-advice { margin: 0.7rem 0 0; font-size: 0.92rem; line-height: 1.55; color: #cfe0ef; min-height: 3.4em; }
.wc-callout {
  margin-top: 1.8rem; padding: 1.1rem 1.4rem; border-radius: var(--r-md);
  background: rgba(246, 184, 102, 0.1); border: 1px solid rgba(246, 184, 102, 0.4);
  color: #f4e3c5; font-size: 0.95rem; line-height: 1.6;
}
.wc-callout strong { color: #f6b866; }
.wc-panel {
  margin-top: 1.8rem; padding: clamp(1.2rem, 3vw, 2rem); border-radius: var(--r-lg);
  background: rgba(9, 26, 47, 0.88); border: 1px solid rgba(53, 199, 240, 0.3);
  box-shadow: 0 24px 60px rgba(2, 8, 18, 0.45);
}
.wc-calc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (max-width: 900px) { .wc-calc-grid { grid-template-columns: 1fr; } }
.wc-field { margin-top: 1.2rem; }
.wc-field:first-child { margin-top: 0; }
.wc-field > label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #eef4fa; margin-bottom: 0.5rem; }
.wc-field .wc-pick-row { margin-top: 0.2rem; }
.wc-select, .wc-input {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--r-sm);
  font: inherit; color: #eef4fa; background: rgba(6, 17, 32, 0.85);
  border: 1px solid rgba(53, 199, 240, 0.35);
}
.wc-select:focus, .wc-input:focus { outline: 2px solid rgba(53, 199, 240, 0.55); outline-offset: 1px; }
.wc-result {
  padding: 1.4rem; border-radius: var(--r-md);
  background: rgba(6, 17, 32, 0.75); border: 1px solid rgba(87, 224, 196, 0.35);
}
.wc-result h3 { margin: 0 0 0.9rem; color: #57e0c4; font-size: 1.05rem; }
.wc-dose-line {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: 0.55rem 0; border-bottom: 1px dashed rgba(53, 199, 240, 0.2);
  font-size: 0.92rem; color: #cfe0ef;
}
.wc-dose-line strong { color: #7fe0f7; text-align: right; }
.wc-rhythm-panel { display: none; margin-top: 1.4rem; }
.wc-rhythm-panel.visible { display: block; }
.wc-rhythm-intro { color: #b7cde2; margin: 0 0 1rem; }
.wc-check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
@media (max-width: 900px) { .wc-check-list { grid-template-columns: 1fr; } }
.wc-check-item {
  display: flex; gap: 0.8rem; align-items: flex-start; cursor: pointer;
  padding: 0.9rem 1rem; border-radius: var(--r-md);
  background: rgba(9, 26, 47, 0.85); border: 1px solid rgba(53, 199, 240, 0.25);
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.wc-check-item:hover { border-color: rgba(53, 199, 240, 0.55); }
.wc-check-item input { margin-top: 0.25rem; accent-color: #57e0c4; width: 1.05rem; height: 1.05rem; flex: none; }
.wc-check-item span { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: #eef4fa; }
.wc-check-item span em { display: block; font-style: normal; font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: #9fc0da; margin-top: 0.2rem; }
.wc-check-item.done { opacity: 0.55; }
.wc-check-item.done span { text-decoration: line-through; text-decoration-color: rgba(87, 224, 196, 0.7); }
.wc-rhythm-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; }
.wc-drain-result { text-align: center; }
.wc-drain-days { font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; color: #7fe0f7; line-height: 1; }
.wc-drain-label { font-family: var(--font-display); font-weight: 650; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: #8fb4d4; margin-top: 0.3rem; }
.wc-drain-next { margin-top: 0.9rem; font-size: 0.98rem; color: #cfe0ef; }
.wc-drain-next strong { color: #57e0c4; }
.wc-drain-next.due { color: #f6b866; font-weight: 650; }
.wc-strip-photo { display: grid; place-items: center; }
.wc-strip-photo img { max-width: min(380px, 80%); height: auto; filter: drop-shadow(0 24px 44px rgba(2, 8, 18, 0.5)); }
.wc-symptom-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5); }
@media (max-width: 900px) { .wc-symptom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .wc-symptom-grid { grid-template-columns: 1fr; } }
.wc-symptom-btn {
  padding: 1.2rem 1.3rem; border-radius: var(--r-lg); cursor: pointer; text-align: left;
  background: rgba(9, 26, 47, 0.88); border: 1.5px solid rgba(53, 199, 240, 0.26);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.wc-symptom-btn:hover { transform: translateY(-3px); border-color: rgba(53, 199, 240, 0.6); }
.wc-symptom-btn.selected { border-color: #f6b866; box-shadow: 0 0 26px rgba(246, 184, 102, 0.18); }
.wc-symptom-btn .wc-dot { display: inline-block; width: 14px; height: 14px; border-radius: 50%; margin-bottom: 0.6rem; box-shadow: 0 0 12px rgba(255, 255, 255, 0.25); }
.wc-symptom-btn h3 { margin: 0 0 0.25rem; font-size: 1.05rem; color: #fff; }
.wc-symptom-btn p { margin: 0; font-size: 0.85rem; color: #9fc0da; }
.wc-fix-panel { display: none; margin-top: 1.8rem; padding: clamp(1.2rem, 3vw, 2rem); border-radius: var(--r-lg); background: rgba(9, 26, 47, 0.92); border: 1px solid rgba(246, 184, 102, 0.4); }
.wc-fix-panel.visible { display: block; }
.wc-fix-panel h3 { margin: 0 0 0.5rem; color: #fff; font-size: 1.3rem; }
.wc-fix-cause { color: #cfe0ef; margin: 0 0 1.2rem; line-height: 1.6; }
.wc-fix-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
@media (max-width: 900px) { .wc-fix-cols { grid-template-columns: 1fr; } }
.wc-fix-steps h4, .wc-fix-call h4 { margin: 0 0 0.7rem; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: #7fe0f7; }
.wc-fix-call h4 { color: #f6b866; }
.wc-fix-steps ol { margin: 0; padding-left: 1.2rem; color: #cfe0ef; font-size: 0.94rem; line-height: 1.6; }
.wc-fix-steps li { margin-bottom: 0.5rem; }
.wc-fix-call { padding: 1.2rem; border-radius: var(--r-md); background: rgba(246, 184, 102, 0.08); border: 1px solid rgba(246, 184, 102, 0.35); }
.wc-fix-call p { color: #e8dcc4; font-size: 0.94rem; line-height: 1.6; margin: 0 0 1rem; }
@media print {
  header, footer, .site-header, .nav-drawer, .page-hero, .scene-tint, .water-global,
  section:not(#rhythm), .wc-rhythm-foot, .mini-brand { display: none !important; }
  body { background: #fff !important; }
  #rhythm { background: #fff !important; padding: 0 !important; }
  #rhythm .section-head .eyebrow { color: #555 !important; }
  #rhythm h2, #rhythm .lead { color: #111 !important; text-shadow: none !important; }
  .wc-pill-btn { border: 1px solid #999 !important; color: #111 !important; background: #fff !important; }
  .wc-pill-btn.selected { background: #ddd !important; }
  .wc-rhythm-panel { display: block !important; margin-top: 1rem; page-break-inside: avoid; }
  .wc-rhythm-panel::before { content: attr(data-panel); text-transform: capitalize; font-weight: 800; font-size: 1.1rem; color: #111; }
  .wc-check-item { background: #fff !important; border: 1px solid #bbb !important; }
  .wc-check-item span { color: #111 !important; }
  .wc-check-item span em { color: #555 !important; }
  .wc-rhythm-intro { color: #333 !important; }
}

/* owner pass 37: the wider nav must never crush the brand off-screen */
.site-header .brand { flex: none; }
@media (max-width: 1180px) and (min-width: 901px) {
  .site-header .nav-links { gap: 0.7rem; }
  .site-header .nav-links a { font-size: 0.88rem; }
  .site-header .brand img { height: 24px; }
  .site-header .nav-cta .btn { padding-inline: 0.9rem; font-size: 0.85rem; }
}

/* owner pass 37b: the 8-item nav hands off to the drawer below 1280px */
@media (max-width: 1274px) and (min-width: 901px) {
  .site-header nav[aria-label="Primary"] { display: none; }
  .site-header .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .site-header .brand img { height: 38px; }
}

/* owner pass 38: default hero + mist scenery joins the golden-hour family */
.page-hero {
  background:
    linear-gradient(180deg, rgba(5, 13, 26, 0.38) 0%, rgba(7, 19, 37, 0.30) 55%, #0a1c33 100%),
    url('/assets/img/ambient/goldridge-2200.jpg') center 32% / cover no-repeat;
}
.section--mist {
  background:
    linear-gradient(180deg, rgba(7, 19, 37, 0.46) 0%, rgba(10, 28, 51, 0.74) 60%, rgba(10, 28, 51, 0.92) 100%),
    url('/assets/img/ambient/goldridge-2200.jpg') center 30% / cover no-repeat;
}

/* owner pass 37c: mid-size desktops drop the phone link so all eight items fit */
@media (max-width: 1799px) and (min-width: 1275px) {
  .site-header .nav-phone { display: none; }
  .site-header .nav-links { gap: 0.95rem; }
  .site-header .nav-links a { font-size: 0.93rem; }
}

/* owner pass 39: premium brandmark (Marcellus), drop tittle, gold trust tiles,
   Strong Spas hero tab, mobile brandmark spacing */
@font-face {
  font-family: 'Marcellus';
  src: url('/assets/fonts/marcellus-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
.hero-brandmark__word, .mini-brand__word {
  font-family: 'Marcellus', var(--font-display), serif;
  font-weight: 400; letter-spacing: 0.09em;
}
.hero-brandmark__tag { font-family: 'Marcellus', var(--font-display), serif; letter-spacing: 0.56em; }

/* the logo's water drop lives over every I in SHINE */
.bl--drop { position: relative; }
.bl--drop::after {
  content: ''; position: absolute; left: 50%; top: -0.4em;
  width: 0.34em; height: 0.42em; translate: -50% 0; rotate: 45deg;
  border-radius: 0 58% 58% 58%;
  background: linear-gradient(135deg, #bff1ff 10%, #35c7f0 55%, #0a75c9 100%);
  filter: drop-shadow(0 0 8px rgba(127, 224, 247, 0.6));
  animation: drop-glow 4.5s ease-in-out infinite;
}
@keyframes drop-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(127, 224, 247, 0.45)); }
  50% { filter: drop-shadow(0 0 14px rgba(127, 224, 247, 0.85)); }
}

/* trust chips become gold-trimmed clickable tiles with a hover reveal */
.hero__trust--tiles { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.t-tile {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem; border-radius: var(--r-pill); text-decoration: none;
  background: rgba(7, 18, 34, 0.72);
  border: 1px solid rgba(246, 184, 102, 0.45);
  box-shadow: inset 0 0 14px rgba(246, 184, 102, 0.06);
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 650; color: #e8f2fb;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: tile-float 5.5s ease-in-out var(--td, 0s) infinite;
}
.t-tile svg { color: #f6b866; flex: none; }
.t-tile__label { white-space: nowrap; }
.t-tile__sub {
  display: inline-block; max-width: 0; overflow: hidden; white-space: nowrap;
  color: #f6b866; font-size: 0.82rem; font-weight: 700;
  transition: max-width 0.45s var(--ease-soft), margin 0.45s var(--ease-soft), opacity 0.3s ease;
  opacity: 0; margin-left: 0;
}
.t-tile:hover, .t-tile:focus-visible {
  transform: translateY(-3px);
  border-color: #f6b866;
  box-shadow: 0 8px 24px rgba(2, 8, 18, 0.5), 0 0 22px rgba(246, 184, 102, 0.28), inset 0 0 14px rgba(246, 184, 102, 0.1);
}
.t-tile:hover .t-tile__sub, .t-tile:focus-visible .t-tile__sub {
  max-width: 200px; opacity: 1; margin-left: 0.45rem;
}
@keyframes tile-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

/* Strong Spas tab under the dealer line */
.hero-strong {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 0.9rem; padding: 0.45rem 1rem 0.45rem 0.6rem;
  border-radius: var(--r-pill); text-decoration: none;
  background: rgba(245, 248, 251, 0.94);
  border: 1.5px solid rgba(246, 184, 102, 0.75);
  box-shadow: 0 10px 28px rgba(2, 8, 18, 0.45), 0 0 20px rgba(246, 184, 102, 0.2);
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.js-motion .hero-strong { opacity: 0; }
html:not(.js-motion) .hero-strong { opacity: 1; }
.hero-strong img { height: 20px; width: auto; display: block; }
.hero-strong span { font-family: var(--font-display); font-size: 0.85rem; font-weight: 650; color: #0b2342; white-space: nowrap; }
.hero-strong strong { font-weight: 800; }
.hero-strong:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(2, 8, 18, 0.5), 0 0 30px rgba(246, 184, 102, 0.4);
}
.hero-brandmark .hero-strong { margin-inline: auto; }

/* mobile: the mark gets its own lane above the headline, nothing overlaps */
@media (max-width: 900px) {
  .hero-brandmark { top: calc(var(--header-h) + 1.5vh); }
  .hero-brandmark__word { font-size: clamp(1.4rem, 7vw, 2rem); letter-spacing: 0.07em; }
  .hero-brandmark__tag { font-size: 0.58rem; letter-spacing: 0.4em; margin-top: 0.5rem; }
  .hero-strong { display: none; }
  .hero__content { padding-top: calc(var(--header-h) + 3rem + 74px); }
  .t-tile { font-size: 0.8rem; padding: 0.45rem 0.8rem; animation: none; }
  .t-tile__sub { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .t-tile, .bl--drop::after { animation: none; }
}

/* owner pass 40: sign-off polish — watermark joins the serif family, scroll cue clears the tiles */
.footer-watermark { font-family: 'Marcellus', var(--font-display), serif; font-weight: 400; letter-spacing: 0.06em; }
.hero__scroll-cue { bottom: 0.4rem; opacity: 0.55; }

/* owner pass 41: mobile page-hero / film-section imagery (W1-09 audit fix — PERFORMANCE_BASELINE.md §2/§5)
   900px-wide derivatives (-resize 900x -quality 82) swap in at <=640px so phones stop downloading
   the same ~500-780KB 2200px desktop hero backgrounds. Two coverage tiers:
   1. The CSS-defined default `.page-hero` (ridgeline, used by services hub + 404) and
      `.film-section::before` (brightwater) are pure-stylesheet backgrounds, so a normal
      later-cascade override works with no specificity tricks.
   2. Most other page-hero sections set `background` as an INLINE style attribute per fragment,
      which no external stylesheet rule can out-specificity without !important. Retrofitting all
      ~29 inline heroes is out of scope for this pass (would mean touching nearly every fragment);
      per the audit's own priority list this pass covers the four highest-traffic/most-over-budget
      routes (tacoma, strong-spas, contact, gallery — PERFORMANCE_BASELINE.md sec.2 "4 of 7 sampled
      routes FAIL"), each opted in via a page-scoped `.page-hero--<page>` class added alongside the
      existing `.page-hero` class in that one fragment (no shared-component/layout changes).
      Remaining inline-styled heroes (about, faq, privacy, products, reviews, service-areas hub,
      the 7 other city pages, all 8 service pages) still ship their 2200px image to mobile — flagged
      as a follow-up, not fixed here; see handoff notes. */
@media (max-width: 640px) {
  .page-hero {
    background-image: linear-gradient(180deg, rgba(5, 13, 26, 0.45) 0%, rgba(7, 19, 37, 0.36) 55%, #0a1c33 100%), url('/assets/img/ambient/ridgeline-900.jpg');
  }
  .film-section::before {
    background-image: url('/assets/img/ambient/brightwater-900.jpg');
  }
  .page-hero--tacoma {
    background: linear-gradient(180deg, rgba(5,13,26,0.34) 0%, rgba(7,19,37,0.28) 55%, #0a1c33 100%), url('/assets/img/ambient/warmsound-900.jpg') center 40% / cover no-repeat !important;
  }
  .page-hero--strong-spas {
    background: linear-gradient(180deg, rgba(4,10,20,0.45) 0%, rgba(6,15,30,0.38) 55%, #0a1c33 100%), url('/assets/img/ambient/luxdusk-900.jpg') center 62% / cover no-repeat !important;
  }
  .page-hero--contact {
    background: linear-gradient(180deg, rgba(5,13,26,0.26) 0%, rgba(7,19,37,0.20) 55%, #0a1c33 100%), url('/assets/img/ambient/luxdusk-900.jpg') center 35% / cover no-repeat !important;
  }
  .page-hero--gallery {
    background: linear-gradient(180deg, rgba(5,13,26,0.26) 0%, rgba(7,19,37,0.20) 55%, #0a1c33 100%), url('/assets/img/ambient/goldlake-900.jpg') center 35% / cover no-repeat !important;
  }
}

/* owner pass 42: W1-04 homepage H1/slogan role swap (spec: docs/design/PAGE_COMPOSITION_LIBRARY.md
   Appendix W1-04). The crawlable/semantic <h1> is now the service+region sentence
   (`.hero__service`); the big visual "Your hot tub should shine." line is demoted to a
   non-heading `<p class="hero__slogan">` that keeps the exact former `.hero h1` look (Outfit 800,
   --text-hero, 13ch wrap, animated .shine-word gradient) and the same hidden-until-ready motion
   gate. Selectors below intentionally out-specificity the old `.hero h1` descendant rule (which
   would otherwise still match the new, smaller `.hero__service` h1) without editing it in place. */
.hero__slogan {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-hero);
  letter-spacing: -0.035em; line-height: 1.08; margin: 0 0 var(--sp-4);
  max-width: 13ch; text-wrap: balance;
}
.hero__slogan .shine-word {
  background: linear-gradient(100deg, #fff 10%, var(--aqua-300) 38%, #fff 52%, var(--gold-300) 78%, #fff 95%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine-sweep 6.5s var(--ease-soft) infinite;
}
.js-motion .hero .hero__slogan { visibility: hidden; }
.js-motion .hero .hero__service { visibility: visible; }
.hero .hero__service {
  font-family: var(--font-display); font-weight: 650;
  font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.5rem);
  letter-spacing: -0.01em; line-height: 1.3;
  color: rgba(238, 247, 255, 0.82);
  max-width: 46ch; margin: 0 0 var(--sp-3);
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero__slogan .shine-word { animation: none; background-position: 50% 0; }
}

/* owner pass 43: OV-19 "motion-enhanced" disclosure chip for the two AI-motion composite
   placements (kia-arrival.mp4, strong-olympia.mp4 — real stills, Kling i2v motion per
   ASSET_MANIFEST.csv). Small, muted caption chip; sits with the existing figure/caption markup,
   never blocks the video or the real caption text. */
.media-note {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.6rem; padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(230, 242, 252, 0.72); background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.media-note::before { content: "\25CE"; font-size: 0.85em; opacity: 0.85; }
.section--day .media-note, .section--mist .media-note {
  color: var(--ink-500); background: rgba(10, 28, 51, 0.06); border-color: rgba(10, 28, 51, 0.12);
}

/* owner pass 44: W1-11 wire the compact <=640px ambient derivatives
   (goldridge-900/rainier-900/waterdrop-900) into the same page-scoped
   `.page-hero--<name>` !important pattern owner pass 41 established, for the highest-traffic
   inline-styled page-heroes still shipping their full 2200px image to phones. Non-hero, lower-
   priority occurrences of these same ambients deeper on the page (e.g. section--dawn city-page
   blocks, section--mist/day accent sections) are left for a future pass — flagged, not fixed here. */
@media (max-width: 640px) {
  .page-hero--rainier {
    background: linear-gradient(180deg, rgba(5,13,26,0.34) 0%, rgba(7,19,37,0.28) 55%, #0a1c33 100%), url('/assets/img/ambient/rainier-900.jpg') center 30% / cover no-repeat !important;
  }
  .page-hero--goldridge {
    background: linear-gradient(180deg, rgba(5,13,26,0.34) 0%, rgba(7,19,37,0.28) 55%, #0a1c33 100%), url('/assets/img/ambient/goldridge-900.jpg') center / cover no-repeat !important;
  }
  .page-hero--products {
    background: linear-gradient(180deg, rgba(5,13,26,0.26) 0%, rgba(7,19,37,0.20) 55%, #0a1c33 100%), url('/assets/img/ambient/waterdrop-900.jpg') center 35% / cover no-repeat !important;
  }
  .page-hero--water-care {
    background: linear-gradient(180deg, rgba(4,11,22,0.42) 0%, rgba(6,15,30,0.36) 55%, #0a1c33 100%), url('/assets/img/ambient/waterdrop-900.jpg') center 45% / cover no-repeat !important;
  }
}

/* owner pass 45: docs/design/POLISH_AUDIT.md studio-polish fixes (P1-3, P2-1..P2-5, P3-12).
   Append-only: each rule below intentionally re-declares only the specific property named in the
   audit for a selector that already exists earlier in this file; later cascade order wins at equal
   specificity, so the original rule blocks are left untouched. See the audit doc for full rationale. */

/* P1-3: stop the interior-page mini-brand signature bleeding through the scrolled header */
.site-header.is-scrolled { background: rgba(4, 11, 22, 0.97); }

/* P2-1: card--photo hover veil fix lives in place at the original rule (main.css ~line 1502) —
   the original selector's specificity (0,4,0,0) is higher than any append-only override of the
   same declaration could achieve without !important, so this is edited in place like P1-1's
   .nav-links scoping rather than duplicated here. See docs/design/POLISH_AUDIT.md P2-1. */

/* P2-2: keep trust-tile microcopy visible on mobile instead of hiding it entirely */
@media (max-width: 900px) {
  .t-tile { flex-direction: column; align-items: flex-start; gap: 0.1rem; padding: 0.5rem 0.8rem; }
  .t-tile__sub { display: block; max-width: none; opacity: 0.82; margin: 0; font-size: 0.7rem; white-space: normal; }
}

/* P2-3 + P2-5: pause the perpetual float on hover/focus (stable hit target) and move the hover
   glow onto the shared shadow/glow-soft tokens instead of a bespoke blur/spread pair */
:root {
  --glow-aqua-soft: 0 0 28px rgba(53, 199, 240, 0.16);
  --glow-gold-soft: 0 0 24px rgba(246, 184, 102, 0.22);
}
.t-tile:hover, .t-tile:focus-visible {
  animation-play-state: paused;
  box-shadow: var(--shadow-2), var(--glow-gold-soft), inset 0 0 14px rgba(246, 184, 102, 0.1);
}

/* P2-4: token sweep — later "owner pass" component families move off hand-rolled raw durations
   onto the shared dur/ease scale (docs/design/HOT_TUB_SHINE_BRAND_SYSTEM.md); .fact-flip__inner
   keeps its unique bezier curve, now named --ease-flip for documentation rather than replaced. */
:root { --ease-flip: cubic-bezier(0.4, 0.9, 0.3, 1); }
.nav-links .nav-caret { transition: transform var(--dur-2) var(--ease-soft); }
.nav-sub { transition: opacity var(--dur-2) var(--ease-soft), transform var(--dur-2) var(--ease-soft), visibility var(--dur-2); }
.fact-flip__inner { transition: transform var(--dur-3) var(--ease-flip); }
.series-tile { transition: transform var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft); }
.model-card { transition: transform var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft); }
.model-card__media img { transition: transform var(--dur-3) var(--ease-soft); }
.contact-card { transition: transform var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft); }
.wc-pill-btn { transition: border-color var(--dur-2) var(--ease-soft), color var(--dur-2) var(--ease-soft), background var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft); }
.wc-check-item { transition: border-color var(--dur-2) var(--ease-soft), opacity var(--dur-2) var(--ease-soft); }
.wc-symptom-btn { transition: transform var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft); }
.t-tile { transition: transform var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft), box-shadow var(--dur-2) var(--ease-soft); }

/* P2-5 (cont.): remaining two hover shadow families onto the same elevation + glow token pattern */
.nav-sub { box-shadow: var(--shadow-3), var(--glow-aqua-soft); }
.series-tile:hover { box-shadow: var(--shadow-2), var(--glow-aqua-soft); }
.model-card:hover { box-shadow: var(--shadow-3), var(--glow-gold-soft); }

/* P3-12: snap the two remaining hand-typed icon/badge radii onto the token scale (10/16/24/32) */
.brand { border-radius: var(--r-sm); }
.card__icon { border-radius: var(--r-md); }
.contact-card__chip { border-radius: var(--r-md); }

/* owner pass 48: lean mobile rendering + 44px header ergonomics.
   The visual assets keep their authored dimensions; their interactive wrappers
   grow to accessible touch targets. Continuous decorative loops become
   user-controlled swipe rows on touch devices, reducing paint/compositor work. */
@media (max-width: 900px) {
  .site-header .brand {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    padding-block: 6px;
  }
  .site-header .nav-phone {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding-inline: 8px;
  }
  .site-header .nav-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    place-items: center;
  }
  .site-header .nav-toggle span { margin-inline: auto; }

}

@media (max-width: 700px) {
  /* The persistent action bar already spells out Call. In the header the same
     link becomes an unambiguous phone icon, preserving a roomy 44px target. */
  .site-header .nav-phone { font-size: 0; gap: 0; }
  .site-header .nav-phone svg { width: 20px; height: 20px; }
}

@media (max-width: 900px), (pointer: coarse) {
  .brand::after,
  .bl,
  .bl--drop::after,
  .hero-brandmark__glow,
  .hero-brandmark__glow::before,
  .hero .hero__slogan .shine-word,
  .photo-marquee__track,
  .review-track,
  .route-path,
  .route-city circle,
  .route-hub__glow,
  .cta-band .btn--sunrise,
  .film-section::before,
  .film-section::after,
  .film-glow,
  .dealer-strip::before,
  .dealer-strip::after,
  .capitol-photo img {
    animation: none !important;
  }

  .photo-marquee,
  .review-marquee {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .photo-marquee::-webkit-scrollbar,
  .review-marquee::-webkit-scrollbar { display: none; }
  .photo-marquee__track,
  .review-track { transform: none !important; }
}

/* owner pass 46: W2-F water-care guide cluster — hub "Go Deeper" card grid (#guides) and the
   4 new child-guide pages (/water-care/<slug>/). Two small additive components: a photo-thumb
   link-card for the guide grid (reuses .card for background/border/hover, only adds the media
   slot + text-link footer), and a captioned figure wrapper for the generated symptom
   illustrations so their "illustrative, not a real photo" disclosure reads consistently with
   the existing .media-note chip pattern (owner pass 43) rather than inventing a new one. */
.wc-guide-group-head {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em; margin: 0 0 var(--sp-4); color: #eef4fa;
}
.card-grid + .wc-guide-group-head { margin-top: var(--sp-6); }
.wc-guide-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; text-decoration: none; color: inherit; }
.wc-guide-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.wc-guide-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wc-guide-card--text-only .wc-guide-card__body { justify-content: center; min-height: 168px; }
.wc-guide-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.wc-guide-card h4 { margin: 0; font-size: 1.08rem; color: #fff; }
.wc-guide-card p { margin: 0; font-size: 0.92rem; color: var(--ink-on-dark-dim); }
.wc-guide-card .text-link { margin-top: auto; padding-top: 0.4rem; color: var(--aqua-300); }

.wc-illustration { margin: 0; }
.wc-illustration img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-2);
}
.wc-illustration figcaption { margin-top: 0.7rem; }
.wc-illustration figcaption p { margin: 0.5rem 0 0; font-size: 0.9rem; color: var(--ink-on-dark-dim); line-height: 1.55; }

/* owner pass 47: docs/qa/REVIEW_W2-F_BUILD.md MAJOR #1 — WCAG 2.4.7 focus-visible fix.
   .card's unconditional `box-shadow: var(--shadow-1)` (~L524-529) shares the sitewide
   `:focus-visible` rule's specificity (0,1,0) and cascades after it, so it silently wins and
   strips the focus ring on any focusable element carrying the bare .card class. .wc-guide-card
   (owner pass 46) is the first sitewide case of .card living directly on a focusable <a>.
   Two rules below: a defensive sitewide `.card:focus-visible` restore (so any future focusable
   .card link is covered automatically), plus an explicit `.wc-guide-card:focus-visible` rule
   at higher specificity so this exact regression can never resurface even if the generic rule
   is edited later. Both layer the ring WITH the resting shadow (`var(--focus-ring), var(--shadow-1)`)
   rather than replacing it, matching the existing `.ba-slider input[type="range"]:focus-visible`
   layering precedent (~L616). outline stays none — the box-shadow ring IS the visible indicator
   sitewide, so this keeps the same visual language rather than introducing a second style. */
.card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), var(--shadow-1);
}
.wc-guide-card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), var(--shadow-2);
}


/* Service tile photos: focus on the tub, not the sky (2026-07-23 fix) */
.card--photo.home-lazy-bg { background-position: center 62%; }
