:root {
  --ink: #102a36;
  --muted: #5d6f78;
  --water: #0879a9;
  --water-dark: #075c83;
  --foam: #e8f8fb;
  --mint: #43c59e;
  --lime: #b7e264;
  --sun: #ffd166;
  --white: #ffffff;
  --line: rgba(16, 42, 54, 0.12);
  --shadow: 0 18px 50px rgba(12, 64, 88, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fcfb;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--water), var(--mint));
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(8, 121, 169, 0.25);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

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

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #244654;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 8px;
}

.main-nav a:hover {
  background: var(--foam);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--water);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--white);
  background: var(--water);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 45, 64, 0.82), rgba(5, 45, 64, 0.42) 48%, rgba(5, 45, 64, 0.1));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 9vw, 110px) clamp(18px, 6vw, 86px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.about-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p:not(.eyebrow),
.about-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

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

.call-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.98rem !important;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #052d40;
  background: var(--sun);
}

.call-button {
  box-shadow: 0 14px 34px rgba(255, 209, 102, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.call-landing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 44px) clamp(18px, 5vw, 70px);
  background: #f7fcfb;
}

.call-landing article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.call-landing span {
  display: inline-flex;
  padding: 8px 11px;
  color: #063146;
  background: var(--lime);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.call-landing h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.call-landing p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 46px);
  background: var(--white);
}

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

.trust-strip strong {
  margin-bottom: 7px;
  color: var(--water-dark);
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(60px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.intro-grid,
.areas,
.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.areas h2,
.story h2,
.wide-photo h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-grid p,
.split-copy p,
.areas p,
.story p,
.process-grid p,
.values-grid p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.service-card,
.split-image img,
.gallery-grid img,
.about-hero img,
.wide-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 1 / 1.08;
}

.image-stack img:last-child {
  aspect-ratio: 1 / 1.35;
  margin-top: 70px;
}

.services {
  background: #eaf7f8;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

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

.wash-difference {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.wash-difference article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(12, 64, 88, 0.08);
}

.wash-difference span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #063146;
  background: var(--lime);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wash-difference h3 {
  margin: 0 0 9px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.wash-difference p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-card {
  overflow: hidden;
  background: var(--white);
}

.service-card img {
  aspect-ratio: 1.18 / 1;
  border-radius: 0;
  box-shadow: none;
}

.service-card div {
  padding: 22px;
}

.service-card h3 {
  margin: 0 0 9px;
  font-size: 1.25rem;
}

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

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #0b3648;
}

.split-image {
  min-height: 420px;
}

.split-image img {
  border-radius: 0;
  box-shadow: none;
}

.split-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 90px);
  color: var(--white);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 15px;
  color: #e9fbff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 1 / 1.18;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
  grid-column: span 1;
}

.areas {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  background: #f9fffc;
}

.area-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.area-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: #063146;
  background: var(--lime);
  border-radius: 8px;
  font-weight: 900;
}

.area-card strong {
  display: block;
  font-size: 1.25rem;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(60px, 8vw, 105px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(135deg, #07314a, #0879a9 60%, #35bfa0);
}

.quote-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 1.02;
}

.quote-band p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.68;
}

.call-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 290px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.call-panel span {
  color: var(--water-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.call-panel a {
  color: #063146;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 950;
}

.call-panel p {
  margin: 0;
  color: var(--muted) !important;
  font-size: 1.08rem !important;
  line-height: 1.6 !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.78);
  background: #092433;
}

.mobile-call-bar {
  display: none;
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 9vw, 110px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(135deg, #07314a, #0f7fa7);
}

.about-hero img {
  aspect-ratio: 1 / 0.82;
}

.story {
  align-items: start;
  background: #f7fcfb;
}

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

.values-grid article,
.process-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(12, 64, 88, 0.08);
}

.values-grid strong {
  display: block;
  color: var(--water-dark);
  font-size: 1.1rem;
}

.process-section {
  background: #eaf7f8;
}

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

.process-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--water);
  font-size: 2.6rem;
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.wide-photo {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.wide-photo img {
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: none;
}

.wide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 41, 58, 0.82), rgba(5, 41, 58, 0.14));
}

