.site-footer {
  background: var(--secondary);
  color: var(--white);
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  padding: 32px clamp(20px, 6vw, 60px) 28px;
  margin-top: 120px;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.25);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand span {
  color: #dfff06;
  font-size: 1.1rem;
}

.footer-links {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-links a {
  color: #fdfdfd;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

@media (max-width: 580px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }
}
