footer.site-footer {
  background: #141414;
  border-top: 1px solid #2e2e2e;
  padding: 48px 20px 0;
  margin-top: 60px;
}
.site-footer__top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
}
.site-footer .footer-brand .footer-logo {
  font-size: 17px;
  font-weight: 700;
  color: #e8e8e8;
  letter-spacing: -.2px;
  margin-bottom: 6px;
}
.site-footer .footer-brand .footer-logo span { color: #e8a020; }
.site-footer .footer-tagline {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.site-footer .footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #9a9a9a;
  transition: color .15s;
  text-decoration: none;
}
.site-footer .footer-contacts a:hover { color: #e8a020; }
.site-footer .footer-contacts a svg { flex-shrink: 0; }
.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .footer-nav a {
  font-size: 13.5px;
  color: #9a9a9a;
  transition: color .15s;
  text-decoration: none;
}
.site-footer .footer-nav a:hover { color: #e8e8e8; }

.site-footer__links {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #222;
  padding: 24px 0;
}
.site-footer .footer-links-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  color: #555;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color .15s;
}
.site-footer .footer-links-toggle:hover { color: #888; }
.site-footer .footer-links-toggle svg { transition: transform .25s; }
.site-footer .footer-links-toggle.is-open svg { transform: rotate(180deg); }
.site-footer .footer-links-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px 24px;
  margin-top: 16px;
}
.site-footer .footer-links-grid.is-visible { display: grid; }
.site-footer .footer-links-grid a {
  font-size: 12px;
  color: #4a4a4a;
  transition: color .15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.site-footer .footer-links-grid a:hover { color: #9a9a9a; }

.site-footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #1e1e1e;
  padding: 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer .footer-legal {
  font-size: 11px;
  color: #444;
  text-align: left;
}
.site-footer .footer-legal a {
  color: #444;
  text-decoration: underline;
}
.site-footer .footer-legal a:hover { color: #888; }

@media (max-width: 600px) {
  .site-footer__top { flex-direction: column; gap: 24px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .site-footer .footer-links-grid { grid-template-columns: 1fr 1fr; }
}
