:root {
  --white: #ffffff;
  --ice: #f4fbff;
  --mist: #e6f6fd;
  --sky: #9fdcf4;
  --blue: #0b8fce;
  --blue-dark: #075f96;
  --navy: #10354c;
  --ink: #142b3b;
  --muted: #5d7585;
  --green: #0aa65b;
  --red: #e92832;
  --line: #d4eaf4;
  --shadow: 0 18px 42px rgba(16, 53, 76, 0.13);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 12px 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(212, 234, 244, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 53, 76, 0.1);
}

.brand-mark img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--navy);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-dark);
  background: var(--mist);
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(7, 95, 150, 0.22);
}

.button.secondary {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 143, 206, 0.3);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--navy);
}

.button.secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(16, 53, 76, 0.12);
}

.button.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(560px, calc(100svh - var(--header-height) - 58px));
  display: flex;
  align-items: center;
  padding: 38px 6vw 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 42, 67, 0.78) 0%, rgba(5, 42, 67, 0.55) 42%, rgba(5, 42, 67, 0.12) 100%),
    url("assets/hero-cleaning.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  color: var(--white);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 12px 8px 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 17ch;
  margin-top: 10px;
  color: var(--white);
  font-size: 3.35rem;
  line-height: 1;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.22);
}

.hero-lead {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.22rem;
}

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

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-band {
  background:
    linear-gradient(180deg, var(--ice), var(--white));
  border-block: 1px solid rgba(212, 234, 244, 0.72);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h2 {
  color: var(--navy);
  font-size: 2.5rem;
  line-height: 1.1;
  text-wrap: balance;
}

h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.section-heading p,
.split-copy p,
.relationship-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.trust-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

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

.stat-card,
.service-card,
.testimonial-card,
.relationship-card,
.benefit-panel,
.form-card,
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-card {
  min-height: 190px;
  padding: 24px;
}

.stat-card span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--mist);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 900;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.stat-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.service-card {
  min-height: 255px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 143, 206, 0.55);
  box-shadow: 0 22px 52px rgba(16, 53, 76, 0.17);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 8px;
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, var(--green), #087845);
}

.service-card:nth-child(3) .service-icon,
.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, var(--red), #b5141f);
}

.service-card p,
.process-step p,
.testimonial-card figcaption {
  margin-top: 12px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.split-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.split-copy .button {
  width: fit-content;
  margin-top: 8px;
}

.benefit-panel {
  padding: 28px;
}

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

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.benefit-list span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(10, 166, 91, 0.12);
}

.compact {
  padding-block: 70px;
}

.relationship-card {
  position: relative;
  padding: 46px;
  overflow: hidden;
}

.relationship-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 143, 206, 0.14), rgba(10, 166, 91, 0.12));
}

.relationship-card h2,
.relationship-card p,
.relationship-card .eyebrow {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.relationship-card h2 {
  margin-top: 12px;
}

.relationship-card p {
  margin-top: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.process-step {
  min-height: 245px;
  padding: 22px;
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  font-weight: 900;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  display: grid;
  gap: 18px;
  min-height: 240px;
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
}

.testimonial-card figcaption {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 700;
}

.areas-split {
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 1fr);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(16, 53, 76, 0.08);
  font-weight: 800;
}

.local-seo {
  background: var(--white);
}

.local-seo-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 46px;
  padding-block: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-seo-card h2 {
  margin-top: 12px;
}

.local-seo-copy {
  display: grid;
  gap: 16px;
}

.local-seo-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.work-with-us {
  background: var(--white);
}

.form-card {
  padding: 26px;
}

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

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

label.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 116px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 143, 206, 0.14);
}

.form-card .button {
  margin-top: 18px;
  border: 0;
}

.form-message {
  min-height: 26px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.contact-split {
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--navy);
  overflow-wrap: anywhere;
}

.site-footer {
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 40px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-info {
  display: grid;
  gap: 7px;
}

.footer-info a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
    padding-inline: 4vw;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: 0.88rem;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .brand-mark img {
    width: 43px;
    height: 43px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(16, 53, 76, 0.12);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .hero {
    min-height: max(540px, calc(100svh - var(--header-height) - 48px));
    padding-top: 58px;
    padding-bottom: 64px;
    background:
      linear-gradient(90deg, rgba(5, 42, 67, 0.84) 0%, rgba(5, 42, 67, 0.66) 58%, rgba(5, 42, 67, 0.22) 100%),
      url("assets/hero-cleaning.webp") 62% center / cover no-repeat;
  }

  h1 {
    max-width: 16ch;
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .section-inner {
    padding-block: 76px;
  }

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

  .split,
  .areas-split,
  .contact-split,
  .local-seo-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    max-width: 190px;
    white-space: normal;
    font-size: 0.96rem;
  }

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

  .hero {
    min-height: max(560px, calc(100svh - var(--header-height) - 44px));
    align-items: end;
    padding: 44px 20px 54px;
    background:
      linear-gradient(180deg, rgba(5, 42, 67, 0.2) 0%, rgba(5, 42, 67, 0.76) 45%, rgba(5, 42, 67, 0.9) 100%),
      url("assets/hero-cleaning.webp") 70% center / cover no-repeat;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.55rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
    padding-block: 64px;
  }

  h2 {
    font-size: 1.85rem;
  }

  .trust-grid,
  .service-grid,
  .testimonial-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .stat-card,
  .testimonial-card,
  .process-step {
    min-height: auto;
  }

  .relationship-card {
    padding: 28px;
  }

  .relationship-card::before {
    width: 74px;
  }

  .split {
    gap: 30px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1160px);
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 150px;
    font-size: 0.9rem;
  }

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

  .brand-mark img {
    width: 39px;
    height: 39px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-brand {
    font-size: 0.82rem;
  }

  .form-card,
  .benefit-panel {
    padding: 20px;
  }
}
