.site-footer {
  background: #050505;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 80px;
}

.footer-studio-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 52px 70px;
  align-items: center;
  justify-items: center;
  padding: 58px 7vw;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, #111 0%, #080808 100%);
  background-size: 8px 8px, 100% 100%;
  overflow: hidden;
}

.footer-studio-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.65)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 45%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.studio-logo-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.studio-logo-link:hover {
  opacity: 1;
  transform: translateY(-3px);
  filter: drop-shadow(0 0 18px rgba(29, 168, 255, 0.35));
}

.studio-logo-link img {
  display: block;
  max-width: 210px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(5);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 32px 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 2fr;
  gap: 60px;
  align-items: start;
}

.footer-brand h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 32px;
}

.footer-column h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: #1da8ff;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .footer-studio-wall {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-studio-wall {
    grid-template-columns: repeat(2, 1fr);
    padding: 42px 24px;
    gap: 26px;
  }

  .studio-logo-link img {
    max-width: 145px;
    max-height: 46px;
  }

  .footer-inner {
    padding: 38px 22px 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}