/* ============================================
   FOOTER SECTION
   Site footer with links and copyright
   ============================================ */

.site-footer {
  background: var(--color-gray-900);
  color: white;
  padding: var(--space-12) 0 var(--space-8);
}

.footer-content {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: white;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--color-gray-400);
  line-height: var(--line-height-relaxed);
}

.footer-links h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: white;
  margin-bottom: var(--space-3);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: var(--space-1) 0;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  text-align: center;
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}