/* =========================================================================
   THE MOORE FAMILY PALETTE — single source of truth (the "mood board" in CSS)
   Do NOT hand-pick hex values anywhere else. Every surface (the family portal
   AND Junior's kit) maps its local names to these --moore-* tokens, so the
   colours are always uniform. Source brand: moorefamily/brand/01_BRAND_GUIDE.
   Keep the copy in docs/juniors-first-coding/brand.css identical to this one.
   ========================================================================= */
:root {
  /* greens */
  --moore-green:       #3C402E;   /* Loden green — primary */
  --moore-forest:      #1B2A1D;   /* deep forest — darker accent */

  /* neutrals */
  --moore-cream:       #EFE7D3;   /* beige page ground */
  --moore-cream-2:     #F6F0E0;   /* lighter beige */
  --moore-paper:       #FBF7EC;   /* card ground */
  --moore-ink:         #23271C;   /* body text */
  --moore-muted:       #6B6655;   /* secondary text */

  /* gold / brass — the distinguished accent (one true gold) */
  --moore-gold:        #B0894A;   /* antique gold / brass */
  --moore-gold-bright: #CDA85F;
  --moore-gold-deep:   #7E5E22;
  --moore-gold-grad:   linear-gradient(125deg, #8f6a28 0%, #e7cd82 38%, #b88f44 62%, #7e5e22 100%);

  /* functional */
  --moore-good:        #4FAE5E;   /* success / done */
  --moore-good-soft:   #E7F5E9;
  --moore-warn:        #E0653F;
  --moore-line:        rgba(176, 137, 74, .26);  /* gold hairline (from --moore-gold) */
}
