/* Saints team design tokens. Locked 2026-06-04.
   Palette source: teamcolorcodes.com Pantone reference.
   Legacy aliases (--navy / --green / --gold) stay untouched so
   inline CSS across index / programme / science / contact resolves. */

:root {
  --team-primary:       #101820;  /* Saints black */
  --team-primary-deep:  #000000;  /* deepest backgrounds */
  --team-primary-2:     #1a1f28;  /* slightly lifted black, card backgrounds */
  --team-accent:        #D3BC8D;  /* Saints Old Gold, primary brand */
  --team-accent-dim:    #B59E70;  /* hover / dim gold */
  --team-secondary:     #E6CEA1;  /* lighter gold highlight */
  --team-secondary-hi:  #F5E6C6;  /* brighter gold lockup highlight */
  --team-neutral:       #8A8A8A;  /* dividers, subdued text */
  --team-primary-rgb:   16, 24, 32;     /* rgba() form of --team-primary */
  --team-accent-rgb:    211, 188, 141;  /* rgba() form of --team-accent */

  /* Legacy aliases for inline CSS carried over from the original
     reference implementation. These stay untouched when porting. */
  --navy:       var(--team-primary);
  --navy-deep:  var(--team-primary-deep);
  --navy-2:     var(--team-primary-2);
  --green:      var(--team-accent);
  --green-dim:  var(--team-accent-dim);
  --gold:       var(--team-secondary);
  --gold-hi:    var(--team-secondary-hi);
  --grey:       var(--team-neutral);
}
