/* ============================================================
   ROCKTOWN EXTERIOR CLEANING SERVICES
   Premium Design System — v2
   Creative Direction: Product-grade marketing site
   ============================================================

   TABLE OF CONTENTS
   -----------------
   01  Reset & Base
   02  Design Tokens
   03  Typography
   04  Layout & Grid
   05  Navigation
   06  Buttons
   07  Hero
   08  Ticker / Marquee
   09  Before / After Slider
   10  Services — Row Style
   11  Stats / Numbers
   12  Process Steps
   13  Big Quote Section
   14  Testimonials
   15  Service Area
   16  Final CTA (Steel Blue)
   17  Estimate Form
   18  Footer
   19  Scroll Animations
   20  Mobile Sticky CTA
   21  Page: Services Overview
   22  Page: About
   23  Page: Contact
   24  Page: Service Detail
   25  Responsive

   ============================================================ */


/* ============================================================
   01  RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: var(--lead-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--color-steel-dark); border-radius: 10px; }

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
em { font-style: italic; }


/* ============================================================
   02  DESIGN TOKENS
   ============================================================ */

:root {
  /* Brand palette */
  --color-steel:       #BBCFE8;
  --color-steel-dark:  #9ab8d8;
  --color-steel-deep:  #7aa0c4;
  --color-black:       #000000;
  --color-navy:        #061D41;
  --color-navy-mid:    #0d2d5e;
  --color-light:       #F5F5F5;
  --color-slate:       #434F5D;
  --color-white:       #FFFFFF;
  --color-border:      rgba(6,29,65,0.08);
  --color-border-dark: rgba(255,255,255,0.10);

  /* Semantic ink tokens */
  --ink-1: var(--color-navy);
  --ink-2: var(--color-slate);
  --ink-3: #5B6775;
  --ink-4: #8791A0;
  --ink-inverse:   #FFFFFF;
  --ink-inverse-2: #C9D3E3;

  /* Semantic border tokens */
  --border:         rgba(6,29,65,0.08);
  --border-strong:  rgba(6,29,65,0.14);
  --border-inverse: rgba(255,255,255,0.12);

  /* Type */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type scale */
  --t-xs:   0.6875rem;  /* 11px */
  --t-sm:   0.8125rem;  /* 13px */
  --t-base: 1rem;       /* 16px */
  --t-md:   1.0625rem;  /* 17px */
  --t-lg:   1.125rem;   /* 18px */
  --t-xl:   1.25rem;    /* 20px */
  --t-2xl:  1.5rem;     /* 24px */
  --t-3xl:  2rem;       /* 32px */
  --t-4xl:  2.5rem;     /* 40px */
  --t-5xl:  3.25rem;    /* 52px */
  --t-6xl:  4rem;       /* 64px */
  --t-7xl:  5rem;       /* 80px */
  --t-8xl:  6.5rem;     /* 104px */

  /* Line height */
  --lead-tight:   1.1;
  --lead-snug:    1.25;
  --lead-normal:  1.5;
  --lead-relaxed: 1.7;

  /* Letter spacing */
  --ls-tight:  -0.02em;
  --ls-snug:   -0.01em;
  --ls-normal: 0em;
  --ls-wide:   0.08em;
  --ls-wider:  0.18em;

  /* Spacing (8pt grid) */
  --s-1:   0.25rem;
  --s-2:   0.5rem;
  --s-3:   0.75rem;
  --s-4:   1rem;
  --s-5:   1.25rem;
  --s-6:   1.5rem;
  --s-8:   2rem;
  --s-10:  2.5rem;
  --s-12:  3rem;
  --s-16:  4rem;
  --s-20:  5rem;
  --s-24:  6rem;
  --s-32:  8rem;
  --s-40:  10rem;

  /* Section padding */
  --sec-py:   7.5rem;   /* 120px */
  --sec-py-sm: 5rem;

  /* Layout */
  --max-w:   1200px;
  --gutter:  1.75rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows — navy-tinted */
  --sh-xs:  0 1px 2px rgba(6,29,65,0.06), 0 1px 1px rgba(6,29,65,0.04);
  --sh-sm:  0 2px 8px rgba(6,29,65,0.07), 0 1px 2px rgba(6,29,65,0.04);
  --sh-md:  0 4px 16px rgba(6,29,65,0.08), 0 1px 2px rgba(6,29,65,0.04);
  --sh-lg:  0 16px 40px rgba(6,29,65,0.12), 0 2px 6px rgba(6,29,65,0.06);
  --sh-xl:  0 32px 80px rgba(6,29,65,0.18);

  /* Easing */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-io:       cubic-bezier(0.4, 0, 0.2, 1);

  /* Motion durations */
  --dur-fast: 160ms;
  --dur-med:  280ms;
  --dur-slow: 500ms;

  /* Nav */
  --nav-h: 92px;
}


/* ============================================================
   03  TYPOGRAPHY
   ============================================================ */

