/* ═══════ SERVICE AREA (SEO) ═══════ */
.svc-area {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 80px 0 100px;
}
.svc-area-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 2;
}

/* Header */
.svc-area-header {
  text-align: center;
  margin-bottom: 48px;
}
.svc-area-header .section-heading {
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-area-header p {
  font-size: calc(0.95rem + 2px);
  color: var(--navy);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Counties subtitle */
.svc-area-counties {
  text-align: center;
  font-size: calc(0.95rem + 2px);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 40px;
}

/* Flowing paragraph of city links */
.svc-area-cities {
  text-align: center;
  line-height: 2.1;
  max-width: 900px;
  margin: 0 auto;
  font-size: calc(0.95rem + 2px);
  color: var(--stone-400);
}
.svc-city {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 300;
  transition: color 0.2s;
}
.svc-city:hover {
  color: var(--navy);
}
.svc-city.major {
  color: var(--navy);
  font-weight: 600;
}
.svc-city.major:hover { color: var(--teal); }
.svc-sep { color: var(--stone-300); }
