/* ── Footer ── */
.footer {
  background: var(--color-palatinate-blue);
  color: var(--color-white);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer__brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}

.footer__logo img {
  height: 25px;
  width: auto;
  /* make logo white on blue bg — the white SVG handles this */
}

.footer__heading,
.footer__col h5 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer__col a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 0.45rem 0;
  transition: color var(--transition-base, 0.2s);
}

.footer__col a:hover {
  color: var(--color-white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--transition-base, 0.2s);
  padding: 0.5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 760px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
