/* ärkOS — base styles */
:root {
  --bg: #F7F4EF;
  --fg: #1A1814;
  --accent: #C4713B;
  --muted: #8A8479;
  --border: #DDD8CF;
  --card-bg: #EFEBE4;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button { font-family: var(--sans); }

@media print {
  body { background: white; }
  .actions { display: none; }
}