/* =========================================================================
   Soaked & Co. — Stylesheet
   Organized: tokens → reset → typography → layout → components → utilities → animations
   ========================================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand palette */
  --blue-50:  #e6f9ff;
  --blue-100: #ccf3ff;
  --blue-200: #99e7ff;
  --blue-300: #66dbff;
  --blue-400: #33cfff;
  --blue-500: #00c3ff;
  --blue-600: #00a8e8;
  --blue-700: #008acc;
  --blue-800: #006bb0;
  --blue-900: #004d80;

  /* Greys */
  --white: #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #000000;

  /* Accent (pink) */
  --pink-50:  #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-400: #f472b6;
  --pink-600: #db2777;

  /* Status */
  --yellow-400: #facc15;
  --red-600:    #dc2626;
  --cyan-50:    #ecfeff;

  /* Spacing / shape */
  --radius-sm: 0.375rem;
  --radius:    0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.875rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px 0 rgba(0,0,0,.05);
  --shadow:     0 1px 3px 0 rgba(0,0,0,.10), 0 1px 2px -1px rgba(0,0,0,.10);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.10);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);

  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Layout */
  --container: 1280px;
  --container-md: 896px;
  --container-sm: 768px;

  --nav-height: 116px;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p { margin: 0; }
img, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-md { max-width: var(--container-md); margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 8rem 0; }
.section-sm { padding: 5rem 0; }
.section-lg { padding: 10rem 0; }

/* ---------- 4. Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow .25s var(--ease-out), background .25s var(--ease-out);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0,0,0,.10);
}

.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.nav-tagline {
  display: flex;
  justify-content: flex-end;
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
  transition: opacity .25s var(--ease-out), max-height .25s var(--ease-out), padding .25s var(--ease-out);
}
.nav-tagline span { color: var(--blue-600); font-weight: 700; font-size: 1rem; }
.nav.scrolled .nav-tagline { opacity: 0; max-height: 0; padding: 0; border-bottom: 0; }

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  transition: padding .25s var(--ease-out);
}
.nav.scrolled .nav-main { padding: .5rem 0; }

.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 100px; width: auto; transition: height .25s var(--ease-out), transform .2s var(--ease-out); }
.nav.scrolled .nav-logo img { height: 80px; }
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-900);
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--blue-600); }

/* Dropdown trigger button */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-weight: 600;
  font-size: 1rem;      /* EDIT #5: match other nav links */
  color: var(--gray-900);
  transition: color .2s;
}
.nav-dropdown-trigger:hover, .nav-dropdown:hover .nav-dropdown-trigger { color: var(--blue-600); }
.nav-dropdown-trigger svg { width: 1rem; height: 1rem; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: .5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
}
.nav-dropdown-menu a {
  display: block;
  padding: .5rem 1rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--pink-50); color: var(--pink-600); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border: 2px solid var(--gray-900);
  border-radius: var(--radius-full);
  color: var(--gray-900);
  font-weight: 600;
  transition: background .2s, color .2s, transform .15s;
}
.nav-phone:hover { background: var(--gray-900); color: var(--white); }
.nav-phone svg { width: 1rem; height: 1rem; }

/* Mobile menu toggle */
.nav-toggle { display: none; }

@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    color: var(--gray-900);
  }
  .nav-toggle svg { width: 28px; height: 28px; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link, .nav-dropdown-trigger { padding: .75rem 0; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-top: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s var(--ease-out);
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 600px; }
  .nav-dropdown-inner { border: 0; box-shadow: none; padding: 0 0 .5rem 1rem; }
  .nav-phone { margin-top: 1rem; align-self: flex-start; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform .15s, background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--blue-600); color: var(--white); box-shadow: var(--shadow-lg); }
.btn-primary:hover { background: var(--blue-700); }

.btn-secondary { background: var(--white); color: var(--blue-600); box-shadow: var(--shadow-lg); }
.btn-secondary:hover { background: var(--gray-50); }

.btn-dark { background: var(--gray-900); color: var(--white); }
.btn-dark:hover { background: var(--gray-800); }

.btn-outline { border: 2px solid var(--gray-900); color: var(--gray-900); }
.btn-outline:hover { background: var(--gray-900); color: var(--white); }

.btn-outline-blue { border: 2px solid var(--blue-600); color: var(--blue-600); }
.btn-outline-blue:hover { background: var(--blue-50); }

.btn-outline-white { border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--gray-900); }

.btn-ghost-white { background: rgba(255,255,255,.10); color: var(--white); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.20); }
.btn-ghost-white:hover { background: rgba(255,255,255,.20); }

.btn-rounded { border-radius: var(--radius-full); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.25rem; }

/* ---------- 6. Typography ---------- */
.heading-display { font-size: clamp(2.5rem, 7vw, 6rem);  font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.heading-xl      { font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1;  letter-spacing: -.015em; }
.heading-lg      { font-size: clamp(2rem, 5vw, 3.75rem);  font-weight: 800; line-height: 1.15; letter-spacing: -.01em; }
.heading-md      { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.2; }
.heading-sm      { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 700; line-height: 1.25; }
.heading-xs      { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }

.text-2xl        { font-size: 1.5rem; line-height: 1.5; }
.text-xl         { font-size: 1.25rem; line-height: 1.6; }
.text-lg         { font-size: 1.125rem; line-height: 1.6; }
.text-base       { font-size: 1rem; line-height: 1.6; }
.text-sm         { font-size: .875rem; line-height: 1.5; }

.eyebrow {
  display: inline-block;
  color: var(--blue-600);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ---------- 7. Card / surface components ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }

.card-gray { background: var(--gray-50); border-radius: var(--radius-2xl); padding: 2rem; }

.benefit-card {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
/* EDIT #30: lift + scale + soften shadow on hover. No background color change. */
.benefit-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-2xl);
}
/* (Color-swap rules intentionally removed.) */

/* EDIT #29: icon-wrap is now a transparent container so the illustrated SVG scene fills it */
.benefit-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  border-radius: var(--radius-2xl);
  background: transparent;
  flex-shrink: 0;
}
.benefit-icon-wrap svg { width: 88px; height: 88px; }
.benefit-icon-wrap.legacy {        /* keep the old solid-blue circle available if needed elsewhere */
  background: var(--blue-600);
  border-radius: var(--radius-full);
  width: 64px; height: 64px;
}
.benefit-icon-wrap.legacy svg { width: 32px; height: 32px; color: var(--white); }

/* Service tile (image with caption overlay) */
.service-tile {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 24rem;
  width: 20rem;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color .3s;
  cursor: pointer;
  display: block;
  color: inherit;
}
.service-tile:hover { border-color: var(--blue-600); }
.service-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-tile:hover img { transform: scale(1.10); }
.service-tile-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.30) 50%, transparent 100%);
  color: var(--white);
}
.service-tile-caption h3 { font-size: 1.875rem; font-weight: 800; margin-bottom: .75rem; }
.service-tile-caption p  { font-size: 1.125rem; font-weight: 600; color: var(--gray-200); }

/* List with checks */
.check-list { display: grid; gap: 1rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
}
.check-list li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-top: 2px;
  background: var(--blue-600);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain 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='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}

/* ---------- 8. Hero sections ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* EDIT #87: With border-box, this padding keeps the (centered) content inside
     the area below the nav so the toggle + H1 don't sit pressed up against
     (or behind) the sticky nav on shorter laptop viewports. */
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 2rem;
}
.hero-bg, .hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.70), rgba(0,0,0,.50), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  color: var(--white);
}
.hero-content .heading-display { color: var(--white); margin-bottom: 2rem; }
.hero-content > p { font-size: 1.5rem; color: var(--gray-200); margin-bottom: 3rem; max-width: 36rem; }