/* Display — Montserrat bold */
.display {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lead-tight);
  letter-spacing: var(--ls-tight);
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-heading);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-slate);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background-color: currentColor;
  flex-shrink: 0;
}

.eyebrow--dark { color: var(--color-slate); }
.eyebrow--dark::before { background-color: var(--color-slate); }

/* Body / prose */
p {
  color: var(--color-slate);
  line-height: var(--lead-relaxed);
  max-width: 62ch;
}
p.wide  { max-width: 76ch; }
p.tight { max-width: 48ch; }
p.full  { max-width: none; }

/* Text reveal wrapper — for wipe-up animation */
.text-reveal {
  overflow: hidden;
  display: block;
}

.text-reveal__inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
}

.is-revealed .text-reveal__inner {
  animation: revealUp 0.85s var(--ease-out) forwards;
}


/* ============================================================
   04  LAYOUT & GRID
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
}

.section--sm {
  padding-top: var(--sec-py-sm);
  padding-bottom: var(--sec-py-sm);
}

/* Section bg variants */
.bg-navy  { background-color: var(--color-navy);  color: var(--color-white); }
.bg-black { background-color: var(--color-black); color: var(--color-white); }
.bg-light { background-color: var(--color-light); }
.bg-white { background-color: var(--color-white); }
.bg-steel { background-color: var(--color-steel); }

/* Section heading */
.sec-head {
  margin-bottom: var(--s-16);
}

.sec-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-4xl), 4.5vw, var(--t-6xl));
  font-weight: 700;
  letter-spacing: var(--ls-snug);
  line-height: var(--lead-tight);
  margin-top: var(--s-4);
  margin-bottom: var(--s-5);
}

.sec-head p {
  font-size: var(--t-lg);
}

.bg-navy  .sec-head h2,
.bg-black .sec-head h2 { color: var(--color-white); }
.bg-navy  .sec-head p,
.bg-black .sec-head p  { color: rgba(255,255,255,0.5); }

/* Divider line */
.divider {
  width: 36px;
  height: 2px;
  background-color: var(--color-steel);
  margin: var(--s-5) 0;
  flex-shrink: 0;
}

.divider--center { margin-left: auto; margin-right: auto; }

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


/* ============================================================
   05  NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

/* Transparent state (over dark hero) */
.nav--transparent {
  background-color: transparent;
}

/* Scrolled state — frosted per design system */
.nav--scrolled {
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  text-decoration: none;
  transition: opacity 200ms ease;
}

.nav__logo:hover { opacity: 0.8; }

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 250ms ease;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
  transition: color 250ms ease;
}

.nav--scrolled .nav__logo-name { color: var(--color-navy); }
.nav--scrolled .nav__logo-sub  { color: var(--color-slate); }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}

.nav__link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  transition: color 150ms ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background-color: var(--color-steel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease-out);
}

.nav__link:hover { color: var(--color-white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav--scrolled .nav__link { color: var(--color-slate); }
.nav--scrolled .nav__link:hover { color: var(--color-black); }
.nav--scrolled .nav__link::after { background-color: var(--color-navy); }

/* Right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.nav__tel {
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 150ms ease;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.nav__tel svg { width: 13px; height: 13px; }

.nav__tel:hover { color: var(--color-white); }

.nav--scrolled .nav__tel { color: var(--color-slate); }
.nav--scrolled .nav__tel:hover { color: var(--color-black); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms ease, width 250ms ease, background-color 250ms ease;
}

.nav__burger span:nth-child(1) { width: 24px; }
.nav__burger span:nth-child(2) { width: 16px; }
.nav__burger span:nth-child(3) { width: 24px; }

.nav--scrolled .nav__burger span { background-color: var(--color-black); }

.nav__burger.is-open span:nth-child(1) { width: 24px; transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { width: 24px; transform: translateY(-6.5px) rotate(-45deg); }

/* Full-screen mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 199;
  background-color: var(--color-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-12) var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease-out), visibility 400ms;
}

.nav__mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-16);
}

.nav__mobile-link {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: var(--ls-snug);
  line-height: 1;
  transition: color 150ms ease;
}

.nav__mobile-link:hover { color: var(--color-steel); }

.nav__mobile-link--cta {
  color: var(--color-steel);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
}

.nav__mobile-meta {
  font-size: var(--t-base);
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   06  BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.9375rem 2rem;
  border-radius: var(--r-full);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

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

/* Arrow icon */
.btn .btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 250ms var(--ease-out);
  flex-shrink: 0;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* Primary — navy */
.btn--primary {
  background-color: var(--color-navy);
  color: var(--color-white);
  border: 2px solid transparent;
}

.btn--primary:hover {
  background-color: var(--color-navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,29,65,0.30);
}

/* White / on-dark (for dark hero/cta sections) */
.btn--white {
  background-color: var(--color-white);
  color: var(--color-navy);
  border: 2px solid transparent;
}

.btn--white:hover {
  background-color: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* Outline on dark backgrounds */
.btn--outline-dark {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.28);
}

.btn--outline-dark:hover {
  border-color: rgba(255,255,255,0.55);
  background-color: rgba(255,255,255,0.06);
}

/* Ghost (dark bg) */
.btn--ghost-dark {
  background-color: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn--ghost-dark:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
  background-color: rgba(255,255,255,0.05);
}

/* Ghost (light bg) */
.btn--ghost {
  background-color: transparent;
  color: var(--color-navy);
  border: 1.5px solid rgba(6,29,65,0.2);
}

.btn--ghost:hover {
  border-color: var(--color-navy);
  background-color: rgba(6,29,65,0.04);
}

/* Navy (for steel bg CTA) */
.btn--navy {
  background-color: var(--color-navy);
  color: var(--color-white);
  border: 2px solid transparent;
}

.btn--navy:hover {
  background-color: var(--color-navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,29,65,0.3);
}

/* Large size */
.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--t-base);
  gap: var(--s-3);
}

