@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,800,900&f[]=cabinet-grotesk@500,700,800,900&display=swap");

:root {
  --ink: #06295a;
  --night: #061832;
  --header: #33465e;
  --navy: #083a74;
  --blue: #0798d0;
  --blue-soft: #6ed7ff;
  --paper: #f6f5ef;
  --cream: #fbfaf5;
  --card: rgba(255, 255, 255, .72);
  --line: rgba(7, 49, 95, .13);
  --muted: #637483;
  --shadow: 0 24px 70px rgba(6, 24, 50, .16);
  --max: 1180px;
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(7, 152, 208, .18), transparent 28%),
    radial-gradient(circle at 94% 18%, rgba(110, 215, 255, .20), transparent 24%),
    linear-gradient(180deg, #fbfaf5 0%, #eef7fb 44%, #f6f5ef 100%);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 41, 90, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 41, 90, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 80%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.05em; height: 1.05em; }

.card,
.service-card,
.area-card,
.hero-stat-panel,
.local-service-panel,
.faq-list details,
.link-grid a,
.keyword-cloud span {
  min-width: 0;
  overflow-wrap: break-word;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  line-height: .94;
  letter-spacing: -.045em;
}
h1 { max-width: 900px; font-size: clamp(48px, 8.3vw, 104px); }
h2 { font-size: clamp(36px, 5.2vw, 68px); }
h3 { font-size: 27px; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 18px 0;
  pointer-events: none;
}
.nav {
  width: min(var(--max), 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(6, 24, 50, .74);
  color: white;
  box-shadow: 0 18px 54px rgba(6, 24, 50, .22), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  pointer-events: auto;
}
.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f2f1ec;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 12px 32px rgba(7, 152, 208, .24);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand small {
  display: block;
  margin-top: 1px;
  color: rgba(187, 236, 255, .86);
  font-size: 11px;
  line-height: 1.12;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 900;
}
.nav-links > a:not(.btn),
.nav-group-trigger {
  padding: 12px 13px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}
.nav-links > a:not(.btn):hover,
.nav-links > a[aria-current="page"],
.nav-group.active > .nav-group-trigger,
.nav-group-trigger:hover {
  color: white;
  background: rgba(255,255,255,.10);
}
.nav-group {
  position: relative;
}
.nav-group-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform .18s ease;
}
.nav-group:hover .nav-group-trigger svg,
.nav-group:focus-within .nav-group-trigger svg,
.nav-group.open .nav-group-trigger svg {
  transform: rotate(180deg);
}
.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: max-content;
  min-width: 230px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  color: white;
  background: rgba(6,24,50,.96);
  box-shadow: 0 22px 58px rgba(6,24,50,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-menu-wide {
  min-width: 300px;
}
.nav-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.82);
}
.nav-menu a:hover {
  color: white;
  background: rgba(255,255,255,.10);
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group.open .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-toggle { display: none; }

.btn {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s, background .22s, border-color .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #0869ad);
  box-shadow: 0 14px 34px rgba(7, 152, 208, .30);
}
.btn-secondary {
  color: white;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.30);
  backdrop-filter: blur(14px);
}
.section .btn-secondary,
.form-panel .btn-secondary,
.seo-panel .btn-secondary,
.local-service-panel .btn-secondary {
  color: var(--ink);
  background: rgba(255,255,255,.86);
  border-color: rgba(6,41,90,.14);
}
.hero .btn-secondary,
.page-hero .btn-secondary,
.cta-band .btn-secondary {
  color: white;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.30);
}
.btn-phone {
  color: white;
  background: rgba(42, 170, 225, .18);
  border-color: rgba(187, 236, 255, .34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.btn-quiet {
  background: rgba(6, 24, 50, .30);
  border-color: rgba(255,255,255,.22);
}
.btn-dark { color: white; background: var(--night); }

.hero {
  min-height: 92svh;
  margin-top: -100px;
  padding: 132px 22px 84px;
  position: relative;
  display: grid;
  align-items: end;
  color: white;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 24, 50, .90) 0%, rgba(6, 24, 50, .64) 44%, rgba(6, 24, 50, .12) 100%),
    url("images/pressure-washing-hero.png") center / cover no-repeat;
  transform: scale(1.01);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 35%;
  background: linear-gradient(0deg, var(--paper), rgba(246,245,239,0));
}
.hero-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}
.hero-copy-wrap { max-width: 820px; }
.hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .96;
}
.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(187, 236, 255, .34);
  border-radius: 999px;
  color: #d7f5ff;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 760px;
  margin: 18px 0 22px;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.45;
}
.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.estimate-panel {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.40);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  box-shadow: 0 24px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.40);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.estimate-panel::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 0 13px;
  border-radius: 20px;
  background: url("images/business-logo.jpg") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(255,255,255,.36), 0 16px 44px rgba(7,152,208,.22);
}
.estimate-panel strong {
  display: block;
  color: white;
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}
.estimate-panel p { margin: 8px 0 14px; color: rgba(255,255,255,.78); font-size: 15px; }
.mini-list {
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.mini-list li {
  list-style: none;
  display: flex;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}
.mini-list i { color: var(--blue); margin-top: 2px; }
.hero .mini-list li,
.estimate-panel .mini-list li {
  color: rgba(255,255,255,.86);
}
.hero .mini-list i,
.estimate-panel .mini-list i {
  color: var(--blue-soft);
}

.trust-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: -58px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.trust-item {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 54px rgba(6,24,50,.10);
  backdrop-filter: blur(18px);
}
.trust-item strong { display: block; font-family: "Cabinet Grotesk"; font-size: 23px; letter-spacing: -.035em; }
.trust-item span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }

