/* ─────────────────────────────────────────────────────────────────
   geo.css — Core 30 location-service pages (e.g. mold-remediation-
   santa-ana-ca). Layout, nav, hero, reviews, closing CTA, service
   areas and footer all come from site.css + service-page.css; this
   file only styles the readable content-prose sections unique to the
   geo pages.
   ───────────────────────────────────────────────────────────────── */

/* Tighter heading→body gap than the default .section-heading (4rem),
   since geo sections lead straight into prose. */
.section-heading.tight { margin-bottom: 2rem; }
.section-heading.tight.left { text-align: left; margin-left: 0; }

.geo-prose {
  max-width: 760px;
  margin: 0 auto;
}
.geo-prose p {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--color-text-body);
  margin: 0 0 1.2rem;
  text-wrap: pretty;
}
.geo-prose p:last-child { margin-bottom: 0; }

/* On the dark "Why choose us" band, lift the prose to the light-on-dark
   token so it stays legible. */
.svc-section.is-dark .geo-prose p { color: var(--color-white-text-lead); }

/* ── City hub: all-services link grid (mold-remediation-<city> pages
   and the retrofitted Santa Ana hub). Same card idiom as
   .svc-overview-card, compressed to a link row. ────────────────── */
.geo-city-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 1060px;
  margin: 0 auto;
}
.geo-city-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.9rem 1.15rem;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.geo-city-services a svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--color-brand-primary-700);
  transition: transform 0.3s var(--ease-brand);
}
.geo-city-services a:hover {
  border-color: var(--color-border-brand-30);
  box-shadow: 0 10px 20px -16px rgba(10,37,65,0.3);
  transform: translateY(-2px);
}
.geo-city-services a:hover svg { transform: translateX(3px); }
@media (max-width: 900px) {
  .geo-city-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .geo-city-services { grid-template-columns: 1fr; }
}
