.site-footer {
  position: relative;
  z-index: 1;
  padding: 20px 8vw 10px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-top: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 20px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-link {
  position: relative;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  max-width: 1200px;
  margin: 14px auto 0;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.site-footer .footer-copy {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 23px 6vw 8px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }

  .footer-link::after {
    bottom: -2px;
  }
}
