/* ============================================
   Footer — donkere achtergrond, witte tekst
   ============================================ */

.site-footer {
  background-color: var(--color-black);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.site-footer,
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.site-footer__brand {
  margin-bottom: var(--space-lg);
}

.site-footer__brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-black);
  color: #ffffff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-footer__description {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  max-width: 300px;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-lg);
}

.site-footer__list li {
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__bottom a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