.hero-sub { /* used by service detail pages — sticky background hero */
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
.hero-sub .hero-content { max-width: 48rem; }
.hero-sub .heading-xl { color: var(--white); margin-bottom: 1.5rem; }
.hero-sub .hero-content > p { margin-bottom: 2rem; }

.hero-sub.sticky-bg { position: sticky; top: var(--nav-height); }

/* Page header (slim) */
.page-header {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
  text-align: center;
}
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.page-header p  { font-size: 1.5rem; color: var(--gray-600); font-weight: 600; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-indicator-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.50);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: .5rem;
  animation: scroll-bob 1.5s ease-in-out infinite;
}
.scroll-indicator-mouse::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: scroll-dot 1.5s ease-in-out infinite;
}
@keyframes scroll-bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(8px) } }
@keyframes scroll-dot { 0%,100% { opacity: 0 } 50% { opacity: 1 } }

/* Hero tab pill toggle */
.hero-tabs {
  display: inline-flex;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.30);
  border-radius: var(--radius-full);
  padding: 6px;
  margin-bottom: 2rem;
}
.hero-tabs button {
  padding: .75rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--white);
  transition: background .2s, color .2s;
}
.hero-tabs button.active { background: var(--gray-900); color: var(--white); }
.hero-tabs button:not(.active):hover { background: rgba(255,255,255,.10); }

/* ---------- 9. Footer ---------- */
.footer {
  position: relative;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 3rem 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-row {
  /* EDIT #25: 3-column grid keeps social icons centered regardless of logo/button widths */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-row > .footer-logo  { justify-self: start; }
.footer-row > .footer-social { justify-self: center; }
.footer-row > .footer-cta    { justify-self: end; }
.footer-logo img { height: 96px; transition: transform .2s; }
.footer-logo:hover img { transform: scale(1.05); }

.footer-social { display: flex; gap: 2rem; align-items: center; }
.footer-social a { color: var(--gray-900); transition: color .2s, transform .2s; }
.footer-social a:hover { transform: scale(1.15); }
.footer-social a.ig:hover { color: var(--pink-600); }
.footer-social a.gg:hover { color: var(--blue-600); }
.footer-social a.yt:hover { color: var(--red-600); }
.footer-social svg { width: 40px; height: 40px; }

.footer-copy {
  /* EDIT #38: copyright row is now a flex row with "Site by upengine" on the right */
  /* EDIT #45: scaled up a little */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 1rem;        /* was .875rem */
  flex-wrap: wrap;
}
.footer-copy-line { margin: 0; }
.footer-copy a:hover { color: var(--blue-600); }

.footer-site-by {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  color: var(--gray-600);
  font-size: .9375rem;    /* was .8125rem */
  font-weight: 600;
  text-decoration: none;
  transition: color .2s, opacity .2s;
  opacity: .9;
}
.footer-site-by:hover { color: var(--gray-900); opacity: 1; }
.footer-site-by svg {
  height: 24px;           /* was 18px */
  width: auto;
  display: block;
}
/* The SVG paths have no fill set — render them in the link's currentColor */
.footer-site-by svg rect,
.footer-site-by svg polygon,
.footer-site-by svg path { fill: currentColor; }

@media (max-width: 600px) {
  .footer-copy { justify-content: center; text-align: center; flex-direction: column-reverse; gap: .75rem; }
}

@media (max-width: 768px) {
  /* On mobile collapse to a centered column */
  .footer-row { grid-template-columns: 1fr; text-align: center; }
  .footer-row > .footer-logo,
  .footer-row > .footer-social,
  .footer-row > .footer-cta { justify-self: center; }
}

/* ---------- 10. Scroll-revealed animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-scale { transform: scale(.9); }
.reveal-left.in-view, .reveal-right.in-view, .reveal-scale.in-view { transform: translate(0, 0) scale(1); }

/* staggered children — incremental delay on data-stagger attribute */
.reveal[data-delay="1"]  { transition-delay: .05s; }
.reveal[data-delay="2"]  { transition-delay: .1s;  }
.reveal[data-delay="3"]  { transition-delay: .15s; }
.reveal[data-delay="4"]  { transition-delay: .2s;  }
.reveal[data-delay="5"]  { transition-delay: .25s; }
.reveal[data-delay="6"]  { transition-delay: .3s;  }
.reveal[data-delay="7"]  { transition-delay: .35s; }
.reveal[data-delay="8"]  { transition-delay: .4s;  }

/* ---------- 11. Sections used repeatedly ---------- */

/* CTA dark section */
.cta-dark { background: var(--gray-900); color: var(--white); padding: 8rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-dark::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  opacity: .10;
}
.cta-dark > * { position: relative; }
.cta-dark h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 2rem; }
.cta-dark p  { font-size: 1.5rem; color: var(--gray-300); max-width: 42rem; margin: 0 auto 3rem; font-weight: 600; }

.cta-blue { background: var(--blue-600); color: var(--white); padding: 8rem 0; text-align: center; }
.cta-blue h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; margin-bottom: 1.5rem; }
.cta-blue p { font-size: 1.5rem; color: var(--blue-100); font-weight: 600; margin-bottom: 3rem; }

.cta-image-bg {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-image-bg .cta-bg {
  position: absolute; inset: 0;
}
.cta-image-bg .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-image-bg .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.cta-image-bg .container { position: relative; max-width: 56rem; text-align: center; }
.cta-image-bg h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
/* EDIT #63: pink decorative bar between heading and subhead */
.cta-image-bg h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, var(--pink-400) 0%, var(--pink-200) 100%);
  border-radius: 2px;
}
.cta-image-bg p  { color: var(--blue-100); font-size: 1.5rem; margin-bottom: 3rem; font-weight: 600; }
.cta-image-bg .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* EDIT #63: pink phone icon inside the secondary (white) CTA button */
.cta-image-bg .btn-secondary > span:first-child { color: var(--pink-400); }

/* Two-up split section */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .split-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- 12. Service-detail page common patterns ---------- */
/* EDIT #27: removed `position: sticky` — the pinned hero was bleeding into the bottom CTA on
   service-detail pages (especially on mobile). Now scrolls away like every other section. */
.service-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
.service-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.40); }
.service-hero .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.service-hero .heading-xl { color: var(--white); margin-bottom: 1.5rem; max-width: 48rem; }
.service-hero p { color: rgba(255,255,255,.92); font-size: 1.5rem; font-weight: 600; margin-bottom: 2rem; max-width: 36rem; }

.service-section-white { background: var(--white); padding: 8rem 0; position: relative; z-index: 2; }
.service-section-gray  { background: var(--gray-50); padding: 8rem 0; position: relative; z-index: 2; }

.surface-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 1024px) { .surface-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .surface-grid { grid-template-columns: 1fr; } }
.surface-pill {
  display: flex; align-items: center; gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--gray-800);
  transition: background .2s;
}
.surface-pill:hover { background: var(--blue-50); }
.surface-pill::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--blue-600);
  border-radius: 50%;
}

/* Benefit row (3 cards) */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.benefit-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .benefit-grid, .benefit-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .benefit-grid, .benefit-grid.cols-4 { grid-template-columns: 1fr; } }

