/* ---------------------------------------------------------------
   Design tokens. Change a value here and it propagates site-wide.
   --------------------------------------------------------------- */
:root {
  color-scheme: light dark;

  --ink: #16181d;
  --ink-soft: #5b6270;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --line: #e3e5ea;
  --accent: #23B657;
  --accent-ink: #ffffff;

  --navy: #001C4C;
  --navy-soft: #062463;
  --green: #23B657;
  --green-dark: #178a44;
  --blue: #0056B3;
  --gold: #F5E28C;

  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: Impact, "Anton", "Arial Narrow Bold", sans-serif;

  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.55rem, 1.35rem + 1vw, 2.15rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3.25rem);

  --space: clamp(1rem, 0.8rem + 1vw, 1.75rem);
  --measure: 68ch;
  --wrap: 72rem;
  --radius: 12px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8eaef;
    --ink-soft: #a2aab8;
    --bg: #14161a;
    --bg-soft: #1c1f25;
    --line: #2b2f37;
    --accent: #6bbd8e;
    --accent-ink: #10221a;
  }
}

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

/* ---------------------------------------------------------------
   Base
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: normal;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0 0 0.4em;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: var(--step-3); letter-spacing: -0.01em; }
h2 { font-size: var(--step-2); letter-spacing: 0; }
h3 { font-size: var(--step-1); }

p, li { max-width: var(--measure); }
p { margin: 0 0 1em; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }

img { max-width: 100%; height: auto; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------
   Layout
   --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--space);
}

section { padding-block: calc(var(--space) * 2.5); }
section + section { border-top: 1px solid var(--line); }

.grid {
  display: grid;
  gap: calc(var(--space) * 1.25);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

/* ---------------------------------------------------------------
   Site chrome
   --------------------------------------------------------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.top-strip {
  background: var(--navy);
  color: #fff;
}
.top-strip-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 0.5rem;
  font-size: 0.85rem;
}
.top-strip .phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.top-strip .phone-link:hover { color: var(--green); }
.top-strip .service-area {
  color: #c4cee6;
  white-space: nowrap;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
  flex-wrap: wrap;
  padding-block: 0.6rem;
}
.brand {
  display: flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
}
.brand img.brand-logo {
  height: 70px;
  width: auto;
}
.site-nav { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.site-nav a {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.site-nav a:hover { color: var(--green); }
.site-nav a[aria-current="page"]:not([href*="#"]) { color: var(--green); }
.site-nav .button {
  color: #fff;
  font-size: 0.8rem;
  padding: 0.7em 1.2em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--navy);
}
@media (max-width: 55rem) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0 1.25rem;
    order: 3;
  }
  .site-nav.is-open { display: flex; }
  .header-main { position: relative; }
}

.site-footer {
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding-block: calc(var(--space) * 2.5);
  border-top: 1px solid var(--line);
}
.site-footer a {
  color: var(--blue);
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }
.site-footer .footer-grid {
  display: grid;
  gap: calc(var(--space) * 1.5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  margin-bottom: calc(var(--space) * 2);
}
.site-footer h3 {
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  margin-bottom: 0.9em;
}
.footer-brand .brand-logo { height: 48px; width: auto; margin-bottom: 1.1rem; }
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links li.footer-links-break { margin-top: 1rem; }
.footer-links a { color: var(--navy); }
.footer-contact p { margin: 0 0 0.5rem; }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 4px;
  background: #1877f2;
  margin-top: 0.75rem;
}
.footer-social svg { width: 1.1rem; height: 1.1rem; fill: #fff; }
.site-footer .bottom-bar {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 1rem;
}
.site-footer .bottom-bar p {
  color: var(--green-dark);
  font-weight: 800;
  font-style: italic;
  margin: 0;
}
@media (prefers-color-scheme: dark) {
  .site-footer h3,
  .footer-links a {
    color: var(--ink);
  }
  .site-footer a {
    color: var(--accent);
  }
  .site-footer .bottom-bar p {
    color: var(--accent);
  }
}

/* ---------------------------------------------------------------
   Components
   --------------------------------------------------------------- */
.hero { padding-block: calc(var(--space) * 3.5); }
.hero p.lead {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 46ch;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.7em 1.4em;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.button:hover { filter: brightness(1.08); transform: translateY(-1px); }

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.1);
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.eyebrow {
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ---------------------------------------------------------------
   Wash Dudes page components
   --------------------------------------------------------------- */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #d8dde6, #d8dde6 10px, #c9d0dd 10px, #c9d0dd 20px);
  color: #4a5468;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  width: 100%;
  text-align: center;
  padding: 0.5rem;
}

