:root {
  --ink: #06262c;
  --ink-soft: #0f3a42;
  --deep-ocean: #052026;
  --ocean: #0a5c6b;
  --lagoon: #0f7d8a;
  --aqua: #1fb9c6;
  --aqua-bright: #40d3dd;
  --seafoam: #d7f6f4;
  --sand: #f2efe7;
  --sun: #f6b35d;
  --coral: #ef6b5b;
  --white: #ffffff;
  --glass: rgba(231, 251, 250, 0.72);
  --glass-strong: rgba(243, 255, 255, 0.92);
  --shadow: 0 24px 60px rgba(6, 38, 44, 0.14);
  --shadow-soft: 0 2px 15px -3px rgba(6, 38, 44, 0.07), 0 10px 20px -2px rgba(6, 38, 44, 0.04);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --ink-glow: rgba(31, 185, 198, 0.35);
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #e8fbf9;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scroll-driven water → dry background */
.scroll-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(31, 185, 198, 0.18), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(10, 92, 107, 0.16), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(64, 211, 221, 0.18), transparent 45%),
    linear-gradient(180deg, #e8fbf9 0%, #f2fbfb 55%, #ffffff 100%);
  transition: opacity 0.1s linear;
}

.scroll-bg-dry {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 80%, rgba(245, 243, 237, 0.6), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(246, 179, 93, 0.08), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f5f3ed 40%, #ede8dd 80%, #ddd5c5 100%);
  opacity: 0;
  transition: opacity 0.1s linear;
}

/* Water streak dividers between sections */
.water-streak {
  position: relative;
  overflow: hidden;
}

.water-streak::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath d='M0,30 C240,50 480,10 720,30 C960,50 1200,10 1440,30 L1440,60 L0,60 Z' fill='%23ffffff' fill-opacity='0.4'/%3E%3Cpath d='M0,40 C360,55 720,20 1080,40 C1260,50 1380,35 1440,40 L1440,60 L0,60 Z' fill='%23ffffff' fill-opacity='0.25'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h3, h4 {
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: translateX(calc(-100% - 32px));
  z-index: 1000;
}

.skip-link:focus {
  transform: translateX(0);
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

/* ── Caustic Light Reflections ──────────────────────────── */
.bg-orb {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  opacity: 0.5;
  z-index: 0;
  filter: blur(30px);
}

.orb-1 {
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse at 30% 40%, rgba(31, 185, 198, 0.3) 0%, rgba(64, 211, 221, 0.15) 50%, transparent 80%);
  top: -80px;
  right: 0;
  animation: caustic-1 16s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at 60% 30%, rgba(10, 92, 107, 0.25) 0%, rgba(31, 185, 198, 0.1) 50%, transparent 80%);
  bottom: 200px;
  left: 0;
  animation: caustic-2 20s ease-in-out infinite;
}

.orb-3 {
  width: 450px;
  height: 280px;
  background: radial-gradient(ellipse at 40% 50%, rgba(64, 211, 221, 0.2) 0%, rgba(231, 251, 250, 0.15) 50%, transparent 80%);
  top: 48%;
  right: 10%;
  animation: caustic-3 24s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 38, 44, 0.06);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0 20px;
  min-height: 80px;
  padding: 12px 0;
  position: relative;
  transition: padding 0.35s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  perspective: 1000px;
}

.brand img {
  --logo-scroll-y: 0px;
  --logo-scroll-rotate: 0deg;
  --logo-hover-x: 0px;
  --logo-hover-y: 0px;
  --logo-hover-rotate-x: 0deg;
  --logo-hover-rotate-y: 0deg;
  --logo-hover-scale: 1;
  width: 220px;
  height: auto;
  object-fit: contain;
  max-width: min(40vw, 220px);
  transform-origin: center;
  transform: translate3d(
      var(--logo-hover-x),
      calc(var(--logo-scroll-y) + var(--logo-hover-y)),
      0
    )
    rotate(var(--logo-scroll-rotate))
    rotateX(var(--logo-hover-rotate-x))
    rotateY(var(--logo-hover-rotate-y))
    scale(var(--logo-hover-scale));
  filter: drop-shadow(0 10px 24px rgba(15, 92, 107, 0.18));
  transition: width 0.35s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.22s ease;
  will-change: transform;
}

.brand:hover img {
  --logo-hover-scale: 1.05;
  filter: drop-shadow(0 16px 30px rgba(15, 92, 107, 0.24));
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: font-size 0.35s ease;
}

