/* Byline theme — Fraunces + DM Sans, amber + parchment palette */
:root {
  --bg: #faf7f2;
  --fg: #1a1a18;
  --accent: #c97d2a;
  --accent-dim: rgba(201,125,42,0.15);
  --surface: #fff;
  --muted: rgba(26,26,24,0.5);
  --border: rgba(26,26,24,0.1);
}
/* Global text selection */
::selection { background: var(--accent); color: #fff; }
/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(201,125,42,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,125,42,0.5); }
