/* ============================================================
   FOOTER — v3.0 Clean
   ============================================================ */

.site-footer {
  margin-top: 80px;
  padding-top: 0;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.5s var(--ease) 0.3s both;
}

.footer-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 48px 20px 52px;
}

/* Brand */
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 320px;
}

/* Links */
.footer-links h4,
.footer-info h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 14px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a,
.footer-info a {
  font-size: 0.87rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-links a:hover,
.footer-info a:hover { color: var(--gold); }

/* Info */
.footer-info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin: 0;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-legal-links a:hover { color: var(--gold); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center;
  max-width: 100%;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 860px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-brand p { max-width: 100%; }
  .footer-legal-links { justify-content: center; }
}