.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 34px 0;
  background: var(--bg-primary);
}

.footer__inner {
  display: grid;
  gap: 18px;
  align-items: start;
}

.footer__brand {
  display: grid;
  gap: 8px;
}

.footer__logo {
  display: block;
}

.footer__text {
  margin: 0;
  color: var(--text-muted);
}

.footer__nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__link {
  color: var(--text-muted);
  font-weight: 600;
}

.footer__fineprint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.scroll-to-top-btn {
  background: var(--accent-primary);
  color: var(--accent-primary-contrast);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.scroll-to-top-btn:hover {
  background: rgba(45, 106, 79, 0.9);
}

.scroll-to-top-btn:focus-visible {
  outline: 3px solid rgba(45, 106, 79, 0.35);
  outline-offset: 2px;
}
