/* Okanagan Roam — shared design tokens (Phase 5 Sprint 1)
 * Single source of truth for brand colors, used by both the SPA
 * (okanagan.html) and the server-rendered SEO pages (server.js).
 * Extracted verbatim from okanagan.html's original inline :root block
 * — no values changed. */
:root{
    --sand: #F5EDDD;
    --sand-deep: #EBDFC5;
    --plum: #6B2C40;
    --plum-dark: #4A2030;
    --teal: #2A6B67;
    --teal-deep: #1E4F4C;
    --amber: #E0A94E;
    --cocktail: #86477C;
    --cafe: #A0662E;
    --pub: #4A6741;
    --ink: #4A3428;
    --paper: #FFFCF6;

    /* Homepage reference redesign (webpage design.png) -- additive only.
       These do NOT replace any value above: every existing token keeps
       its original value, so SEO pages (region/category/venue/guide),
       the existing wizard/filter chips, and anything else still using
       --sand/--plum/--teal/--ink is completely unaffected. These new
       tokens are used only by the homepage's own header/hero/card
       styling (okanagan.html + the homepage's injected <style> block in
       server.js), which use distinct class names not shared with any
       other page. */
    --ref-cream: #F5F3ED;
    --ref-cream-deep: #EAE6D9;
    --ref-navy: #1B2B3A;
    --ref-navy-deep: #101B24;
    --ref-gold: #C9A227;
    --ref-white: #FFFFFF;
}