.client-proof {
  padding: 94px 22px 82px;
  color: white;
  background:
    radial-gradient(circle at 50% 8%, rgba(110, 215, 255, .13), transparent 35%),
    linear-gradient(180deg, #041326 0%, #071b37 100%);
  overflow: hidden;
}
.client-proof .wrap {
  position: relative;
}
.client-proof .wrap::before,
.client-proof .wrap::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 231, 240, .20), transparent);
}
.client-proof .wrap::before { top: 0; }
.client-proof .wrap::after { bottom: 0; }
.client-proof-head {
  padding: 38px 0 22px;
  text-align: center;
}
.client-proof-head h2 {
  color: white;
  font-size: clamp(32px, 4.8vw, 54px);
  letter-spacing: 0;
}
.client-proof-head span,
.client-proof-head strong {
  display: block;
}
.client-proof-head span {
  color: rgba(219, 231, 240, .62);
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-weight: 800;
}
.client-proof-head strong {
  margin-top: 4px;
  font-weight: 900;
}
.client-logo-rule {
  height: 1px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(219, 231, 240, .18);
  mask-image: linear-gradient(to right, transparent, black, transparent);
}
.client-logo-cloud {
  overflow: hidden;
  padding: 24px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
}
.client-logo-track {
  display: flex;
  width: max-content;
  gap: 42px;
  align-items: center;
  animation: client-logo-scroll 58s linear infinite;
  will-change: transform;
}
.client-logo-set {
  display: flex;
  gap: 42px;
  align-items: center;
}
.client-logo-slot {
  width: 300px;
  height: 96px;
  flex: 0 0 300px;
  display: grid;
  place-items: center;
}
.client-logo-set img {
  width: 230px;
  height: 72px;
  object-fit: contain;
  opacity: .76;
  user-select: none;
  -webkit-user-drag: none;
}
.client-logo-set img[src*="logo-whits"] { width: 300px; height: 96px; }
.client-logo-set img[src*="logo-nationwide"] { width: 270px; height: 78px; }
@keyframes client-logo-scroll {
  from { transform: translate3d(calc(-50% - 21px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.section { padding: 88px 22px; }
.section.alt { background: rgba(255,255,255,.48); }
.wrap { width: min(var(--max), 100%); margin: 0 auto; }
.section-head { max-width: 810px; margin-bottom: 34px; }
.section-head p { margin-top: 15px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.services-showcase-wrap {
  width: min(1500px, calc(100% - 44px));
}
.services-showcase-wrap .section-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.grid { display: grid; gap: 14px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.comparison-feature {
  margin: 0 auto 26px;
}
.comparison-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
  gap: clamp(16px, 1.6vw, 26px);
  width: 100%;
}
.horizontal-scrollbar {
  display: none;
}
.comparison-slider {
  --comparison-position: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  background: var(--night);
  box-shadow: 0 24px 70px rgba(6,24,50,.16);
  touch-action: none;
  user-select: none;
}
.comparison-slider::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 0 28px rgba(6,24,50,.22);
  transform: translateX(-50%);
  pointer-events: none;
}
.comparison-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(6,24,50,.08);
  user-select: none;
}
.comparison-before-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}
.comparison-before {
  width: 100%;
}
.comparison-label {
  position: absolute;
  z-index: 4;
  top: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: white;
  background: rgba(6,24,50,.70);
  box-shadow: 0 12px 32px rgba(6,24,50,.18);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: none;
}
.comparison-label-before { left: 12px; }
.comparison-label-after { right: 12px; }
.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.comparison-handle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: var(--comparison-position);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(6,24,50,.26);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.comparison-handle svg {
  width: 21px;
  height: 21px;
}
.services-grid-compact {
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 1.4vw, 24px);
}
.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 18px 54px rgba(6,24,50,.08);
  backdrop-filter: blur(18px);
}
.service-card-photo {
  width: 100%;
  height: 150px;
  margin: 0 0 16px;
  border-radius: 18px;
  object-fit: contain;
  background: linear-gradient(135deg, #edf7fb, #dbe8ec);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 16px 36px rgba(6,24,50,.12);
}
.card .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 12px 28px rgba(7,152,208,.22);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }
.services-grid-compact .card {
  min-height: 148px;
  padding: 16px;
}
.services-grid-compact .service-card-photo {
  height: 104px;
  margin-bottom: 12px;
  border-radius: 16px;
}
.services-grid-compact .card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 14px;
}
.services-grid-compact .card h3 {
  margin-bottom: 7px;
  font-size: 21px;
  letter-spacing: 0;
}
.services-grid-compact .card p {
  font-size: 13px;
  line-height: 1.42;
}