/* ---------- 13. FAQ accordion ---------- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1rem;
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: background .15s;
}
.faq-toggle:hover { background: var(--gray-50); }
.faq-toggle svg { width: 24px; height: 24px; color: var(--blue-600); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; }
.faq-answer-inner p { color: var(--gray-700); font-size: 1.125rem; line-height: 1.6; white-space: pre-line; }

/* ---------- 14. Stats cards (used on Why Choose Us / Orlando) ---------- */
.stat-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  transition: background .4s;
}
.stat-card:hover { background: rgba(255,255,255,.20); }
.stat-number { font-size: clamp(3rem, 6vw, 6rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; line-height: 1; }
.stat-label  { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.stat-desc   { font-size: 1.125rem; color: var(--blue-100); }

/* ---------- 15. Reviews / testimonial cards ---------- */
.review-card {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}
.review-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.review-stars svg { width: 20px; height: 20px; color: var(--yellow-400); }
.review-card.accent .review-stars svg { color: var(--pink-400); }
.review-text { font-size: 1.125rem; color: var(--gray-700); margin-bottom: 1.5rem; font-style: italic; font-weight: 500; }
.review-attr { padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.review-name { font-weight: 700; }
.review-loc  { color: var(--gray-600); font-weight: 600; }

/* ---------- 16. Process / steps ---------- */
.process-step { padding: 0; }
.process-step .step-number { font-size: 6rem; font-weight: 800; color: var(--blue-600); opacity: .20; line-height: 1; margin-bottom: 1.5rem; }
.process-step h3 { font-size: 1.875rem; font-weight: 800; margin-bottom: 1rem; }
.process-step p  { font-size: 1.25rem; color: var(--gray-600); font-weight: 600; }

/* ---------- 17. Stacking cards (Home) ---------- */
.stacking-cards { position: relative; }
.stacking-card {
  position: sticky;
  margin-bottom: 2rem;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.stacking-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.stacking-card-text { padding: 4rem; }
.stacking-card-text h3 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; }
.stacking-card-text p  { font-size: 1.25rem; font-weight: 600; margin-bottom: 2rem; color: var(--gray-600); }
.stacking-card-text .learn { display: inline-flex; align-items: center; gap: .5rem; font-size: 1.125rem; font-weight: 700; color: var(--blue-600); transition: gap .2s; }
.stacking-card-text .learn:hover { gap: .75rem; }
.stacking-card-image { position: relative; height: 500px; }
.stacking-card-image img { width: 100%; height: 100%; object-fit: cover; }

.stacking-card.invert { background: var(--blue-600); }
.stacking-card.invert .stacking-card-text h3 { color: var(--white); }
.stacking-card.invert .stacking-card-text p  { color: var(--blue-100); }
.stacking-card.invert .stacking-card-text .learn { color: var(--white); }
.stacking-card.invert .stacking-card-inner > .stacking-card-image { order: -1; }

@media (max-width: 768px) {
  .stacking-card-inner { grid-template-columns: 1fr; }
  .stacking-card-text { padding: 2rem; }
  .stacking-card-image { height: 280px; }
  .stacking-card.invert .stacking-card-inner > .stacking-card-image { order: 0; }
}

/* ---------- 18. Parallax gallery ---------- */
.parallax-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.parallax-col { display: flex; flex-direction: column; gap: 1.5rem; will-change: transform; }
.parallax-col img {
  width: 100%;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform .5s;
}
.parallax-col img:hover { transform: scale(1.05); }
.parallax-col.col-left img  { height: 20rem; }
.parallax-col.col-center img { height: 24rem; }
.parallax-col.col-right img  { height: 20rem; }
@media (max-width: 768px) {
  .parallax-grid { grid-template-columns: 1fr; }
  .parallax-col img { height: 18rem !important; }
}

/* ---------- 19. Promise (Clean / Protect / Restore / Shine) ---------- */
.promise-section { background: var(--blue-600); }
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
}
.promise-grid .promise-text { padding: 6rem 3rem 6rem 6rem; max-width: 38rem; }
.promise-grid .promise-text h2 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.promise-grid .promise-text h2 span { display: block; }
.promise-grid .promise-text h2 .light { color: rgba(255,255,255,.40); }
.promise-grid .promise-text h2 .solid { color: var(--white); }
.promise-grid .promise-text > p { color: var(--white); font-size: 1.25rem; font-weight: 600; margin-bottom: 2rem; }
.promise-grid .promise-text .note { color: rgba(255,255,255,.70); font-size: .875rem; margin-top: 1.5rem; max-width: 28rem; }
.promise-image { position: relative; height: 100%; min-height: 100vh; overflow: hidden; }
.promise-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .promise-grid { grid-template-columns: 1fr; min-height: 0; }
  .promise-grid .promise-text { padding: 4rem 1.5rem; }
  .promise-image { min-height: 60vh; }
}

/* ---------- 20. Horizontal scrolling services row ---------- */
.services-scroll {
  overflow-x: auto;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  scroll-behavior: smooth;
}
.services-scroll-inner {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

/* ---------- 21. Map / service areas ---------- */
.map-wrap {
  position: relative;
  height: 600px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  /* EDIT #43: blue border around the map */
  border: 4px solid var(--blue-600);
}
.map-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.map-wrap.zoom img { transform: scale(1.5); transform-origin: center; }

/* EDIT #44 / #60: region cards — light gray background, dark text.
   Card itself does NOT change background on hover; only the city links inside
   turn blue when individually hovered. The card gets a subtle lift + shadow. */
.region-card {
  background: var(--gray-50);
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.region-card:hover {
  border-color: var(--blue-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.region-card h3 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}
.region-card ul {
  display: grid;
  gap: .75rem;
  font-size: 1.125rem;
}
.region-card li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gray-900);
}
.region-card li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue-600);
  border-radius: 50%;
  flex-shrink: 0;
}
.region-card li a {
  color: var(--gray-900);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s;
}
.region-card li a:hover {
  color: var(--blue-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* ---------- 22. About page mid section ---------- */
.about-img-tile {
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.about-img-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.about-img-tile:hover img { transform: scale(1.05); }

.check-pill {
  display: flex; align-items: center; gap: .75rem;
  font-size: 1.125rem; font-weight: 600;
}
.check-pill .check-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ---------- 23. Layout utilities (a small Tailwind-ish subset) ---------- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; } .gap-16 { gap: 4rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.mt-0 { margin-top: 0; } .mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; } .mt-16 { margin-top: 4rem; } .mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; } .mb-20 { margin-bottom: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }
.p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; } .p-12 { padding: 3rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }   /* EDIT #65: was missing — every section using py-24 had zero padding */
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-32 { padding-top: 8rem; }
.pt-nav { padding-top: var(--nav-height); }

