/* ============================================================
   City pages shared styles
   ============================================================ */

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb .container { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── CITY HERO ── */
.city-hero {
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 40%, #1a3a7a 100%);
  padding: 72px 0 80px;
}
.city-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .city-hero__inner { grid-template-columns: 1.1fr 1fr; }
}
.city-hero__image {
  display: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
@media (min-width: 900px) {
  .city-hero__image { display: block; }
}
.city-hero__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.city-hero__label {
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: #93c5fd; margin-bottom: 16px;
  display: block;
}
.city-hero h1 { color: var(--white); margin-bottom: 18px; }
.city-hero__content > p {
  color: rgba(255,255,255,.72); font-size: 1.05rem;
  margin-bottom: 32px; max-width: 520px; line-height: 1.7;
}
.city-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.city-hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
}
.city-hero__trust .trust-item {
  font-size: .85rem; color: rgba(255,255,255,.7);
}

/* ── CITY CONTENT ── */
.city-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 860px) {
  .city-content { grid-template-columns: 1.4fr 1fr; }
}

.city-text h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
  margin: 32px 0 12px;
}
.city-text h2:first-child { margin-top: 0; }
.city-text p { font-size: .95rem; color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.city-text strong { color: var(--text); }

.city-services {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 16px 0 24px;
}
.city-services li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text);
}
.city-services svg { color: var(--green); flex-shrink: 0; }

/* ── CITY FORM ── */
.city-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 88px;
}
.city-form h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.city-form > p { font-size: .875rem; color: var(--muted); margin-bottom: 24px; }

/* ── ABOUT PAGE ── */
.about-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 860px) { .about-page { grid-template-columns: 1.4fr 1fr; } }

.about-page__text h2 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin: 32px 0 12px; }
.about-page__text h2:first-child { margin-top: 0; }
.about-page__text p { font-size: .95rem; color: var(--muted); margin-bottom: 14px; line-height: 1.75; }

.info-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 11px 4px; }
.info-table td:first-child { color: var(--muted); font-weight: 500; width: 45%; }
.info-table td:last-child { color: var(--text); font-weight: 600; }
.info-table a { color: var(--blue); }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 760px; }
.legal-content h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 8px; }
.legal-intro { color: var(--muted); font-size: .85rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 32px 0 10px; }
.legal-content p { font-size: .92rem; color: var(--muted); margin-bottom: 12px; line-height: 1.75; }
.legal-content ul { margin: 10px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-content ul li { font-size: .92rem; color: var(--muted); list-style: disc; }
.legal-content a { color: var(--blue); }
.legal-content strong { color: var(--text); }

/* ── CITY LINK (other cities) ── */
/* .city-link styles moved to style.css (shared across all pages) */

/* ── RESPONSIVE ── */
.city-hero, .city-content + .section { overflow-x: clip; }
.city-content > *, .about-page > * { min-width: 0; }

@media (max-width: 820px) {
  .city-hero { padding: 52px 0 60px; }
  .city-content { gap: 40px; }
  .city-form { position: static; }
}

@media (max-width: 560px) {
  .city-hero { padding: 40px 0 48px; }
  .city-hero h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .city-hero__actions { gap: 10px; }
  .city-hero__actions .btn--lg { padding: 14px 20px; font-size: .95rem; width: 100%; justify-content: center; }
  .city-form { padding: 24px 18px; }
  .city-content { gap: 32px; }
  .city-text h2 { font-size: 1.2rem; }
  .about-page__text h2 { font-size: 1.15rem; }
  .info-table td { padding: 9px 4px; font-size: .82rem; }
}
