/* ============================================================
   PALETTE — the single source of colour for every module.
   Loaded before every other stylesheet. Modules must use these
   tokens rather than inventing their own hex values, so the whole
   site can be re-themed from this one file.
   ============================================================ */

:root {
  /* Ground — warm, soft, low-saturation so decoration reads on top */
  --bd-bg:        #FBEFE2;   /* main lit background */
  --bd-bg-deep:   #F3DFCC;   /* shaded / secondary ground */
  --bd-cream:     #FFF9F2;   /* cards, polaroid stock */
  --bd-ink:       #4A3B38;   /* body text on light ground */
  --bd-ink-soft:  #7A6660;

  /* Accents — one cohesive warm set. Adjacent hues, matched
     saturation and lightness, so nothing screams against anything. */
  --bd-rose:      #E4806E;
  --bd-coral:     #EF9F7E;
  --bd-gold:      #E9B44C;
  --bd-sage:      #9DB380;
  --bd-teal:      #6BA89E;
  --bd-plum:      #A57298;
  --bd-berry:     #C96A7E;

  /* Golden balloon / special moments */
  --bd-gold-lt:   #FFD98A;
  --bd-gold-dk:   #C98A22;

  /* Shared surface treatments */
  --bd-shadow:    rgba(74, 59, 56, 0.22);
  --bd-shadow-lg: rgba(74, 59, 56, 0.32);
  --bd-veil:      rgba(251, 239, 226, 0.42); /* wash over background photos --
                                                 lower = photos more visible */
}

/* The lit-room background, retuned to the palette. */
.peach       { background-color: var(--bd-bg) !important; }
