html {
  background: #f6f7fb;
}

.site-footer {
  margin-top: auto;
  margin-bottom: 0;
  background: linear-gradient(135deg, #2a2a2e 0%, #1a1a1d 100%);
  color: #e8e8e8;
  padding: 36px 20px 12px;
  font-size: 14px;
  border-radius: 20px 20px 0 0;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 28px;
  align-items: start;
}

.site-footer__brand strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 6px;
}

.site-footer__brand span {
  color: #aaa;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.site-footer__cols h4 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d12c62;
}

.site-footer__cols a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 4px 0;
  font-size: 13px;
  transition: color 0.2s;
}

.site-footer__cols a:hover {
  color: #fff;
}

.site-footer__bottom {
  max-width: 1100px;
  margin: 16px auto 0;
  padding-top: 16px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .site-footer__cols {
    grid-template-columns: 1fr;
  }
}
