/* -- SITE FOOTER -- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--ink);
  padding: 3.5rem 5vw 2rem;
}

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

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer-logo {
  font-family: "Processity", serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
}
.site-footer-logo span {
  color: var(--accent);
}

.site-footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.site-footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-links a:hover {
  color: #fff;
}

.site-footer-copyright {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .site-footer-inner {
    text-align: center;
  }
  .site-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