.btn--lg .btn-arrow { width: 16px; height: 16px; }


/* ============================================================
   07  HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-navy);
  overflow: hidden;
}

/* Animated gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 70% -10%, rgba(187,207,232,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(13,45,94,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 70%, rgba(6,10,24,0.6) 0%, transparent 50%);
  pointer-events: none;
  animation: heroBreath 12s ease-in-out infinite alternate;
}

@keyframes heroBreath {
  from {
    opacity: 0.8;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* Optional: real photo background */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.12;
  z-index: 0;
}

/* Decorative large "R" */
.hero__deco {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(300px, 40vw, 560px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(187,207,232,0.06);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Main content */
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + var(--s-16));
  padding-bottom: var(--s-12);
}

.hero__label {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-steel);
}

.hero__label-text {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* The big headline */
.hero__headline {
  margin-top: var(--s-6);
  margin-bottom: var(--s-8);
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__line-inner {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: var(--lead-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-white);
  transform: translateY(110%);
  opacity: 0;
}

.hero__line-inner.serif {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--color-steel);
  letter-spacing: -0.02em;
}

.hero__line:nth-child(1) .hero__line-inner { animation: revealUp 0.9s var(--ease-out) 0.3s forwards; }
.hero__line:nth-child(2) .hero__line-inner { animation: revealUp 0.9s var(--ease-out) 0.45s forwards; }
.hero__line:nth-child(3) .hero__line-inner { animation: revealUp 0.9s var(--ease-out) 0.6s forwards; }

@keyframes revealUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero__sub {
  font-size: clamp(var(--t-base), 2vw, var(--t-xl));
  color: rgba(255,255,255,0.55);
  line-height: var(--lead-relaxed);
  max-width: 52ch;
  margin-bottom: var(--s-10);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.75s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

/* Badges row */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-10);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.05s forwards;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.375rem var(--s-3);
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

.hero__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-steel);
  flex-shrink: 0;
}

/* Stats bar at bottom of hero */
.hero__stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  padding: var(--s-8) 0;
  gap: var(--s-12);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__stat-n {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}

.hero__stat-l {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Scroll nudge */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  padding-bottom: var(--s-6);
  align-self: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero__scroll-icon {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.5);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(8px); opacity: 0; }
}

.hero__scroll-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}


/* ============================================================
   08  TRUST BAR
   ============================================================ */

.trust-bar {
  background-color: var(--color-navy);
  border-top: 1px solid rgba(187, 207, 232, 0.12);
  border-bottom: 1px solid rgba(187, 207, 232, 0.12);
  padding: var(--s-6) var(--gutter);
}

.trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  max-width: var(--max-w);
  margin: 0 auto;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: var(--s-3) var(--s-8);
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 15px;
  height: 15px;
  color: var(--color-steel);
  flex-shrink: 0;
}

.trust-bar__label {
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}

.trust-bar__div {
  width: 1px;
  height: 1.125rem;
  background-color: rgba(187, 207, 232, 0.18);
  flex-shrink: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .trust-bar { padding: var(--s-5) var(--gutter); }

  .trust-bar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    justify-items: center;
  }

  .trust-bar__div { display: none; }

  .trust-bar__item {
    padding: var(--s-3) var(--s-4);
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .trust-bar__list { grid-template-columns: 1fr; }
  .trust-bar__item { justify-content: flex-start; }
}


/* ============================================================
   09  BEFORE / AFTER SLIDER
   ============================================================ */

/* Asymmetric layout: 1 large left + 2 stacked right */
.ba-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-5);
}

.ba-grid .ba-item:first-child {
  grid-row: 1 / 3;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  background-color: var(--color-light);
  box-shadow: var(--sh-lg);
}

.ba-slider--large { aspect-ratio: 3/4; }
.ba-slider--small { aspect-ratio: 4/3; }

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}

.ba-after img, .ba-before img,
.ba-after .ba-ph,  .ba-before .ba-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-ph { width: 100%; height: 100%; }

