/* =================================================================
   Rapid Swimming Pools — Luxury water-inspired homepage
   Hand-written CSS, no framework, Poppins typography
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Ocean palette */
  --ocean-deep:    #001a3d;
  --ocean:         #002b5c;
  --ocean-2:       #003d7a;
  --azure-deep:    #00498f;
  --azure:         #0066cc;
  --azure-bright:  #0080ff;
  --cyan:          #00b8d4;
  --aqua:          #00d4e6;
  --aqua-light:    #5fd8e8;
  --aqua-glow:     #80efff;

  /* Light tones */
  --paper:         #eaf6fb;
  --paper-2:       #d8edf6;
  --pearl:         #ffffff;
  --line:          rgba(0, 102, 204, .12);
  --line-soft:     rgba(255, 255, 255, .14);

  /* Text */
  --ink:           #001a3d;
  --ink-2:         #003d7a;
  --muted:         #4a6b8a;
  --muted-light:   rgba(255, 255, 255, .72);

  /* Glass */
  --glass-light:   rgba(255, 255, 255, .55);
  --glass-light-2: rgba(255, 255, 255, .35);
  --glass-dark:    rgba(0, 50, 110, .25);
  --glass-border:  rgba(255, 255, 255, .35);
  --glass-border-d:rgba(255, 255, 255, .12);

  /* Gradients */
  --grad-ocean: linear-gradient(135deg, #001a3d 0%, #00498f 60%, #0066cc 100%);
  --grad-deep:  linear-gradient(180deg, #001a3d 0%, #002b5c 100%);
  --grad-aqua:  linear-gradient(135deg, #00d4e6 0%, #00b8d4 35%, #0066cc 100%);
  --grad-aqua-soft: linear-gradient(135deg, rgba(0,212,230,.18), rgba(0,102,204,.08));
  --grad-text:  linear-gradient(135deg, #80efff 0%, #5fd8e8 30%, #00d4e6 70%, #00b8d4 100%);
  --grad-gold:  linear-gradient(135deg, #e4cf99 0%, #c9a663 55%, #9c7d3f 100%);

  /* Shadow / glow */
  --glow-aqua:  0 0 40px rgba(0, 212, 230, .35);
  --glow-aqua-strong: 0 0 60px rgba(0, 212, 230, .55);
  --shadow-1:   0 8px 24px -8px rgba(0, 26, 61, .15);
  --shadow-2:   0 20px 60px -20px rgba(0, 26, 61, .35);
  --shadow-3:   0 30px 80px -25px rgba(0, 26, 61, .55);
  --shadow-glass: 0 8px 32px rgba(0, 26, 61, .12), inset 0 1px 0 rgba(255,255,255,.6);
  --shadow-glass-dark: 0 8px 32px rgba(0, 0, 20, .35), inset 0 1px 0 rgba(255,255,255,.12);

  /* Layout */
  --container: 78rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Luxury accent (champagne / brushed brass) */
  --gold:          #c9a663;
  --gold-soft:     #e4cf99;
  --gold-deep:     #9c7d3f;

  /* Warm neutrals (premium feel) */
  --cream:         #faf6ee;
  --cream-2:       #f3ecdc;
  --sand:          #ddd2bd;

  /* Type */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  /* Headings now use Poppins too — single typeface across the whole site */
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --fz-xs:   .75rem;
  --fz-sm:   .875rem;
  --fz-base: 1rem;
  --fz-lg:   1.125rem;
  --fz-xl:   1.25rem;
  --fz-2xl:  1.5rem;
  --fz-3xl:  clamp(1.5rem, 2.6vw, 1.95rem);
  --fz-4xl:  clamp(1.6rem, 3vw, 2.3rem);
  --fz-5xl:  clamp(2rem, 4.6vw, 3.15rem);

  /* Motion */
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fz-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Skip link — hidden until keyboard focus, then snaps to top */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--ocean-deep);
  color: var(--pearl);
  padding: .85rem 1.25rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.45);
  transition: top .25s var(--ease-out);
}
.skip-link:focus,
.skip-link:focus-visible { top: 1rem; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fz-4xl);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.display em { font-style: italic; font-weight: 600; }
.display--light { color: var(--pearl); }

.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* On light sections the aqua gradient lacks contrast — use the ocean palette
   for headlines on cream/paper backgrounds. Keeps the gradient feel, hits AA. */
section.intro .grad,
section.areas .grad,
section.testimonials .grad,
section.problems .grad,
section.why .grad {
  background: linear-gradient(135deg, #0066cc 0%, #003d7a 55%, #001a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.kicker__bar {
  width: 28px; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  display: inline-block;
}
.kicker--light { color: var(--gold-soft); }
.kicker--light .kicker__bar { background: var(--grad-gold); opacity: .95; }

.section-head {
  max-width: 56rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.section-head .kicker { justify-content: center; }
.section-head--light { color: var(--pearl); }
.section-sub {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: var(--fz-lg);
  max-width: 40rem;
  margin-inline: auto;
  font-weight: 400;
}
.section-sub--light { color: rgba(255,255,255,.78); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 1.75rem;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
  border-radius: 999px;
  /* Transparent base border so bordered and borderless variants share identical
     dimensions (no 3px size jump between adjacent buttons). */
  border: 1.5px solid transparent;
  box-sizing: border-box;
  vertical-align: middle;
  /* Only composited/paint properties transition — never width/height/padding/font,
     so hover and load never shift layout (no CLS). */
  transition: transform .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 1.05rem; height: 1.05rem; transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--grad-aqua);
  color: var(--pearl);
  box-shadow: 0 12px 32px -8px rgba(0, 102, 204, .55), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(0, 102, 204, .7), inset 0 1px 0 rgba(255,255,255,.4), 0 0 40px rgba(0, 212, 230, .4);
}

.btn--glass {
  background: var(--glass-dark);
  color: var(--pearl);
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .55);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0, 26, 61, .25);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--pearl);
  border-color: var(--ink);
}

.btn--block { width: 100%; justify-content: center; padding: 1.15rem 1.75rem; }

/* Ripple (handled by JS) */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim .7s var(--ease-out);
  background: rgba(255, 255, 255, .35);
  pointer-events: none;
  z-index: 0;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}
.btn > span, .btn > svg { position: relative; z-index: 1; }

/* ---------- Glass card ---------- */
.glass {
  background: var(--glass-light);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-lg);
}

/* In dark sections, glass uses dark tint */
section.services .glass,
section.projects .glass,
section.ba .glass,
section.process .glass,
section.contact .glass,
section.hero .glass {
  background: rgba(255, 255, 255, .08);
  border-color: var(--glass-border-d);
  box-shadow: var(--shadow-glass-dark);
}

/* ---------- Wave dividers ---------- */
/* Wave dividers removed — sections now meet with straight edges */
.wave {
  display: none !important;
}

/* ---------- Bubbles ---------- */
.bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.25) 45%, rgba(128,239,255,.1) 70%, transparent 100%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(.3px);
  animation: bubbleRise linear infinite;
}
@keyframes bubbleRise {
  0%   { opacity: 0; transform: translate3d(0, 0, 0) scale(.85); }
  10%  { opacity: .9; }
  85%  { opacity: .7; }
  100% { opacity: 0; transform: translate3d(40px, -110vh, 0) scale(1.1); }
}

