/* ============================================================
   Colors — A∴R∴L∴S∴ Justiça e Liberdade
   Sober, classical, symbolic — drawn from the Lodge seal:
   navy ink, parchment ground, seal gold, sealing-wax red.
   ============================================================ */

:root {
  /* ---- Surfaces (light / parchment — default) ---- */
  --bg:          #f5f1e8;   /* pergaminho — page ground */
  --bg-elev:     #fbf8f0;   /* papel — cards, panels, bars */
  --bg-soft:     #efe9da;   /* sombra de papel — hover / inset fills */

  /* ---- Lines ---- */
  --line:        #d9cfb8;   /* linha de margem — default borders */
  --line-soft:   #e8e0cc;   /* hairline dividers */

  /* ---- Ink (navy from the seal) ---- */
  --ink:         #0e1f3d;   /* tinta — primary text, solid buttons */
  --ink-soft:    #3a4868;   /* secondary text */
  --muted:       #7a8294;   /* tertiary / labels / placeholders */

  /* ---- Gold (the seal's ornament) ---- */
  --gold:        #b8923d;   /* primary accent */
  --gold-soft:   #d6b770;   /* light gold — on dark grounds */
  --gold-deep:   #8a6a24;   /* deep gold — links, grau tags on light */

  /* ---- Brown (operative tools / leather) ---- */
  --brown:       #8b6f47;
  --brown-soft:  #b29675;

  /* ---- Red (sealing wax — danger / overdue) ---- */
  --red:         #8a2a20;   /* lacre */
  --red-soft:    #b04a3c;

  /* ---- Semantic alias ---- */
  --accent:      var(--gold);
}

/* ============================================================
   Dark mode — "templo à noite" (temple at night)
   Deep midnight-navy grounds, warmer gold, ivory ink.
   ============================================================ */
[data-theme="dark"] {
  --bg:          #0b1322;
  --bg-elev:     #11192a;
  --bg-soft:     #1a2236;
  --line:        #2a3247;
  --line-soft:   #1f273b;
  --ink:         #ece6d4;
  --ink-soft:    #b9b3a3;
  --muted:       #6f7790;
  --gold:        #d4b56a;
  --gold-soft:   #a8884a;
  --gold-deep:   #b89645;
  --brown:       #c4a06d;
  --brown-soft:  #8c7350;
  --red:         #d36e5d;
  --red-soft:    #a04a3e;
}
