/* QareMap SEO Site — Brand Tokens */
:root {
  --forest: #0B6E4F;
  --mid-green: #1A9B72;
  --dark-text: #061F14;
  --body-text: #5F6B63;
  --secondary-text: #7A8A82;
  --page-bg: #FAFDF7;
  --surface: #F0F7F3;
  --border: #D4EDE3;
  --border-subtle: #E8EEEC;
  --focus: #93D4AF;
  --accent-gold: #FFB627;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark-text);
  background: var(--page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: var(--forest);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark { color: #fff; font-size: 1.25rem; font-weight: 700; }
.wm-qare { color: #fff; }
.wm-map { color: var(--focus); }
.header-nav a {
  color: rgba(255,255,255,0.85);
  margin-left: 1.5rem;
  font-size: 0.9rem;
}
.header-nav a:hover { color: #fff; text-decoration: none; }

/* Breadcrumbs */
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 1rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--secondary-text);
}
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 0.25rem;
}
.breadcrumbs [aria-current] { color: var(--dark-text); }

/* Clinic Page */
.clinic-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}
.clinic-page h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.key-facts {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}
.key-facts p { font-size: 0.9rem; color: var(--body-text); }
.key-facts strong { color: var(--dark-text); }

.clinic-section {
  margin-bottom: 2rem;
}
.clinic-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list li {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.85rem;
  color: var(--body-text);
}
.tag-list a {
  color: var(--forest);
  font-weight: 500;
}

/* CTA Block */
.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.cta {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.cta-primary {
  background: var(--forest);
  color: #fff;
}
.cta-primary:hover { background: var(--mid-green); text-decoration: none; }
.cta-secondary {
  background: var(--surface);
  color: var(--forest);
  border: 1px solid var(--border);
}
.cta-secondary:hover { background: var(--border); text-decoration: none; }
.cta-tertiary {
  color: var(--forest);
  padding-left: 0;
}

/* Footer */
.site-footer {
  background: var(--dark-text);
  color: rgba(255,255,255,0.7);
  padding: 2rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.footer-brand .wordmark { font-size: 1.1rem; }
.footer-brand .tagline { margin-top: 0.25rem; font-size: 0.85rem; }
.footer-links a, .footer-social a {
  color: rgba(255,255,255,0.7);
  margin-right: 1rem;
}
.footer-links a:hover, .footer-social a:hover { color: #fff; }
.copyright { width: 100%; margin-top: 1rem; opacity: 0.5; }

/* Responsive */
@media (max-width: 600px) {
  .clinic-page h1 { font-size: 1.4rem; }
  .key-facts { grid-template-columns: 1fr; }
  .cta-block { flex-direction: column; }
  .cta { width: 100%; text-align: center; }
}