.social-section {
  padding-top: 18px;
}
.social-section .wrap {
  width: min(1500px, calc(100% - 44px));
}
.social-section .section-head {
  max-width: 920px;
}
.social-section .eyebrow {
  color: var(--blue);
  background: rgba(7, 152, 208, .10);
  border-color: rgba(7, 152, 208, .20);
  backdrop-filter: blur(14px);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 410px));
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
}
.instagram-card {
  min-width: 0;
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(230,246,251,.58)),
    radial-gradient(circle at 20% 0%, rgba(7,152,208,.20), transparent 34%);
  box-shadow: 0 24px 70px rgba(6,24,50,.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.instagram-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,.32) 42%, transparent 58%);
  transform: translateX(-140%);
  animation: reel-sheen 4.8s cubic-bezier(.16,1,.3,1) infinite;
}
.instagram-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.50);
  overflow: hidden;
  pointer-events: none;
}
.video-card {
  width: 100%;
  max-width: 410px;
  aspect-ratio: 9 / 16;
  display: grid;
  align-items: stretch;
}
.work-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  background: var(--night);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.reel-status {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  color: white;
  background: rgba(6,24,50,.72);
  box-shadow: 0 12px 32px rgba(6,24,50,.18);
  backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.reel-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #37d9ff;
  box-shadow: 0 0 0 0 rgba(55,217,255,.55);
  animation: reel-pulse 1.45s ease-out infinite;
}
.video-actions {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}
.insta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 10px 16px 10px 10px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, rgba(6,24,50,.84), rgba(7,152,208,.86));
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 16px 42px rgba(6,24,50,.30), inset 0 1px 0 rgba(255,255,255,.22);
  backdrop-filter: blur(18px) saturate(145%);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
  cursor: pointer;
}
.insta-pill img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.45);
}
.insta-pill:hover { transform: translateY(-2px); }
@keyframes reel-sheen {
  0%, 52% { transform: translateX(-140%); opacity: 0; }
  62% { opacity: 1; }
  100% { transform: translateX(140%); opacity: 0; }
}
@keyframes reel-pulse {
  0% { box-shadow: 0 0 0 0 rgba(55,217,255,.55); }
  100% { box-shadow: 0 0 0 9px rgba(55,217,255,0); }
}

