/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  padding: 50px 0 25px;
  background: #1d2d27;
  color: var(--cream);
}

.footer-inner {
  width: min(1100px, 88%);
  margin: auto;
}

/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-links {
  display: flex;
  gap: 25px;
  margin: 35px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(243, 236, 220, 0.12);
}

.footer-links a {
  color: rgba(243, 236, 220, 0.55);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: rgba(243, 236, 220, 0.3);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
}

/* =====================================================
   FOOTER — MOBILE
===================================================== */

@media (max-width: 700px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
