/* ─────────────────────────────────────────────────────────────────────────
   53 Peaks — canonical design tokens. SINGLE SOURCE OF TRUTH.
   Every page links this instead of re-declaring :root, so colors, spacing,
   radius and type can never drift page-to-page again. Values below are the
   reconciled canonical set (some pages had slightly different --navy-3 / --red
   / --navy-4 shades — those are unified here).
   ───────────────────────────────────────────────────────────────────────── */
:root {
  /* Surfaces (dark navy) */
  --navy:    #0b1120;
  --navy-2:  #111827;
  --navy-3:  #1a2235;
  --navy-4:  #0d1628;

  /* Brand gold */
  --gold:    #c9a84c;
  --gold-lt: #e2c47e;
  --gold-2:  #e8c96a;

  /* Text + lines */
  --white:   #f5f5f0;
  --muted:   #9ba3b2;
  --border:  rgba(201,168,76,.18);

  /* Status */
  --green:   #34c759;
  --red:     #ff3b30;
  --orange:  #ff9f0a;
  --blue:    #0a84ff;

  /* Geometry */
  --radius:  10px;
}