.feature-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}
.photo-panel {
  position: relative;
  min-height: 520px;
  padding: clamp(12px, 1.8vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
}
.photo-panel img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 22px;
}
.photo-panel-quote {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 2.2vw, 28px);
  min-height: 48px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #0869ad);
  box-shadow: 0 14px 34px rgba(7, 152, 208, .34);
  font-weight: 900;
  transform: translateX(-50%);
  white-space: nowrap;
}
.photo-panel-quote:hover {
  transform: translate(-50%, -2px);
}
.process {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.process li {
  list-style: none;
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px);
}
.process li::before {
  content: counter(step);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--night);
  font-weight: 900;
}
.process strong { display: block; font-weight: 900; }
.process span { color: var(--muted); }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-list span {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 10px 28px rgba(6,24,50,.06);
  backdrop-filter: blur(16px);
  font-weight: 900;
}
.gallery-grid {
  grid-template-columns: 1.15fr .85fr .85fr;
  align-items: stretch;
}
.gallery-tile {
  min-height: 280px;
  padding: 24px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(230,246,251,.70)),
    radial-gradient(circle at 18% 22%, rgba(7,152,208,.22), transparent 34%);
  box-shadow: 0 18px 54px rgba(6,24,50,.08);
}
.gallery-tile:first-child {
  min-height: 430px;
  color: white;
  background:
    linear-gradient(0deg, rgba(6,24,50,.76), rgba(6,24,50,.08)),
    url("images/pressure-washing-hero.png") center / cover no-repeat;
}
.gallery-tile p { margin-top: 8px; color: inherit; opacity: .78; }
.gallery-preview-grid {
  margin-bottom: 22px;
}
.gallery-tile.has-photo {
  position: relative;
  min-height: 360px;
  padding: 0;
  color: white;
  background: var(--night);
}
.gallery-tile.has-photo:first-child {
  min-height: 430px;
  background: var(--night);
}
.gallery-tile.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255,255,255,.52);
}
.gallery-tile.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,24,50,.78), rgba(6,24,50,.06) 62%);
}
.gallery-tile-content {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
}
.gallery-actions {
  justify-content: flex-start;
}
.home-gallery-showcase {
  overflow: hidden;
}
.home-gallery-showcase .wrap {
  width: min(1320px, 100%);
}
.gallery-selector-head {
  max-width: 900px;
}
.image-auto-slider {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(6,24,50,.96), rgba(6,24,50,.86)),
    radial-gradient(circle at 18% 0%, rgba(110,215,255,.18), transparent 34%);
  box-shadow: 0 28px 90px rgba(6,24,50,.18);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.image-auto-slider::before,
.image-auto-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 8vw, 120px);
  pointer-events: none;
}
.image-auto-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6,24,50,.95), rgba(6,24,50,0));
}
.image-auto-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6,24,50,.95), rgba(6,24,50,0));
}
.image-auto-track {
  width: max-content;
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  animation: gallery-auto-scroll 34s linear infinite;
  will-change: transform;
}
.image-auto-slider:hover .image-auto-track {
  animation-play-state: paused;
}
.image-auto-item {
  width: clamp(210px, 24vw, 330px);
  aspect-ratio: 9 / 16;
  flex: 0 0 auto;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  background: var(--night);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
  transition: transform .3s ease, filter .3s ease;
}
.image-auto-item:hover {
  transform: scale(1.035);
  filter: brightness(1.08);
}
.image-auto-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255,255,255,.78);
}
.image-auto-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  min-height: 44px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  color: white;
  background: rgba(6,24,50,.76);
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
}
@keyframes gallery-auto-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .image-auto-track {
    animation: none;
  }
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}
.gallery-photo-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 54px rgba(6,24,50,.08);
  cursor: zoom-in;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s, border-color .22s;
}
.gallery-photo-card:hover,
.gallery-photo-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(7,152,208,.34);
  box-shadow: 0 24px 70px rgba(6,24,50,.14);
  outline: none;
}
.gallery-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(135deg, #edf7fb, #dbe8ec);
}
.gallery-card-copy {
  padding: 18px 20px 22px;
}
.gallery-card-copy h3 {
  font-size: clamp(22px, 2vw, 28px);
}
.gallery-card-copy p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  padding: clamp(18px, 4vw, 46px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  background: rgba(3, 12, 26, .86);
  backdrop-filter: blur(18px) saturate(130%);
}
.gallery-lightbox[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }
.lightbox-frame {
  min-width: 0;
  margin: 0;
  justify-self: center;
  display: grid;
  gap: 14px;
}
.lightbox-frame img {
  max-width: min(1120px, 100%);
  max-height: min(76svh, 760px);
  object-fit: contain;
  border-radius: 22px;
  background: var(--night);
  box-shadow: 0 32px 100px rgba(0,0,0,.38);
}
.lightbox-frame figcaption {
  max-width: 920px;
  justify-self: center;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.12);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
}
.lightbox-nav {
  width: 58px;
  height: 58px;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,.22);
}