.site-header .brand-name {
  display: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(12, 27, 31, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 1;
}

.nav-hours {
  display: none;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 92, 107, 0.14);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

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

.nav-link {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--aqua);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--ocean);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--ocean);
  font-weight: 600;
}

.nav-highlight {
  color: var(--ocean) !important;
  font-weight: 600;
}

.nav-highlight::before {
  content: none;
}

.nav-highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--aqua);
  transform: scaleX(1);
  border-radius: 1px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle {
  border: 1px solid transparent;
  background: transparent;
  padding: 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}

.dropdown-toggle svg {
  width: 16px;
  height: 16px;
}

/* Unified dropdown trigger: nav-link + chevron in one button */
button.nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #f8fbff;
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: var(--shadow);
  display: none;
  min-width: 220px;
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.dropdown-menu a:hover {
  background: var(--seafoam);
  color: var(--aqua);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  color: var(--ocean);
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(10, 92, 107, 0.12);
  background: rgba(227, 241, 251, 0.75);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-phone::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") no-repeat center;
}

.nav-phone:hover {
  background: rgba(215, 246, 244, 0.95);
  color: var(--ocean);
  border-color: rgba(10, 92, 107, 0.2);
  box-shadow: 0 10px 22px rgba(15, 92, 107, 0.12);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(21, 110, 165, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(21, 110, 165, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--ocean);
  border-color: var(--ocean);
}

.btn-secondary:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(10, 92, 107, 0.25);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(227, 241, 251, 0.95);
  color: var(--ocean);
  border-color: rgba(10, 92, 107, 0.22);
  transform: translateY(-1px);
}

.btn-pay {
  background: linear-gradient(135deg, #0d8f5b, #20b26f);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(13, 143, 91, 0.24);
  animation: pulse-glow 2.8s ease-in-out infinite;
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(13, 143, 91, 0.3);
}

/* External link indicator */
.external-link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  vertical-align: -1px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") no-repeat center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ocean);
  margin-bottom: 16px;
}

.hero {
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246, 179, 93, 0.18), var(--glass-strong));
  border: 1.5px solid rgba(246, 179, 93, 0.45);
  box-shadow:
    0 0 20px rgba(246, 179, 93, 0.25),
    0 0 60px rgba(246, 179, 93, 0.08),
    var(--shadow);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  animation: badge-glow 3s ease-in-out infinite alternate;
}

@keyframes badge-glow {
  0% { box-shadow: 0 0 20px rgba(246, 179, 93, 0.25), 0 0 60px rgba(246, 179, 93, 0.08), var(--shadow); }
  100% { box-shadow: 0 0 28px rgba(246, 179, 93, 0.35), 0 0 80px rgba(246, 179, 93, 0.12), var(--shadow); }
}

.hero-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(246, 179, 93, 0.4));
}

.hero-badge strong {
  color: var(--sun);
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  line-height: 1.06;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(5, 32, 38, 0.12);
}

.btn.is-glow {
  animation: cta-glow 2.8s ease-in-out infinite;
  font-size: 1.05rem;
  padding: 14px 28px;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 10px 24px rgba(21, 110, 165, 0.2); }
  50% { box-shadow: 0 10px 36px rgba(31, 185, 198, 0.4), 0 0 60px rgba(31, 185, 198, 0.15); }
}

/* Floating CTA — appears on scroll */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta .btn {
  font-size: 0.95rem;
  padding: 14px 24px;
  box-shadow: 0 8px 32px rgba(10, 92, 107, 0.35);
}

.floating-cta .btn:hover {
  box-shadow: 0 12px 40px rgba(10, 92, 107, 0.45);
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.hero-highlights {
  display: grid;
  gap: 16px;
}

.highlight {
  background: var(--glass-strong);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 185, 198, 0.16);
}

.highlight span {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.hero-media {
  display: grid;
  gap: 20px;
}

.image-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(31, 185, 198, 0.18);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 400px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(6, 38, 44, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.image-card .image-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(12, 27, 31, 0.7);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 2;
}

.image-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.image-overlay img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.trust-bar {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.trust-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--glass-strong);
  border: 1px solid rgba(31, 185, 198, 0.18);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--aqua);
}

.trust-item strong {
  color: var(--ocean);
}

/* Dark section variant */
.section-dark {
  background: var(--deep-ocean);
  color: var(--white);
  border-top: 3px solid var(--aqua);
  border-bottom: 3px solid var(--aqua);
}

