/* City landing pages under area-served/ — load after ../../style.css */

.city-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.city-main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.city-main h2 em {
  font-style: italic;
  color: var(--gold);
}

.city-main p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 1.1rem;
}

.city-main p strong {
  color: var(--cream);
  font-weight: 500;
}

.city-main-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 103, 0, 0.15);
}

.city-main-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 360px;
  object-fit: cover;
}

.city-sidebar {
  position: sticky;
  top: 5.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 103, 0, 0.12);
  border-radius: 8px;
  padding: 1.75rem;
}

.city-sidebar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 103, 0, 0.15);
}

.city-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.city-sidebar li a {
  font-size: 0.88rem;
  color: var(--gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.3s;
}

.city-sidebar li a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}

.city-sidebar li a:hover,
.city-sidebar li a[aria-current="page"] {
  color: var(--cream);
}

.city-sidebar li a[aria-current="page"]::before {
  font-weight: 700;
}

.city-cta-box {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 103, 0, 0.15);
}

.city-cta-box p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 1rem;
}

a.area-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.area-card .area-link {
  pointer-events: none;
}

@media (max-width: 900px) {
  .city-layout {
    grid-template-columns: 1fr;
  }

  .city-sidebar {
    position: static;
  }
}
