
/* === Brand swap (header wordmark + footer star) === */
:root{
  --brand-navy:#1D3557;
  --brand-ivory:#E0E2D7;
  --brand-mint:#6CB6A2;       /* header wordmark */
  --brand-accent:#F4A261;     /* footer star */
}
/* Header brand as image wordmark */
header .brand {
  display:flex; align-items:center; gap:8px; text-decoration:none;
}
header .brand img.wordmark {
  height:28px; width:auto; display:block;
}
/* Footer star color */
footer .footer-deco svg path { fill: var(--brand-accent); }
