/* Hallmark · macrostructure: Workbench (form-first) · tone: utilitarian · theme: custom "Slate & tangerine"
 * paper #E8ECEA (cool slate) · accent #FF6A13 (tangerine, fills only in light) · display: Bricolage Grotesque · body: Instrument Sans
 * axes: light / grotesk-sans / warm-accent · admotive.co · 2026-09-10 */
:root {
  --ground: #E8ECEA;
  --text: #1B2422;
  --accent: #FF6A13;
  --accent-text: #1B2422;
  --support: #7C8A85;
  --field: #F6F8F7;
  --border: #1B2422;
  --line: #C9D1CE;
  --muted: #4F5D59;
  --success: #2F7D4F;
  --error: #C8102E;

  --font-display: "Bricolage Grotesque", "Instrument Sans", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  --radius-s: 5px;
  --radius-m: 8px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 120ms;
  --dur: 180ms;

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #121A18;
    --text: #E6ECE9;
    --accent: #FF6A13;
    --accent-text: #121A18;
    --support: #6F7D78;
    --field: #1B2523;
    --border: #2E3A36;
    --line: #2E3A36;
    --muted: #9AA8A3;
    --success: #5FBF7F;
    --error: #FF6B6B;
  }
}
