/* ===== FOOTER ===== */
#site-footer {
  background: var(--black);
  padding: 60px 5% 30px;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  color: rgba(255,255,255,0.38);
  font-size: 13px; line-height: 1.75;
  margin-top: 14px; font-weight: 300; max-width: 275px;
}

.footer-social { display: flex; gap: 9px; margin-top: 18px; }

.footer-social .social-btn {
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.45);
  width: 34px; height: 34px;
}
.footer-social .social-btn:hover {
  border-color: var(--orange);
  background: rgba(244,100,10,0.10);
  color: var(--orange);
}

.footer-col h5 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255,255,255,0.38);
  font-size: 13px; font-weight: 300;
  transition: color var(--t-base);
  cursor: pointer;
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.22);
  font-size: 12px; font-weight: 300;
}

.footer-bottom .orange { color: var(--orange); }