.section-dark h2 {
  color: var(--white);
}

.section-dark .section-sub {
  color: var(--seafoam);
}

.eyebrow-light {
  color: var(--aqua-bright);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
  background: rgba(15, 125, 138, 0.15);
  border: 1px solid rgba(31, 185, 198, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 24px 20px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--aqua);
  opacity: 0.4;
  font-family: "Playfair Display", Georgia, serif;
}

.testimonial-quote {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--white);
  padding-top: 12px;
}

.testimonial-author {
  color: var(--aqua-bright);
}

.testimonial-stars {
  margin-top: 8px;
  color: var(--sun);
  font-size: 1.1rem;
}

/* Service Areas */
.section-areas {
  background: linear-gradient(180deg, rgba(227, 251, 250, 0.5) 0%, rgba(242, 239, 231, 0.3) 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.area-card {
  background: var(--white);
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.area-card:hover {
  transform: translateY(-3px);
  border-color: var(--aqua-bright);
}

.area-card strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.area-card span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* Process / How It Works */
.section-process {
  background: var(--sand);
}

.section-process .eyebrow {
  color: var(--ocean);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  text-align: center;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 6px 20px rgba(10, 92, 107, 0.25);
}

.process-step h3 {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Connector line between steps */
@media (min-width: 768px) {
  .process-step + .process-step::after {
    content: "";
    position: absolute;
    top: 58px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--aqua);
    opacity: 0.35;
  }
}

@media (max-width: 899px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 479px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.section-cta {
  text-align: center;
  margin-top: 32px;
}

.section {
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

.section-tinted {
  background: linear-gradient(180deg, rgba(227, 241, 251, 0.4) 0%, rgba(240, 248, 255, 0.2) 100%);
  border-top: 1px solid rgba(31, 185, 198, 0.08);
  border-bottom: 1px solid rgba(31, 185, 198, 0.08);
}

.section + .section {
  padding-top: 32px;
}

.section::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'><path fill='%23e6f7f5' d='M0,64C120,80,240,96,360,90.7C480,85,600,59,720,58.7C840,59,960,85,1080,80C1200,75,1320,37,1440,21.3L1440,0L0,0Z'/></svg>");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  max-width: 560px;
}

.section-sub {
  max-width: 460px;
  color: var(--ink-soft);
}

.page-hero {
  padding: 64px 0 24px;
  position: relative;
  z-index: 1;
}

.page-hero + .section {
  padding-top: 40px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 620px;
  color: var(--ink-soft);
}

.page-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-chip {
  background: var(--seafoam);
  color: var(--ocean);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
}

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

/* Services page: 3-column grid for even rows (6 cards = 3+3) */
[data-page="services"] .card-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  [data-page="services"] .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 14px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 38, 44, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 185, 198, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--lagoon), var(--aqua-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  grid-row: 1;
  grid-column: 1;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition);
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--seafoam);
  padding: 10px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .service-icon {
  transform: scale(1.06);
}

.service-card h3 {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  margin-bottom: 0;
}

.service-card--text {
  grid-template-columns: 1fr;
}

.service-card--text h3 {
  grid-column: 1;
}

.service-card p {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  margin-top: 12px;
}

.service-card .model-list {
  grid-column: 1 / -1;
}

.service-card .btn {
  grid-column: 1 / -1;
  margin-top: 12px;
  justify-self: start;
}

.list-grid .btn {
  margin-top: 8px;
}

/* ── Feature Row (retail / water care) ─────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.feature-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(227, 241, 251, 0.5) 100%);
  border: 1px solid rgba(31, 185, 198, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--lagoon));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 92, 107, 0.16);
  border-color: rgba(31, 185, 198, 0.25);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10, 110, 130, 0.15);
  border: 2px solid rgba(31, 185, 198, 0.18);
  background: var(--seafoam);
  color: var(--lagoon);
  padding: 14px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item h3 {
  margin-bottom: 8px;
  color: var(--ocean);
}

.feature-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-item .btn {
  margin-top: 14px;
}

.list-icon {
  grid-row: 1;
  grid-column: 1;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--seafoam);
  padding: 8px;
}

.list-icon svg {
  width: 100%;
  height: 100%;
}

.list-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  background: linear-gradient(160deg, #dfe9f5 0%, #f5f0e6 100%);
}

.project-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-image {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.project-body {
  padding: 20px;
}

.content-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.content-grid--reverse > .image-card {
  order: -1;
}

.list-grid {
  display: grid;
  gap: 16px;
}

.list-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 14px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 27, 31, 0.05);
}

.list-card h3 {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  margin-bottom: 0;
}

.list-card p {
  grid-column: 2;
  color: var(--ink-soft);
  margin-top: 4px;
}

.stats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.stats-grid .stat {
  text-align: left;
}

.stat {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--glass-strong);
  border: 1px solid rgba(12, 27, 31, 0.08);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-strong);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.model-chip {
  background: var(--seafoam);
  color: var(--ocean);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.process-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.process-steps li {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--aqua);
  box-shadow: var(--shadow);
}

.process-steps h3 {
  margin-bottom: 8px;
}

.clinic {
  background: linear-gradient(120deg, #d8e8f8, #fef1dc);
}

.clinic-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  box-shadow: var(--shadow);
}

.clinic-details ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
}

.clinic-details li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.clinic-details .btn {
  margin-top: 4px;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  transition: transform var(--transition), opacity var(--transition);
}

.gallery-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.gallery-card.is-hidden {
  opacity: 0;
  transform: scale(0.98);
  display: none;
}

.gallery-body {
  padding: 18px 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid rgba(12, 27, 31, 0.2);
  background: var(--white);
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.filter-button.active {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.contact {
  padding-bottom: 64px;
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-cards div {
  padding: 18px;
  background: var(--glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-form {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.required {
  color: var(--coral);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid rgba(12, 27, 31, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  padding: 56px 0 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer .brand {
  margin-bottom: 12px;
  justify-content: center;
}

.site-footer .brand img {
  width: 280px;
  height: auto;
  filter: invert(1) hue-rotate(180deg) drop-shadow(0 2px 12px rgba(64, 211, 221, 0.3));
}

.site-footer .brand-name {
  display: none;
}

.site-footer .footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--aqua-bright);
}

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

.footer-meta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--aqua-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

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

@keyframes caustic-1 {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.35; }
  25%  { transform: translate(30px, 15px) scale(1.08) rotate(2deg); opacity: 0.28; }
  50%  { transform: translate(-20px, 30px) scale(0.95) rotate(-1deg); opacity: 0.4; }
  75%  { transform: translate(15px, -10px) scale(1.05) rotate(3deg); opacity: 0.3; }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.35; }
}

@keyframes caustic-2 {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.3; }
  30%  { transform: translate(-25px, 20px) scale(1.1) rotate(-2deg); opacity: 0.38; }
  60%  { transform: translate(20px, -15px) scale(0.92) rotate(2deg); opacity: 0.25; }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.3; }
}

@keyframes caustic-3 {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.28; }
  20%  { transform: translate(15px, -20px) scale(1.06) rotate(1deg); opacity: 0.35; }
  50%  { transform: translate(-30px, 10px) scale(0.97) rotate(-3deg); opacity: 0.22; }
  80%  { transform: translate(10px, 25px) scale(1.03) rotate(2deg); opacity: 0.32; }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.28; }
}

@keyframes caustic-drift {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.25; }
  30%  { transform: translate(30px, -60px) scale(1.1) rotate(3deg); opacity: 0.35; }
  60%  { transform: translate(-20px, -120px) scale(0.9) rotate(-2deg); opacity: 0.2; }
  90%  { opacity: 0.1; }
  100% { transform: translate(15px, -200px) scale(0.8) rotate(4deg); opacity: 0; }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 12px 24px rgba(10, 110, 130, 0.25);
  }
  50% {
    box-shadow: 0 18px 32px rgba(21, 110, 165, 0.4);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: 72px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% - 4px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    min-width: 260px;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-primary {
    width: auto;
    border-top: none;
    margin-top: 0;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    margin-top: 12px;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-hours {
    display: inline-flex;
    white-space: normal;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    padding: 8px 0 0 12px;
    box-shadow: none;
  }

  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 64px;
    padding: 8px 0;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Form Status Messages */
.form-status {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.success {
  background: rgba(31, 185, 198, 0.12);
  color: var(--ocean);
  border: 1px solid rgba(31, 185, 198, 0.3);
}

.form-status.error {
  background: rgba(239, 107, 91, 0.12);
  color: #c44230;
  border: 1px solid rgba(239, 107, 91, 0.3);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: transparent;
  border: none;
  max-width: 100%;
  max-height: 100%;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox[open] {
  display: flex;
}

.lightbox::backdrop {
  background: rgba(6, 38, 44, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 24px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 80%;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--white);
  transform: scale(1.1);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Calculator Styles */
.calculator {
  background: var(--glass-strong);
  border: 1px solid rgba(31, 185, 198, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.calculator-step {
  display: none;
}

.calculator-step.active {
  display: block;
}

.calculator-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (min-width: 576px) {
  .calculator-options {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.calculator-option {
  padding: 20px 24px;
  border: 2px solid rgba(31, 185, 198, 0.25);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.calculator-option:hover {
  border-color: var(--aqua);
  background: var(--seafoam);
}

.calculator-option:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 2px;
  border-color: var(--ocean);
}

.calculator-option.selected {
  border-color: var(--ocean);
  background: var(--seafoam);
}

.calculator-result {
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.calculator-result h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.calculator-result p {
  opacity: 0.95;
}

.container-narrow {
  max-width: 700px;
}

.container-article {
  max-width: 800px;
}

.calculator-result-step .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.calculator-result-note {
  margin-top: 24px;
  text-align: center;
}

.calculator-result-actions {
  margin-top: 24px;
  justify-content: center;
}

.calculator-notes {
  margin-top: 48px;
  padding: 24px;
  background: var(--seafoam);
  border-radius: var(--radius-lg);
}

.calculator-note-list {
  margin: 16px 0;
  padding-left: 20px;
}

.guide-article ul,
.guide-article ol {
  margin: 16px 0;
  line-height: 1.8;
}

.guide-article ol {
  padding-left: 24px;
}

.guide-highlight {
  margin: 16px 0;
}

.guide-highlight ul {
  margin-top: 12px;
}

.guide-note {
  margin-top: 12px;
}

.guide-problem {
  margin: 24px 0;
}

.guide-closing-note {
  margin-top: 24px;
}

.guide-cta {
  margin-top: 48px;
}

.guide-cta .clinic-card {
  width: 100%;
}

.service-area-list {
  margin-top: 12px;
}

.drive-time-note {
  margin-top: 16px;
}

.feature-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.map-embed {
  margin-top: 2rem;
}

.map-embed iframe,
.map-embed-frame {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
}

.honeypot-field {
  display: none;
}

.footer-quote-btn {
  margin-top: 4px;
}

.footer-pay-link {
  color: rgba(255, 255, 255, 0.5);
}

.payment-panel {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 92, 107, 0.1);
  box-shadow: var(--shadow);
}

.payment-logo {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

.payment-panel .section-sub {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.payment-actions {
  justify-content: center;
  margin-top: 24px;
}

.payment-note {
  margin-top: 16px;
  font-size: 0.95rem;
  opacity: 0.72;
}

/* Video Embeds */
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-featured .video-embed {
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(12, 27, 31, 0.2);
}

.video-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  grid-auto-rows: 1fr;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 38, 44, 0.06);
  transition: transform var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-info {
  padding: 20px 24px;
}

.video-info h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.video-info p {
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* Hero Video Background */
.hero-video-bg {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 360px;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 38, 44, 0.3) 0%, rgba(6, 38, 44, 0.6) 100%);
  z-index: 1;
}

/* Financing Logos */
.financing-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.financing-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass-strong);
  border-radius: 999px;
  border: 1px solid rgba(31, 185, 198, 0.18);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: all var(--transition);
}

.financing-bar a:hover {
  background: var(--seafoam);
  color: var(--ocean);
  border-color: var(--aqua);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0;
  transition: all var(--transition);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: var(--aqua);
  color: var(--white);
}

/* Google Rating */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(12, 27, 31, 0.08);
}

.google-rating .stars {
  color: var(--sun);
  letter-spacing: -1px;
}

/* Pay Button */
.pay-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #635bff, #7b73ff);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pay-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 91, 255, 0.4);
}

/* Gallery filter hidden */
.image-card.is-hidden {
  opacity: 0;
  transform: scale(0.98);
  display: none;
}

/* Orphaned styles cleaned up — Feb 2026 */

/* ============================================================
   ANIMATIONS & INTERACTIONS — Adapted from WSM signature style
   ============================================================ */

/* ── Water Texture SVG Overlay ─────────────────────────── */
.water-grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: soft-light;
  opacity: 0.08;
}

/* ── Caustic Light Patches (particle system via JS) ────── */
.caustic {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  background: radial-gradient(ellipse at 40% 40%,
    rgba(31, 185, 198, 0.18) 0%,
    rgba(64, 211, 221, 0.08) 40%,
    transparent 65%);
  filter: blur(12px);
  animation: caustic-drift ease-in-out infinite;
}

/* ── Morphing Background Orbs ──────────────────────────── */
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
  75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-50px, 30px); }
  66% { transform: translate(20px, -50px); }
}

.bg-orb {
  animation: float 18s ease-in-out infinite, morph 12s ease-in-out infinite;
  filter: blur(2px);
  transition: opacity 1s ease;
}

/* ── Scroll Reveal Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Keep content visible if JavaScript fails, then opt into reveal motion only
   after script.js marks the document as animation-ready. */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
}