/* Placeholder gradients (replace with real photos) */
.ba-ph--dirty-driveway {
  background: linear-gradient(160deg, #3a3530 0%, #272320 35%, #4a4340 60%, #2d2820 100%);
}
.ba-ph--clean-driveway {
  background: linear-gradient(160deg, #dce8f4 0%, #c8d8e8 40%, #d4e2f0 70%, #c0d0e0 100%);
}
.ba-ph--dirty-house {
  background: linear-gradient(160deg, #5a5248 0%, #4a4238 30%, #6b5d4a 60%, #3e3830 100%);
}
.ba-ph--clean-house {
  background: linear-gradient(160deg, #eaf2fa 0%, #dceaf6 35%, #e4eef8 65%, #d4e4f2 100%);
}
.ba-ph--dirty-roof {
  background: linear-gradient(160deg, #2e2a22 0%, #3d3830 30%, #4a4438 60%, #282420 100%);
}
.ba-ph--clean-roof {
  background: linear-gradient(160deg, #ccd8e8 0%, #bccede 35%, #c4d4e4 65%, #b4c8d8 100%);
}

/* The "before" overlay */
.ba-before {
  clip-path: inset(0 50% 0 0);
}

/* Labels */
.ba-label {
  position: absolute;
  top: var(--s-4);
  z-index: 5;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ba-label--before {
  left: var(--s-4);
  background-color: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
}

.ba-label--after {
  right: var(--s-4);
  background-color: rgba(255,255,255,0.9);
  color: var(--color-navy);
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  pointer-events: none;
}

.ba-handle__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.85), transparent);
}

.ba-handle__btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background-color: var(--color-white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 150ms ease, box-shadow 150ms ease;
  pointer-events: auto;
}

.ba-slider:active .ba-handle__btn {
  transform: scale(1.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.ba-handle__btn svg {
  width: 18px;
  height: 18px;
  color: var(--color-navy);
}

/* Caption below slider */
.ba-cap {
  margin-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ba-cap__name {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: var(--ls-snug);
}

.ba-cap__desc {
  font-size: var(--t-sm);
  color: var(--color-slate);
  max-width: none;
}


/* ============================================================
   10  SERVICES — ROW STYLE
   ============================================================ */

.svc-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: end;
  margin-bottom: var(--s-12);
}

.svc-list {
  border-bottom: 1px solid var(--color-border);
}

.svc-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: var(--s-6);
  padding: var(--s-6) var(--s-6);
  border-top: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 350ms ease;
}

/* Fill wipe — the premium hover */
.svc-row__fill {
  position: absolute;
  inset: 0;
  background-color: var(--color-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease-out);
  z-index: 0;
}

.svc-row:hover .svc-row__fill {
  transform: scaleX(1);
}

.svc-row__num {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  color: var(--color-slate);
  position: relative;
  z-index: 1;
  transition: color 350ms ease;
}

.svc-row:hover .svc-row__num { color: rgba(255,255,255,0.4); }

.svc-row__text {
  position: relative;
  z-index: 1;
}

.svc-row__name {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-xl), 2.5vw, var(--t-3xl));
  font-weight: 700;
  letter-spacing: var(--ls-snug);
  color: var(--color-navy);
  line-height: 1.1;
  transition: color 350ms ease;
}

.svc-row:hover .svc-row__name { color: var(--color-white); }

.svc-row__desc {
  font-size: var(--t-sm);
  color: var(--color-slate);
  margin-top: 4px;
  max-width: 55ch;
  line-height: var(--lead-normal);
  max-width: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 350ms ease 100ms, transform 350ms ease 100ms, color 350ms ease;
}

.svc-row:hover .svc-row__desc {
  opacity: 1;
  transform: translateY(0);
  color: rgba(255,255,255,0.55);
}

.svc-row__arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--color-slate);
  transition: color 350ms ease, transform 350ms ease;
}

.svc-row:hover .svc-row__arrow {
  color: var(--color-steel);
  transform: translateX(6px);
}

.svc-row__arrow svg {
  width: 18px;
  height: 18px;
}


/* ============================================================
   11  STATS / NUMBERS
   ============================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--s-10) var(--s-8);
  background-color: var(--color-navy);
  gap: var(--s-3);
  transition: background-color 250ms ease;
}

.stat-block:hover {
  background-color: var(--color-navy-mid);
}

.stat-block__n {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}

.stat-block__accent {
  color: var(--color-steel);
}

.stat-block__label {
  font-size: var(--t-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  line-height: 1.3;
}

.stat-block__sub {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.25);
  margin-top: var(--s-1);
  max-width: none;
}


/* ============================================================
   12  PROCESS STEPS
   ============================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  position: relative;
}


.step {
  display: flex;
  flex-direction: column;
  padding: var(--s-8);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  transition: box-shadow 300ms ease, transform 300ms var(--ease-out);
  position: relative;
}

.step:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-base);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__num-inner {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.step__tag {
  font-family: var(--font-heading);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: var(--s-2);
}

.step__title {
  font-family: var(--font-heading);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: var(--ls-snug);
  margin-bottom: var(--s-3);
  line-height: var(--lead-snug);
}

.step__body {
  font-size: var(--t-sm);
  color: var(--color-slate);
  line-height: var(--lead-relaxed);
  max-width: none;
}


/* ============================================================
   13  BIG QUOTE SECTION
   ============================================================ */

.quote-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-navy);
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(187,207,232,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(13,45,94,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.quote-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(var(--s-20), 12vw, var(--s-40)) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-8);
}

