/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 64px 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.site-footer__brand .site-footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
  display: inline-block;
}
.site-footer__brand .site-footer__logo span { color: var(--blue); }
.site-footer__about {
  font-size: 14px;
  line-height: 1.7;
  color: #99a1af;
  max-width: 360px;
  margin-bottom: 20px;
}
.site-footer__contact-list { font-size: 13px; line-height: 1.7; color: #99a1af; }
.site-footer__contact-list a { color: #99a1af; transition: color 0.2s ease; }
.site-footer__contact-list a:hover { color: var(--blue); }
.site-footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer__menu li { margin-bottom: 10px; }
.site-footer__menu a {
  font-size: 13.5px;
  color: #99a1af;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.site-footer__menu a:hover {
  color: var(--blue);
  padding-left: 4px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copy {
  font-size: 12px;
  color: #6a7282;
}
.site-footer__legal {
  display: flex;
  gap: 18px;
}
.site-footer__legal a {
  font-size: 12px;
  color: #6a7282;
  transition: color 0.2s ease;
}
.site-footer__legal a:hover { color: var(--blue); }

@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