.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.bg-white { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-gray-100 { background: var(--gray-100); }
.bg-gray-900 { background: var(--gray-900); }
.bg-blue-600 { background: var(--blue-600); }
.bg-cyan-50 { background: var(--cyan-50); }

.text-white { color: var(--white); }
.text-gray-200 { color: var(--gray-200); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }
.text-blue-100 { color: var(--blue-100); }
.text-blue-600 { color: var(--blue-600); }
.text-pink-200 { color: var(--pink-200); }
.text-pink-600 { color: var(--pink-600); }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -.025em; }
.tracking-wider { letter-spacing: .12em; }
.leading-tight { line-height: 1.15; }
.leading-relaxed { line-height: 1.7; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-line { white-space: pre-line; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }
.overflow-hidden { overflow: hidden; }

.object-cover { object-fit: cover; }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

.border { border: 1px solid var(--gray-200); }
.border-t { border-top: 1px solid var(--gray-200); }
.border-b { border-bottom: 1px solid var(--gray-200); }

.transition { transition: all .2s var(--ease-out); }

/* Spinner for Gallery loading */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid var(--gray-900);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   EDIT BATCH — 14 changes (May 2026)
   ========================================================================== */

/* EDIT #1, #4, #17, #51, #58: Hero on mobile.
   - 5% shorter (was 88vh → now 83vh)
   - Extra top padding so the Residential/Commercial toggle clears the un-scrolled
     nav (which on mobile is taller than --nav-height because the tagline row is
     still visible). #58 bumped the buffer from +3rem to +7rem after the toggle
     was still appearing too close to the nav. */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 83vh;
    padding-top: calc(var(--nav-height) + 7rem);
    padding-bottom: 2.5rem;
  }
  .hero-bg { top: var(--nav-height); }
  .hero-bg img { object-position: center 30%; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.75) 100%);
    top: var(--nav-height);
  }
  .hero-content {
    padding-top: 0;
    padding-bottom: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* EDIT #51: toggle gets explicit top space and a clear visual buffer below the nav */
  .hero-tabs { margin: 0 0 1.25rem; }
  /* EDIT #17: H1 layouts swap */
  .hero-h1-desktop { display: none; }
  .hero-h1-mobile  { display: block; }
  .hero-h1 { margin-top: 2.25rem; }   /* trimmed from 4.5rem — toggle no longer needs to push down via the H1 */
  .hero-h1-mobile > span {
    display: block;
    font-size: clamp(2.75rem, 11vw, 3.75rem);
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: .15em;
  }
  /* EDIT #17: less subtext on mobile */
  .hero-subtext {
    font-size: 1rem;
    margin: 1rem auto 1.75rem;
    max-width: 22rem;
    color: rgba(255,255,255,.92);
  }
  .hero-cta-row { justify-content: center; }
  .scroll-indicator { display: none; }
}
@media (min-width: 769px) {
  .hero-h1-mobile { display: none; }
  .hero-h1-desktop { display: inline; }
}

/* EDIT #1: also center page-header text on mobile (it was already text-center, but keep consistent) */
@media (max-width: 768px) {
  .page-header { padding-top: calc(var(--nav-height) + 3rem); padding-bottom: 3rem; }
  .page-header h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .page-header p  { font-size: 1.125rem; }
}

/* EDIT #2: Stacking cards — stop sticky behavior on mobile (cards now just stack normally) */
@media (max-width: 768px) {
  .stacking-card {
    position: relative !important;
    top: auto !important;
    margin-bottom: 1.25rem;
  }
}

/* EDIT #3: Services horizontal scroller — make scrolling obvious
   - Visible arrow buttons on the sides (desktop & mobile)
   - Edge fade so cards appear to come from off-screen
   - Hint label under the section title
*/
.services-scroll-wrap {
  position: relative;
}
.services-scroll-wrap::before,
.services-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 2rem;     /* leave room above the scrollbar-hidden area */
  width: 60px;
  pointer-events: none;
  z-index: 2;
}
.services-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), rgba(255,255,255,0));
}
.services-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), rgba(255,255,255,0));
}
.services-scroll-btn {
  position: absolute;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-600);
  border: 2px solid var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 5;
  transition: background .2s, color .2s, transform .15s;
}
.services-scroll-btn:hover { background: var(--blue-600); color: var(--white); transform: translateY(-50%) scale(1.08); }
.services-scroll-btn.prev { left: 1rem; }
.services-scroll-btn.next { right: 1rem; }
.services-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: .02em;
}
.services-scroll-hint svg {
  animation: hint-nudge 1.4s ease-in-out infinite;
}
@keyframes hint-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
@media (max-width: 640px) {
  .services-scroll-btn { width: 40px; height: 40px; }
  .services-scroll-btn.prev { left: .5rem; }
  .services-scroll-btn.next { right: .5rem; }
}

/* EDIT #9: Interactive tabbed showcase ("Everything your property needs to shine") */
.showcase {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.showcase-tabs {
  display: flex;
  gap: .25rem;
  padding: .5rem;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.showcase-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--gray-700);
  transition: background .2s, color .2s;
  cursor: pointer;
}
.showcase-tab:hover { color: var(--blue-600); }
.showcase-tab.active {
  background: var(--white);
  color: var(--blue-600);
  box-shadow: var(--shadow);
}
.showcase-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 480px;
}
.showcase-image {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.showcase-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.showcase-image img.is-active { opacity: 1; }
.showcase-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  position: relative;
}
.showcase-body-pane {
  display: none;
  animation: fade-up .4s var(--ease-out);
}
.showcase-body-pane.is-active { display: block; }
.showcase-body h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--gray-900);
}
.showcase-body p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.showcase-chips a {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .625rem 1rem;
  border-radius: var(--radius-full);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .9375rem;
  font-weight: 600;
  transition: background .2s, color .2s, transform .15s;
}
.showcase-chips a:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .showcase-tabs { flex-wrap: wrap; }
  .showcase-tab { flex: 1 1 33%; padding: .75rem .5rem; font-size: .9375rem; }
  .showcase-panel { grid-template-columns: 1fr; min-height: 0; }
  .showcase-image { height: 260px; position: relative; }
  .showcase-body { padding: 2rem 1.5rem; }
}

/* EDIT #11: Parallax gallery — shorter heights + mobile only shows 6 images total */
.parallax-col.col-left img  { height: 16rem; }
.parallax-col.col-center img { height: 20rem; }
.parallax-col.col-right img  { height: 16rem; }
@media (max-width: 768px) {
  .parallax-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .parallax-col img { height: 12rem !important; }
  /* Show only the first 2 items in left + center, and first 2 in right (6 total) */
  .parallax-col .parallax-item:nth-child(n+3) { display: none; }
  /* Hide the entire right column on phones — left + center already give 4 images */
  .parallax-col.col-right { display: none; }
}
@media (max-width: 380px) {
  .parallax-grid { grid-template-columns: 1fr; }
}

/* EDIT #12: Clean / Protect / Restore / Shine — interactive selector */
.promise-section { position: relative; overflow: hidden; }
.promise-grid .promise-text h2 {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  line-height: 1;
}
.promise-word {
  display: block;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  padding: .1em 0;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  transition: color .25s var(--ease-out), transform .25s var(--ease-out), letter-spacing .25s var(--ease-out);
  position: relative;
}
.promise-word:hover { color: rgba(255,255,255,.6); }
.promise-word.is-active {
  color: var(--white);
  letter-spacing: -.005em;
}
.promise-word.is-active::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 60%;
  background: var(--white);
  border-radius: 4px;
}
.promise-blurb {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin: 1.5rem 0 2rem;
  max-width: 32rem;
  min-height: 4em; /* keeps layout steady when blurb text length varies */
  transition: opacity .25s var(--ease-out);
}
.promise-image {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.promise-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .5s var(--ease-out), transform .8s var(--ease-out);
}
.promise-image img.is-active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .promise-image { min-height: 50vh; }
  .promise-blurb { min-height: 0; }
  .promise-word::before { left: -.75rem !important; }
}

/* EDIT #13: Testimonials — on-brand restyle (blue band, white cards w/ quote glyph) */
.reviews-section {
  background: linear-gradient(180deg, var(--blue-700) 0%, var(--blue-600) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.10) 0%, transparent 35%),
    radial-gradient(circle at 88% 85%, rgba(255,255,255,.08) 0%, transparent 40%);
  pointer-events: none;
}
.reviews-section .container { position: relative; }
.testimonial {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--shadow-xl);
  transition: transform .3s, box-shadow .3s;
  margin: 0;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-2xl); }
