/* ═══════════════════════════════════════════════════════════════════════════
   CITY LANDING PAGE STYLES (shared across all city pages)
   Depends on: style.css (global — city-hero, city-hero-media, city-hero-overlay)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── City hero content ─────────────────────────────────────────────────── */
.city-hero {
  padding: 120px 24px 80px;
  min-height: 480px;
}
.city-hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
}
.city-hero-copy .eyebrow { margin-bottom: 16px; }
.city-hero-copy .heading-xl { margin-bottom: 20px; max-width: 700px; }
.city-hero-sub {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}
.city-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.city-hero-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.city-hero-phone a { color: var(--orange); font-weight: 700; font-size: 18px; }
.city-hero-photo-tag {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── Service list grid ─────────────────────────────────────────────────── */
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.svc-list-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}
.svc-list-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  color: inherit;
}
.svc-list-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-list-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── Local layout (about + sidebar notes) ──────────────────────────────── */
.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.95fr);
  gap: 28px;
  align-items: start;
}
.about-block { font-size: 16px; color: var(--text); line-height: 1.7; }
.about-block p { margin-bottom: 16px; }
.local-notes { display: grid; gap: 16px; }
.local-note-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.local-note-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.local-note-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Proof grid (before/after) ─────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proof-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.proof-card picture,
.proof-card img { display: block; width: 100%; }
.proof-card img { height: 360px; object-fit: cover; }
.proof-copy { padding: 18px 18px 20px; }
.proof-copy h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.proof-copy p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.proof-highlight {
  margin-top: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.proof-highlight p { font-size: 15px; color: var(--text); line-height: 1.65; }
.proof-highlight strong { color: var(--white); }

/* ── FAQ lead text ─────────────────────────────────────────────────────── */
.faq-lead {
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Inline links helper ───────────────────────────────────────────────── */
.inline-links a { font-weight: 600; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .local-layout,
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card img { height: auto; aspect-ratio: 4/5; }
}
@media (max-width: 768px) {
  .city-hero { padding: 100px 16px 60px; }
  .city-hero-sub { font-size: 16px; }
  .city-hero-actions { flex-direction: column; }
  .city-hero-actions .btn { width: 100%; }
}
