/* ─── CITY PAGE STYLES ─────────────────────────── */

/* Force nav always solid on city pages */
#nav.solid {
  background: rgba(22,0,15,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(255,29,150,.18);
}

/* ─── CITY HERO ────────────────────────────────── */
.city-hero {
  background: var(--dark);
  padding: 9rem 4rem 6rem;
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(255,29,150,.12) 0%, transparent 65%);
  pointer-events: none;
}
.city-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.city-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(253,232,244,.4);
  margin-bottom: 1.5rem;
}
.city-breadcrumb a { color: var(--rust); text-decoration: none; }
.city-breadcrumb a:hover { text-decoration: underline; }
.city-h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  color: var(--cream); line-height: .95;
  margin: .5rem 0 1.25rem;
}
.city-h1 em { font-style: italic; color: var(--rust); }
.city-sub {
  font-size: 1rem; line-height: 1.75;
  color: rgba(253,232,244,.55);
  max-width: 540px; margin-bottom: 2rem;
}
.city-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.city-hero-stats {
  display: flex; gap: 3rem; margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(253,232,244,.1);
}
.city-hero-stats .hstat-n {
  font-family: var(--ff-display);
  font-size: 2.25rem; line-height: 1; color: var(--cream);
}
.city-hero-stats .hstat-l {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(253,232,244,.4);
  margin-top: .3rem;
}
@media (max-width: 700px) {
  .city-hero { padding: 7rem 1.5rem 4rem; }
  .city-hero-stats { gap: 1.75rem; flex-wrap: wrap; }
}

/* ─── NEIGHBORHOODS ─────────────────────────────── */
.city-hoods-inner { max-width: 1100px; margin: 0 auto; }
.hood-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem; margin-top: 2.5rem;
}
.hood-item {
  background: #fff;
  border: 1px solid rgba(255,29,150,.1);
  border-radius: 10px; padding: .85rem 1.1rem;
  font-size: .85rem; font-weight: 500; color: var(--dark);
  display: flex; align-items: center; gap: .5rem;
}
.hood-item::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rust); flex-shrink: 0;
}

/* ─── CITY SERVICES GRID ───────────────────────── */
.city-services-inner { max-width: 1100px; margin: 0 auto; }
.city-svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.city-svc-card {
  background: #fff;
  border: 1px solid rgba(255,29,150,.1);
  border-radius: 16px; padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(22,0,15,.05);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.city-svc-card:hover {
  box-shadow: 0 8px 32px rgba(255,29,150,.12);
  transform: translateY(-2px);
  border-color: rgba(255,29,150,.25);
}
.city-svc-card h3 {
  font-size: .95rem; font-weight: 700; color: var(--dark);
  margin-bottom: .6rem;
}
.city-svc-card p { font-size: .85rem; color: var(--sage); line-height: 1.65; }

/* ─── CTA BAND ─────────────────────────────────── */
.city-cta-band { background: var(--dark); padding: 5rem 4rem; }
.city-cta-band-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.city-cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream); line-height: 1.05; margin-bottom: .5rem;
}
.city-cta-sub { font-size: .9rem; color: rgba(253,232,244,.5); }
.city-cta-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
@media (max-width: 700px) {
  .city-cta-band { padding: 4rem 1.5rem; }
  .city-cta-band-inner { flex-direction: column; align-items: flex-start; }
}