/* Hero */
.hero-section {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 34rem;
  display: flex;
  align-items: center;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,10,30,0.82) 0%, rgba(0,10,30,0.6) 45%, rgba(0,10,30,0.25) 75%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.hero-section h1 { color: #fff; }
.hero-section h1 .accent { color: var(--green); }
.hero-section .lead { color: #f0f2f6; max-width: 46ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.button.button-green {
  background: var(--green);
  color: #fff;
}
.button.button-navy {
  background: var(--navy);
  color: #fff;
}
.button.button-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.button.button-blue {
  background: var(--blue);
  color: #fff;
}

/* Hero + estimate form layout */
.hero-grid {
  display: grid;
  gap: calc(var(--space) * 2);
  grid-template-columns: 1fr;
  align-items: center;
  padding-block: calc(var(--space) * 2);
}
@media (min-width: 60rem) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
}

.estimate-form-card {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  min-height: 300px;
}
.estimate-form-card h2 {
  color: var(--navy);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.2em;
}
.estimate-form-card .form-sub {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.form-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.form-progress .progress-seg {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--line);
}
.form-progress .progress-seg.is-active { background: var(--green); }

.form-step { display: none; border: 0; margin: 0; padding: 0; }
.form-step.is-active { display: block; }
.form-step legend {
  font-weight: 700;
  color: var(--navy);
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.option-tile {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7em 0.9em;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.option-tile:has(input:checked) {
  border-color: var(--green);
  background: #e9f9ee;
}
.option-tile input { accent-color: var(--green); }

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 600;
  margin: -1rem 0 1.2rem;
}

.form-field {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.form-field span { display: block; margin-bottom: 0.35rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  padding: 0.6em 0.8em;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  resize: vertical;
}

.form-step .button {
  width: 100%;
  text-align: center;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

/* Services page hero */
.services-hero {
  background: var(--navy);
  color: #fff;
}
.services-hero h1 { color: #fff; }
.services-hero .lead-navy {
  color: #c4cee6;
  font-size: var(--step-1);
  max-width: 46ch;
}
.services-hero .estimate-form-card { box-shadow: 0 20px 50px rgba(0,0,0,0.35); }

.services-hero-band {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-top: none;
}
.services-hero-band .services-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.services-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.services-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--space) * 2.5);
}
.services-hero-band .hero-content { max-width: 34rem; }
.services-hero-band h1 { color: #fff; margin-bottom: 0.5em; }
.services-hero-band .accent-green { color: var(--green); }
.services-hero-band .lead-navy { color: #d7dbe4; max-width: 40ch; }
.services-hero-icons {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(7rem, 1fr));
  gap: 1.25rem;
  max-width: 44rem;
}
.services-hero-icons li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
}
.services-hero-icons .icon-line {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.services-hero-icons .icon-line svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
}
@media (max-width: 45rem) {
  .services-hero-icons { grid-template-columns: repeat(2, 1fr); }
}

/* Service detail listing */
.service-detail-grid {
  display: grid;
  gap: calc(var(--space) * 2);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 55rem) {
  .service-detail-grid { grid-template-columns: 1fr 1.2fr; }
}
.service-detail-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-detail h2 { color: var(--navy); margin-bottom: 0.5em; }
.service-detail:nth-of-type(even) { background: var(--bg-soft); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}
.check-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex: none; }

/* Trust bar */
.trust-bar {
  background: var(--navy);
  padding-block: calc(var(--space) * 1.4);
}
.trust-grid {
  display: grid;
  gap: calc(var(--space) * 1.25);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.trust-icon {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
}
.trust-item h3 {
  color: #fff;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.15em;
  letter-spacing: normal;
}
.trust-item p {
  color: #c4cee6;
  font-size: 0.85rem;
  margin: 0;
}

/* Why exterior cleaning matters */
.why-section { text-align: center; }
.why-section .eyebrow { text-align: center; }
.why-heading {
  color: var(--navy);
  text-transform: none;
  margin-bottom: 1.75rem;
}
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  text-align: center;
}
.why-item { text-align: center; }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.9rem;
}
.why-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--green-dark);
}
.why-item h3 {
  color: var(--navy);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}
.why-item p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0 auto;
}

