/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #fafafa;
  line-height: 1.7;
}
a { color: #c0617a; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ── Top Nav ──────────────────────────────────────────────────────────────── */
.top-nav {
  background: #fff;
  border-bottom: 1px solid #f0e8ec;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-links a {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #c0617a; text-decoration: none; }
.nav-cta {
  background: #c0617a;
  color: #fff !important;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #a84f68; }

/* ── Page Layout ──────────────────────────────────────────────────────────── */
.page-wrap {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 800px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 1rem;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #c0617a; }

/* ── Main Content ─────────────────────────────────────────────────────────── */
.main-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.main-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #2d2d44;
  margin: 2rem 0 0.75rem;
  border-bottom: 2px solid #f5e8ec;
  padding-bottom: 0.35rem;
}
.main-content h3 { font-size: 1.1rem; color: #2d2d44; margin: 1.5rem 0 0.5rem; }
.main-content p { margin-bottom: 1rem; color: #333; }
.main-content ul, .main-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: #333;
}
.main-content li { margin-bottom: 0.4rem; }
.main-content strong { color: #1a1a2e; }
.post-meta { font-size: 0.85rem; color: #888; margin-bottom: 1.5rem; }

/* ── Special Blocks ───────────────────────────────────────────────────────── */
.lead {
  font-size: 1.1rem;
  color: #444;
  border-left: 4px solid #c0617a;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.intro-box {
  background: #fdf5f7;
  border: 1px solid #f0dce2;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}
.cta-box {
  background: linear-gradient(135deg, #fff0f3, #fde8ed);
  border: 1px solid #f0c8d2;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.cta-box h3 {
  font-family: 'Playfair Display', serif;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.cta-box p { color: #555; margin-bottom: 1rem; }
.btn-cta {
  display: inline-block;
  background: #c0617a;
  color: #fff;
  padding: 0.7rem 1.75rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: #a84f68; transform: translateY(-1px); text-decoration: none; }

/* ── Grid Layouts ─────────────────────────────────────────────────────────── */
.city-grid {
  columns: 2;
  list-style: none;
  margin-left: 0;
  gap: 0.5rem;
}
.city-grid li { break-inside: avoid; margin-bottom: 0.35rem; }
@media (max-width: 600px) { .city-grid { columns: 1; } }

.provider-grid, .condition-grid, .group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.provider-card, .condition-card, .group-card {
  background: #fff;
  border: 1px solid #f0e8ec;
  border-radius: 10px;
  padding: 1.1rem;
  transition: box-shadow .2s;
}
.provider-card:hover, .condition-card:hover, .group-card:hover {
  box-shadow: 0 4px 16px rgba(192,97,122,.12);
}
.provider-card h3, .condition-card h3, .group-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.provider-card p, .condition-card p, .group-card p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0;
}

.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-item {
  background: #fff;
  border: 1px solid #f0e8ec;
  border-radius: 10px;
  padding: 1.25rem;
}
.blog-item h3 { margin-bottom: 0.5rem; }

/* ── Related Articles ─────────────────────────────────────────────────────── */
.related-articles {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f5e8ec;
}
.related-articles h3 { font-size: 1rem; color: #555; margin-bottom: 0.75rem; }
.related-articles ul { list-style: none; margin-left: 0; }
.related-articles li { margin-bottom: 0.4rem; }

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-cta {
  background: #1a1a2e;
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  position: sticky;
  top: 80px;
}
.sidebar-cta h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.sidebar-cta p { color: #ccc; font-size: 0.9rem; margin-bottom: 1rem; }
.sidebar-resources {
  background: #fff;
  border: 1px solid #f0e8ec;
  border-radius: 10px;
  padding: 1.1rem;
}
.sidebar-resources h4 { font-size: 0.9rem; color: #c0617a; margin-bottom: 0.6rem; }
.sidebar-resources ul { list-style: none; margin-left: 0; }
.sidebar-resources li { font-size: 0.85rem; margin-bottom: 0.4rem; color: #555; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col strong { color: #fff; display: block; margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-col p, .footer-col li { font-size: 0.85rem; color: #aaa; margin-bottom: 0.35rem; }
.footer-col ul { list-style: none; margin-left: 0; }
.footer-col a { color: #aaa; }
.footer-col a:hover { color: #e8b4c0; }
.disclaimer-text { font-size: 0.78rem; color: #777; margin-top: 0.5rem; }
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid #2d2d44;
  padding-top: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