.reveal-ready .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(6px);
}

.reveal-ready .reveal-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(6px);
}

.reveal-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(6px);
}

.reveal-ready .reveal.is-visible,
.reveal-ready .reveal-left.is-visible,
.reveal-ready .reveal-right.is-visible,
.reveal-ready .reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

/* Stagger delays for child elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── Card Hover Effects ────────────────────────────────── */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 30, 45, 0.12);
}

/* Card Shine Sweep */
.card-shine {
  position: relative;
  overflow: hidden;
}

.card-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent 0%, rgba(31, 185, 198, 0.06) 50%, transparent 100%);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

.card-shine:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* ── Animated Gradient Border ──────────────────────────── */
@keyframes border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--aqua), var(--lagoon), var(--sun), var(--aqua));
  background-size: 300% 100%;
  animation: border-flow 4s linear infinite;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
  opacity: 1;
}

/* ── Gradient Text ─────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--ocean), var(--aqua-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Aurora Background Shift ───────────────────────────── */
@keyframes aurora {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.aurora-bg {
  background: linear-gradient(-45deg, var(--aqua), var(--lagoon), var(--ocean), var(--aqua-bright));
  background-size: 400% 400%;
  animation: aurora 15s ease infinite;
}

/* ── Shimmer Effect ────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(31, 185, 198, 0.08), transparent);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

/* ── Breathing Glow on CTAs ────────────────────────────── */
@keyframes breathe {
  0%, 100% { box-shadow: 0 12px 24px rgba(10, 110, 130, 0.25), 0 0 0 0 rgba(31, 185, 198, 0); }
  50% { box-shadow: 0 18px 36px rgba(10, 110, 130, 0.35), 0 0 20px 4px rgba(31, 185, 198, 0.18); }
}

.hero-actions .btn-primary {
  animation: breathe 4s ease-in-out infinite;
}

.hero-actions .btn-primary:hover {
  animation: none;
}

/* ── Wave Divider Animation ────────────────────────────── */
@keyframes wave-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.wave-divider {
  height: 60px;
  overflow: hidden;
  position: relative;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  animation: wave-drift 8s linear infinite;
}

/* ── Typing Cursor ─────────────────────────────────────── */
@keyframes blink-cursor {
  0%, 100% { border-right-color: var(--aqua); }
  50% { border-right-color: transparent; }
}

.typing-cursor {
  border-right: 3px solid var(--aqua);
  padding-right: 4px;
  animation: blink-cursor 0.8s step-end infinite;
}

/* ── Counter Animation ─────────────────────────────────── */
.counter-value {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ocean);
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── Scroll Progress Bar ───────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--aqua-bright), var(--sun));
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ── Header Scroll Effect ──────────────────────────────── */
.site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 16px rgba(12, 27, 31, 0.08);
}