.testimonial-quote {
  position: absolute;
  top: -16px;
  left: 1.5rem;
  width: 48px; height: 48px;
  padding: 8px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  display: flex;
  gap: .25rem;
  color: var(--blue-600);
  margin-bottom: 1rem;
}
.testimonial-stars svg { color: var(--blue-600); }
.testimonial-text {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.testimonial-attr {
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: .125rem;
}
.testimonial-name { font-weight: 700; color: var(--gray-900); font-size: 1rem; }
.testimonial-loc  { color: var(--blue-700); font-size: .875rem; font-weight: 600; }

/* EDIT #1: extra mobile centering for showcase + reviews */
@media (max-width: 768px) {
  .reviews-section { padding: 5rem 0; }
}

/* EDIT #7: Gallery loader — small fading dot ring, no persistent bar (the wrapper itself is hidden once timer fires) */
.gallery-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--gray-500);
  font-size: .9375rem;
  font-weight: 500;
  opacity: 1;
  transition: opacity .6s var(--ease-out), max-height .6s var(--ease-out), margin .6s var(--ease-out), padding .6s var(--ease-out);
  max-height: 80px;
  overflow: hidden;
}
.gallery-loader.is-hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  padding: 0;
  pointer-events: none;
}
.gallery-loader .spinner {
  width: 18px; height: 18px;
  border-width: 2px;
  border-color: var(--blue-300);
  border-top-color: var(--blue-600);
}

/* ==========================================================================
   EDIT BATCH 2 — service-card grid, contact form, pink accents (May 2026)
   ========================================================================== */

/* EDIT #18: Service-card grid (replaces horizontal scroller) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width:  720px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

.service-card {
  /* EDIT #57: image is now always visible at the top of the card.
     - aspect-ratio removed (was forcing empty space when description was short)
     - card sizes to its content
     - image sits as a top strip, content below
     - hover: subtle lift + image zoom inside its frame, no content color flip */
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--white);
  color: var(--gray-900);
  text-decoration: none;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.service-card:hover,
.service-card.is-tapped {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-200);
}

.service-card-image {
  /* EDIT #57: image always visible at top, ~12rem tall, content sits below */
  position: relative;
  width: 100%;
  height: 11rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .5s var(--ease-out);
}
.service-card-image::after {
  /* subtle gradient at the bottom of the image so the card edge feels intentional */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,.10) 100%);
}
.service-card:hover .service-card-image,
.service-card.is-tapped .service-card-image {
  transform: scale(1.05);
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  color: var(--blue-600);
  flex-shrink: 0;
  transition: background .35s var(--ease-out), color .35s var(--ease-out);
}
.service-card:hover .service-card-icon,
.service-card.is-tapped .service-card-icon {
  background: var(--blue-600);
  color: var(--white);
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  color: var(--gray-900);
}
.service-card-desc {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--gray-600);
  margin: 0 0 .25rem;
}
.service-card-arrow {
  display: none;   /* legacy; replaced by .service-card-link */
}

/* Compact card text on phones */
@media (max-width: 720px) {
  /* EDIT #48: drop fixed aspect-ratio so the card grows to fit its content (icon + title + desc + "Click here for more" link).
     Was 4/5; that was clipping the link off the bottom on mobile. */
  .service-card        { aspect-ratio: auto; }
  .service-card-content { padding: 1.25rem; }
  .service-card-icon    { width: 44px; height: 44px; }
  .service-card-title   { font-size: 1.125rem; margin: .75rem 0 .375rem; }
  .service-card-desc    { font-size: .875rem; }
}

/* EDIT #16: Contact form card and inputs */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.contact-form-header {
  padding: 2.25rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  position: relative;
}
.contact-form-header::after {
  content: "";
  position: absolute;
  left: 2.5rem; right: 2.5rem; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600) 0%, var(--blue-600) 60%, var(--pink-400) 60%, var(--pink-400) 100%);
  border-radius: 2px;
}
.contact-form-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin: .5rem 0;
}
.contact-form-header p {
  color: var(--gray-600);
  font-size: 1rem;
}
.contact-form-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  padding: .25rem .625rem;
  background: var(--blue-100);
  border-radius: var(--radius-full);
}
.contact-form {
  padding: 2rem 2.5rem 2.5rem;
}
.form-row {
  margin-bottom: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.form-row.two   { grid-template-columns: 1fr 1fr; }
.form-row.three { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 640px) {
  .form-row.two, .form-row.three { grid-template-columns: 1fr; }
  .contact-form-header, .contact-form { padding-left: 1.25rem; padding-right: 1.25rem; }
  .contact-form-header::after { left: 1.25rem; right: 1.25rem; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.form-field label {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--gray-800);
}
.form-field label.sr-label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}
.form-field .req { color: var(--pink-600); margin-left: 2px; }    /* pink accent on required marker */
.form-field .hint { color: var(--gray-500); font-weight: 500; font-size: .8125rem; margin-left: .375rem; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .75rem .875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
  color: var(--gray-900);
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-400); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(0,168,232,.15);    /* blue ring */
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 4px rgba(244,114,182,.18);  /* pink ring on error */
}

.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 18px;
  padding-right: 2.25rem;
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-fieldset {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
}
.form-fieldset legend {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .625rem;
  padding: 0;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
@media (max-width: 720px) { .checkbox-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .checkbox-grid { grid-template-columns: 1fr; } }

.checkbox-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, background .2s, color .2s;
  background: var(--white);
}
.checkbox-tile:hover { border-color: var(--blue-300); }
.checkbox-tile input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-tile-mark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 5px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.checkbox-tile-mark::after {
  content: "";
  width: 10px; height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity .15s;
}
.checkbox-tile input:checked ~ .checkbox-tile-mark {
  background: var(--blue-600);
  border-color: var(--blue-600);
}
.checkbox-tile input:checked ~ .checkbox-tile-mark::after { opacity: 1; }
.checkbox-tile input:checked ~ .checkbox-tile-label { color: var(--blue-700); font-weight: 700; }
.checkbox-tile:has(input:checked) {
  border-color: var(--blue-600);
  background: var(--blue-50);
}
.checkbox-tile-label { font-size: .9375rem; font-weight: 600; color: var(--gray-700); }

/* File input */
.file-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: .75rem .875rem;
  background: var(--gray-50);
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.file-field:hover { border-color: var(--blue-400); background: var(--blue-50); }
.file-field input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-field-label {
  color: var(--gray-600);
  font-size: .9375rem;
  font-weight: 600;
}

/* Submit row + feedback */
.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  margin-top: 1.5rem;
}
.form-disclaimer {
  color: var(--gray-500);
  font-size: .8125rem;
  max-width: 38rem;
}
.form-feedback {
  margin-top: 1.25rem;
  padding: .875rem 1rem;
  border-radius: var(--radius-lg);
  font-size: .9375rem;
  font-weight: 600;
  display: none;
}
.form-feedback.ok    { display: block; background: var(--blue-50);  color: var(--blue-700); border: 1px solid var(--blue-200); }
.form-feedback.error { display: block; background: var(--pink-50);  color: var(--pink-600); border: 1px solid var(--pink-200); }

/* EDIT #15: Pink accents (subtle, blue stays primary)
   - .section-eyebrow pill
   - decorative underline under main section H2s
   - active-state indicators */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-600);
  padding: .3rem .75rem;
  background: var(--pink-50);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* Subtle bi-color underline under section headlines */