/* Generate bubble variety — different size, position, speed, delay */
.bubbles .bubble:nth-child(1)  { left:  6%; width: 14px; height: 14px; animation-duration: 14s; animation-delay:  0s; }
.bubbles .bubble:nth-child(2)  { left: 17%; width: 22px; height: 22px; animation-duration: 17s; animation-delay: -3s; }
.bubbles .bubble:nth-child(3)  { left: 28%; width: 10px; height: 10px; animation-duration: 11s; animation-delay: -7s; }
.bubbles .bubble:nth-child(4)  { left: 39%; width: 28px; height: 28px; animation-duration: 22s; animation-delay: -2s; }
.bubbles .bubble:nth-child(5)  { left: 46%; width: 16px; height: 16px; animation-duration: 15s; animation-delay: -9s; }
.bubbles .bubble:nth-child(6)  { left: 58%; width: 12px; height: 12px; animation-duration: 13s; animation-delay: -5s; }
.bubbles .bubble:nth-child(7)  { left: 67%; width: 20px; height: 20px; animation-duration: 18s; animation-delay: -1s; }
.bubbles .bubble:nth-child(8)  { left: 75%; width: 10px; height: 10px; animation-duration: 16s; animation-delay: -8s; }
.bubbles .bubble:nth-child(9)  { left: 83%; width: 24px; height: 24px; animation-duration: 20s; animation-delay: -4s; }
.bubbles .bubble:nth-child(10) { left: 91%; width: 14px; height: 14px; animation-duration: 14s; animation-delay: -6s; }
.bubbles .bubble:nth-child(11) { left: 33%; width: 18px; height: 18px; animation-duration: 19s; animation-delay: -11s; }
.bubbles .bubble:nth-child(12) { left: 72%; width: 16px; height: 16px; animation-duration: 17s; animation-delay: -13s; }

/* ---------- Droplets (deco) ---------- */
.droplet {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  background: var(--grad-aqua);
  opacity: .06;
  filter: blur(2px);
  pointer-events: none;
}
.droplet--1 { top: 10%; left: -3%; width: 220px; height: 220px; transform: rotate(45deg); }
.droplet--2 { bottom: -8%; right: -4%; width: 320px; height: 320px; transform: rotate(220deg); opacity: .08; }
.droplet--3 { top: 8%; right: -2%; width: 180px; height: 180px; transform: rotate(-45deg); opacity: .07; }
.droplet--4 { bottom: 5%; left: -3%; width: 260px; height: 260px; transform: rotate(135deg); opacity: .05; }

/* ============================================================
   NAV
   ============================================================ */
/* Solid professional-blue header.
   Header dimensions stay constant on scroll — only shadow + a touch more
   blur is added. Logo is rendered as-is (no filter, no recolour). */

:root {
  --nav-h: 78px;
  --nav-h-mobile: 68px;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--nav-h);
  background: linear-gradient(180deg, #001a3d 0%, #002b5c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 1px 0 rgba(0, 212, 230, .12);
  /* Only animate shadow + bg — never layout */
  transition: box-shadow .35s var(--ease-out), background .35s var(--ease-out);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0); /* hint compositor to keep nav on its own layer — no scroll-flicker */
  will-change: box-shadow;
}
/* Cyan "water-line" accent at the very bottom edge */
.nav::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 230, .55) 50%, transparent 100%);
  pointer-events: none;
}
/* Subtle radial highlight, decorative water shimmer */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 212, 230, .08) 0%, transparent 60%);
  pointer-events: none;
}
.nav.is-scrolled {
  background: linear-gradient(180deg, rgba(0, 26, 61, .92) 0%, rgba(0, 43, 92, .92) 100%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 14px 32px -16px rgba(0, 0, 0, .55), 0 1px 0 rgba(0, 212, 230, .18);
}

.nav__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

/* Logo — never recoloured, never filtered, never animated */
.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.nav__brand img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  /* No filter. No transform. No transition. The logo stays exactly as supplied. */
}

.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2.25rem;
  font-size: .92rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  color: rgba(255, 255, 255, .88);
  padding: .35rem 0;
  transition: color .25s var(--ease-out);
}
.nav__links a:hover { color: #ffffff; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #80efff, #00d4e6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
  border-radius: 2px;
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after { transform: scaleX(1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}
.nav__phone svg { width: 1rem; height: 1rem; color: var(--aqua-glow); }
.nav__phone:hover { color: var(--aqua-glow); }

/* Nav CTA — a true white-on-blue capsule, no glass colour-shift on scroll */
.nav__cta .btn--glass {
  padding: .7rem 1.4rem;
  font-size: .85rem;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, .45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav__cta .btn--glass:hover {
  background: #ffffff;
  color: var(--ocean-deep);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border-radius: 8px;
  transition: background .3s var(--ease-out);
}
.nav__toggle:hover { background: rgba(255, 255, 255, .08); }
.nav__toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s, top .35s var(--ease-out);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile menu — full-bleed below nav, no top/bottom flicker */
.nav__mobile {
  position: fixed;
  inset: 0;                 /* full-screen overlay (viewport — sits outside the transformed header) */
  z-index: 59;
  /* Semi-translucent glass: page shows through, darkened for readability */
  background: rgba(0, 18, 42, .8);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  /* Hidden by default on every screen — only the hamburger (mobile only) opens it */
  display: none;
  flex-direction: column;
  justify-content: center;  /* centre options vertically */
  align-items: center;      /* centre options horizontally */
  text-align: center;
  gap: 1rem;                /* even spacing between links */
  padding: calc(var(--nav-h) + 1.5rem) 2rem 2.5rem;
  color: #ffffff;
  overflow-y: auto;
}
.nav__mobile:not([hidden]) {
  display: flex;
  animation: navMobileIn .35s var(--ease-out);
}
/* Desktop guard: never show the mobile menu or hamburger above the mobile breakpoint */
@media (min-width: 1025px) {
  .nav__mobile { display: none !important; }
  .nav__toggle { display: none !important; }
}
@keyframes navMobileIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__mobile a {
  padding: .55rem 0;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .92);
  transition: color .25s var(--ease-out);
}
.nav__mobile a:active,
.nav__mobile a:hover { color: var(--aqua-glow); }
.nav__mobile-call {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--ocean-deep) !important;
  background: linear-gradient(135deg, #80efff 0%, #00d4e6 100%);
  margin-top: 1.5rem;
  padding: 1.05rem 2.25rem !important;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 14px 28px -10px rgba(0, 212, 230, .55);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  /* Compact, balanced hero on desktop/tablet (mobile restores full height below) */
  min-height: 88vh;
  display: flex;
  align-items: center;
  /* Balanced top/bottom padding — top also clears the fixed nav so the
     content block sits optically centred in the visible area on every screen */
  padding: calc(var(--nav-h) + 2rem) 0 2rem;
  color: var(--pearl);
  background: var(--ocean-deep);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; background: var(--ocean-deep); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease-out);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
/* picture must fill the slide, otherwise img height:100% collapses to natural height */
.hero__slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  transform: scale(1.04);
}
.hero__slide.is-active img {
  animation: heroZoom 8s var(--ease-out) forwards;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }

/* Slider dots */
.hero__dots {
  display: flex;
  gap: .6rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: heroFade .9s var(--ease-out) 1.3s forwards;
}
.hero__dot {
  width: 28px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.28);
  transition: background .4s var(--ease-out), width .4s var(--ease-out);
}
.hero__dot:hover { background: rgba(255,255,255,.5); }
.hero__dot.is-active { background: var(--aqua-glow); width: 44px; box-shadow: 0 0 14px rgba(128,239,255,.55); }

.hero__overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,26,61,.35) 0%, rgba(0,26,61,.15) 30%, rgba(0,26,61,.85) 95%),
    linear-gradient(90deg, rgba(0,26,61,.65) 0%, rgba(0,26,61,0) 65%),
    linear-gradient(135deg, rgba(0,180,212,.18) 0%, transparent 60%);
}
.hero__shimmer {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(128,239,255,.22) 0%, transparent 45%),
    radial-gradient(ellipse at 78% 70%, rgba(0,212,230,.18) 0%, transparent 50%);
  mix-blend-mode: screen;
  animation: shimmer 12s ease-in-out infinite alternate;
}
@keyframes shimmer {
  0%   { transform: translate3d(0,0,0); opacity: .8; }
  50%  { transform: translate3d(-2%, 1%, 0); opacity: 1; }
  100% { transform: translate3d(1%, -1%, 0); opacity: .85; }
}

.bubbles--hero { z-index: -1; }
.bubbles--hero .bubble {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(128,239,255,.4) 45%, rgba(0,212,230,.15) 75%, transparent 100%);
  box-shadow: 0 0 20px rgba(128, 239, 255, .3);
}

