/* ==========================================================================
   FOOTER.CSS - METSELWERK.NL
   Donker charcoal achtergrond met brick/orange accenten
   ========================================================================== */

.site-footer {
  background-color: #1A1A1A;
  color: #fff;
  padding: var(--space-3xl, 64px) 0 var(--space-lg, 24px);
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl, 32px);
  margin-bottom: var(--space-2xl, 48px);
}

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

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

/* ---------- Footer kolommen ---------- */
.footer-col h3 {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: 1rem;
  font-weight: 400;
  color: #E8763A;
  margin-bottom: var(--space-md, 16px);
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #E8763A;
}

/* ---------- Bedrijfsinfo ---------- */
.footer-brand {
  font-family: var(--font-heading, 'DM Serif Display', serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-sm, 8px);
}

.footer-brand-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-md, 16px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm, 8px);
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm, 8px);
}

.footer-contact-list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ---------- Link lijsten ---------- */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm, 8px);
}

.footer-links a {
  padding: 2px 0;
}

/* ---------- Review badge in footer ---------- */
.footer-review-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm, 8px);
  margin-top: var(--space-md, 16px);
  padding: var(--space-sm, 8px) var(--space-md, 16px);
  background-color: rgba(232, 118, 58, 0.12);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-review-badge:hover {
  background-color: rgba(232, 118, 58, 0.2);
}

.footer-review-stars {
  color: #E8763A;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.footer-review-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Social links ---------- */
.footer-social {
  display: flex;
  gap: var(--space-md, 16px);
  margin-top: var(--space-md, 16px);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(232, 118, 58, 0.12);
  color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background-color: #C4572A;
  color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ---------- Footer bottom ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg, 24px);
  text-align: center;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.footer-legal span {
  margin: 0 var(--space-sm, 8px);
}
