/* Global Afropendium chrome — band + footer. Identical structure on every property. */

:root {
  --ink: #141414;
  --cream: #F5EFE2;
  --gold: #e79c0f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: "Libre Franklin", sans-serif; }

.ap-band {
  background: var(--ink);
  color: var(--cream);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 10;
}
.ap-band a { color: var(--cream); text-decoration: none; }
.ap-band a:hover { color: var(--gold); }
.ap-band__home { display: flex; align-items: center; gap: 0.6rem; font-weight: 900; }
.ap-band__mark { height: 26px; filter: invert(1); }
.ap-band__where { opacity: 0.7; }

.ap-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(245, 239, 226, 0.2);
}
.ap-footer__mark { height: 44px; filter: invert(1); margin-bottom: 0.75rem; }
.ap-footer__line { letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.ap-footer__wings { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.ap-footer__wings a { color: var(--cream); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }
.ap-footer__wings a:hover { color: var(--gold); }
.ap-footer__legal { font-size: 0.75rem; opacity: 0.6; }

@media (max-width: 600px) {
  .ap-band__where { display: none; }
}