.hero__content {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1.1rem .55rem .8rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--pearl);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade .9s var(--ease-out) .15s forwards;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--aqua-glow);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--aqua-glow);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(128,239,255,.65); }
  50%      { box-shadow: 0 0 0 8px rgba(128,239,255,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fz-5xl);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
  max-width: 20ch;
}
.hero__title > span {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFade 1s var(--ease-out) forwards;
}
.hero__title > span:nth-child(1) { animation-delay: .3s; }
.hero__title > span:nth-child(2) { animation-delay: .48s; }
.hero__title-accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__title em { font-style: italic; font-weight: 700; }

@keyframes heroFade { to { opacity: 1; transform: none; } }

.hero__sub {
  font-size: var(--fz-lg);
  font-weight: 300;
  line-height: 1.6;
  max-width: 38rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFade .9s var(--ease-out) .8s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
  opacity: 0;
  animation: heroFade .9s var(--ease-out) 1s forwards;
}

/* Hero eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.05rem .5rem .8rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--pearl);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade .9s var(--ease-out) .15s forwards;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: #43e97b;
  border-radius: 50%;
  box-shadow: 0 0 12px #43e97b;
  animation: dotPulse 2.4s ease-in-out infinite;
}

/* Hero trust chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .7rem;
  padding-top: 2.25rem;
  margin-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 40rem;
  opacity: 0;
  animation: heroFade .9s var(--ease-out) 1.2s forwards;
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .95rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
}
.hero__chips li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua-glow);
  box-shadow: 0 0 8px var(--aqua-glow);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,.75);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
}
.hero__scroll-dot {
  width: 3px; height: 7px;
  background: var(--aqua-glow);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  61%, 100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   TRUST
   ============================================================ */
.intro {
  position: relative;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(5rem, 9vw, 7rem);
  background: var(--cream);
  overflow: hidden;
}
.trust__shapes { position: absolute; inset: 0; pointer-events: none; }
.intro__head {
  text-align: center;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.intro__head .kicker { justify-content: center; }

.intro__lead {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.intro__lead p {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 1.25rem;
}
.intro__lead p:last-child { margin-bottom: 0; }
.intro__areas { color: var(--muted); }
.intro__areas { font-weight: 500; }

.intro__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 60rem;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
}
.intro__points li {
  position: relative;
  padding: 1.9rem 1.6rem 1.75rem;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.intro__points li::before {
  content: "";
  position: absolute;
  top: 0; left: 1.6rem;
  width: 40px; height: 3px;
  background: var(--grad-aqua);
  border-radius: 3px;
}
.intro__points li:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -22px rgba(0, 102, 204, .35);
}
.intro__points h3 {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 .6rem;
}
.intro__points p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.intro__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  background: var(--grad-ocean);
  padding: clamp(5rem, 9vw, 7rem) 0;
  overflow: hidden;
  color: var(--pearl);
  isolation: isolate;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0,212,230,.15), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0,128,255,.12), transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.srv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .55s var(--ease-out), border-color .55s var(--ease-out), box-shadow .55s var(--ease-out), background .55s var(--ease-out);
  isolation: isolate;
}
.srv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(0,212,230,.16), transparent 55%);
  opacity: 0;
  transition: opacity .55s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}
.srv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 230, .55);
  box-shadow: 0 30px 60px -20px rgba(0, 26, 61, .55), 0 0 60px rgba(0, 212, 230, .15);
}
.srv-card:hover::before { opacity: 1; }
.srv-card > * { position: relative; z-index: 1; }

/* Full-width (full-bleed) card image */
.srv-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.srv-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,26,61,0) 55%, rgba(0,26,61,.55) 100%);
}
.srv-card__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.srv-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.srv-card:hover .srv-card__media img { transform: scale(1.06); }

.srv-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.5rem 1.6rem;
}
.srv-card__index {
  font-family: var(--font);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .26em;
  color: var(--aqua-glow);
  opacity: .9;
  margin-bottom: .65rem;
  display: block;
}
.srv-card h3 {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0 0 .5rem;
  color: var(--pearl);
  letter-spacing: -.01em;
}
.srv-card p {
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0 0 1.05rem;
}
.srv-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  font-size: .8rem;
  font-weight: 600;
  color: var(--aqua-glow);
  transition: color .3s var(--ease-out), gap .3s var(--ease-out);
}
.srv-card__cta svg { width: .85rem; height: .85rem; transition: transform .3s var(--ease-out); }
.srv-card__cta:hover { gap: .75rem; color: var(--pearl); }
.srv-card__cta:hover svg { transform: translateX(2px); }

/* Final "not sure?" card — accented */
.srv-card--cta {
  background: linear-gradient(150deg, rgba(0,212,230,.18), rgba(0,102,204,.08));
  border-color: rgba(0,212,230,.4);
}
.srv-card--cta .srv-card__index { color: var(--aqua-glow); opacity: 1; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas {
  position: relative;
  background: var(--cream);
  padding: clamp(5rem, 9vw, 7rem) 0;
  overflow: hidden;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.5vw, 2.1rem);
  box-shadow: var(--shadow-1);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -22px rgba(0, 102, 204, .3);
}
.area-card__region {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 1.1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}
.area-card p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 .9rem;
}
.area-card p:last-child { margin-bottom: 0; }
.area-card p strong {
  font-weight: 600;
  color: var(--ink-2);
}
.area-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.area-list li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-left: 1rem;
  position: relative;
}
.area-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-aqua);
}
.area-list strong {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-2);
}
.area-list span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.areas__why {
  position: relative;
  background: var(--grad-ocean);
  color: var(--pearl);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 4vw, 3.25rem);
  overflow: hidden;
  isolation: isolate;
}
.areas__why::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(0,212,230,.18), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(0,128,255,.14), transparent 55%);
  z-index: -1;
}
.areas__why h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: var(--pearl);
  letter-spacing: -.01em;
  margin: 0 0 .65rem;
}
.areas__why > p {
  color: rgba(255,255,255,.82);
  margin: 0 0 1.5rem;
  max-width: 46rem;
}
.areas__why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem 2rem;
  margin-bottom: 2rem;
}
.areas__why-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.areas__why-list li::before {
  content: "✓";
  color: var(--aqua-glow);
  font-weight: 700;
  flex-shrink: 0;
}
.areas__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
  overflow: hidden;
}
.about__wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 540px;
}
.about__media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 26, 61, .45);
}
.about__media-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__media-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at 30% 30%, rgba(0, 212, 230, .35), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.about__media-card {
  position: absolute;
  bottom: -2rem; left: -2rem;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.85) !important;
  border: 1px solid rgba(255,255,255,.9) !important;
  box-shadow: 0 20px 40px -10px rgba(0, 26, 61, .25), inset 0 1px 0 rgba(255,255,255,.8) !important;
  z-index: 2;
}
.about__card-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.25rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.015em;
}
.about__card-num span { font-size: 1.5rem; vertical-align: super; }
.about__card-label {
  font-size: .82rem;
  color: var(--ink-2);
  font-weight: 500;
  line-height: 1.35;
}
.about__media-inset {
  position: absolute;
  top: -2rem; right: -2rem;
  width: 45%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: 0 30px 60px -20px rgba(0, 26, 61, .35);
  z-index: 2;
}
.about__media-inset img { width: 100%; height: 100%; object-fit: cover; }

.about__copy { padding: 1rem 0; }
.about__copy .display { margin-bottom: 1.5rem; }
.lede {
  font-size: var(--fz-lg);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 2rem;
  font-weight: 400;
}

.about__points {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.about__points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-aqua);
  color: var(--pearl);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px rgba(0, 102, 204, .5);
}
.about__check svg { width: 18px; height: 18px; }
.about__points strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .15rem;
}
.about__points span {
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.55;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
  position: relative;
  background: var(--grad-ocean);
  padding: clamp(8rem, 14vw, 11rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.projects::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,212,230,.12), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(0,128,255,.1), transparent 50%);
  pointer-events: none;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 1.25rem;
}
.proj {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  isolation: isolate;
  min-height: 320px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.proj--xl { grid-column: span 4; grid-row: span 2; min-height: 640px; }
.proj:not(.proj--xl):not(.proj--wide) { grid-column: span 2; }
.proj--wide { grid-column: span 4; }

.proj picture, .proj img { position: absolute; inset: 0; }
.proj img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter .8s var(--ease-out);
  filter: brightness(.85) saturate(1.05);
}
.proj::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,26,61,0) 40%, rgba(0,26,61,.9) 100%);
  z-index: 1;
}
.proj::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,230,.35), rgba(0,102,204,.2));
  opacity: 0;
  transition: opacity .55s var(--ease-out);
  z-index: 1;
  mix-blend-mode: overlay;
}
.proj:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 60px -20px rgba(0, 26, 61, .55), 0 0 40px rgba(0, 212, 230, .25);
}
.proj:hover img { transform: scale(1.08); filter: brightness(.95) saturate(1.15); }
.proj:hover::after { opacity: 1; }

