.site-footer {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 28, 42, 0.18), transparent 48%),
    var(--ink);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  max-width: 28rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-nav {
  display: grid;
  gap: 0.7rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--pearl);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
  }

  .footer-nav {
    justify-items: end;
  }
}
