/* ==========================================================================
   HELLER PRO WASH — STYLESHEET
   Mobile-first. Palette: white / charcoal / vibrant orange.
   Type: Big Shoulders Display (headlines), Inter (body).
   Sections below are ordered to roughly match index.html.
   ========================================================================== */

/* ----------------------------- Design Tokens ----------------------------- */
:root {
  /* Color */
  --color-white: #FFFFFF;
  --color-off-white: #F7F6F3;
  --color-charcoal: #1C1F22;
  --color-charcoal-soft: #2E3338;
  --color-charcoal-line: #3A4046;
  --color-orange: #F29200;
  --color-orange-dark: #D97D00;
  --color-text-muted: #5B6168;
  --color-text-muted-inverse: #B7BCC2;
  --color-border: #E7E4DE;

  /* Type */
  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --header-height: 76px;

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

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

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-orange);
  color: var(--color-charcoal);
  padding: 12px 20px;
  z-index: 2000;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ----------------------------- Type scale ----------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.75rem); margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--color-orange);
  margin-bottom: 10px;
}
.eyebrow-dark { color: var(--color-orange); }

.section-intro {
  max-width: 640px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-orange);
  color: var(--color-charcoal);
}
.btn-primary:hover { background: var(--color-orange-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-large { padding: 16px 32px; font-size: 1.05rem; }
.btn-small { padding: 10px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28, 31, 34, 0.96);
  backdrop-filter: blur(6px);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo-text-accent { color: var(--color-orange); font-size: 0.6rem; letter-spacing: 0.16em; margin-top: 2px; }

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

.main-nav ul {
  display: none;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}
.header-phone:hover { color: var(--color-orange); }

.nav-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown nav */
.main-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-charcoal-line);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease;
}
.main-nav.is-open { max-height: 480px; }
.main-nav ul {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 20px;
}
.main-nav a {
  display: block;
  padding: 12px 0;
  color: var(--color-white);
  font-weight: 600;
  border-bottom: 1px solid var(--color-charcoal-line);
}
.main-nav a:hover { color: var(--color-orange); }