.site-header.scrolled .header-inner {
  min-height: 92px;
  padding: 12px 0;
}

.site-header.scrolled .brand img {
  width: 240px;
}

/* ── Tilt Effect on Cards ──────────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

/* ── Magnetic Button ───────────────────────────────────── */
.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Smooth Image Zoom ─────────────────────────────────── */
.image-card img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-card:hover img {
  transform: scale(1.05);
}

/* ── FAQ Accordion Animation ───────────────────────────── */
.faq-list details[open] summary {
  color: var(--ocean);
}

.faq-list details .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0;
}

.faq-list details[open] .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

/* ── Tooltip ───────────────────────────────────────────── */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── AI Chatbot Widget ─────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 110, 130, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(10, 110, 130, 0.45);
}

.chat-toggle svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  transition: transform 0.3s ease;
}

.chat-toggle.open svg {
  transform: rotate(90deg);
}

.chat-toggle-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--aqua);
  animation: chat-pulse 2s ease-in-out infinite;
}

@keyframes chat-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(12, 27, 31, 0.2);
  border: 1px solid rgba(31, 185, 198, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  background: linear-gradient(135deg, var(--ocean), var(--lagoon));
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-header-info h4 {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.chat-header-info p {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  max-height: 340px;
  scroll-behavior: smooth;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: msg-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
  background: var(--seafoam);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.bot strong {
  color: var(--ocean);
}

.chat-msg.bot ul {
  margin: 6px 0;
  padding-left: 16px;
  list-style: none;
}

.chat-msg.bot li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 4px;
}

.chat-msg.bot li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 700;
}

.chat-msg.bot p {
  margin: 4px 0;
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--ocean), var(--lagoon));
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-msg.typing .typing-dots {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.chat-msg.typing .typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ocean);
  opacity: 0.4;
  animation: typing-bounce 1.4s infinite;
}