.heading-lg::after,
.heading-display::after {
  content: none;  /* not auto-applied — opt in with .accent-underline on the heading itself */
}
.accent-underline { position: relative; padding-bottom: .5rem; }
.accent-underline::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--blue-600) 0%, var(--blue-600) 65%, var(--pink-400) 65%, var(--pink-400) 100%);
  border-radius: 3px;
}

/* EDIT #15: pink stripe on active promise-word indicator (was white) */
.promise-word.is-active::before {
  background: var(--pink-400) !important;
}

/* EDIT #15: pink tab indicator under active showcase tab */
.showcase-tab.active {
  position: relative;
}
.showcase-tab.active::after {
  content: "";
  position: absolute;
  left: 1.25rem; right: 1.25rem;
  bottom: -.25rem;
  height: 3px;
  background: var(--pink-400);
  border-radius: 3px;
}

/* EDIT #44: the previous alternating pink dot in region cards is retired —
   bullets are now a single solid color that flips white on hover. */

/* EDIT #15: footer small decorative dot */
/* EDIT #38: the old decorative bar above footer copy is removed — the row is now a
   horizontal layout (copyright left, "Site by" right) so a centered bar would look wrong. */

/* EDIT #15: subtle pink hover state on .nav-link (in addition to blue) */
.nav-dropdown-menu a:hover {
  color: var(--pink-600);
}

/* EDIT #15: middle testimonial card gets a pink quote glyph + star accent for a subtle touch */
.testimonial:nth-child(2) .testimonial-quote {
  background: var(--pink-400);
}
.testimonial:nth-child(2) .testimonial-stars svg {
  color: var(--pink-400);
}

/* ==========================================================================
   EDIT BATCH 3 — tilt-wrap, process timeline, light reviews, gallery water (May 2026)
   ========================================================================== */

/* EDIT #21: tilt-on-scroll wrapper for the why-us video, with a white box behind */
.tilt-wrap {
  position: relative;
  perspective: 1200px;
}
.tilt-back {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transform: rotate(-3deg);   /* counter-rotated to the video's tilt */
  z-index: 0;
  pointer-events: none;
}
.tilt-front {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transform: rotate(0deg);
  transform-origin: center center;
  transition: transform .3s ease-out;
  will-change: transform;
}

/* EDIT #22: connected-timeline 3-step process */
.process-section { position: relative; }
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 1rem;
}
.process-line {
  position: absolute;
  top: 86px;                          /* aligns with the center of icon circle */
  left: calc(16% + 1rem);
  right: calc(16% + 1rem);
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  z-index: 0;
  overflow: hidden;
}
.process-line-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-600) 0%, var(--blue-600) 70%, var(--pink-400) 100%);
  transition: width 1.6s var(--ease-out);
}
.process-timeline.in-view .process-line-fill,
.in-view .process-line-fill {
  width: 100%;
}
.process-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  padding: 3rem 1.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
}
.process-card-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-400);          /* pink accent for step pip */
  color: var(--white);
  font-weight: 800;
  font-size: .875rem;
  padding: .375rem .9rem;
  border-radius: var(--radius-full);
  letter-spacing: .08em;
  box-shadow: var(--shadow);
}
.process-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: .5rem auto 1.25rem;
  background: var(--blue-600);
  color: var(--white);
  border-radius: var(--radius-full);
  border: 6px solid var(--gray-50);     /* matches section bg — creates a "punched-through line" look */
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.process-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--gray-900);
}
.process-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .process-timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-line {
    top: 1rem;
    bottom: 1rem;
    left: 50%;
    right: auto;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
  }
  .process-line-fill {
    width: 100% !important;
    height: 0%;
    transition: height 1.6s var(--ease-out);
  }
  .process-timeline.in-view .process-line-fill,
  .in-view .process-line-fill { height: 100% !important; }
}

/* EDIT #23: Light-background testimonials (no longer a blue band) */
.reviews-section.reviews-light {
  background: var(--gray-50);
  padding: 7rem 0;
}
.reviews-section.reviews-light::before { content: none; }   /* drop the blue radial glows */
.reviews-section.reviews-light .testimonial {
  border: 1px solid var(--gray-100);
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--blue-600);
  font-weight: 700;
  border-bottom: 2px solid var(--blue-200);
  padding-bottom: .25rem;
  transition: color .2s, border-color .2s;
}
.reviews-link:hover {
  color: var(--blue-700);
  border-bottom-color: var(--blue-600);
}

/* EDIT #24: Gallery water effect — white above, blue wave + water at the bottom */
.gallery-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.gallery-water {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;       /* clips the animated SVG that's twice as wide */
}
/* EDIT #62: wave SVG is 200% wide (two cycles), shifted left -50% in a seamless loop.
   12s feels like calm flowing water — not distracting, not static. */
.gallery-water-svg {
  display: block;
  width: 200%;
  height: 200px;
  animation: gallery-wave-flow 12s linear infinite;
  will-change: transform;
}
@keyframes gallery-wave-flow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-water-svg { animation: none; }
}
@media (max-width: 720px) {
  .gallery-water-svg { height: 140px; }
}

/* ==========================================================================
   EDIT BATCH 4 — about/contact/reviews tightening, service-card v2,
                  outline-only tilt-back, headline sizing (May 2026)
   ========================================================================== */

/* EDIT #31: Smaller owner image on About page */
.about-img-tile.about-img-sm {
  max-width: 22rem;          /* was effectively ~32rem at column width */
  margin-inline: auto;
}
.about-img-tile.about-img-sm img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}
@media (min-width: 769px) {
  /* Keep the image column visually balanced with the text column despite being smaller */
  .about-owner-grid { align-items: center; }
}

/* EDIT #32, #33: tight page header — less space below the H1/sub so body content sits higher */
.page-header.page-header-tight {
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .page-header.page-header-tight {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 1rem;
  }
}

/* EDIT #34: Service card v2 — icon left of title, explicit "Click here for more" link.
   No more whole-card click. The card itself is a <div>. */
.service-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.service-card-head .service-card-icon {
  width: 44px;
  height: 44px;
  margin: 0;
}
.service-card-head .service-card-title {
  margin: 0;
  font-size: 1.25rem;
  flex: 1;
}
.service-card-content { padding: 1.25rem 1.25rem 1.5rem; }
.service-card-desc { margin-bottom: .75rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .875rem;
  margin-top: auto;
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--blue-50);
  border-radius: var(--radius-full);
  align-self: flex-start;
  transition: background .2s, color .2s, transform .15s;
  text-decoration: none;
}
.service-card-link:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateX(2px);
}