.quote-section__mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(187,207,232,0.12);
  user-select: none;
  margin-bottom: var(--s-4);
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.25;
  max-width: 18ch;
  letter-spacing: -0.01em;
}

.quote-section__text em {
  font-style: italic;
  color: var(--color-steel);
}

.quote-section__sub {
  font-size: clamp(var(--t-base), 2vw, var(--t-lg));
  color: rgba(255,255,255,0.4);
  max-width: 48ch;
  line-height: var(--lead-relaxed);
  text-align: center;
}


/* ============================================================
   14  GOOGLE REVIEWS
   ============================================================ */

.reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-10);
  justify-content: center;
  flex-wrap: wrap;
}

.reviews-summary__score {
  font-family: var(--font-display);
  font-size: var(--t-5xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.reviews-summary__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-summary__stars {
  display: flex;
  gap: 2px;
}

.reviews-summary__stars .review-star svg {
  width: 18px;
  height: 18px;
}

.reviews-summary__count {
  font-size: var(--t-sm);
  color: var(--color-slate);
}

.reviews-summary__count a {
  color: var(--color-steel);
  text-decoration: none;
  font-weight: 600;
}

.reviews-summary__count a:hover {
  text-decoration: underline;
}

/* Review carousel */
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
}

.reviews-track {
  display: flex;
  gap: var(--s-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  min-width: 0;
  outline: none;
  padding-bottom: 2px; /* prevents clipped box-shadows */
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  /* carousel sizing — show 3 on desktop */
  flex: 0 0 calc((100% - 2 * var(--s-6)) / 3);
  scroll-snap-align: start;
}

.reviews-carousel__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.reviews-carousel__btn svg { width: 18px; height: 18px; }
.reviews-carousel__btn:hover:not(:disabled) {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}
.reviews-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-width: 0;
}

.review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.review-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar__initial {
  font-size: var(--t-base);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-card__name {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__name:hover {
  text-decoration: underline;
}

.review-card__date {
  font-size: var(--t-xs);
  color: var(--color-slate);
}

.review-card__google-g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-star svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-star--filled {
  color: #F59E0B;
}

.review-star--empty {
  color: var(--color-border);
}

.review-card__text {
  font-size: var(--t-sm);
  color: var(--color-black);
  line-height: var(--lead-relaxed);
  font-style: italic;
  flex: 1;
}

.reviews-cta {
  text-align: center;
}


/* ============================================================
   15  SERVICE AREA
   ============================================================ */

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20);
  align-items: center;
}

.area-content .sec-head {
  margin-bottom: var(--s-10);
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.area-city {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.5rem var(--s-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
  cursor: default;
}

.area-city:hover {
  border-color: var(--color-steel);
  color: var(--color-white);
  background-color: rgba(187,207,232,0.07);
}

.area-city__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-steel);
  opacity: 0.6;
  flex-shrink: 0;
}

.area-map {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.area-cta {
  margin-top: var(--s-10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}

.area-note {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.3);
  max-width: none;
}


/* ============================================================
   16  FINAL CTA — STEEL BLUE
   ============================================================ */

.cta-band {
  background-color: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(6,29,65,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s-16);
  padding: var(--s-20) 0;
}

.cta-band__text .eyebrow { color: var(--ink-inverse-2, #C9D3E3); }
.cta-band__text .eyebrow::before { background-color: rgba(201,211,227,0.5); }

.cta-band__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-3xl), 4.5vw, var(--t-6xl));
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: var(--lead-tight);
  margin-top: var(--s-4);
}

.cta-band__text p {
  font-size: var(--t-lg);
  color: #C9D3E3;
  margin-top: var(--s-4);
  max-width: 48ch;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
  flex-shrink: 0;
}

.cta-band__tel {
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: var(--ls-snug);
  line-height: 1;
}

.cta-band__tel-label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: #C9D3E3;
  margin-bottom: 4px;
}

.cta-band__note {
  font-size: var(--t-xs);
  color: rgba(201,211,227,0.55);
  max-width: none;
}


/* ============================================================
   17  ESTIMATE FORM
   ============================================================ */

.form-wrap {
  background-color: var(--color-white);
  border-radius: var(--r-xl);
  padding: var(--s-12);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--color-border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.form-grid .fg--full { grid-column: 1 / -1; }

.fg {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.fg label {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 0.01em;
}

.fg input,
.fg select,
.fg textarea {
  padding: 0.875rem 1.125rem;
  background-color: var(--color-light);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-size: var(--t-base);
  color: var(--color-black);
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(67,79,93,0.45);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--color-steel-dark);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(187,207,232,0.2);
  outline: none;
}

.fg textarea { min-height: 110px; resize: vertical; }

.fg select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23434F5D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.75rem;
}

