/* theme-neutral.css — editorial palette override
   Civic Tracker 2026
------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

:root {
  --primary:    #1a3a6b;
  --accent:     #c8392b;
  --gold:       #d4a843;
  --green:      #2d7a4f;
  --text:       #0d1117;
  --muted:      #7c8899;
  --bg:         #f7f5f0;
  --surface:    #ffffff;
  --line:       rgba(13,17,23,0.09);
  --tint-a:     #f4f5f3;
  --tint-b:     #f2f5f4;

  /* Chart palette env-var slot */
  --p1: #1a3a6b;
  --p2: #d4a843;
  --p3: #2d7a4f;
  --p4: #c8392b;
  --p5: #6b4c9a;
}

/* Base */
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav active link */
.nav a.active { color: #fff; background: rgba(255,255,255,0.12); }

/* Descriptor header */
.header { background: #edeae3; }

/* KPI values */
.kpi .kpi-value { font-family: 'Playfair Display', Georgia, serif; }

/* Buttons */
.btn.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn.ghost   { color: var(--primary); }

/* Chart card title color */
.chart-story-title { color: var(--text); }

/* Site footer */
.site-footer {
  margin-top: 30px; padding: 20px 0;
  text-align: center; color: var(--muted);
  font-size: 13px; border-top: 1px solid var(--line);
}

/* Hide old "Powered by YKA" line in site-shell */
.site-header > .wrap + a { display: none; }