.cta-band {
  padding: 70px 22px;
  color: white;
  background:
    radial-gradient(circle at 18% 8%, rgba(110,215,255,.22), transparent 30%),
    linear-gradient(135deg, var(--night), var(--navy));
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.cta-band h2 { max-width: 800px; }
.cta-band p { max-width: 680px; margin-top: 14px; color: rgba(255,255,255,.76); }

.page-hero {
  padding: 138px 22px 76px;
  margin-top: -100px;
  color: white;
  background:
    radial-gradient(circle at 12% 10%, rgba(110,215,255,.24), transparent 34%),
    linear-gradient(135deg, var(--night), var(--navy));
}
.page-hero .wrap { padding-top: 40px; }
.page-hero h1 { color: white; }
.page-hero p { max-width: 780px; margin-top: 18px; color: rgba(255,255,255,.76); font-size: 19px; }
.page-hero .eyebrow {
  max-width: 100%;
  margin: 0 0 18px;
  color: #d7f5ff;
  font-size: 12px;
}
.service-page-hero,
.service-area-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.service-page-hero::before,
.service-area-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6,24,50,.94) 0%, rgba(6,24,50,.78) 48%, rgba(6,24,50,.24) 100%),
    url("images/pressure-washing-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}
.service-page-hero::after,
.service-area-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(0deg, var(--paper), rgba(246,245,239,0));
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
}
.hero-split .hero-actions { margin-top: 26px; }
.hero-stat-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  box-shadow: 0 24px 80px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter: blur(24px) saturate(150%);
}
.hero-stat-panel strong {
  display: block;
  color: white;
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}
.hero-stat-panel span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.tight-section { padding-block: 58px; }
.seo-intro {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(24px, 4vw, 62px);
  align-items: end;
}
.seo-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}
.eyebrow.light {
  color: var(--blue);
  border-color: rgba(7,152,208,.20);
  background: rgba(7,152,208,.10);
}
.service-detail-grid,
.area-detail-grid {
  gap: clamp(14px, 1.6vw, 22px);
}
.area-detail-grid { grid-template-columns: repeat(3, 1fr); }
.service-card,
.area-card {
  min-height: 296px;
  display: flex;
  flex-direction: column;
}
.service-card a,
.area-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 900;
}
.service-card a:hover,
.area-card a:hover { color: var(--navy); }
.service-process { align-items: start; }
.local-service-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(230,246,251,.70)),
    radial-gradient(circle at 0% 0%, rgba(7,152,208,.18), transparent 38%);
  box-shadow: var(--shadow);
}
.local-service-panel strong {
  display: block;
  margin-bottom: 16px;
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0;
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.keyword-cloud span {
  padding: 10px 12px;
  border: 1px solid rgba(6,41,90,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.link-grid a,
.link-stack a {
  min-height: 54px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(6,41,90,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6,24,50,.07);
}
.link-grid a:hover,
.link-stack a:hover {
  color: white;
  background: var(--night);
}
.link-stack {
  display: grid;
  gap: 10px;
}
.seo-photo {
  width: 100%;
  min-height: 360px;
  max-height: 520px;
  object-fit: contain;
  background: rgba(255,255,255,.72);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.seo-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.seo-panel h2 {
  margin-bottom: 18px;
}
.seo-panel h3 {
  margin: 24px 0 12px;
}
.area-card > span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--night);
  font-weight: 900;
}
.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 42px rgba(6,24,50,.07);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.faq-list summary {
  min-height: 66px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}
.faq-list details[open] summary { border-bottom: 1px solid rgba(6,41,90,.08); }
.faq-list p {
  padding: 18px 22px 22px;
  color: var(--muted);
}

.form-panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label { display: grid; gap: 7px; color: var(--ink); font-size: 14px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(6,41,90,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 126px; resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note { margin-top: 12px; color: var(--muted); font-size: 13px; }
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: start;
}
.info-stack { display: grid; gap: 14px; }
.contact-card {
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 54px rgba(6,24,50,.08);
  text-align: center;
}
.contact-card h3 {
  margin-bottom: 12px;
}
.contact-card strong {
  display: block;
  max-width: 100%;
  font-size: 20px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}
.contact-card p {
  margin-top: 10px;
  color: var(--muted);
}
.contact-card-cta {
  width: min(100%, 230px);
  margin-top: auto;
  transform: translateY(14px);
}
.contact-card-cta:hover {
  transform: translateY(10px);
}

.reviews-preview {
  background: rgba(255,255,255,.28);
}
.review-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}
.review-callout .section-actions,
.review-score-card .section-actions {
  margin-top: 20px;
}
.review-score-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(230,246,251,.78)),
    var(--card);
  box-shadow: var(--shadow);
  text-align: center;
}
.review-score-card .stars {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f4a51c;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}
.review-score-card strong {
  display: block;
  color: var(--ink);
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: clamp(68px, 8vw, 104px);
  line-height: .86;
}
.review-score-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 900;
}
.reviews-hero {
  background:
    linear-gradient(90deg, rgba(6,24,50,.92), rgba(6,24,50,.72)),
    url("images/gallery/driveway-surface-cleaning.jpg") center / cover no-repeat;
}
.reviews-page .chatbot-widget {
  display: none;
}
.review-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}
.review-score-card-large {
  position: sticky;
  top: 118px;
}
.review-copy {
  display: grid;
  gap: 24px;
}
.review-note-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.review-note {
  min-height: 230px;
}
.reviews-list-section {
  padding-top: 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(230,246,251,.68)),
    var(--card);
  box-shadow: 0 16px 44px rgba(6,24,50,.08);
}
.review-card strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}
.review-card .stars {
  margin-top: 18px;
  color: #c87f05;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-card blockquote {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}
.google-profile-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}
.google-profile-panel iframe {
  width: 100%;
  min-height: 430px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  background: rgba(255,255,255,.6);
  box-shadow: var(--shadow);
}