/* Service checkboxes */
.svc-checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--s-2);
}

.svc-check {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease;
  user-select: none;
}

.svc-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-navy);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.svc-check:has(input:checked) {
  border-color: var(--color-steel-dark);
  background-color: rgba(187,207,232,0.08);
}

.svc-check span {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--color-black);
}

.form-submit-row {
  margin-top: var(--s-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
}

.form-note {
  font-size: var(--t-xs);
  color: rgba(67,79,93,0.55);
  max-width: none;
}

.form-note a { color: var(--color-navy); text-decoration: underline; text-underline-offset: 2px; }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s-16);
  gap: var(--s-5);
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-full);
  background-color: rgba(187,207,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success__icon svg { width: 28px; height: 28px; color: var(--color-steel-deep); }
.form-success h3 { font-size: var(--t-2xl); color: var(--color-black); }
.form-success p { font-size: var(--t-base); color: var(--color-slate); max-width: 38ch; }


/* ============================================================
   18  FOOTER
   ============================================================ */

.footer {
  background-color: #041532;
  color: rgba(201,211,227,0.7);
  padding: var(--s-20) 0 var(--s-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: var(--s-8);
}

.footer__brand-name {
  font-size: var(--t-base);
  font-weight: 900;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-white);
}

.footer__brand-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 3px;
}

.footer__brand p {
  font-size: var(--t-sm);
  color: #8FA1BF;
  margin-top: var(--s-5);
  max-width: 28ch;
  line-height: var(--lead-relaxed);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.35);
  transition: color 150ms ease;
}

.footer__contact-link:hover { color: rgba(255,255,255,0.7); }

.footer__contact-link svg { width: 14px; height: 14px; color: var(--color-steel); opacity: 0.6; flex-shrink: 0; }

.footer__social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--color-steel);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--color-brand);
  color: #fff;
  transform: translateY(-2px);
}

.footer__social-link svg { width: 17px; height: 17px; flex-shrink: 0; }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--s-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__link {
  font-size: var(--t-sm);
  color: #C9D3E3;
  transition: color 150ms ease;
}

.footer__link:hover { color: rgba(255,255,255,1); opacity: 1; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.footer__copy {
  font-size: var(--t-xs);
  color: #8FA1BF;
  max-width: none;
}

.footer__bottom-links {
  display: flex;
  gap: var(--s-5);
}

.footer__bottom-link {
  font-size: var(--t-xs);
  color: #8FA1BF;
  transition: color 150ms ease;
}

.footer__bottom-link:hover { color: rgba(255,255,255,0.9); }


/* ============================================================
   19  SCROLL ANIMATIONS
   ============================================================ */

/* Generic fade/slide up */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.d-1 { transition-delay: 0.08s; }
.d-2 { transition-delay: 0.16s; }
.d-3 { transition-delay: 0.24s; }
.d-4 { transition-delay: 0.32s; }
.d-5 { transition-delay: 0.40s; }
.d-6 { transition-delay: 0.50s; }

/* Fade only (no translate) */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.in-view { opacity: 1; }

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Clip-path reveal (for images) */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s var(--ease-out);
}

.reveal-clip.in-view {
  clip-path: inset(0 0% 0 0);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ============================================================
   20  MOBILE STICKY CTA
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  padding: var(--s-4) var(--gutter);
  background-color: rgba(6,29,65,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  transform: translateY(110%);
  transition: transform 400ms var(--ease-out);
}

.sticky-cta.show { transform: translateY(0); }

.sticky-cta__info { flex: 1; }

.sticky-cta__label {
  display: block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}

.sticky-cta__tel {
  font-size: var(--t-base);
  font-weight: 800;
  color: var(--color-white);
}

.sticky-cta .btn {
  flex-shrink: 0;
  font-size: var(--t-sm);
  padding: 0.75rem 1.25rem;
}

@media (min-width: 769px) { .sticky-cta { display: none; } }


/* ============================================================
   21  PAGE: SERVICES OVERVIEW
   ============================================================ */

.svcs-hero {
  background-color: var(--color-navy);
  padding: calc(var(--nav-h) + var(--s-20)) 0 var(--s-24);
  position: relative;
  overflow: hidden;
}

.svcs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(187,207,232,0.07) 0%, transparent 70%);
}

.svcs-hero__content {
  position: relative;
  z-index: 1;
}

.svcs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-5xl), 7vw, var(--t-8xl));
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: var(--lead-tight);
  margin-top: var(--s-5);
  margin-bottom: var(--s-6);
  max-width: 12ch;
}

.svcs-hero p {
  font-size: var(--t-xl);
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
}

/* Alternating service detail rows */
.svc-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20);
  align-items: center;
  padding-bottom: var(--s-20);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--s-20);
}

.svc-detail-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.svc-detail-row--flip .svc-detail-visual { order: -1; }

.svc-detail-text .eyebrow { margin-bottom: var(--s-4); }

.svc-detail-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-3xl), 3.5vw, var(--t-5xl));
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lead-snug);
  margin-bottom: var(--s-5);
}