.chat-msg.typing .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing .typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input-wrap {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(12, 27, 31, 0.08);
  background: rgba(248, 252, 255, 0.8);
}

.chat-input {
  flex: 1;
  border: 1px solid rgba(15, 30, 45, 0.15);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input:focus {
  border-color: var(--aqua);
}

.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.chat-send:hover {
  transform: scale(1.1);
}

.chat-send svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}

.chat-quick-btn {
  padding: 6px 12px;
  border: 1px solid rgba(31, 185, 198, 0.25);
  border-radius: 999px;
  background: var(--white);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.chat-quick-btn:hover {
  background: var(--seafoam);
  border-color: var(--aqua);
}

/* Chat Calculation Card Integration */
.chat-calculation-card {
  margin: 12px 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--aqua);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: card-appear 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@keyframes card-appear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-calc-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ocean);
}

.chat-calc-desc {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
}

.chat-calc-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--aqua);
  margin: 4px 0;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chat-calc-footnote {
  font-size: 0.72rem;
  color: rgba(60, 60, 60, 0.7);
  line-height: 1.3;
}

.chat-calc-btn {
  margin-top: 4px;
  display: inline-block;
  text-align: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--ocean), var(--aqua));
  color: var(--white) !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(31, 185, 198, 0.2);
}

