.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  position: relative;
}

.footer .brand { color: var(--paper); }
.footer .brand__mark { color: var(--mythic); }

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  margin-top: 18px;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  max-width: 32ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color .2s var(--ease);
}
.footer__cols a:hover { color: var(--mythic-soft); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
