/* ============================================================================
   Light theme — VDUT-AI brand v2.0 (Navy + Gold on white).

   Linked on every page except the homepage (which carries its own inline
   token block). Loaded AFTER tokens.css / base.css / page.css / vertical.css
   so these overrides win.

   Token NAMES are kept (nothing else has to change): --bone now means Navy,
   --brass/--brass-bright mean Gold.
   ========================================================================== */
:root {
  --ink:          #FFFFFF;              /* page background — white only */
  --panel:        #F8FAFC;              /* Wash Light — card bg */
  --panel-2:      #F2F4F8;              /* Wash */
  --line:         #DCE3EE;              /* Border Gray — dividers, hairlines */
  --line-strong:  #C6D2E4;
  --bone:         #1A3A6E;              /* Navy — headings / primary text */
  --muted:        #475569;              /* readable slate — body / secondary */
  --faint:        #94A3B8;              /* Cool Gray — captions */
  --brass:        #C8922A;              /* Gold — rules, labels, connectors */
  --brass-bright: #C8922A;
  --brass-wash:   rgba(200,146,42,0.08);
  --brass-edge:   rgba(200,146,42,0.55);
  --brass-select: rgba(26,58,110,0.14);
}

/* base.css literal dark values -> light */
.nav.is-scrolled { background: rgba(255,255,255,.82); }
@media (max-width: 860px) {
  .nav__links { background: rgba(255,255,255,.97); }
}

/* the ambient contour stroke is set to bone in js/site.js — recolour it to a
   faint navy so it reads as texture on the white ground */
.contours path { stroke: #1A3A6E; }
