/* ── RockNET CRM — shared base styles ─────────────────────────────────────── */

/* Self-hosted fonts — files live in css/fonts/ */
@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DMMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DMMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f2ec;
  --surface: #fdfaf5;
  --surface2: #ede9e0;
  --border: #d6d0c4;
  --ink: #1a1714;
  --ink2: #6b6560;
  --accent: #c44b2b;
  --accent-soft: #f0e0da;
  --green: #2e7d5e;
  --green-soft: #d6ede5;
  --blue: #2563a8;
  --blue-soft: #dce8f5;
  --amber: #9a6800;
  --amber-soft: #fdf0d0;
  --orange: #c45c00;
  --orange-soft: #fde8d0;
  --radius: 6px;
  --mono: 'DM Mono', monospace;
  --serif: 'Fraunces', Georgia, serif;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  min-height: 100vh;
}