.site-footer {
  margin-top: 3rem;
  padding: 2.2rem 1rem 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.18)),
    rgba(7, 10, 18, 0.72);
  backdrop-filter: blur(10px);
}

.footer-wrap {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-brand p,
.footer-copy p {
  margin: 0.35rem 0;
  color: #b9c2d9;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.footer-links a {
  color: #ff9c9c;
  text-decoration: none;
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  border-color: rgba(255, 80, 80, 0.38);
  background: rgba(255, 80, 80, 0.12);
  transform: translateY(-2px);
}

.footer-brand a {
  color: #ff8e8e;
  text-decoration: none;
}

.footer-brand a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.95rem;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 1.8rem 1rem 2.2rem;
  }

  .footer-links a {
    width: 100%;
    max-width: 260px;
  }
}