.chat-calc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 185, 198, 0.3);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-ocean);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10000;
  font-size: 0.95rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  max-width: 720px;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--aqua-bright);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-accept {
  background: var(--ocean);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition);
}

.cookie-banner .btn-accept:hover {
  background: var(--lagoon);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.75rem;
  }
}

/* ── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .caustic, .water-grain { display: none; }
  .scroll-progress { display: none; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Print: ensure all content is visible */
@media print {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Mobile Polish ─────────────────────────────────────── */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .content-grid--reverse > .image-card {
    order: 0;
  }

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

  .clinic-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .page-hero {
    padding: 48px 0 16px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .section {
    padding: 50px 0;
  }

  .image-card {
    border-radius: var(--radius-lg);
  }

  .image-card img {
    min-height: 200px;
    object-fit: cover;
  }

  /* Better touch targets */
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .model-chip, .meta-chip {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .nav-phone {
    font-size: 1.1rem;
    padding: 8px 0;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  /* Footer tablet stack */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }

  /* Gallery grid on mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-card img {
    height: 150px;
  }

  /* Card grid mobile */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand img {
    width: 220px;
  }

  .site-header.scrolled .brand img {
    width: 180px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-card {
    grid-template-columns: 44px 1fr;
    gap: 0 10px;
    padding: 20px;
  }

  /* Stat grid mobile */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Process grid mobile */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* Trust bar mobile */
  .trust-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Hero mobile */
  .hero {
    padding: 50px 0 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Contact form mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* Reduce caustic count on mobile for perf */
  .caustic:nth-child(n+8) {
    display: none;
  }

  /* Decorative light orbs are desktop-only; their off-canvas positions can
     create hidden side-scroll on narrow phones. */
  .bg-orb {
    display: none;
  }
}

@media (max-width: 480px) {
  .chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
    max-height: 70vh;
  }
  .chat-widget { bottom: 16px; right: 16px; }

  .container {
    width: 92vw;
  }

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

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-head h2 {
    font-size: 1.5rem;
  }

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Smooth scroll momentum for iOS */
  .chat-messages {
    -webkit-overflow-scrolling: touch;
  }
}

/* ── Tap highlight for mobile ──────────────────────────── */
@media (hover: none) {
  .hover-lift:active {
    transform: translateY(-2px);
  }

  .card-shine::after {
    display: none;
  }

  .tilt-card {
    transform: none !important;
  }

  .magnetic-btn {
    transform: none !important;
  }

  .image-card:active img {
    transform: scale(1.02);
  }

  .btn-primary {
    animation: none;
  }

  .btn-primary:active {
    transform: scale(0.97);
  }
}

/* ─────────────────────────────────────────────────────────────────
 * 2026-05-07 Glam facelift — breadcrumbs, marquee, shimmer, tilts
 * ───────────────────────────────────────────────────────────────── */

/* Breadcrumbs ─ on area pages and any subpage */
.breadcrumbs {
  margin: 24px auto 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--lagoon);
  opacity: 0.6;
}
.breadcrumbs a {
  color: var(--lagoon);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover {
  color: var(--ocean);
  text-decoration: underline;
}
.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* Partner marquee ─ infinite-scroll brand strip */
.partner-marquee {
  position: relative;
  margin: 0;
  padding: 28px 0;
  max-width: 100vw;
  background: linear-gradient(180deg, rgba(231, 251, 250, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
  border-block: 1px solid rgba(15, 125, 138, 0.08);
  overflow: hidden;
  contain: paint;
}
.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}
.partner-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--white) 0%, transparent 100%);
}
.partner-marquee-label {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lagoon);
  opacity: 0.7;
  z-index: 3;
}
.partner-marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: partner-scroll 32s linear infinite;
  will-change: transform;
}
.partner-marquee:hover .partner-marquee-track {
  animation-play-state: paused;
}
.partner-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.78;
  transition: opacity 0.3s ease;
}
.partner-item:hover {
  opacity: 1;
}
.partner-item::after {
  content: "·";
  margin-left: 56px;
  color: var(--aqua);
  opacity: 0.5;
}
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero image shimmer ─ subtle caustic sweep */
.hero-media .image-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-media .image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(231, 251, 250, 0.18) 45%,
    rgba(64, 211, 221, 0.22) 50%,
    rgba(231, 251, 250, 0.18) 55%,
    transparent 70%
  );
  background-size: 250% 250%;
  background-position: 200% 0;
  animation: hero-shimmer 12s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