.proj__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.75rem 1.75rem 2rem;
  color: var(--pearl);
  transform: translateY(8px);
  opacity: .95;
  transition: transform .5s var(--ease-out);
}
.proj:hover .proj__overlay { transform: translateY(0); }
.proj__cat {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--aqua-glow);
  margin-bottom: .65rem;
  font-weight: 600;
}
.proj__overlay h3 {
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  margin: 0 0 .35rem;
  letter-spacing: -.01em;
}
.proj__loc { font-size: .88rem; color: rgba(255,255,255,.72); }

/* ============================================================
   WHY
   ============================================================ */
.why {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--paper-2);
  overflow: hidden;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat {
  padding: 2.25rem 1.75rem 2rem;
  background: rgba(255,255,255,.7) !important;
  border: 1px solid rgba(255,255,255,.85) !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .55s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.feat:hover {
  transform: translateY(-6px);
  border-color: var(--aqua-light) !important;
  box-shadow: 0 30px 60px -20px rgba(0, 102, 204, .35), 0 0 40px rgba(0, 212, 230, .15);
}
.feat:hover::before { transform: scaleX(1); }
.feat__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--grad-aqua-soft);
  border: 1px solid rgba(0, 212, 230, .25);
  border-radius: var(--radius);
  color: var(--azure);
  transition: background .5s var(--ease-out), color .5s var(--ease-out), transform .5s var(--ease-spring);
}
.feat__icon svg { width: 26px; height: 26px; }
.feat:hover .feat__icon {
  background: var(--grad-aqua);
  color: var(--pearl);
  transform: scale(1.1) rotate(-6deg);
}
.feat h3 {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.feat p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba {
  position: relative;
  padding: clamp(8rem, 14vw, 11rem) 0;
  background: var(--grad-ocean);
  overflow: hidden;
  isolation: isolate;
}
.ba::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,212,230,.15), transparent 55%);
  pointer-events: none;
}
.ba__compare {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  aspect-ratio: 16/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  user-select: none;
  box-shadow: 0 50px 100px -30px rgba(0,0,20,.7), 0 0 80px rgba(0, 212, 230, .15);
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.1);
}
.ba__after, .ba__before { position: absolute; inset: 0; }
.ba__before {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  will-change: clip-path;
}
.ba__after img, .ba__before img {
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba__tag {
  position: absolute;
  top: 1.5rem;
  padding: .5rem 1rem;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pearl);
  background: rgba(0,26,61,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
}
.ba__tag--after { right: 1.5rem; }
.ba__tag--before { left: 1.5rem; background: var(--grad-aqua); border-color: transparent; }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--pearl);
  cursor: ew-resize;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255,255,255,.6);
}
.ba__handle-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--grad-aqua);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pearl);
  box-shadow: 0 14px 30px -6px rgba(0,0,20,.5), 0 0 40px rgba(0, 212, 230, .5), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .3s var(--ease-spring);
}
.ba__handle:hover .ba__handle-knob,
.ba__handle:focus .ba__handle-knob { transform: translate(-50%, -50%) scale(1.1); }
.ba__handle-knob svg { width: 20px; height: 20px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream-2);
  overflow: hidden;
}
.testimonials__viewport { position: relative; padding: 8px; margin: -8px; }
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 720px) {
  .testimonials__track { grid-template-columns: 1fr; }
}
.testi {
  padding: 2.5rem 2rem 2rem;
  background: rgba(255,255,255,.85) !important;
  border: 1px solid rgba(255,255,255,.9) !important;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0, 102, 204, .25);
}
.testi__stars {
  display: flex;
  gap: .25rem;
  color: var(--azure-bright);
}
.testi__stars svg { width: 18px; height: 18px; }
.testi__body {
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-2);
}
.testi__by {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.testi__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-aqua);
  color: var(--pearl);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -6px rgba(0, 102, 204, .5);
}
.testi__name { display: block; font-size: .95rem; font-weight: 600; color: var(--ink); }
.testi__loc { font-size: .8rem; color: var(--muted); }

/* ============ PROCESS ============ */
.process {
  position: relative;
  padding: clamp(8rem, 14vw, 11rem) 0;
  background: var(--grad-ocean);
  overflow: hidden;
  isolation: isolate;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,212,230,.1), transparent 60%);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step {
  padding: 2.5rem 1.75rem 2rem;
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.04)) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  position: relative;
  transition: transform .55s var(--ease-out), border-color .55s var(--ease-out), box-shadow .55s var(--ease-out);
  color: var(--pearl);
  z-index: 1;
  text-align: center;
}
.step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 230, .55) !important;
  box-shadow: 0 30px 60px -20px rgba(0,0,20,.5), 0 0 60px rgba(0, 212, 230, .2);
}
.step__num {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  display: grid; place-items: center;
  background: var(--grad-aqua);
  color: var(--pearl);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 12px 28px -8px rgba(0, 102, 204, .55), inset 0 1px 0 rgba(255,255,255,.35);
}
.step__time {
  display: block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--aqua-glow);
  font-weight: 600;
  margin-bottom: .75rem;
}
.step h3 {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 .75rem;
  color: var(--pearl);
}
.step p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

/* ============ GALLERY ============ */
.gallery {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--paper);
  overflow: hidden;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.g {
  margin: 0;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: box-shadow .5s var(--ease-out), transform .5s var(--ease-out);
}
.g:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0, 102, 204, .35), 0 0 30px rgba(0, 212, 230, .15);
}
.g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter .8s var(--ease-out);
}
.g:hover img { transform: scale(1.08); }
.g--tall { grid-row: span 2; }
.g--wide { grid-column: span 2; }
.g::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 230, .35), transparent 60%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity .5s var(--ease-out);
}
.g:hover::after { opacity: 1; }

/* ============ CONTACT ============ */
.contact {
  position: relative;
  padding: clamp(8rem, 14vw, 11rem) 0;
  color: var(--pearl);
  overflow: hidden;
  isolation: isolate;
  background: var(--ocean-deep);
}
.contact__bg { position: absolute; inset: 0; z-index: -2; }
.contact__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.32) saturate(1.2);
  transform: scale(1.05);
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(0,212,230,.2), transparent 50%),
    linear-gradient(135deg, rgba(0,26,61,.85), rgba(0,61,122,.7));
}
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__left { padding-top: 1rem; }
.contact__left .display { margin-bottom: 1.5rem; text-align: left; }
.contact__left .kicker { justify-content: flex-start; }
.contact__left .section-head { text-align: left; }
.contact__intro {
  font-size: var(--fz-lg);
  font-weight: 300;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  max-width: 30rem;
  margin-bottom: 2.5rem;
}
.contact__meta { display: grid; gap: 1.5rem; max-width: 30rem; }
.contact__meta li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: .95rem;
}
.contact__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--aqua-glow);
  display: grid; place-items: center;
}
.contact__icon svg { width: 18px; height: 18px; }
.contact__label {
  display: block;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--aqua-glow);
  margin-bottom: .2rem;
}
.contact__meta a {
  display: block;
  color: var(--pearl);
  font-weight: 400;
  transition: color .3s;
}
.contact__meta a:hover { color: var(--aqua-glow); }
.contact__form {
  padding: 2.5rem 2rem 2rem;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__form-title {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 .25rem;
  color: var(--pearl);
  letter-spacing: -.01em;
}
.contact__form-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 1rem;
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.field label .req {
  color: var(--gold-soft);
  margin-left: .25em;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: var(--pearl);
  font-size: .95rem;
  font-family: var(--font);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aqua-glow);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 4px rgba(128, 239, 255, .15);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%), linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  cursor: pointer;
}
/* The native dropdown list inherits the select's colour in some browsers,
   which would render white-on-white. Force a readable dark-on-white popup. */
