/* Hana theme — Housekeeping (app-local).

   Lives in the app rather than in the Hana package: the palette is Housekeeping's
   identity, not part of the shared design system. Nothing here is Hana-internal —
   the file redefines exactly the twelve brand seed variables that hana.css
   documents as the theme contract, and nothing else.

   Load order in index.html: hana.css first, this file second, app.css and the
   scoped-CSS bundle after.

   Feedback colours (green/red/yellow), greys, white/black and the third-party
   channel colours are deliberately NOT redefined — they carry meaning independent
   of brand and must stay identical across themes.


   The three selectors mean:
     :root:not([data-hana-theme])         — single linked theme just applies
     :root[data-hana-theme="housekeeping"] — explicit opt-in when several are linked
     .hana-theme-housekeeping              — scope the theme to a subtree (previews) */

:root:not([data-hana-theme]),
:root[data-hana-theme="housekeeping"],
.hana-theme-housekeeping {
    /* Darkest brand tone — headings and text on light surfaces. */
    --hana-brand-deep: #0b6b3a;
    /* Mid-dark tone — gradient start, secondary fills. Figma button, stop 0%. */
    --hana-brand-dark: #22b46e;
    /* Primary fill. The single most representative brand colour. */
    --hana-brand: #34c46b;
    /* Saturated variant of the primary fill — pressed/active states. */
    --hana-brand-bright: #17a45f;
    /* Light highlight — gradient end. Figma button, stop 100%. */
    --hana-brand-accent: #bee13e;
    /* Denser highlight — shell gradient end, emphasis marks. */
    --hana-brand-accent-strong: #a8dc4a;
    /* Desaturated light tone — muted text on brand-filled surfaces. */
    --hana-brand-soft: #b7d9c1;
    /* Desaturated mid tone — borders and dividers on light surfaces. */
    --hana-brand-muted: #5f8a70;
    /* Frame/track tone — progress rails, inactive segments. */
    --hana-brand-frame: #9ccbae;
    /* Near-black brand tint — deepest text, high-contrast marks. */
    --hana-brand-ink: #12261a;
    /* Shadow-casting tint — elevation colour, never used as a fill. */
    --hana-brand-ink-alt: #0f5a32;
    /* Chart gridlines and hairline rules. */
    --hana-brand-grid: #c7e9d2;
}
