/* ============================================================
   JARVIS · GOLD BRAND VARIANT — Performance Hotel
   Setzt den Marken-Gold-Akzent explizit (fertige Farbe) für BEIDE
   Themes, damit er nicht durch colors.css überschrieben wird.
   Gold wirkt auf hellem Grund optisch dunkler → im Hellmodus einen
   Tick heller, damit beide Themes gleich hell wirken.
   Load AFTER colors.css.
   ============================================================ */

:root, [data-theme="dark"] {
  --accent-h: 39;   /* @kind color */
  --accent-s: 55%;  /* @kind color */
  --accent-l: 60%;  /* @kind color */
}

:root {
  /* Hellmodus: etwas heller (60%), damit Gold gleich hell wie im Dark wirkt. */
  --accent-l: 60%;
  --accent:          hsl(39 55% 60%);
  --accent-hover:    hsl(39 55% 52%);
  --accent-active:   hsl(39 55% 46%);
  --accent-contrast: var(--n-900);   /* dunkle Schrift auf Gold */
  --mod-sales:       var(--accent);
  --mod-sales-soft:  var(--accent-soft);
}

[data-theme="dark"] {
  /* Dunkelmodus: 56%. */
  --accent-l: 56%;
  --accent:          hsl(39 55% 56%);
  --accent-hover:    hsl(39 55% 62%);
  --accent-active:   hsl(39 55% 50%);
  --mod-sales:       var(--accent);
  --mod-sales-soft:  var(--accent-soft);
}