.field select option,
.field select optgroup {
  background-color: #ffffff;
  color: #14233b;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ocean-deep);
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__wrap {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
  align-items: start;
}
.footer__brand img {
  height: 44px; width: auto;
  margin-bottom: 1.5rem;
  /* logo rendered as supplied — no filter */
}
.footer__brand p {
  font-size: .92rem;
  line-height: 1.7;
  max-width: 26rem;
  color: rgba(255,255,255,.6);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__h {
  display: block;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--aqua-glow);
  margin-bottom: 1.25rem;
}
.footer__cols ul { display: grid; gap: .65rem; font-size: .92rem; }
.footer__cols a { color: rgba(255,255,255,.7); transition: color .3s; }
.footer__cols a:hover { color: var(--aqua-glow); }
.footer__base {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============ WHATSAPP FAB ============ */
.fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  background: #25D366;
  color: var(--pearl);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px -10px rgba(37, 211, 102, .6);
  transition: transform .4s var(--ease-spring);
}
.fab svg { width: 28px; height: 28px; }
.fab::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: #25D366;
  opacity: .35;
  z-index: -1;
  animation: fabPulse 2.5s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(.8); opacity: .55; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab:hover { transform: scale(1.08) rotate(-4deg); }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav__links, .nav__cta .btn--glass { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__toggle span { background: #fff; }
  .nav__cta { gap: .75rem; }
  /* Phone icon removed on mobile — call lives in the menu + WhatsApp button */
  .nav__phone { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__points { grid-template-columns: 1fr; max-width: 30rem; }
  .about__wrap { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; margin-inline: auto; }
  .projects__grid { grid-template-columns: repeat(4, 1fr); }
  .proj--xl { grid-column: span 4; grid-row: span 1; min-height: 480px; }
  .proj { grid-column: span 2 !important; }
  .proj--wide { grid-column: span 4 !important; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testi { flex: 0 0 calc(50% - .75rem); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .contact__wrap { grid-template-columns: 1fr; }
  .footer__wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: var(--nav-h-mobile); }
  .nav__brand img { height: 36px; max-width: 180px; }
  .nav__cta { gap: .5rem; }
  .hero { min-height: 100svh; padding: calc(var(--nav-h-mobile) + 2rem) 0 2rem; }
  .hero__scroll { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .intro__cta { flex-direction: column; }
  .intro__cta .btn { width: 100%; justify-content: center; }
  .areas__grid { grid-template-columns: 1fr; }
  .areas__why-list { grid-template-columns: 1fr; }
  .areas__cta { flex-direction: column; }
  .areas__cta .btn { width: 100%; justify-content: center; }
  .about__media-card { left: -1rem; bottom: -1.5rem; padding: 1.25rem 1.5rem; }
  .about__media-inset { display: none; }
  .projects__grid { grid-template-columns: 1fr; }
  .proj, .proj--wide, .proj--xl { grid-column: span 1 !important; min-height: 320px; }
  .proj--xl { min-height: 380px; }
  .why__grid { grid-template-columns: 1fr; }
  .testi { flex: 0 0 100%; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g--wide { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.75rem 1.25rem; }
  .fab { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__base-inner { justify-content: center; text-align: center; }
  .ba__compare { aspect-ratio: 4/3; }
  .ba__tag { top: 1rem; }
  .ba__tag--after { right: 1rem; }
  .ba__tag--before { left: 1rem; }
  .ba__handle-knob { width: 52px; height: 52px; }
  .wave { height: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__media img { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .bubble,
  .droplets,
  .hero__waterline,
  .hero__shimmer,
  .trust__shapes { display: none !important; }
}

/* =================================================================
   v2 additions — repair-first positioning, more life
   ================================================================= */

/* ----- Hero water-surface SVG ----- */
.hero__waterline {
  position: absolute;
  left: 0; right: 0; bottom: 22%;
  width: 100%;
  height: 60px;
  z-index: -1;
  pointer-events: none;
  opacity: .9;
  mix-blend-mode: screen;
}
@media (max-width: 720px) { .hero__waterline { bottom: 18%; } }

/* ----- Falling droplets in hero ----- */
.droplets {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.drop {
  position: absolute;
  top: -20px;
  width: 6px;
  height: 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(128, 239, 255, .85) 60%, rgba(0, 212, 230, .9) 100%);
  border-radius: 0 0 50% 50%;
  filter: drop-shadow(0 0 6px rgba(0, 212, 230, .55));
  opacity: 0;
  animation: dropFall linear infinite;
}
.drop:nth-child(1) { left: 22%; animation-duration: 8s;  animation-delay: 0s; }
.drop:nth-child(2) { left: 58%; animation-duration: 11s; animation-delay: 4s; }
.drop:nth-child(3) { left: 86%; animation-duration: 9s;  animation-delay: 7s; }
@keyframes dropFall {
  0%   { transform: translateY(0)     scale(.6); opacity: 0; }
  5%   { opacity: .9; }
  60%  { opacity: .9; }
  85%  { transform: translateY(80vh)  scale(1);  opacity: .5; }
  100% { transform: translateY(82vh)  scale(2.4, .3); opacity: 0; }
}

/* ----- Live availability ticker ----- */
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem 1.1rem .55rem .8rem;
  background: rgba(0, 26, 61, .35);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(128, 239, 255, .22);
  border-radius: 999px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: heroFade .9s var(--ease-out) .1s forwards;
}
.hero__live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #43e97b;
  box-shadow: 0 0 12px #43e97b, 0 0 0 0 rgba(67, 233, 123, .6);
  animation: liveDot 1.8s ease-out infinite;
}
@keyframes liveDot {
  0%   { box-shadow: 0 0 12px #43e97b, 0 0 0 0 rgba(67, 233, 123, .6); }
  100% { box-shadow: 0 0 12px #43e97b, 0 0 0 10px rgba(67, 233, 123, 0); }
}
.hero__live-text {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  white-space: nowrap;
}
.hero__live-text strong {
  position: relative;
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 110px;
  color: var(--aqua-glow);
  font-weight: 600;
}
.hero__live-text strong span {
  display: block;
  height: 1.2em;
  line-height: 1.2em;
  animation: rotateText 18s steps(6) infinite;
}
@keyframes rotateText {
  0%, 14%   { transform: translateY(0); }
  16%, 30%  { transform: translateY(-1.2em); }
  32%, 46%  { transform: translateY(-2.4em); }
  48%, 62%  { transform: translateY(-3.6em); }
  64%, 78%  { transform: translateY(-4.8em); }
  80%, 100% { transform: translateY(-6em); }
}

/* ----- Pulsing emergency CTA ----- */
.btn--pulse {
  position: relative;
}
.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  border: 2px solid rgba(0, 212, 230, .6);
  animation: ctaPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%   { opacity: .7; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.18); }
}

/* ----- "Same-day callouts" pill on featured service card ----- */
.srv-card__pill {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  padding: .35rem .8rem;
  background: linear-gradient(135deg, #43e97b 0%, #00d4e6 100%);
  color: var(--ocean-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(67, 233, 123, .55);
}
.srv-card--featured {
  border-color: rgba(67, 233, 123, .35) !important;
  box-shadow: 0 0 0 1px rgba(67, 233, 123, .25), 0 30px 60px -20px rgba(0, 26, 61, .55) !important;
}

/* ----- PROBLEMS WE FIX ----- */
.problems {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--paper);
  overflow: hidden;
}
.problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0,212,230,.07), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0,102,204,.06), transparent 50%);
  pointer-events: none;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.prob {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0, 102, 204, .12);
  border-radius: var(--radius);
  transition: transform .45s var(--ease-out), border-color .45s var(--ease-out), box-shadow .45s var(--ease-out), background .45s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.prob::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--grad-aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.prob:hover {
  transform: translateY(-4px);
  border-color: var(--aqua);
  background: #fff;
  box-shadow: 0 24px 48px -20px rgba(0, 102, 204, .35), 0 0 32px rgba(0, 212, 230, .12);
}
.prob:hover::before { transform: scaleX(1); }
.prob__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-aqua-soft);
  border: 1px solid rgba(0, 212, 230, .25);
  color: var(--azure);
  margin-bottom: 1rem;
  transition: background .45s var(--ease-out), color .45s var(--ease-out), transform .45s var(--ease-spring);
}
.prob__icon svg { width: 22px; height: 22px; }
.prob:hover .prob__icon {
  background: var(--grad-aqua);
  color: var(--pearl);
  transform: scale(1.08) rotate(-4deg);
}
.prob h3 {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  color: var(--ink);
  letter-spacing: -.005em;
}
.prob p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.problems__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .problems__grid { grid-template-columns: 1fr; }
  .hero__eyebrow { font-size: .72rem; padding: .45rem .85rem .45rem .65rem; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero__chips { gap: .5rem; }
}
/* =================================================================
   MULTI-PAGE COMPONENTS  (nav dropdown, subpages, FAQ, CTA, reviews)
   ================================================================= */

/* ----- Services dropdown (desktop) ----- */
.nav__has-drop {
  position: relative;
  height: var(--nav-h);
  display: inline-flex;
  align-items: center;
}
.nav__drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav__chev { width: .68rem; height: .68rem; transition: transform .3s var(--ease-out); }
.nav__has-drop:hover .nav__chev,
.nav__has-drop:focus-within .nav__chev { transform: rotate(180deg); }
.nav__drop {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  padding: .55rem;
  display: flex;
  flex-direction: column;
  gap: .12rem;
  background: rgba(0, 22, 51, .97);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
  z-index: 70;
}
.nav__has-drop:hover .nav__drop,
.nav__has-drop:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__drop a {
  padding: .65rem .9rem;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
}
.nav__drop a:hover { background: rgba(0, 212, 230, .14); color: #fff; }

/* Mobile menu — services sub-group label */
.nav__mobile-group {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--aqua-glow);
  margin-top: 1rem;
  opacity: .85;
}

/* ----- Subpage hero ----- */
.subhero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(3rem, 6vw, 4.5rem);
  /* Guarantee the banner covers a proper area so the background image always
     fills the section (svh keeps it correct under the mobile browser bar). */
  min-height: 50vh;
  min-height: 50svh;
  color: var(--pearl);
  background: var(--ocean-deep);
  overflow: hidden;
  isolation: isolate;
}
.subhero__bg { position: absolute; inset: 0; z-index: -2; }
/* The <picture> wrapper needs explicit size, otherwise the img's height:100%
   collapses to the image's natural height and the banner is only half-covered
   on tall (mobile) sections. */
.subhero__bg picture { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.subhero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.subhero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,26,61,.82) 0%, rgba(0,26,61,.6) 45%, rgba(0,26,61,.92) 100%),
    linear-gradient(90deg, rgba(0,26,61,.7) 0%, rgba(0,26,61,0) 70%);
}
.subhero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.subhero h1 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 4.3vw, 2.9rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 1rem 0 1rem;
  max-width: 22ch;
}
.subhero p {
  font-size: var(--fz-lg);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, .85);
  max-width: 46rem;
  margin: 0 0 2rem;
}
.subhero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ----- Breadcrumbs ----- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .7);
}
.crumbs a { color: rgba(255, 255, 255, .7); transition: color .2s; }
.crumbs a:hover { color: var(--aqua-glow); }
.crumbs span[aria-current] { color: var(--aqua-glow); }
.crumbs .sep { opacity: .5; }

