/* ─────────────────────────────────────────────
   12-footer.css — Footer
───────────────────────────────────────────────── */

.site-footer {
  background: var(--hero-bg);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.01em;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  opacity: 0.85;
  display: block;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-rs {
  display: flex;
  gap: 1rem;
}

.footer-rs-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-base);
}

.footer-rs-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-rs-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}