.wide-photo div {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(36px, 7vw, 80px) clamp(18px, 5vw, 70px);
  color: var(--white);
}

.wide-photo .button {
  margin-top: 22px;
}

@media (max-width: 1050px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .areas,
  .call-landing,
  .quote-band,
  .about-hero,
  .story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 720px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(5, 45, 64, 0.86), rgba(5, 45, 64, 0.24));
  }

  .hero-content {
    margin-left: 18px;
    margin-bottom: 44px;
  }

  .trust-strip,
  .intro-grid,
  .split-feature,
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-top: 0;
  }

  .service-grid,
  .wash-difference,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .split-feature {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 84px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .mobile-call-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 14px;
    color: #052d40;
    background: var(--sun);
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(5, 45, 64, 0.28);
    font-weight: 950;
    text-align: center;
  }
}

.ad-page {
  background:
    radial-gradient(circle at top left, rgba(67, 197, 158, 0.14), transparent 26%),
    linear-gradient(180deg, #f5fcfd 0%, #eef8fb 100%);
}

.ad-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.ad-phone {
  white-space: nowrap;
}

.ad-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(38px, 7vw, 88px) clamp(18px, 5vw, 70px) clamp(28px, 5vw, 56px);
}

.ad-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 0.95;
}

.ad-hero-copy > p:not(.eyebrow):not(.ad-phone-note) {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  line-height: 1.68;
}

.ad-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 26px 64px rgba(8, 53, 73, 0.18);
}

.ad-hero-residential .ad-hero-media::after,
.ad-hero-commercial .ad-hero-media::after,
.ad-hero .ad-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 28, 39, 0.02), rgba(3, 28, 39, 0.18));
}

.ad-cta-stack {
  margin-top: 28px;
}

.ad-call-button {
  min-width: min(100%, 320px);
  font-size: 1.06rem;
}

.ad-phone-note {
  margin: 14px 0 0;
  color: var(--water-dark);
  font-size: 0.98rem;
  font-weight: 800;
}

.ad-badge-grid,
.ad-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ad-badge-grid {
  margin-top: 28px;
}

.ad-badge-grid div,
.ad-proof article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(8, 53, 73, 0.08);
}

.ad-badge-grid strong,
.ad-proof span {
  display: block;
}

.ad-badge-grid strong {
  margin-bottom: 8px;
  color: var(--water-dark);
  font-size: 1rem;
}

.ad-badge-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.ad-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 clamp(18px, 5vw, 70px) clamp(30px, 5vw, 42px);
}

.ad-proof article span {
  margin-bottom: 12px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ad-proof article h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.45rem);
  line-height: 1.04;
}

.ad-proof article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ad-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 70px);
}

.ad-feature-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.02;
}

.ad-feature-media {
  min-height: 460px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 58px rgba(8, 53, 73, 0.14);
}

.ad-steps {
  padding: clamp(52px, 7vw, 90px) clamp(18px, 5vw, 70px);
  background: linear-gradient(180deg, rgba(232, 248, 251, 0.88), rgba(255, 255, 255, 0.92));
}

.ad-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 5vw, 42px) clamp(18px, 5vw, 70px) clamp(72px, 10vw, 118px);
}

.ad-callout h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.02;
}

.ad-callout p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.ad-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 70px) 96px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .ad-hero,
  .ad-feature-band,
  .ad-callout,
  .ad-proof {
    grid-template-columns: 1fr;
  }

  .ad-callout {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .ad-header,
  .ad-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-phone {
    width: 100%;
  }

  .ad-hero {
    padding-top: 28px;
  }

  .ad-hero-media,
  .ad-feature-media {
    min-height: 320px;
  }

  .ad-badge-grid,
  .ad-proof {
    grid-template-columns: 1fr;
  }

  .ad-footer {
    padding-bottom: 86px;
  }
}
