/* landing5 — footer: solid, no mosaic showing through, half the viewport tall */

.footer {
  position: relative;
  min-height: 50svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vh, 3rem);
  padding: 3.4rem var(--pad-x) 4.5rem;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  text-align: center;
  color: var(--ink-3);
  font-size: 0.9rem;
}
.footer__block { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__brand { font-family: var(--font-display); font-weight: 560; font-size: 1.3rem; color: var(--ink); letter-spacing: 0.01em; margin: 0; }
.footer__tag { color: var(--ink-2); margin: 0; }
.footer__nav,
.footer__legal { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; }
.footer__nav a,
.footer__legal a { color: var(--ink-2); }
.footer__nav a:hover,
.footer__legal a:hover { color: var(--ink); }
.footer__studio {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.72;
  transition: opacity 0.2s var(--ease);
}
.footer__studio:hover { opacity: 1; }
.footer__studio-tag {
  font: 500 0.78rem/1.6 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__studio-logo {
  width: 116px;
  height: auto;
  filter: invert(1);
}
.footer__copyright { margin: 0; }
