/* LocalX — footer 
   Onderdeel van de ForwardX Eleventy-structuur. Alle waarden via var(--naam). */

/* ---------- Footer ---------- */

.site-footer { background-color: var(--bg-navy); }

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  padding-block: var(--section-y);
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.site-footer__brand img { width: 190px; height: 54px; object-fit: contain; border-radius: 0; }

.site-footer__brand p {
  margin: 30px 0 0;
  color: var(--text-mute);
  font-size: var(--fs-lead);
  font-weight: 500;
  word-spacing: var(--ws-lead);
}

.site-footer__col h2 {
  margin: 0 0 14px;
  color: var(--bg-surface);
  font-family: var(--ff-text);
  font-size: var(--fs-label);
  font-weight: 600;
  line-height: 28px;
  letter-spacing: normal;
  text-transform: uppercase;
}

.site-footer__col li { margin-bottom: 10px; }
.site-footer__col li:last-child { margin-bottom: 0; }

.site-footer__col a {
  display: block;
  color: var(--text-mute);
  font-size: var(--fs-label);
  font-weight: 500;
  line-height: 20px;
}
.site-footer__col a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 50px;
  border-top: 1px solid rgba(245, 244, 239, .12);
}

.site-footer__copy {
  margin: 0;
  color: var(--text-mute);
  font-size: var(--fs-lead);
  font-weight: 500;
}

.site-footer__parent { display: flex; align-items: center; gap: 12px; }

.site-footer__parent span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14px;
}

.site-footer__parent img { width: 132px; height: 21px; object-fit: contain; border-radius: 0; }

@media (max-width: 1024px) {
  .dashboard__inner { flex-direction: column; align-items: stretch; }
  .dashboard__text, .dashboard__visual { max-width: 100%; flex: 1 1 auto; }
  .site-footer__top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-wrap: wrap; gap: 10px; padding-top: 30px; }
  .dashboard__visual img { height: auto; }
}

