/* === GLOBAL COLOUR VARIABLES === */
:root {
  --navy: #0d2b5e;
  --gold: #c9972a;
  --gold-light: #f0c96a;
  --cream: #fdf8f0;
  --dark-text: #1a1a2e;
  --muted: #5a6880;
  --navy-mid: #1a3f7c;
  --navy-dark: #0a1f4a;
  --footer-dark: #060f24;
  --navy-accent: #2a4f9e;
}

/* === FOOTER STYLING ===
   Only target if theme customiser fails.
   Remove !important unless necessary. */
.site-footer,
.main-footer,
.footer-widgets {
  background-color: var(--footer-dark);
}

.site-footer h3,
.site-footer h4,
.footer-brand,
.footer-title {
  color: var(--gold-light);
}

.site-footer p,
.site-footer span,
.site-footer li,
.footer-text,
.copyright-text {
  color: var(--muted);
}

.copyright-bar a:hover,
.footer-link:hover {
  color: var(--gold);
}