/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--plum); color: rgba(255,255,255,0.8); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 12px; }
.footer-col h4 { color: #fff; font-family: var(--font-display); margin-bottom: 14px; font-size: 1rem; }
.footer-col p { color: rgba(255,255,255,0.65); margin-bottom: 8px; }

/* Footer links */
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }

/* Social icons row */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: background 0.15s ease, color 0.15s ease;
  margin-bottom: 0;
}
.footer-social a:hover { background: var(--coral); color: #fff; }

.footer-bottom {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 20px 24px;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
