    :root {
        --secondary: #449DD1; /* brand accent */
        --text: #111;
        --muted: #6b7280; /* gray-500ish */
        --border: #e5e7eb; /* gray-200ish */
        --bg: #999999;
        --white: #fff;
        --black: #000;
        --brand-blue: #1f7bbd;      /* primary */
        --brand-blue-dark:#115a8c;  /* hover */
        --ink:#111827;              /* headings */
        --muted:#6b7280;            /* body text */
        --card:#ffffff;
        --bg:#f3f6f9;               /* light section bg */
        --ring: rgba(31,123,189,.25);
        --radius: 16px;
        --shadow: 0 6px 20px rgba(0,0,0,.06);
    }
    /* Base */
    * { box-sizing: border-box; }
    body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; color: var(--text); background: #fff; }
    a { color: inherit; }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

    /* Header */
    .header { width: 100%; border-bottom: 1px solid var(--border); background: var(--white); }
    .header-inner { display: flex; align-items: baseline; justify-content: space-between; padding: 0.75rem 1rem; }
    .brand { display: flex; align-items: baseline; gap: 0.5rem; }
    .brand-name { color: var(--secondary); font-weight: 800; letter-spacing: 0.04em; }
    .brand-tag { font-size: 0.75rem; color: var(--muted); }
    .header-call { font-size: 0.9rem; }
    .header-call-label { color: #000; margin-right: 0.5rem; }
    .header-call-link { font-weight: 600; color: var(--secondary); text-decoration: none; }
    .header-call-link:hover { text-decoration: underline; }

    /* Hero */
    .hero { position: relative; }
    .hero-media { position: relative; }
    .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); pointer-events: none; }
    .hero-img { width: 100%; height: 420px; object-fit: cover; display: block; }
    .hero-content { position: absolute; inset: 0; display: flex; align-items: center; }
    .hero-title { color: #fff; font-size: clamp(1.875rem, 2.5vw + 1rem, 3rem); font-weight: 800; line-height: 1.15; text-shadow: 0 1px 2px rgba(0,0,0,0.45); }
    .hero-subtitle { display: block; margin-top: 0.25rem; }
        /* Floating strip */
    .floating-wrap { position: absolute; left: 50%; bottom: -2.5rem; transform: translateX(-50%); width: 100%; }
    .floating { background: var(--secondary); color: #fff; border-radius: 2px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); padding: 1rem 1.5rem; display: grid; gap: 1rem; }
    @media (min-width: 768px) { .floating { display: flex; align-items: center; justify-content: space-between; } }
    .floating-text { font-weight: 700; letter-spacing: 0.02em; }
    .floating-sub { font-weight: 400; color: rgba(255,255,255,0.8); margin-left: 0.75rem; }

.service-areas{
  background: var(--bg);
  padding: 64px 16px;
}
.sa-container{
  max-width: 1100px;
  margin: 0 auto;
}

.sa-header{
  text-align: center;
  margin-bottom: 28px;
}
.sa-header h2{
  font-size: clamp(28px, 2.8vw, 40px);
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: .2px;
}
.sa-header p{
  color: var(--muted);
  margin: 0 0 18px;
}
.sa-header a{ color: var(--brand-blue); text-decoration: underline; }

/* ZIP checker */
.sa-zip{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: var(--card);
  padding: 10px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.sa-zip label{
  position: absolute;
  width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}
.sa-zip input{
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 140px;
  outline: none;
}
.sa-zip input:focus{
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px var(--ring);
}
.sa-zip button{
  background: var(--brand-blue);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}
.sa-zip button:hover{ background: var(--brand-blue-dark); }
.sa-zip small{ display:block; text-align:center; color: var(--muted); margin-top: 6px; }

/* Groups (County/Region) */
.sa-group{
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  margin: 22px 0;
}
.sa-group > summary{
  list-style: none;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  color: var(--ink);
  background: #1f7bbd;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(17,90,140,.08);
}
.sa-group > summary::-webkit-details-marker{ display:none; }
.sa-group[open] > summary{ background: #dff0ff; }

/* Grid of area cards */
.sa-grid{
  --cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 16px;
  padding: 16px 4px 4px;
  margin: 0;
  list-style: none;
}
.sa-card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #edf2f7;
}
.sa-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .2px;
}
.sa-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sa-chips li{
  background: #eef6fd;
  color: #0f3552;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid #d7e9fb;
}

/* Big CTA */
.sa-cta{
  margin-top: 28px;
  text-align: center;
}
.sa-call{
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.sa-call:hover{ background: var(--brand-blue-dark); }

/* ---- Media Queries ---- */
@media (max-width: 1200px){
  .sa-grid{ --cols: 3; }
}
@media (max-width: 900px){
  .sa-grid{ --cols: 2; }
  .sa-zip{ width: 100%; justify-content: center; flex-wrap: wrap; }
  .sa-zip input{ flex: 1 1 180px; }
}
@media (max-width: 600px){
  .service-areas{ padding: 44px 14px; }
  .sa-grid{ --cols: 1; }
  .sa-card{ padding: 16px; }
  .sa-call{ width: 100%; }
}