/* ============================================================
   RenovatioHelp · Design Tokens
   Single source of truth for brand colors across the app.
   Pages consume these via var(--rh-*, fallback) in their own
   :root blocks, so each page still works standalone.

   GOLD NOTE — two golds exist today:
   - --rh-gold (#C9973A) is the app's working gold (most pages).
   - --rh-gold-brand (#E8A020) is the website/brand gold
     (CLAUDE.md), used by genesis and emotional-map.
   When the canonical gold is decided, change it HERE (one line)
   and the whole app follows.
   ============================================================ */
:root{
  /* Surfaces */
  --rh-bg:#050914;          /* deep black — canonical background */
  --rh-card:#0D1628;        /* card surface */

  /* Gold family */
  --rh-gold:#C9973A;        /* app working gold */
  --rh-gold-brand:#E8A020;  /* website/brand gold */
  --rh-gold-light:#F2B63D;  /* light gold — highlights, selected states */
  --rh-gold-soft:#E8B85A;   /* soft gold — secondary accents */
  --rh-gold-pale:#F2D276;   /* pale gold — subtle text accents */

  /* Support colors */
  --rh-teal:#2EC98E;        /* care / wellbeing accent */
  --rh-teal-bright:#34D399; /* success / progress accent */
  --rh-cream:#F8F4EA;       /* primary light text */

  /* Type */
  --rh-font-serif:'Cormorant Garamond',serif;
  --rh-font-display:'Libre Baskerville',serif;
  --rh-font-sans:'Source Sans 3','Outfit',sans-serif;
}
