:root {
  --ink: #14211f;
  --muted: #596763;
  --paper: #f7f8f4;
  --panel: #ffffff;
  --line: #d9e1dc;
  --teal: #0d7c72;
  --green: #4c8a3f;
  --lime: #d7e86f;
  --charcoal: #182522;
  --shadow: 0 22px 60px rgba(19, 33, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(247, 248, 244, 0.94);
  box-shadow: 0 10px 40px rgba(20, 33, 31, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  min-width: 128px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  filter: drop-shadow(0 8px 16px rgba(9, 19, 17, 0.18));
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-copy {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.header-services,
.header-area {
  margin: 0;
  color: currentColor;
  line-height: 1.25;
}

.header-services {
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-area {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.99rem, 1.38vw, 1.17rem);
  font-weight: 700;
}

.site-header.scrolled .header-area,
.site-header.menu-open .header-area {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-cta {
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 17, 0.86) 0%, rgba(9, 19, 17, 0.62) 38%, rgba(9, 19, 17, 0.08) 72%),
    linear-gradient(180deg, rgba(9, 19, 17, 0.2) 0%, rgba(9, 19, 17, 0.06) 68%, var(--paper) 100%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 0;
  color: #fff;
}

.opening-notice {
  display: grid;
  gap: 3px;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid var(--lime);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.opening-notice strong {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.opening-notice span {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-title .spec-initial {
  display: inline;
  color: #075dc4;
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.hero-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.hero-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: var(--lime);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -52px auto 0;
  position: relative;
  z-index: 2;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-band div {
  min-height: 122px;
  padding: 26px;
  background: var(--panel);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.services {
  padding-top: 55px;
  padding-bottom: 25px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services .section-heading {
  width: 100%;
  max-width: none;
}

.section-heading.compact {
  max-width: 620px;
}

.process .section-heading.compact {
  width: 100%;
  max-width: none;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.quote-copy p,
.results-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  color: #fff;
  background-color: var(--charcoal);
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 44px rgba(19, 33, 31, 0.14);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 19, 17, 0.24), rgba(9, 19, 17, 0.78)),
    linear-gradient(90deg, rgba(9, 19, 17, 0.52), rgba(9, 19, 17, 0.08));
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-pressure {
  background-image: url("assets/service-01-pressure-washing.png");
}

.service-soft-house {
  background-image: url("assets/service-02-soft-house-wash.png");
}

.service-driveway {
  background-image: url("assets/service-03-driveway-cleaning.png");
}

.service-walkways {
  background-image: url("assets/service-04-walkways-patios.png");
}

.service-roof {
  background-image: url("assets/service-05-roof-cleaning.png");
}

.service-maintenance {
  background-image: url("assets/service-06-property-maintenance.png");
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.service-card h3,
.steps h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.service-card p,
.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card p {
  color: rgba(255, 255, 255, 0.82);
}

.process {
  padding-top: 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: #fff;
  background: var(--charcoal);
  min-height: 260px;
}

.step-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 19, 17, 0.08), rgba(9, 19, 17, 0.62)),
    linear-gradient(90deg, rgba(9, 19, 17, 0.42), rgba(9, 19, 17, 0.04));
  z-index: 1;
}

.steps article > :not(.step-bg) {
  position: relative;
  z-index: 2;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.steps p {
  color: rgba(255, 255, 255, 0.78);
}

.results {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--charcoal);
}

.results .eyebrow {
  color: var(--lime);
}

.results-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.result-list {
  display: grid;
  gap: 12px;
}

.result-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.result-list strong,
.result-list span {
  display: block;
}

.result-list strong {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.result-list span {
  color: rgba(255, 255, 255, 0.72);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.captcha-question {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd6d1;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(13, 124, 114, 0.2);
  border-color: var(--teal);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: #101917;
}

.footer-logo {
  width: 190px;
  height: auto;
  padding: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .header-copy {
    max-width: 360px;
  }

  .header-services {
    font-size: 0.72rem;
  }

  .header-area {
    font-size: 0.96rem;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 12px;
  }

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

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 19, 17, 0.82), rgba(9, 19, 17, 0.54)),
      linear-gradient(180deg, rgba(9, 19, 17, 0.08), var(--paper) 100%);
  }

  .trust-band,
  .service-grid,
  .steps,
  .results,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-top: 0;
    width: 100%;
  }

  .section,
  .quote-section {
    padding: 70px 0;
  }

  .services {
    padding-top: 55px;
    padding-bottom: 25px;
  }

  .results {
    padding-block: 70px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 106px;
    min-width: 106px;
    height: 54px;
  }

  .header-copy {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-band div,
  .service-card,
  .steps article,
  .quote-form {
    padding: 22px;
  }
}
