/* ============================================================
   Resonant System v2 — Palette + base reset
   Palette B: off-white + petrol blue, editorial restraint
   ============================================================ */

:root {
  --bg: #FAFAF8;
  --surface2: #EFEDE7;
  --heading: #1A2426;
  --body: #364548;
  --muted: #6B7679;
  --hairline: #E5E1D8;
  --accent: #2A5A6B;
  --accent-hover: #1F4753;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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