/* ==========================================================================
   H&E Cleaning Co LLC — Site Stylesheet
   Navy / Charcoal base with Teal accent — corporate, trust-forward B2B site
   ========================================================================== */

:root {
  /* Palette pulled straight from H&E's own logo (deep-to-bright eucalyptus
     greens), with a soft warm ivory standing in for the paper-texture
     background instead of stark white. */
  --navy: #33422c;        /* deep sage/forest green — primary dark */
  --navy-deep: #232b1d;   /* near-black forest green — deepest backgrounds */
  --navy-light: #4b5d40;  /* mid forest green */
  --charcoal: #3a4032;    /* warm charcoal-green */
  --teal: #5f8a49;        /* fresh mid-green accent, pulled from the logo gradient */
  --teal-dark: #466b35;   /* darker green for hover states */
  --teal-light: #e7efe0;  /* pale green tint for badges/tags */
  --ink: #33362c;         /* warm near-black body text */
  --gray-700: #5c6152;
  --gray-500: #82887a;
  --gray-200: #ddded0;
  --gray-100: #ecebdd;
  --gray-50: #f2f0e4;
  --white: #ffffff;
  --page-bg: #f8f6ee;     /* warm ivory page background — replaces stark white */
  --radius: 10px;
  /* Layered, two-stop shadows read as real elevation instead of a flat blur. */
  --shadow-sm: 0 1px 2px rgba(35, 43, 29, 0.08), 0 2px 6px rgba(35, 43, 29, 0.07);
  --shadow-md: 0 4px 12px rgba(35, 43, 29, 0.10), 0 14px 32px rgba(35, 43, 29, 0.14);
  --shadow-lg: 0 10px 24px rgba(35, 43, 29, 0.13), 0 26px 52px rgba(35, 43, 29, 0.20);
  --max-width: 1300px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--gray-700); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: #cdd6bf; }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-light {
  background-color: var(--gray-50);
}
.bg-teal-light { background: var(--teal-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.75em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%235f8a49' d='M20 4c-6 0-11 3-13.5 8C4 16 3 20 3 20s4-1 8-3.5C16 14 20 10 20 4z'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='1' d='M18 6C13 8 8 13 5 18'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.bg-navy .eyebrow, .bg-charcoal .eyebrow { color: #9bd17f; }
.bg-navy .eyebrow::before, .bg-charcoal .eyebrow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239bd17f' d='M20 4c-6 0-11 3-13.5 8C4 16 3 20 3 20s4-1 8-3.5C16 14 20 10 20 4z'/%3E%3Cpath fill='none' stroke='%23233' stroke-width='1' d='M18 6C13 8 8 13 5 18'/%3E%3C/svg%3E");
}

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { position: relative; padding-bottom: 18px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.section-head.center h2::after { left: 50%; transform: translateX(-50%); }
.bg-navy .section-head h2::after, .bg-charcoal .section-head h2::after {
  background: linear-gradient(90deg, #9bd17f, transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.15s ease, color 0.18s ease, box-shadow 0.18s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:hover::after { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(70, 107, 53, 0.35);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--teal-dark), var(--teal-dark)); box-shadow: 0 8px 20px rgba(70, 107, 53, 0.45); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { display: flex; width: 100%; justify-content: center; text-align: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(15, 20, 10, 0.35);
}

.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  min-width: 0;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand-mark-img {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
  background: #f8f6ee;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.brand { min-width: 0; }
.brand-text { min-width: 0; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9b89a;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #e8ecdd;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  border-bottom-color: var(--teal);
  text-decoration: none;
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; }
.nav-cta-mobile { display: none; }
.nav-phone-mobile { display: none; }
.nav-cta .btn { padding: 11px 22px; white-space: nowrap; }

/* Persistent click-to-call in the header — compact icon + number. */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eef2e6;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.nav-phone:hover { color: #9bd17f; text-decoration: none; }
.nav-phone .np-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(155, 209, 127, 0.16);
  color: #9bd17f;
  font-size: 0.9rem;
}
.nav-phone .np-text small { display: none; }
/* Below ~1080px the full nav gets tight — hide the header phone; it also
   lives in the mobile menu, so the number is never more than a tap away. */
@media (max-width: 1080px) and (min-width: 901px) {
  .nav-phone { display: none; }
}

@media (max-width: 900px) {
  .navwrap { flex-wrap: nowrap; gap: 8px; }
  .brand { font-size: 1.05rem; gap: 8px; flex: 1 1 auto; min-width: 0; overflow: hidden; }
  .brand-mark-img { height: 38px; }
  .brand-text { overflow: hidden; }
  .brand-text > span,
  .brand-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .brand-text small { display: none; }
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    background: transparent;
    border: 1px solid #55684a;
    color: var(--white);
    width: 44px;
    height: 40px;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .nav-toggle:hover { background: rgba(255,255,255,0.06); }
  .nav-toggle.is-active { border-color: #7a967a; background: rgba(255,255,255,0.08); }
  .hamburger-box { position: relative; display: inline-block; width: 20px; height: 15px; }
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .hamburger-inner { top: 6.5px; }
  .hamburger-inner::before { top: -7px; }
  .hamburger-inner::after { top: 7px; }
  .nav-toggle.is-active .hamburger-inner { background: transparent; }
  .nav-toggle.is-active .hamburger-inner::before { top: 0; transform: rotate(45deg); }
  .nav-toggle.is-active .hamburger-inner::after { top: 0; transform: rotate(-45deg); }

  .main-nav {
    position: fixed;
    top: 92px;
    right: 18px;
    width: 260px;
    max-width: calc(100vw - 36px);
    background:
      radial-gradient(circle at 15% 15%, rgba(155,209,127,0.35), transparent 42%),
      radial-gradient(circle at 85% 25%, rgba(95,138,73,0.38), transparent 48%),
      radial-gradient(circle at 25% 80%, rgba(70,107,53,0.32), transparent 50%),
      radial-gradient(circle at 90% 90%, rgba(226,193,120,0.22), transparent 45%),
      linear-gradient(160deg, rgba(51,66,44,0.68), rgba(35,43,29,0.75));
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { padding: 0 4px; }
  .main-nav li + li { border-top: 1px solid rgba(255,255,255,0.14); }
  .main-nav a {
    display: block;
    padding: 13px 12px;
    font-size: 1rem;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    border-bottom: none;
    border-radius: 10px;
  }
  .main-nav a:hover, .main-nav a.active {
    background: rgba(255,255,255,0.14);
    border-bottom-color: transparent;
  }
  .nav-cta-mobile {
    display: block;
    margin: 6px 4px 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .nav-cta-mobile .btn { width: 100%; justify-content: center; padding: 13px 0; font-size: 0.98rem; }
  .nav-phone-mobile { display: block; }
  .nav-phone-mobile a { font-weight: 700; color: #eef2e6; }
  .nav-phone-mobile a span { color: #9bd17f; margin-right: 6px; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(30,37,25,0.86), rgba(30,37,25,0.70)), var(--hero-img, none);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0 90px;
  overflow: hidden;
}
/* Clean straight edge at the bottom of heroes (wave removed). A crisp
   teal hairline gives an intentional divider without the decorative curve. */
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #9bd17f);
  pointer-events: none;
}
.hero-inner { max-width: 680px; }
.hero h1 { color: var(--white); }
.hero h1, .hero .eyebrow, .hero p.lead { text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.hero p.lead { color: #dfe6d2; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-badge { min-width: 140px; }
.hero-badge .num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: #9bd17f; line-height: 1; }
.hero-badge .label { font-size: 0.85rem; color: #c3ceb4; margin-top: 6px; }

.page-hero {
  position: relative;
  background: linear-gradient(120deg, rgba(30,37,25,0.86), rgba(30,37,25,0.70)), var(--hero-img, none);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 64px 0;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.3em; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.page-hero .eyebrow, .page-hero p.lead { text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.page-hero p.lead { color: #e4ead9; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: #b7c2a8; }
.breadcrumb a { color: #e2e8d5; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #fcfbf5);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
/* Hairline highlight along the top edge — catches light like a raised surface. */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--teal), #9bd17f);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: 0.5em; }
.icon-badge {
  width: 50px;
  height: 50px;
  /* organic "leaf" blob shape instead of a plain square, echoing the logo's foliage */
  border-radius: 42% 58% 63% 37% / 51% 40% 60% 49%;
  background: linear-gradient(135deg, var(--teal-light), #d9e8ce);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(70, 107, 53, 0.18);
  transition: transform 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease;
}
.card:hover .icon-badge {
  transform: rotate(-6deg) scale(1.05);
  border-radius: 58% 42% 37% 63% / 40% 51% 49% 60%;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-1-1 { aspect-ratio: 1 / 1; }

figcaption.photo-credit,
.photo-note {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ---------- Checklist ---------- */
ul.checklist { list-style: none; margin: 0 0 1.2em; padding: 0; }
ul.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--gray-700);
}
ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}
ul.checklist li::after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 7.5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.bg-navy .checklist li, .bg-charcoal .checklist li { color: #cdd6bf; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-family: var(--font-head); font-size: 2.4rem; color: #9bd17f; font-weight: 700; }
.stat .label { color: #cdd6bf; font-size: 0.9rem; margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: 0 3px 12px rgba(35, 43, 29, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(35, 43, 29, 0.20); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--teal-light);
  font-weight: 700;
  z-index: 0;
}
.testimonial p.quote { position: relative; z-index: 1; font-style: italic; color: var(--ink); font-size: 1.02rem; }
.testimonial .attribution { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.testimonial .role { color: var(--gray-500); font-size: 0.85rem; }
.testimonial .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; }

.placeholder-flag {
  display: inline-block;
  background: #fff4e5;
  color: #9a5b00;
  border: 1px solid #f3cf8a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ---------- Placeholder photo blocks (Gallery) ---------- */
.photo-placeholder {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(135deg, var(--gray-100), var(--gray-100) 10px, #e4e7da 10px, #e4e7da 20px);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  padding: 20px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal);
  color: var(--navy-deep);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--navy-deep); }
.cta-band p { color: var(--navy-deep); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.field .req { color: var(--teal-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--gray-50);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 10px; }

/* ---------- Contact info block ---------- */
.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.contact-info-list strong { display: block; color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Map / Service area ---------- */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }
.coverage-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 3px 12px rgba(35, 43, 29, 0.12);
  max-width: 400px;
  margin: 0 auto;
}
.coverage-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}
.coverage-pin {
  width: 50px;
  height: 50px;
  border-radius: 42% 58% 63% 37% / 51% 40% 60% 49%;
  background: linear-gradient(135deg, var(--teal-light), #d9e8ce);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(70, 107, 53, 0.18);
}
.coverage-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-500);
}
.coverage-city {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.coverage-list { list-style: none; margin: 0 0 16px; padding: 0; }
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-200);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
}
.coverage-list li:last-child { border-bottom: none; }
.coverage-list .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.coverage-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #b7c2a8;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.site-footer a { color: #b7c2a8; }
.site-footer a:hover { color: var(--teal); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 12px; }
.footer-mark-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
  background: #f8f6ee;
  border-radius: 50%;
  padding: 2px;
}
.footer-bottom {
  border-top: 1px solid #3f4d37;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #9aa68c;
}

.footer-credit a { color: #b7c2a8; border-bottom: 1px dotted rgba(155, 209, 127, 0.5); }
.footer-credit a:hover { color: #9bd17f; border-bottom-color: #9bd17f; text-decoration: none; }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-soon {
  display: inline-block;
  background: #fdf0d5;
  color: #96660e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 8px;
}
.tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--teal);
  color: var(--navy-deep);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

.two-col-list {
  columns: 2;
  column-gap: 40px;
}
@media (max-width: 700px) { .two-col-list { columns: 1; } }
.two-col-list li { break-inside: avoid; }

/* ---------- Mobile layout refinements ---------- */
@media (max-width: 640px) {
  section { padding: 48px 0; }
  .section-tight { padding: 32px 0; }
  .hero { padding: 56px 0 48px; }
  .page-hero { padding: 44px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin-top: 32px;
    padding-top: 24px;
  }
  .hero-badge .num { font-size: 1.7rem; }
  .card { padding: 22px; }
  .form-card { padding: 22px; }
  .grid { gap: 18px; }
  .split { gap: 24px; }
  .cta-band { padding: 40px 0; }
  .container { padding: 0 18px; }

  .site-footer { padding: 44px 0 24px; text-align: center; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 24px;
  }
  .footer-grid > div {
    padding: 22px 0;
    border-bottom: 1px solid #3a4732;
  }
  .footer-grid > div:first-child { padding-top: 0; }
  .footer-grid > div:last-child { border-bottom: none; }
  .footer-brand { justify-content: center; }
  .site-footer p { max-width: 340px; margin-left: auto; margin-right: auto; }
  .site-footer ul { display: flex; flex-direction: column; align-items: center; gap: 2px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Vercel: connected to GitHub repo, triggering fresh deploy */

/* Accessibility: visible keyboard focus */
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav-toggle:focus-visible {
  outline: 3px solid var(--teal-dark, #1d6a6a);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Depth layer — soft elevation and section separation so the page reads
   as stacked planes instead of one flat sheet.
   ========================================================================== */

/* Give alternating sections a real edge: a soft top divider plus an inset
   highlight makes each band feel like it sits above the one before it. */
.bg-light,
.bg-navy,
.bg-charcoal {
  position: relative;
}
.bg-light::before,
.bg-navy::before,
.bg-charcoal::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40px;
  pointer-events: none;
}
/* Light bands: subtle shadow spilling down from the section above. */
.bg-light::before {
  background: linear-gradient(180deg, rgba(35, 43, 29, 0.06), transparent);
}
/* Dark bands: a bright hairline + gradient reads as a lifted top face. */
.bg-navy::before,
.bg-charcoal::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 209, 127, 0.35), transparent);
}

/* The ivory page gets a faint vignette so it has some dimension of its own. */
body {
  background-image: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.6), transparent 60%);
  background-attachment: fixed;
}

/* Elevate the free-standing panels with the shared layered shadow. */
.stats-strip,
.coverage-card,
.testimonial,
.form-card {
  box-shadow: var(--shadow-md);
}
.testimonial:hover { box-shadow: var(--shadow-lg); }

/* Images gain a hairline frame so they sit crisply above the background. */
.img-frame {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(35, 43, 29, 0.06);
}

/* Sticky header casts a deeper shadow once you scroll under it. */
.site-header { box-shadow: 0 6px 22px rgba(15, 20, 10, 0.28); }

/* ==========================================================================
   Split hero — headline on the left, live quote form on the right.
   ========================================================================== */
.hero-split { padding: 76px 0 96px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* Frosted glass panel behind the copy — dark and translucent so it anchors
   the text over the photo without competing with the solid white form card. */
.hero-copy {
  max-width: 620px;
  background: linear-gradient(150deg, rgba(24, 30, 19, 0.62), rgba(24, 30, 19, 0.40));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 38px 40px;
  box-shadow: 0 18px 44px rgba(15, 20, 10, 0.30);
}
/* Same green accent as the form card, mirrored to the left edge, so the
   two panels read as a matched pair. */
.hero-copy {
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(180deg, #9bd17f, var(--teal));
}

/* Branded checklist — leaf-green ticks instead of generic checkmarks. */
.hero-trust { list-style: none; margin: 26px 0 30px; padding: 0; }
.hero-trust li {
  position: relative;
  padding: 0 0 0 34px;
  margin-bottom: 14px;
  color: #e7eddc;
  font-size: 1.02rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.hero-trust li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9bd17f, var(--teal));
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-actions { align-items: center; }
.hero-call {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--white);
  text-decoration: none;
}
.hero-call:hover { text-decoration: none; }
.hero-call-label { font-size: 0.78rem; color: #bcc9ad; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-call-num { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.hero-call:hover .hero-call-num { color: #9bd17f; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.88rem;
  color: #cdd6bf;
}
.hero-stars { color: #f5a623; letter-spacing: 2px; }

/* The quote card — the centerpiece. Ivory, deeply elevated, leaf-accented. */
.hero-form-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #fbfaf3);
  border-radius: 16px;
  padding: 30px 30px 26px;
  box-shadow: 0 24px 60px rgba(15, 20, 10, 0.42), 0 6px 18px rgba(15, 20, 10, 0.30);
  overflow: hidden;
}
/* Green accent bar across the top edge of the card. */
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), #9bd17f);
}
.hff-head { text-align: center; margin-bottom: 20px; }
.hff-head .eyebrow { justify-content: center; margin-bottom: 0.5em; }
.hff-head h2 { font-size: 1.5rem; padding: 0; margin-bottom: 0.3em; }
.hff-head h2::after { display: none; }
.hff-head p { font-size: 0.9rem; color: var(--gray-700); margin: 0; }
.hff-form .field { margin-bottom: 14px; }
.hff-form .form-row { gap: 14px; }
.hff-form .btn-block { margin-top: 6px; }
.hff-note {
  font-size: 0.76rem;
  color: var(--gray-500);
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Success state fills the card cleanly after submit. */
.hero-form-card .form-success { text-align: center; padding: 20px 6px; }
.hff-success-mark {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9bd17f, var(--teal));
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(70, 107, 53, 0.35);
}

@media (max-width: 960px) {
  .hero-split { padding: 52px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 100%; padding: 30px 26px; }
  .hero-form-card { max-width: 520px; margin: 0 auto; width: 100%; }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-quote-jump { text-align: center; justify-content: center; }
  .hero-call { align-items: center; text-align: center; margin-top: 4px; }
  .hero-form-card { padding: 24px 20px 22px; }
}

/* Slim credibility strip directly under the hero. */
.stat-bar {
  background: var(--navy);
}
.stat-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.stat-pill {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.stat-pill + .stat-pill { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 20px; }
.stat-pill .num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: #9bd17f;
  line-height: 1;
  white-space: nowrap;
}
.stat-pill .label { font-size: 0.82rem; color: #c3ceb4; line-height: 1.3; }
@media (max-width: 760px) {
  .stat-bar-inner { flex-wrap: wrap; gap: 16px 0; }
  .stat-pill { flex: 0 0 50%; }
  .stat-pill:nth-child(odd) { padding-left: 0; border-left: none; }
  .stat-pill:nth-child(even) { padding-left: 16px; }
}
@media (max-width: 420px) {
  .stat-pill { flex: 0 0 100%; padding-left: 0 !important; border-left: none !important; }
}