/* Service-card head (icon + title row) — clean colors, no hover-flip since the card no longer goes dark */
.service-card-head {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.service-card-head .service-card-title {
  font-size: 1.125rem;
}

/* EDIT #67: Mobile — services grid becomes a horizontal SCROLLER.
   - Cards take ~70vw of the viewport (max 280px) so the next card peeks at the edge
   - scroll-snap so swiping snaps cleanly
   - Description text hidden; "Click here for more" text hidden; just an arrow
   - Card image stays at the top, content is a compact row below */
@media (max-width: 720px) {
  .service-card { cursor: default; }

  /* Grid → flex row with horizontal scrolling, bleeding to the viewport edges */
  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin-inline: -1.5rem;       /* extend to viewport edges so card edges align with screen */
    padding-inline: 1.5rem;
    padding-bottom: .75rem;
    scrollbar-width: thin;
  }
  .services-grid::-webkit-scrollbar { height: 4px; }
  .services-grid::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }

  .services-grid > .service-card {
    flex: 0 0 70vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .service-card .service-card-image { display: block; height: 8.5rem; }

  /* Compact card content: icon + title row, then a small arrow link aligned right */
  .service-card .service-card-content {
    padding: .875rem 1rem 1rem;
    gap: .5rem;
  }
  .service-card .service-card-head { gap: .5rem; }
  .service-card .service-card-icon { width: 36px; height: 36px; border-radius: var(--radius-md); }
  .service-card .service-card-icon svg { width: 18px; height: 18px; }
  .service-card .service-card-title { font-size: 1rem; line-height: 1.15; }

  /* Hide the description AND the "Click here for more" text — only the arrow remains */
  .service-card .service-card-desc { display: none; }
  .service-card .service-card-link-text { display: none; }
  .service-card .service-card-link {
    margin: 0 0 0 auto;            /* push to the right edge */
    padding: 0;
    background: transparent;
    color: var(--blue-600);
    font-size: 1.375rem;
    line-height: 1;
    align-self: flex-end;
  }
  .service-card .service-card-link:hover { background: transparent; color: var(--blue-700); transform: none; }
}

/* EDIT #35: white outline-only "card" behind the why-us video (no fill, no shadow), counter-rotated more */
.tilt-back {
  background: transparent;
  border: 3px solid var(--white);
  box-shadow: none;
  transform: rotate(-6deg);     /* matches the new ±6° front tilt direction */
}
.tilt-front {
  /* keep its own subtle shadow so it lifts off the section bg */
  box-shadow: var(--shadow-xl);
}


/* ==========================================================================
   EDIT #46 — City pages, REBUILT on-brand (May 2026)
   Replaces the previous off-brand block that mirrored the reference site
   (red CTAs, italic about heading, glass/blur cards, tilted photo frame).
   Now uses Soaked & Co's own design language: blue/white/gray + pink accents,
   brand typography, and the site's existing component patterns where possible.
   ========================================================================== */

/* EDIT #51: city-page service cards size to content — the home page's 4/5 aspect
   ratio was designed for a 4-up grid, but the city page shows them 3-up (wider),
   which made the 4/5 ratio leave a huge empty gap between the description and the
   "Click here for more" link. */
.city-page .service-card { aspect-ratio: auto; }
/* EDIT #64: city-page services grid is 3-up on desktop (6 cards = 2 clean rows of 3) */
.city-page .services-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .city-page .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:  720px) { .city-page .services-grid { grid-template-columns: repeat(2, 1fr); } }
/* Breadcrumb */
.city-crumbs {
  background: var(--gray-50);
  padding: calc(var(--nav-height) + 1rem) 0 1rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--gray-100);
}
.city-crumbs a {
  color: var(--gray-600);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.city-crumbs a:hover { color: var(--blue-600); }
.city-crumbs > .container > span { margin: 0 .5rem; color: var(--gray-400); }
.city-crumbs [aria-current="page"] { color: var(--gray-900); font-weight: 700; }

/* Hero — brand colors, no pink-state quirk, simple two-line title */
.city-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--gray-900);
}
.city-hero-bg { position: absolute; inset: 0; }
.city-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.city-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.55) 55%, rgba(15,23,42,.30) 100%);
}
.city-hero-content {
  position: relative;
  z-index: 2;
  max-width: 60rem;
  color: var(--white);
}
.city-hero-eyebrow {
  background: rgba(255,255,255,.18);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.city-hero-title {
  color: var(--white);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.city-hero-city {
  display: block;
  color: var(--blue-200);
  font-weight: 800;
  margin-top: .25rem;
}
.city-hero-sub {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
  max-width: 40rem;
}
@media (max-width: 720px) {
  .city-hero { min-height: 460px; padding-top: var(--nav-height); }
  .city-hero-sub { font-size: 1rem; }
}

/* Neighborhood chips — flat, clean, blue pin in brand color, no decoration */
.city-hood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  justify-content: center;
  max-width: 56rem;
  margin: 0 auto;
}
.city-hood-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--gray-900);
  transition: background .2s, border-color .2s, color .2s;
}
.city-hood-chip:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}
.city-hood-dot {
  display: inline-flex;
  align-items: center;
  color: var(--blue-600);
  flex-shrink: 0;
  transition: color .2s;
}
.city-hood-chip:hover .city-hood-dot { color: var(--white); }

/* "What makes this city special" — light card on gray bg */
.city-special-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.city-special-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: var(--radius-full);
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   EDIT #42 — "What We Clean" content merged into Clean/Protect/Restore/Shine
   ========================================================================== */
.promise-category {
  position: relative;
  margin: 1.25rem 0 1.5rem;
  min-height: 6.5rem;
}
.promise-category-pane {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.promise-category-pane.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.promise-category-pane h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  opacity: .85;
}
.promise-category-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .375rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.promise-category-items li {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.promise-category-items li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--pink-400);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .promise-category-items { grid-template-columns: 1fr; }
}

/* ==========================================================================
   EDIT #47 — "See us in action" video feature section
   Reused on the home page, the Pressure Washing page, and every city page.
   ========================================================================== */
.video-feature {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.video-feature.gray-bg  { background: var(--gray-50); }
.video-feature.white-bg { background: var(--white); }
.video-feature.blue-bg  { background: var(--blue-600); color: var(--white); }
.video-feature.blue-bg h2,
.video-feature.blue-bg .video-feature-sub { color: var(--white); }
.video-feature.blue-bg .section-eyebrow { background: rgba(255,255,255,.15); color: var(--white); }

.video-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
/* EDIT #52: flipped layout — video on the left, text on the right */
.video-feature.is-flipped .video-feature-grid {
  grid-template-columns: 1.2fr 1fr;
}
.video-feature.is-flipped .video-feature-text  { order: 2; }
.video-feature.is-flipped .video-feature-frame { order: 1; }
.video-feature-text { max-width: 32rem; }
.video-feature-sub { color: var(--gray-600); }

.video-feature-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: var(--gray-900);
  aspect-ratio: 16 / 10;
}
.video-feature-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-feature-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  border: 3px solid var(--blue-600);
  pointer-events: none;
  opacity: .9;
}
.video-feature.blue-bg .video-feature-frame::after { border-color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
  .video-feature { padding: 4rem 0; }
  /* EDIT #59: explicitly override the flipped variant too — its higher specificity
     was preventing it from collapsing to one column on mobile, leaving a tiny video
     beside a wall of text. Now both flipped and non-flipped stack vertically. */
  .video-feature-grid,
  .video-feature.is-flipped .video-feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  .video-feature-text { max-width: none; text-align: center; margin-inline: auto; }
  /* Reset CSS order so the video sits ABOVE the text on mobile in both variants */
  .video-feature.is-flipped .video-feature-text,
  .video-feature.is-flipped .video-feature-frame { order: initial; }
}

/* ==========================================================================
   EDIT #56 — Trust band (Insured / Experienced / Equipped) under home services
   ========================================================================== */
.trust-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 4rem 0;
  background: var(--blue-600);
}
.trust-band-bg {
  position: absolute; inset: 0; z-index: 0;
}
.trust-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.trust-band-bg::after {
  /* heavy blue tint over the photo */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,122,184,.85) 0%, rgba(0,168,232,.82) 100%);
}
.trust-band > .container { position: relative; z-index: 1; }

