/* ─── Sam Smith Brand System — shared/theme.css ───────────────────────────── */
/* CSS custom-properties snapshot of shared/theme.js.                          */
/* Keep in sync manually — no build step required.                              */

/* ─── PIGMENTS (never change) ─────────────────────────────────────────────── */
:root {
  --pigment-mustard:  #B88008;
  --pigment-forest:   #2A5438;
  --pigment-burgundy: #7A1828;
  --pigment-linen:    #F3EFE5;
  --pigment-ink:      #1C1E24;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* WARM INK PALETTE (default)                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

[data-theme="dark"] {
  --bg:           #14130f;
  --surface:      #1c1a15;
  --surface-hi:   #25221b;
  --dropdown:     #2e2a22;
  --border:       rgba(243,235,218,0.10);
  --border-bright:rgba(243,235,218,0.22);
  --text:         #ece4d4;
  --dim:          #b0a691;
  --muted:        #7c7464;
  --code-bg:      #25221b;
  --chrome:       #dca63c;
  --accent:       #dca63c;
  --success:      #2A5438;
  --success-text: #86efac;
  --danger:       #7A1828;
  --danger-text:  #f08080;
}

[data-theme="light"] {
  --bg:           #f3efe5;
  --surface:      #faf6ea;
  --surface-hi:   #ede8da;
  --dropdown:     #e8e1d0;
  --border:       rgba(28,30,36,0.12);
  --border-bright:rgba(28,30,36,0.26);
  --text:         #1c1e24;
  --dim:          #4d4a42;
  --muted:        #8a8273;
  --code-bg:      #e4d9c1;
  --chrome:       #8a5e08;
  --accent:       #8a5e08;
  --success:      #1a3d25;
  --success-text: #166534;
  --danger:       #5a1020;
  --danger-text:  #9f1239;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FOREST NIGHT PALETTE                                                        */
/* Deep forest-green dark mode — nature/wellness apps                          */
/* ═══════════════════════════════════════════════════════════════════════════ */

[data-palette="forest"][data-theme="dark"] {
  --bg:           #0d1510;
  --surface:      #142218;
  --surface-hi:   #1c2e20;
  --dropdown:     #243828;
  --border:       rgba(134,239,172,0.10);
  --border-bright:rgba(134,239,172,0.22);
  --text:         #d4edd8;
  --dim:          #8fba95;
  --muted:        #5e7d63;
  --code-bg:      #182a1c;
  --chrome:       #4ade80;
  --accent:       #4ade80;
}

[data-palette="forest"][data-theme="light"] {
  --chrome: #166534;
  --accent: #166534;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* BURGUNDY DUSK PALETTE                                                       */
/* Deep wine-dark base — authoritative, security/private tools                 */
/* ═══════════════════════════════════════════════════════════════════════════ */

[data-palette="burgundy"][data-theme="dark"] {
  --bg:           #120509;
  --surface:      #1d0b10;
  --surface-hi:   #281018;
  --dropdown:     #341520;
  --border:       rgba(251,113,133,0.10);
  --border-bright:rgba(251,113,133,0.22);
  --text:         #f0dde2;
  --dim:          #b08890;
  --muted:        #7a6065;
  --code-bg:      #1c0d13;
  --chrome:       #fb7185;
  --accent:       #fb7185;
}

[data-palette="burgundy"][data-theme="light"] {
  --chrome: #9f1239;
  --accent: #9f1239;
}
