/* Subtle hue shift — each brand color nudged ~1 step in HSL.
   Original → new (delta ≈ 2–4 units in H/S/L). */
:root{
  --bs-body-bg: #00280e;          /* was #00260f — slightly warmer green */
  --bs-body-bg-rgb: 0,40,14;
  --bs-secondary: #a89466;        /* was #a39161 — gold shifted +2L */
  --bs-secondary-rgb: 168,148,102;
  --bs-body-color: #dbd0c2;       /* was #d9cfc0 */
  --bs-body-color-rgb: 219,208,194;
}

/* Section / block backgrounds */
body,
main,
.section--green-texture,
.section--green-dark-texture,
[style*="background-color:#00260f"],
[style*="background:#00260f"]{
  background-color:#00280e !important;
}

.section--green-dark-texture,
.page-enter-active:before,
.page-leave-active:before,
[style*="#003214"]{
  background-color:#003417 !important;
}

/* Accent green (buttons secondary state, header bars) */
[style*="#004128"], .btn-secondary:after{
  background-color:#00432b !important;
}
[style*="#006449"]{
  background-color:#006650 !important;
}

/* Gold — primary CTA, borders, badges */
.btn-primary,
[style*="#a39161"],
[style*="background:#a39161"],
[style*="background-color:#a39161"]{
  background-color:#a89466 !important;
  border-color:#a89466 !important;
}
[style*="#ac9c71"]{ background-color:#b0a077 !important; }
.text-secondary,
[style*="color:#a39161"]{ color:#a89466 !important; }
.btn-outline-primary{ border-color:#a89466 !important; }

/* Red seal — nudged slightly warmer */
[style*="#c32028"],
[fill="#c32028"]{
  background-color:#c62630 !important;
  fill:#c62630 !important;
}

/* Text body */
[style*="#d9cfc0"]{ color:#dbd0c2 !important; }
