/* ============================================================
 * r0ice shared design tokens — canonical color/type scale
 * used across mercy-lab, wisdom, admin, and housing app clusters.
 *
 * This file declares ONLY custom properties (no selectors), so it
 * is safe to <link> into any app without fighting existing layout
 * or component CSS. Each app keeps its own accent by overriding
 * --accent (and optionally --accent-2) after this import.
 *
 * Canonical values sourced from mercy-lab's lab.css, which already
 * had the most-adopted palette across mercy.r0ice.com.
 * ============================================================ */
:root {
  /* base surface */
  --bg: #0a0612;
  --bg-grad: radial-gradient(ellipse at top, #150a1f 0%, #0a0612 60%, #050309 100%);
  --panel: #14100b;
  --panel-2: #1a140d;

  /* ink scale (text) */
  --ink: #efe6d4;
  --ink-dim: #a99e8a;
  --ink-faint: #6e6555;

  /* lines / borders */
  --line: rgba(239, 230, 212, 0.08);
  --line-bold: rgba(239, 230, 212, 0.16);

  /* shared accent family — apps override --accent, keep the rest as fallbacks */
  --amber: #c89759;
  --accent: var(--amber);
  --accent-2: #a83a4b; /* crimson-glow, secondary accent */
  --crimson: #6b1f2e;
  --crimson-glow: #a83a4b;
  --plum: #2a1838;
  --green: #8fbf6f;
  --blue: #7fa8c9;
  --rose: #e8a0b4;
  --red: #e8573d;

  /* type */
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}