@media (min-width: 960px) {
  .main-nav {
    position: static;
    max-height: none;
    background: none;
    border: none;
    overflow: visible;
  }
  .main-nav ul {
    flex-direction: row;
    padding: 0;
    gap: 28px;
  }
  .main-nav a {
    padding: 6px 0;
    border: none;
    font-size: 0.92rem;
  }
  .main-nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--color-orange);
    transition: width var(--transition-fast);
  }
  .main-nav a:hover::after { width: 100%; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* ----------------------------- Mobile sticky call bar ----------------------------- */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: var(--color-charcoal);
  border-top: 2px solid var(--color-orange);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.mobile-call-btn, .mobile-quote-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.mobile-call-btn { color: var(--color-white); }
.mobile-quote-btn { background: var(--color-orange); color: var(--color-charcoal); }

@media (min-width: 720px) {
  .mobile-call-bar { display: none; }
}

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

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

/* Placeholder stands in for the real background video: a layered
   charcoal-to-orange gradient with a subtle diagonal "spray" texture. */
.hero-video-placeholder {
  background:
    repeating-linear-gradient(115deg, rgba(242,146,0,0.10) 0px, rgba(242,146,0,0.10) 2px, transparent 2px, transparent 42px),
    linear-gradient(135deg, #14161A 0%, #1C1F22 45%, #2E3338 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,22,25,0.55) 0%, rgba(20,22,25,0.72) 55%, rgba(20,22,25,0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

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

.hero h1 {
  color: var(--color-white);
  max-width: 15ch;
  margin-bottom: 18px;
}

.hero-sub {
  max-width: 52ch;
  font-size: 1.1rem;
  color: var(--color-text-muted-inverse);
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted-inverse);
}
.hero-trust-strip li { position: relative; padding-left: 20px; }
.hero-trust-strip li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-orange);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  translate: -50% 0;
  color: var(--color-white);
  opacity: 0.7;
  animation: bob 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

/* Diagonal stripe divider — signature motif echoing spray lines /
   hazard-stripe truck branding common in the trades. */
.stripe-divider {
  height: 18px;
  background: repeating-linear-gradient(-45deg, var(--color-orange) 0, var(--color-orange) 22px, var(--color-charcoal) 22px, var(--color-charcoal) 44px);
}
.stripe-divider--dark {
  background: repeating-linear-gradient(-45deg, var(--color-charcoal) 0, var(--color-charcoal) 22px, var(--color-orange) 22px, var(--color-orange) 44px);
}

/* ----------------------------- Sections (generic rhythm) ----------------------------- */
section { padding: 72px 0; }
.services, .why-us, .faq { background: var(--color-white); }
.gallery, .reviews, .service-area { background: var(--color-off-white); }

/* ----------------------------- Services ----------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.service-card:hover {
  box-shadow: 0 16px 32px rgba(28,31,34,0.10);
  transform: translateY(-4px);
}

.service-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,31,34,0.35), transparent 55%);
}

/* Distinct gradient placeholders per service — swap for real photography
   by replacing these backgrounds with background-image: url(...); */
.service-img--house      { background: linear-gradient(135deg, #3A4046, #6B7480), repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 24px); }
.service-img--fence      { background: linear-gradient(135deg, #8A6A3E, #C9A063), repeating-linear-gradient(90deg, rgba(28,31,34,0.15) 0 6px, transparent 6px 30px); }
.service-img--softwash   { background: linear-gradient(135deg, #5B8A96, #A9CBD1); }
.service-img--surface    { background: linear-gradient(135deg, #7C7C78, #C7C4BC); }
.service-img--window     { background: linear-gradient(135deg, #2E3338, #7FA6B8); }

.service-card-body { padding: 22px 22px 26px; }
.service-card-body p { color: var(--color-text-muted); font-size: 0.96rem; margin-bottom: 16px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-orange-dark);
  transition: gap var(--transition-fast);
}
.card-link:hover { gap: 10px; }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------- Before/After Slider (signature element) ----------------------------- */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  margin: 0 auto 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(28,31,34,0.18);
  user-select: none;
  touch-action: pan-y;
}

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* "Before" — dirty, dull, algae-toned gradient */
.ba-before {
  background: linear-gradient(135deg, #5C5347 0%, #7A6E5B 45%, #8C8368 100%),
              repeating-linear-gradient(100deg, rgba(0,0,0,0.06) 0 3px, transparent 3px 26px);
}
/* "After" — bright, clean, crisp gradient, revealed via clip-path */
.ba-after {
  background: linear-gradient(135deg, #E9EEF1 0%, #FFFFFF 50%, #DCE7EA 100%),
              repeating-linear-gradient(100deg, rgba(242,146,0,0.05) 0 3px, transparent 3px 26px);
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  background: rgba(28,31,34,0.75);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
  pointer-events: none;
}
.ba-label--before { left: 16px; }
.ba-label--after { right: 16px; }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 3px;
  background: var(--color-white);
}
.ba-handle svg {
  position: relative;
  background: var(--color-orange);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; }
.gallery-thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.gallery-thumb--fence   { background: linear-gradient(120deg, #8A6A3E 0%, #C9A063 50%, #EFE0C0 100%); }
.gallery-thumb--surface { background: linear-gradient(120deg, #6B6864 0%, #A9A69D 50%, #E5E3DC 100%); }
.gallery-thumb--house   { background: linear-gradient(120deg, #454B51 0%, #8D97A0 50%, #DCE4E8 100%); }
.gallery-item figcaption {
  padding: 12px 4px 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------- Why Us (dark section) ----------------------------- */
.why-us {
  background: var(--color-charcoal);
  color: var(--color-white);
}
.why-us h2 { color: var(--color-white); }

.why-us-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(242,146,0,0.12);
  border: 1px solid rgba(242,146,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-us-item h3 { color: var(--color-white); }
.why-us-item p { color: var(--color-text-muted-inverse); font-size: 0.95rem; }

@media (min-width: 640px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .why-us-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

/* ----------------------------- Reviews ----------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.stars {
  color: var(--color-orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.review-card blockquote {
  font-size: 0.98rem;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}
.review-card figcaption {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

@media (min-width: 780px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------- Service Area ----------------------------- */
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.service-area-content p { color: var(--color-text-muted); margin-bottom: 20px; }

.service-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 28px;
}
.service-area-list li {
  font-weight: 600;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}
.service-area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
}

.service-area-map {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(242,146,0,0.08), transparent),
    repeating-linear-gradient(0deg, rgba(28,31,34,0.05) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(28,31,34,0.05) 0 1px, transparent 1px 32px),
    #EFEDE7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin { animation: none; }

@media (min-width: 860px) {
  .service-area-inner { grid-template-columns: 1.1fr 0.9fr; }
  .service-area-map { min-height: 380px; }
}

/* ----------------------------- FAQ ----------------------------- */
.faq-list {
  max-width: 780px;
  margin-top: 32px;
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  max-width: 65ch;
}

/* ----------------------------- Contact / Quote Form ----------------------------- */
.contact { background: var(--color-charcoal); color: var(--color-white); }
.contact .eyebrow { color: var(--color-orange); }
.contact h2 { color: var(--color-white); }
.contact-intro p { color: var(--color-text-muted-inverse); margin-bottom: 24px; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-detail a:hover { color: var(--color-orange); }

.quote-form {
  background: var(--color-white);
  color: var(--color-charcoal);
  padding: 28px;
  border-radius: var(--radius-md);
}

.form-row { margin-bottom: 18px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
}
.form-row--split > div { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.form-row label span { color: var(--color-orange-dark); }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-off-white);
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-orange);
  outline: none;
}
.form-row textarea { resize: vertical; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.is-success { color: #1E7A3A; }
.form-status.is-error { color: #B3261E; }

@media (min-width: 640px) {
  .form-row--split { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .contact-inner { grid-template-columns: 0.9fr 1.1fr; }
}

/* ----------------------------- Footer ----------------------------- */
.site-footer {
  background: #14161A;
  color: var(--color-text-muted-inverse);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand p { margin: 14px 0 18px; font-size: 0.92rem; }
.logo-text--footer { color: var(--color-white); }

.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-charcoal-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.footer-social a:hover { background: var(--color-orange); border-color: var(--color-orange); color: var(--color-charcoal); }

.footer-links h3, .footer-contact h3 {
  color: var(--color-white);
  font-family: var(--font-body);
  text-transform: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--color-orange); }

.footer-contact p { font-size: 0.9rem; margin-bottom: 10px; }
.footer-contact a:hover { color: var(--color-orange); }

.footer-bottom {
  border-top: 1px solid var(--color-charcoal-line);
  padding: 18px 0 100px;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
  .footer-bottom { padding-bottom: 22px; }
}
@media (min-width: 720px) {
  .site-footer { padding-bottom: 0; }
}

/* Extra bottom padding on mobile so sticky call bar never covers content */
@media (max-width: 719px) {
  .site-footer { padding-bottom: 64px; }
}

/* ==========================================================================
   SERVICE DETAIL PAGES (house-washing.html, fence-washing.html, etc.)
   ========================================================================== */

/* Breadcrumb trail under the header */
.breadcrumb {
  padding: 18px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--color-orange-dark); }
.breadcrumb span[aria-current] { color: var(--color-charcoal); font-weight: 600; }

/* Compact page hero (photo or gradient banner + heading) */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,22,25,0.88) 0%, rgba(20,22,25,0.55) 60%, rgba(20,22,25,0.35) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
  padding-top: 60px;
}
.page-hero h1 {
  color: var(--color-white);
  max-width: 18ch;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 5vw, 3rem);
}
.page-hero-sub {
  max-width: 56ch;
  color: var(--color-text-muted-inverse);
  font-size: 1.02rem;
  margin-bottom: 24px;
}
.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Intro content block */
.service-intro {
  max-width: 760px;
}
.service-intro p { color: var(--color-text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.service-intro p:last-child { margin-bottom: 0; }

/* Benefits grid (reuses why-us look on a light background) */
.benefits-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.benefit-item .why-us-icon { background: rgba(242,146,0,0.10); border-color: rgba(242,146,0,0.35); }
.benefit-item h3 { font-size: 1.1rem; }
.benefit-item p { color: var(--color-text-muted); font-size: 0.94rem; }

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* Process steps */
.process-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-left: 56px;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { color: var(--color-text-muted); font-size: 0.94rem; }

@media (min-width: 780px) {
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
}
@media (min-width: 1040px) {
  .process-list { grid-template-columns: repeat(4, 1fr); }
}

/* Full-width photo band on service pages */
.service-photo {
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  margin-top: 40px;
}

/* Related services list */
.related-services {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.related-services a {
  padding: 10px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.related-services a:hover { border-color: var(--color-orange); color: var(--color-orange-dark); }

/* Final CTA band on service pages */
.service-cta {
  background: var(--color-charcoal);
  color: var(--color-white);
  text-align: center;
  padding: 56px 0;
}
.service-cta h2 { color: var(--color-white); }
.service-cta p { color: var(--color-text-muted-inverse); max-width: 52ch; margin: 0 auto 26px; }
.service-cta .hero-cta-group { justify-content: center; }