footer {
  padding: 46px 22px;
  color: white;
  background: #041326;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}
footer strong { display: block; margin-bottom: 12px; }
footer a, footer p { color: rgba(255,255,255,.72); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.chatbot-widget {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 260;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}
body.chatbot-open .mobile-quick-cta,
.chatbot-widget.has-conversation .chatbot-suggestions {
  display: none;
}
.chatbot-launcher,
.chatbot-panel {
  pointer-events: auto;
}
.chatbot-launcher {
  min-height: 56px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 18px 54px rgba(6,24,50,.28);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.chatbot-launcher:hover {
  transform: translateY(-2px);
}
.chatbot-panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(690px, calc(100svh - 104px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.40);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(251,250,245,.94);
  box-shadow: 0 28px 90px rgba(6,24,50,.28);
  backdrop-filter: blur(24px) saturate(145%);
}
.chatbot-panel[hidden] {
  display: none;
}
.chatbot-header {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: white;
  background:
    linear-gradient(135deg, rgba(6,24,50,.98), rgba(8,58,116,.94)),
    radial-gradient(circle at 20% 0%, rgba(110,215,255,.20), transparent 42%);
}
.chatbot-header strong,
.chatbot-header span {
  display: block;
}
.chatbot-header strong {
  font-family: "Cabinet Grotesk", "Satoshi", sans-serif;
  font-size: 24px;
  line-height: 1;
}
.chatbot-header span {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
}
.chatbot-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.10);
  cursor: pointer;
}
.chatbot-messages {
  min-height: 280px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}
.chatbot-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(6,24,50,.08);
}
.chatbot-message p {
  color: inherit;
  font-size: 14px;
  line-height: 1.42;
}
.chatbot-message-bot {
  align-self: flex-start;
  border-bottom-left-radius: 8px;
  background: white;
}
.chatbot-message-user {
  align-self: flex-end;
  border-bottom-right-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.chatbot-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.chatbot-actions::-webkit-scrollbar {
  display: none;
}
.chatbot-actions a {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7,152,208,.20);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(230,246,251,.78);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.chatbot-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(7,152,208,.38);
}
.chatbot-suggestions {
  padding: 0 16px 12px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.chatbot-suggestions::-webkit-scrollbar {
  display: none;
}
.chatbot-suggestions button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(6,41,90,.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.chatbot-suggestions button:hover {
  border-color: rgba(7,152,208,.28);
  background: white;
}
.chatbot-form {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  border-top: 1px solid rgba(6,41,90,.09);
  background: rgba(255,255,255,.62);
}
.chatbot-form input {
  min-height: 46px;
  border-radius: 999px;
}
.chatbot-form button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 10px 24px rgba(7,152,208,.24);
  cursor: pointer;
}

.proof-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.compact-process {
  margin-top: 0;
}
.compact-process li {
  min-height: auto;
  padding: 12px 0 12px 42px;
}
.compact-reviews .review-card {
  min-height: 100%;
}
.service-proof-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.service-proof-photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(6,24,50,.16);
}
.mobile-quick-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    padding: env(safe-area-inset-top) 0 0;
    background: var(--header);
    box-shadow: 0 12px 34px rgba(6,24,50,.16);
    pointer-events: auto;
  }
  .nav {
    width: 100%;
    min-height: 78px;
    margin: 0;
    padding: 10px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    color: white;
    background: rgba(255,255,255,.10);
  }
  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 24px;
    background: rgba(6,24,50,.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .nav-group {
    width: 100%;
  }
  .nav-group-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 14px;
    color: white;
    background: rgba(255,255,255,.08);
  }
  .nav-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    padding: 8px;
    display: none;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-menu-wide {
    min-width: 0;
  }
  .nav-group.open .nav-menu {
    display: grid;
  }
  .nav-group:hover .nav-menu,
  .nav-group:focus-within .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .hero { min-height: auto; margin-top: 0; padding-top: 54px; }
  .page-hero { margin-top: 0; padding-top: 64px; }
  .page-hero .wrap { padding-top: 0; }
  .hero-inner, .hero-split, .seo-intro, .trust-strip, .services-grid, .services-grid-compact, .service-detail-grid, .area-detail-grid, .instagram-grid, .feature-band, .gallery-grid, .gallery-page-grid, .split, .footer-grid, .field-grid, .faq-grid, .review-callout, .review-page-grid, .google-profile-panel, .review-note-grid, .reviews-grid, .link-grid, .proof-grid, .resource-grid {
    grid-template-columns: 1fr;
  }
  .service-page-hero,
  .service-area-hero {
    min-height: auto;
  }
  .hero-stat-panel {
    max-width: 560px;
  }
  .services-showcase-wrap { width: min(var(--max), calc(100% - 28px)); }
  .comparison-gallery {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--blue) rgba(6,24,50,.13);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .horizontal-scrollbar {
    height: 10px;
    margin: -2px 2px 18px;
    display: block;
    border-radius: 999px;
    background: rgba(6,24,50,.12);
    overflow: hidden;
  }
  .horizontal-scrollbar-thumb {
    width: var(--scroll-thumb-width, 36%);
    height: 100%;
    border: 2px solid rgba(239,247,251,.95);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--navy));
    transform: translateX(var(--scroll-thumb-left, 0px));
    transition: transform .12s ease-out, width .12s ease-out;
  }
  .comparison-gallery::-webkit-scrollbar,
  .instagram-grid::-webkit-scrollbar {
    height: 10px;
  }
  .comparison-gallery::-webkit-scrollbar-track,
  .instagram-grid::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(6,24,50,.12);
  }
  .comparison-gallery::-webkit-scrollbar-thumb,
  .instagram-grid::-webkit-scrollbar-thumb {
    border: 2px solid rgba(239,247,251,.95);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--navy));
  }
  .comparison-gallery .comparison-slider {
    min-width: 260px;
    scroll-snap-align: start;
  }
  .comparison-slider { border-radius: 24px; }
  .social-section .wrap { width: min(var(--max), calc(100% - 28px)); }
  .instagram-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    justify-content: start;
    padding-bottom: 16px;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--blue) rgba(6,24,50,.13);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .video-card {
    min-width: 260px;
    max-width: none;
    scroll-snap-align: start;
  }
  .home-gallery-showcase .wrap { width: min(var(--max), calc(100% - 28px)); }
  .image-auto-track { animation-duration: 28s; }
  .image-auto-item { width: clamp(190px, 42vw, 280px); }
  .hero h1 { font-size: clamp(42px, 10vw, 62px); }
  .estimate-panel { max-width: 460px; }
  .trust-strip { margin-top: 12px; }
  .photo-panel { min-height: 360px; }
  .review-score-card-large { position: static; }
  .cta-band .wrap { display: block; }
  .chatbot-panel {
    max-height: min(640px, calc(100svh - 94px));
  }
  .mobile-quick-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 255;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 20px;
    background: rgba(6,24,50,.94);
    box-shadow: 0 16px 46px rgba(6,24,50,.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .mobile-quick-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    color: white;
    font-weight: 950;
  }
  .mobile-quick-cta-call {
    background: rgba(255,255,255,.12);
  }
  .mobile-quick-cta-estimate {
    background: linear-gradient(135deg, var(--blue), var(--navy));
  }
  .chatbot-widget {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
  body.chatbot-open .chatbot-widget {
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .brand > span:last-child { max-width: 185px; }
  .brand-mark { width: 50px; height: 50px; flex-basis: 50px; }
  .brand small { font-size: 10px; }
  h1 { font-size: 46px; }
  .page-hero h1 {
    font-size: clamp(40px, 12.6vw, 50px);
    line-height: .98;
  }
  .page-hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }
  .hero { padding-bottom: 42px; }
  .hero-copy { font-size: 16px; }
  .hero-actions .btn, .section-actions .btn, .estimate-panel .btn { width: 100%; }
  .section { padding: 66px 16px; }
  .card,
  .service-card,
  .area-card {
    width: 100%;
    min-height: auto;
  }
  .service-card a,
  .area-card a {
    width: 100%;
  }
  .services-showcase-wrap { width: 100%; }
  .comparison-gallery {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    margin-right: -16px;
    padding-right: 16px;
  }
  .comparison-slider { aspect-ratio: 3 / 4; }
  .comparison-label { top: 12px; font-size: 11px; }
  .comparison-label-before { left: 12px; }
  .comparison-label-after { right: 12px; }
  .comparison-handle { width: 46px; height: 46px; }
  .gallery-selector-head { margin-bottom: 24px; }
  .image-auto-slider { border-radius: 24px; }
  .image-auto-track {
    padding: 18px;
    gap: 14px;
  }
  .image-auto-item {
    width: min(68vw, 240px);
    border-radius: 18px;
  }
  .image-auto-item figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 40px;
    font-size: 12px;
  }
  .card, .gallery-tile { min-height: auto; }
  .client-proof { padding: 72px 16px 62px; }
  .client-logo-cloud { padding: 18px 0; }
  .client-logo-track,
  .client-logo-set { gap: 28px; }
  .client-logo-slot { width: 250px; height: 82px; flex-basis: 250px; }
  .client-logo-set img { width: 190px; height: 62px; }
  .client-logo-set img[src*="logo-whits"] { width: 250px; height: 82px; }
  .client-logo-set img[src*="logo-nationwide"] { width: 230px; height: 68px; }
  .chatbot-widget {
    left: auto;
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
  .chatbot-widget.is-open {
    left: 10px;
    right: 10px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    justify-items: stretch;
  }
  .chatbot-launcher {
    width: 48px;
    min-height: 48px;
    padding: 0;
    font-size: 14px;
  }
  .chatbot-launcher span { display: none; }
  .chatbot-panel {
    width: 100%;
    max-height: min(650px, calc(100svh - 24px));
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    border-radius: 24px;
  }
  .chatbot-widget.is-open .chatbot-launcher {
    display: none;
  }
  .chatbot-header {
    padding: 12px 13px;
  }
  .chatbot-header strong {
    font-size: 20px;
  }
  .chatbot-header span {
    font-size: 12px;
  }
  .chatbot-close {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .chatbot-messages {
    min-height: min(340px, calc(100svh - 220px));
    padding: 12px;
    gap: 8px;
  }
  .chatbot-message {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 17px;
  }
  .chatbot-message p {
    font-size: 13px;
    line-height: 1.38;
  }
  .chatbot-actions {
    gap: 6px;
  }
  .chatbot-actions a {
    min-height: 31px;
    padding: 7px 9px;
    font-size: 11px;
  }
  .chatbot-suggestions {
    padding: 0 12px 10px;
    gap: 6px;
  }
  .chatbot-suggestions button {
    min-height: 32px;
    padding: 7px 9px;
    font-size: 11px;
  }
  .chatbot-form {
    padding: 9px;
    grid-template-columns: 1fr 40px;
  }
  .chatbot-form input {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 14px;
  }
  .chatbot-form button {
    width: 40px;
    height: 40px;
  }
  @keyframes client-logo-scroll {
    from { transform: translate3d(calc(-50% - 14px), 0, 0); }
    to { transform: translate3d(0, 0, 0); }
  }
}
