:root {
  --blue: #2e6fd8;
  --green: #3cbf5a;
  --white: #ffffff;
  --yellow: #ffd400;
  --dark: #333333;
  --light: #e5e5e5;
  --red: #c62828;
  --tan: #c8bfae;
  --grass: #7da563;
  --truck: #f5f5f5;
  --ink: #1f2933;
  --muted: #667085;
  --shadow: 0 24px 70px rgba(31, 41, 51, 0.16);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(31, 41, 51, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  min-width: max-content;
}

.brand small {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: currentColor;
  opacity: 0.75;
  margin-top: -3px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-active .brand-mark {
  background: var(--blue);
  color: var(--white);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.brand-mark .spark {
  fill: var(--yellow);
  stroke: none;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.95rem;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(19, 42, 74, 0.84) 0%, rgba(19, 42, 74, 0.55) 40%, rgba(19, 42, 74, 0.08) 74%),
    linear-gradient(0deg, rgba(19, 42, 74, 0.55) 0%, rgba(19, 42, 74, 0.02) 36%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(72px, 12vh, 128px) clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7.2vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.section-heading,
.button,
.eco-list li,
.contact-block,
.contact-actions {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(60, 191, 90, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #31ad4c;
}

.button-light {
  background: var(--white);
  color: var(--blue);
}

.button-secondary {
  background: var(--blue);
  color: var(--white);
}

.water-badge {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(20px, 7vh, 72px);
  width: min(340px, calc(100% - 36px));
  padding: 18px;
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.water-badge strong,
.water-badge span {
  display: block;
}

.water-badge strong {
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  line-height: 1;
}

.water-badge span {
  margin-top: 8px;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blue);
  color: var(--white);
}

.trust-strip div {
  min-height: 132px;
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-strip strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

.trust-strip span {
  display: block;
  max-width: 230px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 76px);
}

.intro {
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.section-grid p,
.process-copy p,
.eco-band p,
.contact-section p,
.service-card p,
.price-card p,
.faq p,
footer p {
  color: var(--muted);
}

.section-grid p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.pricing,
.faq {
  background: var(--truck);
}

.services {
  background: var(--green);
}

.services h2,
.services .section-kicker,
.services .text-link {
  color: var(--white);
}

.services .text-link {
  text-decoration-color: var(--yellow);
}

.section-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  white-space: nowrap;
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.price-card {
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 278px;
  padding: 28px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: rgba(46, 111, 216, 0.12);
  color: var(--blue);
}

.card-icon.green {
  background: rgba(60, 191, 90, 0.14);
  color: var(--green);
}

.card-icon.yellow {
  background: rgba(255, 212, 0, 0.25);
  color: #9a7d00;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 0;
}

.powerwash-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 76px);
  background: var(--blue);
}

.powerwash-section h2,
.powerwash-section .section-kicker {
  color: var(--white);
}

.powerwash-copy p {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.powerwash-copy .button {
  width: max-content;
}

.surface-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.surface-list span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(46, 111, 216, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(31, 41, 51, 0.07);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.45fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(200, 191, 174, 0.26), rgba(125, 165, 99, 0.14)),
    var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  min-height: 184px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(31, 41, 51, 0.08);
}

.steps span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 900;
}

.steps h3,
.steps p {
  margin-bottom: 0;
}

.eco-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 76px);
  background: var(--green);
  color: var(--white);
}

.eco-band h2,
.eco-band .section-kicker {
  color: var(--white);
}

.eco-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.eco-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-list li {
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 900;
}

.eco-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  flex: 0 0 auto;
}

.service-area-section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 76px);
  background: var(--blue);
}

.service-area-section h2,
.service-area-section .section-kicker,
.service-area-section .text-link {
  color: var(--white);
}

.service-area-section .text-link {
  text-decoration-color: var(--yellow);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.area-list span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(46, 111, 216, 0.16);
  border-radius: var(--radius);
  background: var(--truck);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.price-card {
  padding: 30px;
  min-height: 288px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.price-card.featured {
  border: 3px solid var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
}

.plan {
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 3.5rem;
  line-height: 1;
}

.price-card p:not(.plan) {
  min-height: 48px;
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 76px);
  background: var(--blue);
  color: var(--white);
}

.contact-section h2,
.contact-section .section-kicker {
  color: var(--white);
}

.contact-section p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.contact-actions {
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  width: 100%;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.1;
}

.faq h2 {
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(18px, 5vw, 76px);
  background: var(--dark);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-phone {
  color: var(--yellow);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--radius);
    color: currentColor;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.nav-active .nav-toggle {
    background: var(--light);
  }

  .nav-toggle span[aria-hidden="true"],
  .nav-toggle span[aria-hidden="true"]::before,
  .nav-toggle span[aria-hidden="true"]::after {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span[aria-hidden="true"]::before,
  .nav-toggle span[aria-hidden="true"]::after {
    content: "";
    position: absolute;
    left: 11px;
  }

  .nav-toggle span[aria-hidden="true"]::before {
    transform: translateY(-7px);
  }

  .nav-toggle span[aria-hidden="true"]::after {
    transform: translateY(7px);
  }

  .site-header.nav-active .nav-toggle span[aria-hidden="true"] {
    background: transparent;
  }

  .site-header.nav-active .nav-toggle span[aria-hidden="true"]::before {
    transform: rotate(45deg);
  }

  .site-header.nav-active .nav-toggle span[aria-hidden="true"]::after {
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    justify-items: start;
    gap: 20px;
    padding: 96px 24px 30px;
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 24px 60px rgba(31, 41, 51, 0.18);
    transform: translateY(-110%);
    transition: transform 200ms ease;
  }

  .site-header.nav-active .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(700px, calc(100% - 36px));
    margin: 0 auto 190px;
  }

  .water-badge {
    left: 18px;
    right: auto;
    bottom: 28px;
  }

  .trust-strip,
  .card-grid,
  .pricing-grid,
  .area-list,
  .section-grid,
  .process,
  .powerwash-section,
  .eco-band,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    grid-template-columns: 38px auto;
    gap: 8px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark svg {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 28px;
    align-items: start;
  }

  .hero-media {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(19, 42, 74, 0.9), rgba(19, 42, 74, 0.64)),
      linear-gradient(0deg, rgba(19, 42, 74, 0.72) 0%, rgba(19, 42, 74, 0.2) 52%);
  }

  .hero-content {
    width: auto;
    margin: 0 18px 22px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .powerwash-copy .button {
    width: 100%;
  }

  .water-badge {
    position: static;
    width: auto;
    margin: 0 18px;
    padding: 16px;
  }

  .water-badge strong {
    font-size: 1.02rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .section,
  .service-area-section,
  .powerwash-section,
  .eco-band,
  .contact-section {
    padding-block: 58px;
  }

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

  .surface-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    justify-items: start;
  }
}
