/* ─────────────────────────────────────────────────────────────────
   geo.css — Core 30 location-service pages (e.g. mold-remediation-
   charlotte-nc). 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.

   Ported from the Pure Mold Masters (Santa Ana, CA) reference geo.css.
   No values changed — --color-text-body and --color-white-text-lead
   are already defined with the same names/roles in PAA's
   colors_and_type.css, so this file is a straight token-compatible
   port rather than a re-theme.
   ───────────────────────────────────────────────────────────────── */

/* 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); }

/* ── Core 30 internal-linking silo ────────────────────────────────
   Child pages get a one-line contextual crumb back to their parent hub
   (or, on core/general pages, back to the homepage) right after the
   hero. Hub pages get a compact link grid to every child, right before
   the closing CTA. Scoped to geo.css so it only ever loads on the 37
   Core 30 geo pages. */
.geo-silo-crumb { padding: 0 0 1.5rem; }
.geo-silo-crumb p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-body);
}

/* Closing "Explore Our Services" silo grid — was a bare 3-column text
   link list; now a card grid matching `.sa-city-card` below, so the
   page doesn't end on unstyled links. */
.geo-silo-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.geo-silo-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--color-surface-app, #fff);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-brand-secondary);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.geo-silo-grid a:hover {
  border-color: var(--color-brand-primary);
  background: var(--color-surface-subtle);
  transform: translateY(-2px);
}
.geo-silo-grid a svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--color-brand-primary);
  transition: transform 0.2s var(--ease-brand);
}
.geo-silo-grid a:hover svg { transform: translateX(3px); }
@media (max-width: 700px) {
  .geo-silo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .geo-silo-grid { grid-template-columns: 1fr; }
}

/* ── "When you need X" — lead paragraph + sign/trigger chip list ─────
   Two-column grid: copy (eyebrow + h2 + first sentence) on the left,
   a card list of the remaining source sentences (verbatim, one sign
   per card) on the right. Mirrors the `.commercial-band` two-column
   recipe used on mold-remediation.html's risk band, scoped here so it
   only ever loads on the 37 geo pages. */
.geo-when-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.geo-when-copy .eyebrow-pill { margin-bottom: 1.5rem; }
.geo-when-copy h2 { margin-bottom: 1.25rem; text-wrap: balance; }
.geo-when-copy p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-body);
  max-width: 42ch;
}
.geo-signs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.geo-signs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-body);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.geo-signs-list li:hover {
  border-color: var(--color-border-brand-30);
  transform: translateX(3px);
}
.geo-signs-list li svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--color-brand-primary-700);
}
@media (max-width: 900px) {
  .geo-when-grid { grid-template-columns: 1fr; gap: 2rem; }
  .geo-when-copy p { max-width: none; }
}

/* ── "Our X process" — numbered step cards ────────────────────────────
   Same 01–04 numbered-card recipe as water-mitigation.html's
   `.process-timeline`/`.process-step` (remediation.css), redeclared
   under geo-scoped class names since geo pages don't load
   remediation.css. Source sentences are grouped (not reworded) into
   up to 4 steps. */
.geo-process-grid {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.geo-process-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.geo-process-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.geo-process-grid.cols-1 { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
.geo-step {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: all 0.4s var(--ease-brand);
}
.geo-step:hover {
  border-color: var(--color-border-brand-30);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.geo-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.1875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  background-image: var(--gradient-brand);
  color: var(--color-brand-secondary);
}
.geo-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}
@media (max-width: 1100px) {
  .geo-process-grid,
  .geo-process-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .geo-process-grid,
  .geo-process-grid.cols-3,
  .geo-process-grid.cols-2 { grid-template-columns: 1fr; }
}

/* ── "X cost in Charlotte, NC" — tinted callout card ──────────────────
   Lead sentence sits in the normal section-heading as a `.t-lead`;
   the guarantee/no-hidden-fees sentences become tick items in a
   brand-tinted card, with the same booking CTA used in the hero and
   closing band. */
.geo-cost-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(var(--rgb-sky), 0.06);
  border: 1px solid var(--color-border-brand-30);
  border-radius: var(--radius-card-lg);
  padding: 2.5rem;
}
.geo-cost-ticks {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
}
.geo-cost-ticks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-body);
}
.geo-cost-ticks li svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--color-brand-secondary);
}
.geo-cost-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-brand-30);
}
@media (max-width: 700px) {
  .geo-cost-card { padding: 1.75rem; }
  .geo-cost-ticks { grid-template-columns: 1fr; }
}

/* ── Service-areas hub + city pages (service-areas.html, service-areas/**) ─
   A simple checklist for the "when you choose us" bullets, and a card grid
   for the hub's 22-city directory. Scoped to geo.css since these pages
   share the geo-prose reading system and load this stylesheet too. */
.geo-checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 620px;
}
.geo-checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.0625rem;
  color: var(--color-text-body);
}
.geo-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--color-brand-primary);
}

.sa-city-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sa-city-card a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-app, #fff);
  border: 1px solid var(--color-brand-secondary-100, #edf2f5);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.sa-city-card a:hover {
  border-color: var(--color-brand-primary);
  transform: translateY(-2px);
}
.sa-city-name { font-weight: 700; font-size: 1.05rem; color: var(--color-brand-secondary); }
.sa-city-county { font-size: 0.875rem; color: var(--color-text-body); }
@media (max-width: 900px) {
  .sa-city-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .sa-city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sa-city-grid { grid-template-columns: 1fr; }
}

/* ── Hub city grid: light region grouping ─────────────────────────
   service-areas.html partitions the 22-city grid into the site's own
   4-region taxonomy (already used verbatim in index.html's "areas"
   section) with a small label per group — same card, same grid, just
   scannable by region instead of one flat 22-item block. */
.sa-region + .sa-region { margin-top: 2.5rem; }
.sa-region-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-brand-secondary);
  margin: 0 0 1rem;
}

/* ── City-page template additions (service-areas/*.html) ───────────
   Icon tick list for the "you can expect" bullets, and an icon-card
   grid for the "what we treat in <city>" services band. Both reuse
   the sitewide `.card` / `.icon-chip` tokens from site.css so they
   stay visually identical to the homepage's service bento and
   why-choose-us cards — no new visual language introduced. */
.geo-tick-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 620px;
}
.geo-tick-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.geo-tick-list li:hover {
  border-color: var(--color-border-brand-30);
  transform: translateX(3px);
}
.geo-tick-list .tick {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.geo-tick-list .tick svg { width: 13px; height: 13px; }

.geo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.geo-service-card { padding: 2rem; }
.geo-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.geo-service-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-body);
  margin: 0;
}
@media (max-width: 900px) {
  .geo-service-grid { grid-template-columns: 1fr; max-width: 620px; }
}
