/* ============================================
   CR FOOTER — 2-koloms (schets 5b) — full-width
   Te linken als <link rel="stylesheet" href="css/footer.css">
   ============================================ */

.cr-footer-grid {
  background: #000000;
  color: #e5e5e5;
  padding: 20px 32px 12px;
  position: relative;
  border-top: 1px solid rgba(229,229,229,0.08);
  /* Full-width: werkt ook als parent een smalle 1024px container is */
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}

.cr-footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cr-footer-grid h4 {
  font-weight: 900;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(229,229,229,0.5);
  margin-bottom: 8px;
}

/* Brand column */
.cr-footer-brand strong {
  font-weight: 900;
  font-size: 13px;
  color: #e5e5e5;
  letter-spacing: -0.2px;
  display: block;
  margin-bottom: 2px;
}
.cr-footer-brand p {
  font-weight: 300;
  font-size: 11px;
  color: rgba(229,229,229,0.55);
  line-height: 1.45;
  max-width: 360px;
}

/* Connect column */
.cr-footer-connect-line {
  font-weight: 300;
  font-size: 11px;
  color: rgba(229,229,229,0.7);
  line-height: 1.5;
  margin-bottom: 8px;
}
.cr-footer-connect-line a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 700;
}
.cr-footer-legal-block {
  font-weight: 300;
  font-size: 9px;
  color: rgba(229,229,229,0.4);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.cr-footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cr-footer-social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 220ms, transform 220ms;
  display: block;
}
.cr-footer-social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Bottom strip */
.cr-footer-bottom {
  max-width: 1024px;
  margin: 14px auto 0;
  padding-top: 10px;
  border-top: 1px solid rgba(229,229,229,0.06);
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 9px;
  color: rgba(229,229,229,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
}