/* Footer */
.site-footer {
  background: var(--color-dark);
  color: rgba(246, 246, 244, 0.85);
  padding: var(--space-xl) 0 var(--space-lg);
  font-size: 16px;
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.footer-col h3 {
  color: var(--color-bg);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

/* Logo is black line art, so invert it to white for the dark footer */
.footer-col--brand img {
  width: 150px;
  height: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}
.footer-col--brand p { max-width: 280px; }

.footer-col address { font-style: normal; }
.footer-col a { color: rgba(246, 246, 244, 0.85); text-decoration: none; }
.footer-col a:hover { color: var(--color-primary-light); }

.footer-nav { display: flex; flex-direction: column; gap: var(--space-sm); }

.site-footer .openingstijden th,
.site-footer .openingstijden td { font-size: 15px; color: rgba(246, 246, 244, 0.85); }

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(246, 246, 244, 0.15);
  font-size: 14px;
  color: rgba(246, 246, 244, 0.6);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