/* ----- Generic content sections ----- */
.sec { padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; }
.sec--cream { background: var(--cream); }
.sec--paper { background: var(--paper); }
.sec--paper2 { background: var(--paper-2); }
.sec--white { background: #fff; }
.sec__head { max-width: 56rem; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.sec__head--left { text-align: left; margin-inline: 0; }
.prose { max-width: 54rem; }
.prose--center { margin-inline: auto; text-align: center; }
.prose p { font-size: 1.02rem; line-height: 1.8; color: var(--ink-2); margin: 0 0 1.15rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 2rem 0 .75rem; }

/* Feature list with checks (light) */
.checklist { display: grid; gap: .85rem; max-width: 54rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-2); line-height: 1.6; }
.checklist li::before {
  content: "";
  flex-shrink: 0;
  margin-top: .15rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-aqua);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>") center / 14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>") center / 14px no-repeat;
}
.checklist li strong { color: var(--ink); }

/* Two-column info grid */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-1);
}
.info-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink); margin: 0 0 .55rem; }
.info-card p { font-size: .94rem; line-height: 1.65; color: var(--muted); margin: 0; }

/* Numbered process steps (light) */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: flow; }
.flow__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-1);
}
.flow__step::before {
  counter-increment: flow;
  content: "0" counter(flow);
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: rgba(0, 102, 204, .14);
}
.flow__step h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 .5rem; }
.flow__step p { font-size: .9rem; line-height: 1.6; color: var(--muted); margin: 0; }

/* ----- FAQ accordion (native details/summary) ----- */
.faq { max-width: 56rem; margin-inline: auto; display: flex; flex-direction: column; gap: .85rem; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.faq__item[open] { border-color: rgba(0, 212, 230, .4); box-shadow: var(--shadow-1); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--azure);
  transition: transform .3s var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item .faq__a { padding: 0 1.4rem 1.3rem; color: var(--muted); line-height: 1.75; font-size: .95rem; }
.faq__item .faq__a p { margin: 0 0 .8rem; }
.faq__item .faq__a p:last-child { margin-bottom: 0; }

/* ----- CTA band ----- */
.cta-band {
  position: relative;
  background: var(--grad-ocean);
  color: var(--pearl);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0,212,230,.16), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(0,128,255,.14), transparent 55%);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; color: var(--pearl); margin: 0 0 .75rem; letter-spacing: -.01em; }
.cta-band p { color: rgba(255, 255, 255, .82); max-width: 42rem; margin: 0 auto 1.85rem; font-size: var(--fz-lg); font-weight: 300; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ----- Reviews grid (light) ----- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}
.review__stars { display: flex; gap: .15rem; margin-bottom: .9rem; color: #f5a623; }
.review__stars svg { width: 18px; height: 18px; }
.review__body { color: var(--ink-2); line-height: 1.7; font-size: .96rem; margin: 0 0 1.25rem; }
.review__by { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-aqua); color: #fff;
  font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}
.review__name { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; }
.review__loc { display: block; font-size: .8rem; color: var(--muted); }

/* Rating summary banner */
.rating-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  max-width: 60rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.rating-bar__score { display: flex; flex-direction: column; align-items: center; }
.rating-bar__num { font-size: 2.4rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.rating-bar__stars { color: #f5a623; display: flex; gap: .1rem; margin-top: .35rem; }
.rating-bar__stars svg { width: 16px; height: 16px; }
.rating-bar__meta { font-size: .9rem; color: var(--muted); }

/* ----- Quote / lead layout ----- */
.lead-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.lead-trust { display: grid; gap: 1.1rem; margin-top: 1.75rem; }
.lead-trust li { display: flex; gap: .8rem; align-items: flex-start; }
.lead-trust svg { width: 22px; height: 22px; color: var(--azure); flex-shrink: 0; margin-top: .1rem; }
.lead-trust strong { display: block; color: var(--ink); font-size: .98rem; }
.lead-trust span { font-size: .9rem; color: var(--muted); }

/* Small inline service links list */
.svc-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.svc-links a {
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-2);
  background: #fff;
  transition: all .25s var(--ease-out);
}
.svc-links a:hover { border-color: var(--azure); color: var(--azure); transform: translateY(-2px); }

/* Quote form card (dark — reuses .field inputs which are styled for dark) */
.quote-form {
  background: var(--grad-ocean);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.quote-form::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 80% 0%, rgba(0,212,230,.16), transparent 55%);
}
.quote-form .contact__form-title { color: var(--pearl); font-weight: 700; font-size: 1.45rem; margin: 0 0 .25rem; letter-spacing: -.01em; }
.quote-form .contact__form-sub { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0 0 1rem; }