.svc-detail-text p { font-size: var(--t-md); margin-bottom: var(--s-5); }

.svc-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.svc-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-detail-visual__ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s-3);
  background: linear-gradient(145deg, var(--color-light) 0%, #d8e8f4 100%);
}

.svc-detail-visual__ph svg { width: 44px; height: 44px; color: var(--color-steel-dark); }
.svc-detail-visual__ph p { font-size: var(--t-sm); color: var(--color-slate); font-style: italic; max-width: none; text-align: center; }


/* ============================================================
   22  PAGE: ABOUT
   ============================================================ */

.about-hero {
  background-color: var(--color-navy);
  padding: calc(var(--nav-h) + var(--s-20)) 0 var(--s-24);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 40%, rgba(187,207,232,0.06) 0%, transparent 60%);
}

.about-hero__content { position: relative; z-index: 1; }

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-4xl), 5.5vw, var(--t-7xl));
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: var(--lead-tight);
  margin-top: var(--s-5);
  margin-bottom: var(--s-6);
  max-width: 14ch;
}

.about-hero p {
  font-size: var(--t-xl);
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20);
  align-items: center;
}

.about-split__visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-light) 0%, #d4e8f4 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s-3);
}

.about-split__visual svg { width: 52px; height: 52px; color: var(--color-steel-dark); }
.about-split__visual p { font-size: var(--t-sm); color: var(--color-slate); font-style: italic; max-width: none; text-align: center; padding: 0 2rem; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-5);
}

.aval {
  padding: var(--s-8);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xs);
  transition: box-shadow 300ms ease, transform 300ms var(--ease-out);
}

.aval:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.aval__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background-color: rgba(187,207,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
}

.aval__icon svg { width: 18px; height: 18px; color: var(--color-navy); }

.aval h3 {
  font-family: var(--font-heading);
  font-size: var(--t-base);
  font-weight: 700;
  margin-bottom: var(--s-3);
  letter-spacing: var(--ls-snug);
}

.aval p { font-size: var(--t-sm); max-width: none; }

/* About stats strip */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.about-stat {
  padding: var(--s-10) var(--s-8);
  background-color: var(--color-navy);
  text-align: center;
}

.about-stat__n {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: 1;
}

.about-stat__n span { color: var(--color-steel); }

.about-stat__l {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: var(--s-2);
}


/* ============================================================
   23  PAGE: CONTACT
   ============================================================ */

.contact-page-wrap {
  min-height: 100svh;
  min-height: 100vh;
  background-color: var(--color-navy);
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-24);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s-16);
  align-items: start;
}

.contact-aside {
  padding-top: var(--s-4);
  position: sticky;
  top: calc(var(--nav-h) + var(--s-8));
}

.contact-aside h1 {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-4xl), 4.5vw, var(--t-6xl));
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: var(--lead-tight);
  margin-top: var(--s-4);
  margin-bottom: var(--s-6);
}

.contact-aside > p {
  font-size: var(--t-lg);
  color: rgba(255,255,255,0.45);
  max-width: 38ch;
  margin-bottom: var(--s-12);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.cdetail {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}

.cdetail__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background-color: rgba(187,207,232,0.08);
  border: 1px solid rgba(187,207,232,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cdetail__icon svg { width: 18px; height: 18px; color: var(--color-steel); }

.cdetail__label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 5px;
}

.cdetail__value {
  font-size: var(--t-base);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: var(--lead-normal);
}

.cdetail__value a { transition: color 150ms ease; }
.cdetail__value a:hover { color: var(--color-steel); }


/* ============================================================
   24  PAGE: SERVICE DETAIL
   ============================================================ */

.svc-hero {
  background-color: var(--color-navy);
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-20);
  position: relative;
  overflow: hidden;
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 75% 50%, rgba(187,207,232,0.06) 0%, transparent 70%);
}

.svc-hero__content { position: relative; z-index: 1; max-width: 680px; }

.svc-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(var(--t-4xl), 5.5vw, var(--t-7xl));
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: var(--ls-tight);
  line-height: var(--lead-tight);
  margin-top: var(--s-4);
  margin-bottom: var(--s-5);
}

.svc-hero p {
  font-size: var(--t-xl);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-8);
}

/* Feature grid */
.svc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--s-4);
}

.svc-feat {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-6);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  transition: box-shadow 250ms ease, transform 250ms var(--ease-out), border-color 250ms ease;
}

.svc-feat:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
  border-color: rgba(187,207,232,0.35);
}

