/* MiseStack theme — base tokens, imported by dashboard views */
:root {
  --green-deep: #1B3D2F;
  --green-mid: #264D3E;
  --green-light: #2F5E4A;
  --amber: #D4A843;
  --amber-light: #E8C066;
  --cream: #FAF8F3;
  --cream-dark: #F0EDE4;
  --charcoal: #1A1A1A;
  --warm-gray: #8A8478;
  --white: #FFFFFF;
  --danger: #E05A4A;
  --ok: #4CAF7D;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); }