
/* =========================================================
   Prestige City Pages
   Shared SEO landing-page styles
========================================================= */

.city-page-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(239,215,119,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.city-content {
  max-width: 820px;
}

.city-lead {
  font-size: 1.7rem !important;
  line-height: 1.45 !important;
  color: var(--prestige-dark) !important;
}

.city-content h2 {
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--prestige-dark);
}

.city-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--prestige-blue-dark);
}

.city-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1.5rem;
}

.city-content a {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.city-callout {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: white;
  border-left: 6px solid var(--prestige-gold);
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.city-callout h3 {
  margin-bottom: 1rem;
}

.city-callout ul {
  margin-bottom: 0;
}

.city-callout li {
  margin-bottom: .65rem;
  font-weight: 700;
  color: #444;
}

.city-rug-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.city-rug-types div {
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(47,88,116,.08);
}

.city-rug-types p {
  margin-bottom: 0;
  font-size: 1rem;
}

.city-process-list {
  counter-reset: city-process;
  list-style: none;
  padding-left: 0;
  margin: 2.5rem 0;
}

.city-process-list li {
  position: relative;
  counter-increment: city-process;
  margin-bottom: 1.25rem;
  padding: 1.2rem 1.2rem 1.2rem 4.25rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  color: #444;
  line-height: 1.65;
}

.city-process-list li::before {
  content: counter(city-process);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--prestige-blue);
  color: var(--prestige-gold);
  font-weight: 800;
}

.city-sidebar {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.city-sidebar-card {
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(47,88,116,.08);
}

.city-sidebar-card img {
  max-width: 220px;
  margin-bottom: 1.25rem;
}

.city-sidebar-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--prestige-dark);
  margin-bottom: .75rem;
}

.city-sidebar-card p {
  color: #555;
  line-height: 1.75;
}

.city-sidebar-card a {
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .city-page-section {
    padding: 70px 0;
  }

  .city-sidebar {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .city-rug-types {
    grid-template-columns: 1fr;
  }
}