/* tokens.css — Arcus Foundry brand tokens
   Mirrors AF-site-overhaul/page-home.html palette + typography.
   Lime on deep olive, Barlow Condensed + Barlow. */

:root {
  /* Palette */
  --lime:         #c3d95e;
  --lime-soft:    rgba(195, 217, 94, 0.12);
  --lime-line:    rgba(195, 217, 94, 0.25);
  --lime-ghost:   rgba(195, 217, 94, 0.045);

  --olive:        #23270f;
  --olive2:       #2e3414;
  --olive3:       #1a1d09;
  --olive-edge:   rgba(195, 217, 94, 0.1);

  --muted:        #7a8045;
  --white:        #f2f4e8;
  --text:         #d4d9b0;

  /* Type */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Scale (closer to AF rhythm) */
  --type-display: clamp(48px, 7vw, 96px);
  --type-h2:      clamp(30px, 4vw, 52px);
  --type-h3:      clamp(22px, 2.6vw, 28px);
  --type-body:    17px;
  --type-small:   14px;
  --type-eyebrow: 12px;

  /* Space */
  --pad-page:     clamp(24px, 4vw, 40px);
  --pad-tile:     clamp(28px, 3vw, 40px);
  --gap-grid:     10px;
  --max-w:        980px;

  /* Motion */
  --ease:         cubic-bezier(.2, .8, .2, 1);
}
