/* City page styles — extends style.css */
body.city-page { display: block; min-height: 100vh; }
body.city-page header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.city-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--ink-soft); }
.city-main h1 {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.city-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.city-actions { margin-bottom: 2.5rem; }
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  font-size: 0.95rem;
}
.btn:hover { background: #9b4615; }

.sales-section h2,
.faq-section h2,
.other-cities h2 {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  border-bottom: 2px solid var(--rule);
  padding-bottom: 0.5rem;
}
.sales-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 0.5rem;
}
.sales-list .sale {
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.75rem;
  transition: transform 120ms, box-shadow 120ms;
}
.sales-list .sale:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}

.faq-section details {
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 0;
}
.faq-section summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  color: var(--ink);
}
.faq-section summary:hover { color: var(--accent); }
.faq-section p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.other-cities-list {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.other-cities-list a {
  color: var(--accent);
  text-decoration: none;
}
.other-cities-list a:hover { text-decoration: underline; }

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.state-block h2 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.25rem;
}
.state-block ul { list-style: none; padding: 0; margin: 0; }
.state-block li { padding: 0.2rem 0; font-size: 0.9rem; }
.state-block a { color: var(--ink); text-decoration: none; }
.state-block a:hover { color: var(--accent); }
.state-block .count {
  color: var(--ink-soft);
  font-size: 0.8rem;
  margin-left: 0.4rem;
}

footer {
  background: var(--paper);
  border-top: 2px solid var(--rule);
  padding: 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 0.5rem;
}
footer a { color: var(--accent); text-decoration: none; }
