footer {
  border-top: 1px solid var(--sp-color-border);
  padding: var(--sp-space-12) var(--sp-space-6);
  color: var(--sp-color-text-secondary);
  font-size: var(--sp-text-sm);
  margin-top: var(--sp-space-12);
  background: transparent;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-space-12);
  margin-bottom: var(--sp-space-8);
  flex-wrap: wrap;
}

.footer-nav__section h4 {
  font-family: var(--sp-font-heading);
  font-size: var(--sp-text-sm);
  color: var(--sp-color-text-primary);
  margin-bottom: var(--sp-space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-space-2);
}

.footer-nav__links a {
  color: var(--sp-color-text-secondary);
  text-decoration: none;
  transition: color var(--sp-duration-fast) ease;
}

.footer-nav__links a:hover { color: var(--sp-color-text-primary); }

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-space-8);
  margin-bottom: var(--sp-space-8);
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--sp-color-text-secondary);
  text-decoration: none;
  transition: color var(--sp-duration-fast) ease;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-space-2);
  font-size: var(--sp-text-sm);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-social a:hover { color: var(--sp-color-text-primary); }

.footer-meta {
  text-align: center;
  padding-top: var(--sp-space-6);
  border-top: 1px solid var(--sp-color-border);
  color: var(--sp-color-text-disabled);
}

.footer-sitemap {
  padding: var(--sp-space-8) 0;
  text-align: center;
}

.footer-sitemap h4 {
  color: var(--sp-color-text-primary);
  font-family: var(--sp-font-heading);
  font-size: var(--sp-text-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-space-4);
}

.sitemap-nav {
  display: flex;
  justify-content: center;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-space-4) var(--sp-space-6);
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-links li a {
  color: var(--sp-color-text-secondary);
  text-decoration: none;
  font-size: var(--sp-text-sm);
  transition: color var(--sp-duration-fast) ease;
}

.sitemap-links li a:hover {
  color: var(--sp-color-text-primary);
}

.footer-legal {
  text-align: center;
  padding: var(--sp-space-4) 0;
}

.footer-legal .legal-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-space-4);
}

.footer-legal .legal-nav a {
  color: var(--sp-color-text-secondary);
  text-decoration: none;
  font-size: var(--sp-text-sm);
  transition: color var(--sp-duration-fast) ease;
}

.footer-legal .legal-nav a:hover {
  color: var(--sp-color-text-primary);
}

.footer-powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-space-2);
  padding: var(--sp-space-6) 0;
  color: var(--sp-color-text-disabled);
  font-size: var(--sp-text-sm);
}

.powered-by-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-space-1);
  color: var(--sp-color-text-secondary);
  text-decoration: none;
  transition: color var(--sp-duration-fast) ease;
}

.powered-by-link:hover {
  color: var(--sp-color-text-primary);
}

.powered-by-logo {
  height: 18px;
  width: auto;
}

@media (max-width: 768px) {
  .footer-sitemap {
    padding: var(--sp-space-6) 0;
  }

  .sitemap-links {
    flex-direction: column;
    gap: var(--sp-space-2);
  }

  .footer-powered-by {
    flex-direction: column;
    gap: var(--sp-space-1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav__links.footer-nav__links a,
  .footer-social.footer-social a,
  .sitemap-links.sitemap-links li a,
  .footer-legal .legal-nav.legal-nav a,
  .powered-by-link.powered-by-link {
    transition: none;
  }
}
