.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--vds-border, rgba(148, 163, 184, 0.14));
  background: rgba(5, 10, 20, 0.6);
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--vds-space-8) var(--vds-space-5) var(--vds-space-6);
  display: grid;
  gap: var(--vds-space-6);
}

@media (min-width: 720px) {
  .site-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: var(--vds-space-3);
  margin-bottom: var(--vds-space-3);
}

.site-footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.site-footer-brand span {
  font-family: var(--vds-font-display);
  font-weight: 700;
  font-size: var(--vds-text-lg);
  color: var(--vds-text);
}

.site-footer-tagline {
  margin: 0;
  max-width: 28rem;
  font-size: var(--vds-text-sm);
  color: var(--vds-text-muted);
  line-height: 1.55;
}

.site-footer-col h3 {
  margin: 0 0 var(--vds-space-3);
  font-family: var(--vds-font-display);
  font-size: var(--vds-text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vds-text-subtle);
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--vds-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-links a {
  color: var(--vds-text-muted);
  text-decoration: none;
  font-size: var(--vds-text-sm);
  transition: color var(--vds-duration-fast);
}

.site-footer-links a:hover {
  color: var(--vds-accent-hover);
}

.site-footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--vds-space-4) var(--vds-space-5);
  border-top: 1px solid var(--vds-border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--vds-space-3);
  justify-content: space-between;
  font-size: var(--vds-text-xs);
  color: var(--vds-text-subtle);
}

.site-footer-bottom a {
  color: var(--vds-text-muted);
  text-decoration: none;
}

.site-footer-bottom a:hover {
  color: var(--vds-accent-hover);
}
