/* ── FOOTER – shared across all pages ── */
.footer {
  background: var(--green-dark);
  padding: 48px 0 32px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(244, 240, 230, 0.1);
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer__nav a {
  font-size: 0.8rem;
  color: rgba(244, 240, 230, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

@media (min-width: 600px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(244, 240, 230, 0.55);
}

.footer__kzn {
  display: inline-flex;
  align-items: center;
  filter: invert(1);
  opacity: 0.35;
  transition: opacity 0.2s ease;
}
.footer__kzn:hover { opacity: 0.6; }
.footer__kzn img { height: 18px; width: auto; display: block; }

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(244, 240, 230, 0.55);
}
