/* =====================================================================
   digitalpfade - Design Tokens (Monochrom-Plus, canonical per spec 02)
   Monochrome by default (graphit). Accent is switched at runtime by
   brand-binary.js / site.js by overriding --accent* on :root.
   ===================================================================== */

:root{
  /* Surfaces & ink */
  --paper:   #FFFFFF;
  --ink:     #0A0A0A;
  --ink-2:   #6B6B6B;
  --ink-3:   #A6A6A6;
  --line:    #ECECEC;
  --line-2:  #F4F4F4;
  --wash:    #FBFBFB;

  /* Accent (default = graphit; visitor-switchable, persisted) */
  --accent:      #111114;
  --accent-rgb:  17,17,20;
  --accent-soft: rgba(17,17,20,.07);

  /* State colors (admin / status) */
  --ok:   #1F8A5B;
  --warn: #B4791F;

  /* Type */
  --sans: "Geist", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;

  /* Radii & shadows */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 20px;
  --shadow-sm: 0 12px 30px -20px rgba(0,0,0,.4);
}
