/* ============================================================
   Style Cluster Palette System
   ============================================================
   Per-style color overrides for Style Cluster blog posts. The
   default RbD brand palette lives inline in style-cluster-template.html.
   This file contains additive overrides keyed off
   `body[data-style="X"]`. Switching the data-style attribute on
   <body> recolors the whole post.

   Each palette block defines the same role-based variables so the
   template doesn't need to know which style is active:
     --color-page-bg          background of the article body area
     --color-hero-band-bg     full-width band the Gemini hero sits in
     --color-text-primary     headings + body strong color
     --color-text-secondary   body paragraph color
     --color-accent           inline link color (replaces soft-gold default)
     --color-accent-hover     link hover color
     --color-anchor           strong contrast accent for badges, lines
     --color-card-bg          background for See Also / sidebar cards
     --color-table-stripe     alt-row color for tables (hub table, palette grid)
     --color-rule             section-break / hr color

   Adding a new style: copy a block, rename data-style, fill hex codes,
   tag the section with the source research file (Master Prompt § 3.2).
   ============================================================ */


/* ─── Wave 0 — Scandinavian (LOCKED 2026-04-13) ───
   Source: 05-SEO-and-RESEARCH/03-Assets/Blog/Style-Clusters/Scandinavian/scandinavian-Master-Prompt.md § 3.2
   #F6F2ED Soft White       — page background
   #E5DDD1 Oat Cream        — hero band, card backgrounds
   #D9B896 Pale Oak         — accent (links, badges)
   #6B7068 Forest Grey      — secondary text, hr, anchor lines
   #2C2A26 Charcoal Ink     — primary text, headings */
body[data-style="scandinavian"] {
  --color-page-bg:        #F6F2ED;
  --color-hero-band-bg:   #E5DDD1;
  --color-text-primary:   #2C2A26;
  --color-text-secondary: #6B7068;
  --color-accent:         #6B7068;
  --color-accent-hover:   #2C2A26;
  --color-anchor:         #D9B896;
  --color-card-bg:        #E5DDD1;
  --color-table-stripe:   rgba(217, 184, 150, 0.18);
  --color-rule:           rgba(107, 112, 104, 0.30);
}


/* ─── Wave 1 — placeholders, populate when each style's research bundle lands ─── */
/*
body[data-style="mid-century-modern"] { TODO Wave 1 — pull palette from MCM Master Prompt § 3.2 }
body[data-style="japandi"]            { TODO Wave 1 }
body[data-style="industrial"]         { TODO Wave 1 }
body[data-style="bohemian"]           { TODO Wave 1 }
body[data-style="minimalist"]         { TODO Wave 1 }

  Wave 2: coastal, dark-academia, cottagecore, hygge, farmhouse, maximalist
  Wave 3: gustavian, 70s-revival, art-deco, regency, memphis, alpine-chic,
          california-coastal, southern-traditional, palm-beach, americana,
          mediterranean, french-country, english-cottage, neo-industrial,
          biophilic, rustic, grandmillennial, transitional
*/
