footer {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--accent);
  text-transform: uppercase;
}

.footer-text {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--accent); }

.no-decoration {
  color: inherit;
  text-decoration: none;
}
.no-decoration:hover { color: var(--accent); }

@media (max-width: 640px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 20px;
  }
}