.site-footer {
  margin-top: 48px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(23, 49, 76, 0.1);
  font-size: 15px;
  color: #5a86a0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
  gap: 28px;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff;
}
.footer-brand strong,
.footer-section strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
}
.footer-brand p,
.footer-section p {
  margin: 0;
  line-height: 1.7;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 49, 76, 0.08);
  font-size: 14px;
}

.site-footer { color: #6e6e73; border-top-color: #d2d2d7; }
.site-footer a { color: #424245; font-weight: 500; }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { display: grid; }
}
