/* Sheva color tokens.
   Budget per screen: ~70% neutral, ~25% navy, ~5% gold.
   Gold is an accent, never a workhorse. Never gold-fill + white text.
   Never gold as text on white — use --bronze-deep. */
:root {
  /* Brand core */
  --navy: #1A2D4D;          /* headings, primary buttons, nav, selected states */
  --navy-deep: #12213B;     /* hover/pressed navy; footer; admin top bar */
  --navy-tint: #EAEEF4;     /* selected fill, info bands, section bands */
  --gold: #C9A961;          /* accent: dividers, icon accents, focus ring, large decor */
  --gold-soft: #F3EAD2;     /* gold-tinted callout / chip fill */
  --bronze-deep: #8A6D2F;   /* TEXT-SAFE gold — gold-toned text/icons on light (AA) */

  /* Neutrals */
  --ink: #1A1A1A;           /* primary body text */
  --slate: #5B6472;         /* secondary text, labels, captions */
  --muted: #8A929E;         /* hints, placeholders, disabled text, meta */
  --line: #E2E5EA;          /* borders, dividers, table rules */
  --line-strong: #C4C9D2;   /* hover borders, focus-adjacent input borders */
  --surface: #FFFFFF;       /* cards, inputs, primary surfaces */
  --canvas: #F6F5F2;        /* page background (warm off-white) */
  --canvas-alt: #FBFAF7;    /* alternating section background */

  /* Semantic / status (Admin + validation) */
  --success: #1F6B4A;
  --success-soft: #E6F2EC;
  --warning: #8A5A12;
  --warning-soft: #FBF0DC;
  --danger: #A03A28;
  --danger-soft: #F7E7E3;
  --info: #1F5F9E;

  /* Focus ring (2px gold, 2px offset) */
  --focus-ring: 0 0 0 2px var(--surface), 0 0 0 4px var(--gold);
}