@keyframes hero-shimmer {
  0%, 20%   { background-position: 200% 0; opacity: 0; }
  30%       { opacity: 1; }
  60%       { background-position: -100% 0; opacity: 1; }
  70%, 100% { opacity: 0; }
}

/* Card 3D tilt ─ gentle hover lift on service & area cards */
.service-card,
.area-card {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(6, 38, 44, 0.18);
  }
  .area-card:hover {
    transform: perspective(900px) rotateX(1.5deg) rotateY(-2deg) translateY(-3px);
    box-shadow: 0 20px 40px -16px rgba(6, 38, 44, 0.16);
  }
}

/* Shiny-text accent ─ for award badges and hero highlights */
.shiny-text {
  background: linear-gradient(
    100deg,
    var(--ink) 30%,
    var(--aqua-bright) 50%,
    var(--ink) 70%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shiny-sweep 6s ease-in-out infinite;
}
@keyframes shiny-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

/* Border beam ─ animated conic ring on primary CTA hover */
.btn-primary {
  position: relative;
  isolation: isolate;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
      from var(--beam-angle, 0deg),
      transparent 0deg,
      transparent 320deg,
      var(--aqua-bright) 350deg,
      var(--coral) 360deg,
      transparent 360deg
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }
  .btn-primary:hover::before {
    opacity: 1;
    animation: beam-rotate 2.4s linear infinite;
  }
}
@property --beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes beam-rotate {
  to { --beam-angle: 360deg; }
}

/* Hero h1 aquatic glow */
.hero h1 {
  text-shadow: 0 0 40px var(--ink-glow);
}

/* Coral focus ring on form inputs (was teal) */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(239, 107, 91, 0.15);
}

/* ── Reduced motion safety net ───────────────────────────
 * Master rule — applied last so it overrides all motion above. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-media .image-card::after,
  .partner-marquee-track,
  .shiny-text {
    animation: none !important;
  }
  .service-card:hover,
  .area-card:hover {
    transform: translateY(-2px) !important;
  }
}
