.site-footer {
  margin-top: 5rem;
  padding: 4rem 0 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  max-width: 300px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.footer-socials {
  display: flex;
  gap: 1.5rem;
  font-size: 1.5rem;
}
.footer-socials a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-socials a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stack-highlight {
  color: var(--primary);
  font-weight: 700;
}
