.site-footer {
  width: min(1080px, calc(100% - 32px));
  margin: 56px auto 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31, 35, 46, 0.92), rgba(18, 21, 29, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  color: rgba(235, 242, 255, 0.78);
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer-inner {
  width: 100%;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
  align-items: start;
}

.site-footer-brand {
  display: grid;
  gap: 10px;
}

.site-footer-logo {
  display: inline-flex;
  width: fit-content;
  color: #ffd95a;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-footer-note,
.site-footer-small {
  margin: 0;
  color: rgba(235, 242, 255, 0.70);
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-links {
  display: grid;
  gap: 9px;
}

.site-footer a {
  color: rgba(255, 217, 90, 0.92);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

@media (max-width: 860px) {
  .site-footer {
    width: min(100% - 24px, 1080px);
    margin-top: 40px;
    padding: 22px;
    border-radius: 20px;
  }

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

  .site-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer-bottom {
    display: grid;
  }
}