.trust-band-inner {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius-2xl);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  color: var(--pink-200);
  flex-shrink: 0;
}
.trust-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-item-label {
  color: var(--pink-200);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.trust-item-value {
  color: var(--white);
  font-size: 1.1875rem;
  font-weight: 800;
  margin-top: .125rem;
}

@media (max-width: 800px) {
  .trust-band { padding: 3rem 0; }
  .trust-band-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   EDIT #68 — Pressure washing page enhancements
   ========================================================================== */

/* --- B4: stat counter row above benefits --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
}
.benefits-section.bg-blue-600 .stat-row {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
}
.stat-item { text-align: center; }
.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--blue-600);
  font-variant-numeric: tabular-nums;
  margin-bottom: .35rem;
}
.benefits-section.bg-blue-600 .stat-value { color: white; }
.stat-label {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.benefits-section.bg-blue-600 .stat-label { color: rgba(255,255,255,.85); }
@media (max-width: 700px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; padding: 1.5rem; }
}

/* --- B1: gradient-icon benefit cards with hover-lift --- */
.benefit-card-dynamic {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.benefits-section.bg-blue-600 .benefit-card-dynamic {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.benefit-card-dynamic:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-200);
}
.benefit-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px -6px rgba(0,168,232,.55);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.benefit-card-dynamic:hover .benefit-card-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 28px -6px rgba(0,168,232,.7);
}
.benefit-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .75rem;
  color: var(--gray-900);
}
.benefit-card-desc {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--gray-600);
}

/* --- C: Surface section with image background + glass cards --- */
.surface-image-section {
  background: var(--gray-900);
}
.surface-image-bg {
  position: absolute; inset: 0; z-index: 0;
}
.surface-image-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.surface-image-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(3,105,161,.78) 0%, rgba(0,0,0,.72) 100%);
}
.surface-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .surface-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .surface-grid { grid-template-columns: 1fr; } }
.surface-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(6px);
  transition: transform .25s, background .25s, border-color .25s;
}
.surface-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
}
.surface-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: var(--blue-500);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(0,168,232,.5);
}
.surface-card-label {
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
}

/* --- D: Split (Residential / Commercial) cards with illustrations --- */
.split-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: transform .3s, box-shadow .3s;
}
.split-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.split-card.is-flipped { grid-template-columns: 1.1fr 1fr; }
.split-card.is-flipped .split-card-illustration { order: 2; }
.split-card.is-flipped .split-card-text         { order: 1; }
.split-card-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-illustration-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: var(--radius-lg);
}
.split-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 1.25rem;
}
.split-card-list {
  display: grid;
  gap: .85rem;
}
.split-card-list-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.0625rem;
  color: var(--gray-700);
}
.split-card-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
}
@media (max-width: 800px) {
  .split-card,
  .split-card.is-flipped { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-card.is-flipped .split-card-illustration { order: 0; }
  .split-card.is-flipped .split-card-text         { order: 1; }
  .split-illustration-svg { max-width: 200px; margin: 0 auto; }
}

/* --- E: Process timeline (horizontal on desktop, vertical on mobile) --- */
/* EDIT #69: timeline container widened to 1440px max + extra column gap so the 6 steps
   don't crowd; title font shrunk slightly to suit the shorter copy. */
.process-section .container {
  max-width: 1440px;
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: start;
}
.process-timeline-line {
  position: absolute;
  top: 28px;
  left: 8.33%;
  right: 8.33%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-500), var(--blue-200));
  border-radius: 2px;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .25rem;
  position: relative;
  z-index: 1;
}
.process-step-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px -4px rgba(0,168,232,.45);
  transition: transform .3s, box-shadow .3s, background .3s;
}
.process-step:hover .process-step-node {
  transform: scale(1.1);
  background: var(--blue-500);
  box-shadow: 0 8px 20px -4px rgba(0,168,232,.7);
}
.process-step-number {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--blue-600);
  transition: color .3s;
}
.process-step:hover .process-step-number { color: var(--white); }
.process-step-title {
  font-size: 1.25rem;        /* EDIT #69: was 1.0625rem, larger now since copy is shorter */
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .5rem;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.process-step-desc {
  font-size: .95rem;
  line-height: 1.5;
  color: var(--gray-600);
  max-width: 18rem;
  margin-inline: auto;
}
/* When timeline only has 4 steps (gutter cleaning) or 5 steps (paver sealing, dry-ice) */
/* EDIT #70: explicit class-based variants (the previous :has() approach failed because
   .process-timeline-line is the 1st child of .process-timeline, throwing off :nth-child counts).
   Line endpoints calibrated so the line starts/ends at the CENTER of the first/last node. */
.process-timeline.steps-4 { grid-template-columns: repeat(4, 1fr); }
.process-timeline.steps-5 { grid-template-columns: repeat(5, 1fr); }
.process-timeline.steps-6 { grid-template-columns: repeat(6, 1fr); }
.process-timeline.steps-4 .process-timeline-line { left: 12.5%;  right: 12.5%;  }
.process-timeline.steps-5 .process-timeline-line { left: 10%;    right: 10%;    }
.process-timeline.steps-6 .process-timeline-line { left: 8.333%; right: 8.333%; }

@media (max-width: 1024px) {
  .process-timeline,
  .process-timeline.steps-4,
  .process-timeline.steps-5,
  .process-timeline.steps-6 { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.5rem; }
  .process-timeline-line { display: none; }
}
@media (max-width: 640px) {
  .process-timeline,
  .process-timeline.steps-4,
  .process-timeline.steps-5,
  .process-timeline.steps-6 { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
  }
  .process-step-node { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; }
  .process-step-desc { margin-inline: 0; }
}

/* ==========================================================================
   EDIT #78 — UpEngine reviews popup widget hidden on /reviews.
   The /reviews page has its OWN inline reviews widget with a different token,
   so we only hide our popup's host wrapper. The widget renders into the
   wrapped data-romw-token div; hiding the wrapper hides the popup entirely.
   EDIT #78b: also hidden on mobile (≤768px) — the popup competes with the
   limited screen real estate on phones.
   ========================================================================== */
body.route-reviews #review-widget-host {
  display: none !important;
}
@media (max-width: 768px) {
  #review-widget-host { display: none !important; }
}

/* ==========================================================================
   EDIT #85 — Testimonials carousel (mobile shows one card at a time)
   Desktop: 3-column grid, dots hidden.
   Mobile (≤720px): horizontal scroll-snap, ~90vw cards, dots visible.
   ========================================================================== */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonials-dots {
  display: none;       /* hidden on desktop — only meaningful on mobile */
}
@media (max-width: 1024px) {
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .testimonials-track {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin-inline: -1.5rem;
    padding-inline: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none;            /* hide native scrollbar on mobile */
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonials-track > .testimonial {
    flex: 0 0 88vw;
    max-width: 360px;
    scroll-snap-align: center;
    margin: 0;                        /* override any default figure margin */
  }
  .testimonials-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1.25rem;
  }
  .testimonials-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: background .2s, transform .2s;
    padding: 0;
    border: 0;
    cursor: pointer;
  }
  .testimonials-dot.is-active {
    background: var(--blue-600);
    transform: scale(1.25);
  }
}

/* ==========================================================================
   EDIT #86 — Review source brand icon (Google / Yelp / HomeAdvisor)
   Sits in the testimonial figcaption to the right of name/location.
   No spelled-out brand name — icon only.
   ========================================================================== */
.testimonial-source {
  display: inline-flex;
  align-items: center;
  margin-left: auto;            /* push to the right edge of the figcaption */
  flex-shrink: 0;
}
.testimonial-source svg {
  display: block;
  width: 16px;
  height: 16px;
}
.testimonial-attr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem .75rem;
}
.testimonial-name { flex: 0 0 100%; }    /* name always on its own line */
