/* Design2Income — shared design tokens + base reset. Loaded by every page.
   Change brand colours here, not per-page. */
:root {
  --ink: #17212b;
  --muted: #69737c;
  --cream: #f6f2eb;
  --paper: #fff;
  --orange: #e75d40;
  --gold: #f0b94b;
  --line: #e7e1d7;
  --navy: #14202b;
  --green: #1f8a5f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
