.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  position: relative; z-index: 1;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 60px; margin-bottom: 48px;
}
.footer__brand .logo-text {
  font-family: 'WeissenhofGrotesk', 'Inter', sans-serif;
  font-size: 22px; font-weight: 700;
}
.footer__brand p {
  color: var(--text-muted); font-size: 14px; margin-top: 8px;
  max-width: 220px; line-height: 1.6;
}
.footer__links {
  display: flex; gap: 60px;
}
.footer__col {
  display: flex; flex-direction: column; gap: 12px;
}
.footer__col h4 {
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 4px;
}
.footer__col a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; transition: color var(--t);
}
.footer__col a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer__bottom p { color: var(--text-dim); font-size: 13px; }
.footer__watermark { height: 24px; width: auto; opacity: 0.4; }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; gap: 36px; }
  .footer__links { gap: 36px; }
}
