/* Shared color tokens for every page except index.html (the homepage keeps its own,
   more saturated palette for the globe's map pins/clusters/filter chips — see the
   comment there). Pulled out of ~10 duplicated <style> blocks so a palette tweak only
   has to happen once. --shadow added here (previously only on community.html) so any
   page can adopt a consistent "lifted card" shadow without redefining it. */
:root{
  --bg:#fbf5ec; --panel:#ffffff; --ink:#241a12; --muted:#7a6a58;
  --border:#eee1cf; --accent:#c1442b; --accent2:#e0a339; --accent3:#3f6e52; --chip:#f4e6d2;
  --shadow:0 1px 2px rgba(36,26,18,.04), 0 6px 16px -8px rgba(36,26,18,.10);
}
@media (prefers-color-scheme: dark){
  :root{
    --bg:#171310; --panel:#221c17; --ink:#f3e9dc; --muted:#b6a48f;
    --border:#3a3025; --accent:#e2603f; --accent2:#e8b45a; --accent3:#5c9877; --chip:#2c2419;
    --shadow:0 1px 2px rgba(0,0,0,.2), 0 6px 16px -8px rgba(0,0,0,.35);
  }
}