/* ----- Responsive for new components ----- */
@media (max-width: 1024px) {
  .info-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .lead-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .flow { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .subhero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  /* ---- Mobile hero / banner coverage hardening ----
     Tighten the top spacing under the fixed nav and make sure every hero and
     banner background image covers a proper area on phones, with no thin strips
     or empty gaps. Images already use object-fit:cover; these just size the box. */
  .subhero { padding-top: calc(var(--nav-h-mobile) + 2rem); min-height: 60svh; }
  .lux-hero { min-height: 74svh; }
  .b2b-hero, .ps-hero, .emerg-hero { padding-top: calc(var(--nav-h-mobile) + 2.25rem); }
  .subhero__bg img, .lux-hero__bg img { object-position: center 38%; }
  .case__media { min-height: 220px; }
  /* Full-width CTAs read better and avoid uneven button widths on small screens */
  .subhero__actions .btn { width: 100%; justify-content: center; }
}

/* =================================================================
   PAGE ENRICHMENT  (intro+form split, feature rows, benefits, contact)
   ================================================================= */

/* Two-column intro + lead form (sits below the breadcrumb / subhero) */
.intro-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.intro-split__copy .prose { max-width: none; }
.intro-split__copy .kicker { margin-top: .25rem; }
.intro-split .quote-form { position: sticky; top: calc(var(--nav-h) + 1rem); }

/* Alternating image + text feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(2.5rem, 5vw, 4rem); }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3;
}
.feature-row__media picture { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__body h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--ink); margin: 0 0 .9rem; letter-spacing: -.01em; }
.feature-row__body p { color: var(--ink-2); line-height: 1.8; margin: 0 0 1rem; }
.feature-row__body p:last-child { margin-bottom: 0; }
.feature-row__body strong { color: var(--ink); }

/* Benefits with icons */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem;
  box-shadow: var(--shadow-1);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.benefit:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -22px rgba(0, 102, 204, .3); }
.benefit__icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--grad-aqua-soft);
  border: 1px solid rgba(0, 212, 230, .25);
  color: var(--azure);
  margin-bottom: 1.1rem;
}
.benefit__icon svg { width: 25px; height: 25px; }
.benefit h3 { font-size: 1.08rem; font-weight: 700; color: var(--ink); margin: 0 0 .45rem; }
.benefit p { font-size: .92rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Callout band */
.callout {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--grad-aqua-soft);
  border: 1px solid rgba(0, 212, 230, .28);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.85rem;
  max-width: 60rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.callout__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-aqua);
  color: #fff;
}
.callout__icon svg { width: 24px; height: 24px; }
.callout p { margin: 0; color: var(--ink-2); line-height: 1.65; }
.callout p strong { color: var(--ink); }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; max-width: 62rem; margin: 0 auto; }
.stat-strip__item { text-align: center; padding: 1.5rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); }
.stat-strip__num { font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; background: linear-gradient(135deg, #0066cc, #003d7a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-strip__label { display: block; margin-top: .5rem; font-size: .85rem; color: var(--muted); font-weight: 500; }

/* Contact info cards / hours / map */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.85rem 1.75rem; box-shadow: var(--shadow-1); }
.contact-card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-aqua-soft); border: 1px solid rgba(0,212,230,.25); color: var(--azure); margin-bottom: 1rem; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 .5rem; }
.contact-card p, .contact-card a { font-size: .95rem; color: var(--muted); line-height: 1.6; display: block; }
.contact-card a:hover { color: var(--azure); }

.hours-list { display: grid; gap: .65rem; max-width: 30rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: .96rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li strong { color: var(--ink); font-weight: 600; }
.hours-list .is-open { color: #1f9d55; font-weight: 600; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 440px; border: 0; }

/* Areas pill list (reusable) */
.area-pills { display: flex; flex-wrap: wrap; gap: .55rem; }
.area-pills span { padding: .5rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; font-weight: 500; color: var(--ink-2); }

@media (max-width: 1024px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-split .quote-form { position: static; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* =================================================================
   LOCATION PAGES — distinct components per suburb theme
   ================================================================= */

/* ---- Footer "areas we serve" strip (shared across location pages) ---- */
.footer__areas { border-top: 1px solid var(--glass-border-d); padding: 1.5rem 0 .5rem; }
.footer__areas .footer__h { display: block; margin-bottom: .6rem; }
.footer__areas-links { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .9rem; }
.footer__areas-links a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer__areas-links a:hover { color: var(--aqua-glow); }
.footer__areas-links a.footer__areas-all { color: var(--aqua-glow); font-weight: 600; }

/* Footer sitemap: categorized Locations + Resources */
.footer__sitemap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.25rem 2.5rem;
  border-top: 1px solid var(--glass-border-d);
  padding: 1.5rem 0 .5rem;
}
.footer__sitemap .footer__h { display: block; margin-bottom: .7rem; }
@media (max-width: 720px) {
  .footer__sitemap { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ===== SANDTON — luxury editorial ===== */
.lux-hero { position: relative; min-height: 82vh; display: flex; align-items: flex-end; color: var(--pearl); background: var(--ocean-deep); overflow: hidden; isolation: isolate; padding: 0 0 clamp(3rem,6vw,5rem); }
.lux-hero__bg { position: absolute; inset: 0; z-index: -2; }
.lux-hero__bg picture { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.lux-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.lux-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,18,42,.55) 0%, rgba(0,18,42,.2) 35%, rgba(0,12,30,.92) 100%); }
.lux-hero__inner { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.lux-eyebrow { font-size: .74rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1.25rem; font-weight: 600; }
.lux-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 1.25rem; max-width: 18ch; }
.lux-hero p { font-size: var(--fz-lg); font-weight: 300; color: rgba(255,255,255,.82); max-width: 40rem; margin: 0 0 2rem; }
.lux-rule { width: 60px; height: 2px; background: var(--grad-gold); margin: 0 0 1.5rem; }
.lux-section { padding: clamp(4rem,8vw,6.5rem) 0; background: var(--cream); }
.lux-statement { max-width: 44rem; margin: 0 auto; text-align: center; }
.lux-statement .lux-rule { margin: 0 auto 1.5rem; }
.lux-statement h2 { font-size: clamp(1.7rem,3.4vw,2.6rem); font-weight: 600; line-height: 1.25; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.lux-points { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,3rem); margin-top: clamp(2.5rem,5vw,4rem); }
.lux-point { text-align: center; }
.lux-point__no { font-size: 1rem; letter-spacing: .3em; color: var(--gold-deep); font-weight: 600; }
.lux-point__rule { width: 36px; height: 1px; background: var(--sand); margin: 1rem auto; }
.lux-point h3 { font-size: 1.2rem; font-weight: 600; color: var(--ink); margin: 0 0 .6rem; }
.lux-point p { color: var(--muted); line-height: 1.7; font-size: .95rem; margin: 0; }
.lux-quote { background: var(--ocean-deep); color: var(--pearl); padding: clamp(4rem,8vw,6rem) 0; text-align: center; }
.lux-quote blockquote { max-width: 50rem; margin: 0 auto; font-size: clamp(1.3rem,2.6vw,1.9rem); font-weight: 300; line-height: 1.5; font-style: italic; color: rgba(255,255,255,.92); }
.lux-quote cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: .9rem; letter-spacing: .1em; color: var(--gold-soft); }
.lux-cta { padding: clamp(4rem,8vw,5.5rem) 0; text-align: center; background: var(--cream); }
.lux-cta h2 { font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 600; color: var(--ink); margin: 0 0 1rem; }
.lux-cta p { color: var(--muted); max-width: 38rem; margin: 0 auto 1.75rem; }

/* ===== MIDRAND — B2B / estates ===== */
.b2b-hero { position: relative; background: var(--grad-ocean); color: var(--pearl); padding: calc(var(--nav-h) + clamp(2.5rem,5vw,4rem)) 0 clamp(3rem,6vw,4rem); overflow: hidden; isolation: isolate; }
.b2b-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 80% 10%, rgba(0,212,230,.16), transparent 55%); }
.b2b-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.b2b-hero h1 { font-size: clamp(1.9rem,4vw,2.9rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin: 1rem 0 1rem; }
.b2b-hero p { font-size: var(--fz-lg); font-weight: 300; color: rgba(255,255,255,.85); margin: 0 0 1.5rem; }
.b2b-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.b2b-tags span { padding: .4rem .9rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: .8rem; }
.b2b-stats { background: var(--ocean-deep); color: var(--pearl); padding: clamp(2rem,4vw,2.75rem) 0; }
.b2b-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.b2b-stats__num { font-size: clamp(1.8rem,3.4vw,2.6rem); font-weight: 800; color: var(--aqua-glow); line-height: 1; }
.b2b-stats__label { display: block; margin-top: .5rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.trustee-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.trustee { display: flex; gap: 1rem; }
.trustee__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-aqua-soft); border: 1px solid rgba(0,212,230,.25); color: var(--azure); }
.trustee__icon svg { width: 22px; height: 22px; }
.trustee h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 .35rem; }
.trustee p { font-size: .92rem; color: var(--muted); line-height: 1.6; margin: 0; }
.case { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3rem); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-2); }
.case__media { position: relative; align-self: stretch; min-height: 280px; }
.case__media picture { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.case__media img { width: 100%; height: 100%; object-fit: cover; }
.case__body { padding: clamp(1.75rem,3vw,2.75rem); }
.case__tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.case__body h3 { font-size: clamp(1.3rem,2.4vw,1.7rem); font-weight: 700; color: var(--ink); margin: .5rem 0 .9rem; }
.case__body p { color: var(--ink-2); line-height: 1.75; margin: 0 0 1rem; }

/* ===== RANDBURG — problem / solution ===== */
.ps-hero { background: var(--grad-ocean); color: var(--pearl); padding: calc(var(--nav-h) + clamp(3rem,6vw,5rem)) 0 clamp(3rem,6vw,4.5rem); position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.ps-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 50% 0%, rgba(0,212,230,.16), transparent 60%); }
.ps-hero h1 { font-size: clamp(2rem,4.6vw,3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin: 1rem auto 1rem; max-width: 20ch; }
.ps-hero p { font-size: var(--fz-lg); font-weight: 300; color: rgba(255,255,255,.85); max-width: 42rem; margin: 0 auto 2rem; }
.ps-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.ps-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.85rem 1.75rem; box-shadow: var(--shadow-1); }
.ps-item__problem { display: flex; gap: .65rem; align-items: flex-start; font-weight: 700; color: var(--ink); font-size: 1.08rem; margin-bottom: .85rem; }
.ps-item__problem svg { flex-shrink: 0; width: 22px; height: 22px; color: #e8743b; margin-top: .1rem; }
.ps-item__fix { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink-2); line-height: 1.65; font-size: .95rem; }
.ps-item__fix svg { flex-shrink: 0; width: 20px; height: 20px; color: #1f9d55; margin-top: .15rem; }
.ps-item__fix strong { color: var(--ink); }

/* ===== ROODEPOORT — pricing / value ===== */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.85rem; box-shadow: var(--shadow-1); display: flex; flex-direction: column; }
.price-card--featured { border-color: var(--azure); box-shadow: 0 24px 50px -20px rgba(0,102,204,.35); position: relative; }
.price-card--featured::before { content: "Most popular"; position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%); background: var(--grad-aqua); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; white-space: nowrap; }
.price-card__name { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 .4rem; }
.price-card__price { font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.price-card__price span { font-size: .9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card__note { font-size: .82rem; color: var(--muted); margin: .4rem 0 1.25rem; }
.price-card ul { display: grid; gap: .65rem; margin: 0 0 1.5rem; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--ink-2); line-height: 1.5; }
.price-card li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--azure); margin-top: .15rem; }
.price-card .btn { margin-top: auto; }