.svc-feat__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background-color: rgba(187,207,232,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-feat__icon svg { width: 16px; height: 16px; color: var(--color-navy); }

.svc-feat__title {
  font-size: var(--t-sm);
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.svc-feat__body {
  font-size: var(--t-sm);
  color: var(--color-slate);
  line-height: var(--lead-relaxed);
  max-width: none;
}

/* Cross-sell row */
.xsell-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.xsell-link {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.625rem var(--s-5);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-full);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.xsell-link svg { width: 14px; height: 14px; color: var(--color-steel-deep); transition: transform 180ms ease; }

.xsell-link:hover {
  border-color: var(--color-steel);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}

.xsell-link:hover svg { transform: translateX(3px); }


/* ============================================================
   25  RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --sec-py: 5.5rem;
    --gutter: 1.5rem;
  }

  .hero__deco { display: none !important; }

  .ba-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .ba-grid .ba-item:first-child { grid-row: auto; }
  .ba-slider--large { aspect-ratio: 4/3; }

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

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }

  /* Reviews — show 2 cards on tablet */
  .review-card { flex: 0 0 calc((100% - var(--s-6)) / 2); }
  .reviews-carousel__btn { display: none; }

  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .cta-band__actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-6);
  }
}

@media (max-width: 768px) {
  :root {
    --sec-py: 4rem;
    --sec-py-sm: 3rem;
    --gutter: 1.25rem;
    --nav-h: 72px;
  }

  /* Nav */
  .nav__links, .nav__right { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__deco { display: none !important; }
  .hero__stats-inner { gap: var(--s-6); flex-wrap: wrap; }
  .hero__scroll { display: none; }

  /* BA grid → single column */
  .ba-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  /* Service rows */
  .svc-row {
    grid-template-columns: 36px 1fr auto;
    gap: var(--s-3);
  }

  .svc-row__name { font-size: var(--t-xl); }
  .svc-row__desc { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { padding: var(--s-8) var(--s-6); }

  /* Process */
  .process { grid-template-columns: 1fr; }
  .process::after { display: none; }

  /* Services section intro */
  .svc-section-head {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  /* Layout splits */
  .area-layout,
  .about-split,
  .svc-detail-row {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .svc-detail-row--flip .svc-detail-visual { order: 0; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }

  /* CTA band */
  .cta-band__inner {
    grid-template-columns: 1fr;
    padding: var(--s-16) 0;
  }

  .cta-band__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Reviews — show 1 card on mobile, peek at next */
  .review-card { flex: 0 0 calc(100% - 2rem); }
  .reviews-carousel { gap: 0; }
  .reviews-track { gap: var(--s-4); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* About stats */
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Form */
  .form-wrap { padding: var(--s-8) var(--s-5); }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .fg--full { grid-column: 1; }
  .svc-checks { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__badges { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .quote-section__text { font-size: 2rem; }
}


/* ============================================================
   26  LOGO IMAGES
   ============================================================ */

.nav__logo-img {
  height: 82px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: var(--s-5);
}

@media (max-width: 768px) {
  .nav__logo-img { height: 52px; }
}


/* ============================================================
   27  ACCESSIBILITY — WCAG 2.2 AA
   ============================================================ */

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: var(--t-sm);
  font-weight: 700;
  border-radius: 0 0 var(--r-md) var(--r-md);
  text-decoration: none;
  transition: top 200ms ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-steel);
  outline-offset: 2px;
}

/* Global visible focus states — WCAG 2.2 AA §2.4.11 */
:focus-visible {
  outline: 3px solid var(--color-steel-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Buttons and links override */
.btn:focus-visible {
  outline: 3px solid var(--color-navy);
  outline-offset: 3px;
}

.nav--transparent .btn:focus-visible,
.bg-navy .btn:focus-visible,
.quote-section .btn:focus-visible,
.cta-band .btn:focus-visible {
  outline-color: var(--color-steel);
}

.nav__link:focus-visible,
.nav__tel:focus-visible {
  outline: 2px solid var(--color-steel-deep);
  outline-offset: 4px;
  border-radius: 3px;
}

.nav--transparent .nav__link:focus-visible,
.nav--transparent .nav__tel:focus-visible {
  outline-color: var(--color-steel);
}

.nav__mobile-link:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 6px;
  border-radius: 3px;
}

.nav__burger:focus-visible {
  outline: 2px solid var(--color-steel-deep);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.nav--transparent .nav__burger:focus-visible { outline-color: var(--color-steel); }

.footer__link:focus-visible,
.footer__contact-link:focus-visible,
.footer__bottom-link:focus-visible {
  outline: 2px solid var(--color-steel);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Form focus states */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 0;
  border-color: var(--color-navy) !important;
  box-shadow: 0 0 0 4px rgba(6, 29, 65, 0.08);
}

/* Error state */
.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: #dc2626 !important;
}

.form-group__error-msg {
  display: none;
  font-size: var(--t-xs);
  color: #dc2626;
  margin-top: 0.375rem;
}

.form-group--error .form-group__error-msg { display: block; }

/* BA slider handle focus */
.ba-handle:focus-visible {
  outline: 3px solid var(--color-steel);
  outline-offset: 4px;
  border-radius: 50%;
}

/* Svc row focus */
.svc-row:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Xsell link focus */
.xsell-link:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 3px;
}

/* prefers-reduced-motion — WCAG 2.3 / 1.4.3 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-scale,
  .fade-in,
  .reveal-clip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .hero__scroll { display: none; }
}
