/* ============================================
   PETITES PIÈCES — SITE-BREDE FOOTER
   Laadt op alle pagina's behalve de homepage.
   Bevat eigen CSS-variabelen zodat het overal werkt.
   ============================================ */

.pp-site-footer {
  --pp-cream: #F8F5F0;
  --pp-warm-white: #FDFBF8;
  --pp-charcoal: #1C1A18;
  --pp-muted: #8A857E;
  --pp-light-muted: #C4BFB8;
  --pp-border: #E2DDD7;
  --pp-accent-gold: #B8965A;

  background: var(--pp-charcoal);
  padding: 60px 60px 32px;
  color: var(--pp-light-muted);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  box-sizing: border-box;
}

.pp-site-footer *,
.pp-site-footer *::before,
.pp-site-footer *::after {
  box-sizing: border-box;
}

.pp-site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pp-site-footer .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--pp-cream);
  margin-bottom: 14px;
}

.pp-site-footer .footer-brand span {
  font-style: italic;
  font-size: 16px;
  color: var(--pp-accent-gold);
  margin-left: 6px;
  letter-spacing: 0.1em;
}

.pp-site-footer .footer-desc {
  font-size: 12px;
  line-height: 1.85;
  max-width: 260px;
  margin-bottom: 24px;
  color: var(--pp-light-muted);
}

.pp-site-footer .footer-newsletter {
  display: flex;
  gap: 0;
  max-width: 360px;
}

.pp-site-footer .footer-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--pp-cream);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  outline: none;
  letter-spacing: 0.08em;
}
.pp-site-footer .footer-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.pp-site-footer .footer-subscribe {
  padding: 10px 18px;
  background: var(--pp-accent-gold);
  border: 0.5px solid var(--pp-accent-gold);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.pp-site-footer .footer-subscribe:hover {
  opacity: 0.85;
}

.pp-site-footer .footer-col-title {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pp-cream);
  margin-bottom: 18px;
}

.pp-site-footer .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.pp-site-footer .footer-links a {
  font-size: 12px;
  color: var(--pp-light-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.06em;
}
.pp-site-footer .footer-links a:hover {
  color: var(--pp-cream);
}

.pp-site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pp-site-footer .footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pp-site-footer .badge-be {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0.5px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .pp-site-footer {
    padding: 48px 32px 28px;
  }
  .pp-site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .pp-site-footer {
    padding: 40px 20px 24px;
  }
  .pp-site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pp-site-footer .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: flex-start;
  }
  .pp-site-footer .footer-newsletter {
    max-width: 100%;
  }
}