/* Wrong way / right way comparison */
.difference-section { background: #eef0f4; }
.difference-grid {
  display: grid;
  gap: calc(var(--space) * 1.5);
  grid-template-columns: 1fr;
}
@media (min-width: 65rem) {
  .difference-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.difference-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.difference-img-wrap { position: relative; line-height: 0; }
.difference-img-wrap img { display: block; width: 100%; height: auto; }
.difference-label {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.difference-label.wrong-label { color: #e0342a; }
.difference-label.right-label { color: var(--blue); }
.difference-list {
  list-style: none;
  margin: 0;
  padding: 1.1rem 1.3rem;
}
.difference-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.difference-list li:last-child { margin-bottom: 0; }
.difference-list.wrong-list li::before {
  content: "✕";
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #e0342a;
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15em;
}
.difference-list.right-list li::before {
  content: "✓";
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15em;
}
.difference-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.difference-copy h2 {
  color: var(--navy);
  text-transform: uppercase;
  font-size: var(--step-2);
  margin-bottom: 0.6em;
}
.difference-copy p {
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.difference-copy blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Services strip (white bar, one row) */
.services {
  background: #fff;
  padding-block: calc(var(--space) * 1.25);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 60rem) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 34rem) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.services .service-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.services .service-card:hover,
.services .service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  border-color: var(--green);
}
.services .service-card-link {
  display: block;
  padding: 0.9rem;
  color: inherit;
  text-decoration: none;
}
.services .service-card img {
  display: block;
  margin: 0 auto 0.7rem;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.services .service-card:hover img {
  transform: scale(1.04);
}
.services .service-card h3 {
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.4em;
  transition: color 0.18s ease;
}
.services .service-card:hover h3 {
  color: var(--green-dark);
}
.services .service-card p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .services .service-card,
  .services .service-card img {
    transition: none;
  }
}

/* Process band */
.process-band { background: var(--navy); color: #fff; }
.process-band h2 { color: #fff; text-align: center; }
.process-grid {
  display: grid;
  gap: calc(var(--space) * 1.5);
  grid-template-columns: 1fr;
  text-align: center;
  counter-reset: step;
}
@media (min-width: 45rem) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
.process-step .step-num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
}
.process-step h3 { color: #fff; }
.process-step p { color: #c4cee6; margin: 0 auto; }

/* Property care plan */
.care-plan-section .wrap {
  display: grid;
  gap: calc(var(--space) * 2);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 60rem) {
  .care-plan-section .wrap { grid-template-columns: 1fr 1.15fr; }
}
.care-plan-copy h2 {
  color: var(--navy);
  font-size: var(--step-1);
  margin-bottom: 0.5em;
}
.care-plan-copy h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.7em;
}
.care-plan-copy > p {
  color: var(--ink);
  max-width: 42ch;
}
.care-plan-copy .check-list li::before { content: none; }
.care-plan-copy .check-list .check-icon {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15em;
}
.care-plan-copy .check-list li {
  font-size: 0.95rem;
  color: var(--ink);
}
.care-plan-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.button.button-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.care-plan-panel {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
@media (min-width: 40rem) {
  .care-plan-panel { grid-template-columns: 1.05fr 1fr; }
}
.care-plan-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 39.99rem) {
  .care-plan-panel img { min-height: 16rem; }
}
.care-plan-included {
  background: var(--navy);
  color: #fff;
  padding: calc(var(--space) * 1.25);
  display: flex;
  flex-direction: column;
}
.care-plan-included h3 {
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.9em;
}
.care-plan-included .check-list { margin: 0 0 1.5rem; flex: 1; }
.care-plan-included .check-list li::before { content: none; }
.care-plan-included .check-list .check-icon {
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15em;
}
.care-plan-included .check-list li {
  color: #fff;
  font-size: 0.9rem;
}
.care-plan-price {
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.care-plan-price strong {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
  margin-top: 0.3rem;
}

/* Results gallery */
.results-grid .placeholder-img { aspect-ratio: 4/3; }

/* Testimonials */
.testimonial-section { background: var(--bg-soft); }
.testimonial-heading { text-align: center; color: var(--navy); }
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.1);
}
.testimonial-card .stars { color: var(--green); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.testimonial-card p { flex: 1; }
.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.slider-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.slider-track {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.5s ease;
}
.slider-track li {
  flex: 0 0 100%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  .slider-track li { flex: 0 0 33.3333%; padding: 0 1rem; }
}
.slider-arrow {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.slider-arrow:hover {
  border-color: var(--green);
  color: var(--green-dark);
}
@media (prefers-reduced-motion: reduce) {
  .slider-track { transition: none; }
}

/* Final CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding-block: calc(var(--space) * 1.5);
  border-top: none;
}
.cta-band-grid {
  display: grid;
  gap: calc(var(--space) * 1.25);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 60rem) {
  .cta-band-grid { grid-template-columns: 1.2fr 1fr auto; }
}
.cta-band-heading {
  color: #fff;
  font-size: var(--step-2);
  margin: 0;
  text-align: left;
}
.cta-band-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.cta-band-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.cta-band-action p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.button.button-outline-green {
  background: var(--green-dark);
  border: 2px solid var(--gold);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   Contact page
   --------------------------------------------------------------- */
.contact-hero { min-height: auto; padding-block: calc(var(--space) * 2.5) calc(var(--space) * 5); }
.contact-hero .hero-content { max-width: 44rem; }
.hero-checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.hero-checklist li { display: flex; align-items: center; gap: 0.6rem; }
.hero-checklist li::before {
  content: "✓";
  flex: none;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-lower { padding-top: 0; border-top: none; }
.contact-grid {
  display: grid;
  gap: calc(var(--space) * 2);
  grid-template-columns: 1fr;
  align-items: start;
  margin-top: calc(var(--space) * -3.5);
  position: relative;
}
@media (min-width: 60rem) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
}

.contact-sidebar {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.25);
  align-self: end;
}
.sidebar-block { padding-block: 1.1rem; border-top: 1px solid var(--line); }
.sidebar-block:first-child { padding-top: 0; border-top: none; }
.sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  margin-bottom: 0.7rem;
}
.sidebar-icon svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.contact-sidebar h2 {
  color: var(--navy);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
.contact-sidebar p { font-size: 0.92rem; color: var(--ink-soft); }
.sidebar-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.sidebar-contact-list li { margin-bottom: 0.5rem; }
.contact-sidebar .check-list { margin-top: 0; }
.contact-sidebar .check-list li { font-size: 0.92rem; }
.sidebar-reviews { text-align: left; }
.reviews-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.2em; }
.reviews-stars strong { color: var(--ink); font-size: 1rem; margin-left: 0.3em; }

.contact-form-card { align-self: start; }
.contact-form-card h2 {
  text-align: center;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.4rem;
}
.form-field-label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.option-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 40rem) {
  .option-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}
@media (min-width: 30rem) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.contact-form-card textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 0.6em 0.8em;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  resize: vertical;
}
.radio-field {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
}
.radio-field legend {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  padding: 0;
  margin-bottom: 0.5rem;
}
.radio-field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.radio-field input { accent-color: var(--blue); }
.upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  border: 2px dashed var(--line);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 400;
  position: relative;
}
.upload-dropzone svg { width: 2rem; height: 2rem; fill: var(--blue); }
.upload-dropzone strong { color: var(--blue); }
.upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.contact-form-card .button { width: 100%; margin-top: 0.5rem; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0.7rem 0 0;
}

.process-light { background: var(--bg); }
.process-light h2 { color: var(--navy); text-align: center; }
.process-light .step-num { background: var(--blue); }
.process-light .process-step h3 { color: var(--navy); }
.process-light .process-step p { color: var(--ink-soft); }

.service-area-grid {
  display: grid;
  gap: calc(var(--space) * 2);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 55rem) {
  .service-area-grid { grid-template-columns: 1.1fr 1fr; }
}
.service-area-map {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.service-area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.service-area-copy h2 { color: var(--navy); margin-bottom: 0.5em; }

/* ---------------------------------------------------------------
   Why Wash Dudes page
   --------------------------------------------------------------- */
.icon-line {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--green-dark);
  margin-bottom: 0.9rem;
}
.icon-line svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-section .section-intro {
  text-align: center;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
}
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  text-align: left;
}
.feature-col h3 {
  color: var(--navy);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
.feature-col p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.feature-col img,
.feature-col .placeholder-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.one-team-section { background: var(--bg-soft); }
.one-team-grid {
  display: grid;
  gap: calc(var(--space) * 2);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 60rem) {
  .one-team-grid { grid-template-columns: 1fr 1.1fr; }
}
.one-team-grid-solo {
  grid-template-columns: 1fr;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
.one-team-grid-solo .check-list-2col {
  text-align: left;
  max-width: 34rem;
  margin-inline: auto;
}
.one-team-copy h2 { color: var(--navy); margin-bottom: 0.5em; }
.one-team-copy > p { color: var(--ink); max-width: 42ch; }
.one-team-copy-centered {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}
.one-team-copy-centered p { margin-inline: auto; }
.one-team-photo {
  display: block;
  width: 100%;
  max-width: 50rem;
  height: auto;
  border-radius: var(--radius);
  margin: 2rem auto 2.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.services-panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: calc(var(--space) * 1.5) calc(var(--space) * 1.75);
  max-width: 46rem;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.services-panel-heading {
  color: var(--navy);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}
.check-list-2col-centered {
  max-width: 40rem;
  margin-inline: auto;
}
.check-list-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.check-list-2col li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0;
}
.check-list-2col li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex: none;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.gallery-grid img,
.gallery-grid .placeholder-img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

.cta-final-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
}
@media (min-width: 45rem) {
  .cta-final-grid {
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }
}
.cta-final-icon {
  width: 3rem;
  height: 3rem;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-inline: auto;
}
@media (min-width: 45rem) { .cta-final-icon { margin-inline: 0; } }
.cta-final-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: #fff;
  stroke-width: 1.4;
}
.cta-final-text h2 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 0.2em;
}
.cta-final-text p {
  color: #c4cee6;
  margin: 0;
  font-size: 0.95rem;
}

.cta-final-button {
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.cta-final-button:hover {
  animation-play-state: paused;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
  50% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
