.footer { border-top: 1px solid var(--border); }

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__name {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.footer__link:hover { color: var(--off-white); }

.footer__sep {
  height: 1px;
  background: var(--border);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__quote {
  font-style: italic;
  font-size: clamp(12px, 1.5vw, 15px);
  color: var(--muted);
  opacity: 0.55;
}

.footer__yr {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  opacity: 0.35;
}

@media (max-width: 480px) {
  .footer__row { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