/* ===== KRUGERSDORP — emergency / fast response ===== */
.emerg-hero { position: relative; background: linear-gradient(135deg, #2a0a0a 0%, #001a3d 55%, #002b5c 100%); color: var(--pearl); padding: calc(var(--nav-h) + clamp(3rem,6vw,4.5rem)) 0 clamp(3rem,6vw,4rem); overflow: hidden; isolation: isolate; }
.emerg-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 15% 20%, rgba(255,90,60,.22), transparent 55%); }
.emerg-flag { display: inline-flex; align-items: center; gap: .5rem; padding: .45rem 1rem; background: rgba(255,90,60,.18); border: 1px solid rgba(255,120,90,.4); border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: #ff9a7a; margin-bottom: 1.25rem; }
.emerg-flag span { width: 8px; height: 8px; border-radius: 50%; background: #ff5a3c; box-shadow: 0 0 12px #ff5a3c; animation: dotPulse 1.6s ease-in-out infinite; }
.emerg-hero h1 { font-size: clamp(2rem,4.6vw,3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 1rem; max-width: 20ch; }
.emerg-hero p { font-size: var(--fz-lg); font-weight: 300; color: rgba(255,255,255,.85); max-width: 42rem; margin: 0 0 1.75rem; }
.btn--emerg { background: linear-gradient(135deg, #ff6a4d, #ff3d3d); color: #fff; box-shadow: 0 14px 34px -10px rgba(255,80,60,.6); font-size: 1.05rem; padding: 1.15rem 2rem; }
.btn--emerg:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -10px rgba(255,80,60,.75); }
.resp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.resp { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow-1); }
.resp__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1rem; background: linear-gradient(135deg, #ff6a4d, #ff3d3d); color: #fff; }
.resp__icon svg { width: 26px; height: 26px; }
.resp h3 { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin: 0 0 .25rem; letter-spacing: -.01em; }
.resp p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.5; }
.emerg-cta { background: linear-gradient(135deg, #2a0a0a 0%, #001a3d 60%); color: var(--pearl); text-align: center; padding: clamp(3rem,6vw,4.5rem) 0; }
.emerg-cta h2 { font-size: clamp(1.7rem,3.2vw,2.4rem); font-weight: 800; margin: 0 0 .75rem; }
.emerg-cta p { color: rgba(255,255,255,.82); max-width: 40rem; margin: 0 auto 1.75rem; }

@media (max-width: 980px) {
  .lux-points { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .b2b-hero__grid { grid-template-columns: 1fr; }
  .b2b-stats__grid { grid-template-columns: repeat(2,1fr); gap: 1.25rem 1rem; }
  .trustee-list { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; }
  .case__media { min-height: 240px; }
  .ps-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .resp-grid { grid-template-columns: 1fr; max-width: 24rem; margin-inline: auto; }
}

/* ===== Johannesburg hub — suburb directory ===== */
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.dir-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-1); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out); }
.dir-card:hover { transform: translateY(-4px); border-color: var(--azure); box-shadow: 0 24px 48px -22px rgba(0,102,204,.35); }
.dir-card__region { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.dir-card__name { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: .35rem 0 .3rem; }
.dir-card__name svg { width: 1.1rem; height: 1.1rem; color: var(--azure); flex-shrink: 0; }
.dir-card p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.55; }
.dir-region-label { grid-column: 1 / -1; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--line); }

/* ===== Kempton Park — seasonal care ===== */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.season { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-1); overflow: hidden; }
.season::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.season--summer::before { background: linear-gradient(90deg, #ffb347, #ff7e5f); }
.season--autumn::before { background: linear-gradient(90deg, #c97d3f, #9c5a2f); }
.season--winter::before { background: linear-gradient(90deg, #4a90d9, #2c5f9e); }
.season--spring::before { background: linear-gradient(90deg, #43e97b, #38c172); }
.season__tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--ink-2); }
.season h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: .3rem 0 .6rem; }
.season p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ===== Coastal hero modifier (Cape Town pages) ===== */
.subhero--coast::after {
  background:
    linear-gradient(180deg, rgba(0,40,60,.7) 0%, rgba(0,40,60,.35) 40%, rgba(0,30,50,.9) 100%),
    linear-gradient(90deg, rgba(0,60,80,.55) 0%, rgba(0,60,80,0) 70%) !important;
}
.subhero--coast .lux-eyebrow, .subhero--coast .crumbs span[aria-current] { color: #7fe3e0; }

/* end of stylesheet */
