/* Original minimal footer layout */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 110px;
  padding-top: 22px;
  border-top: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
}

.site-footer .footer-top,
.site-footer .footer-heading,
.site-footer .footer-contact,
.site-footer .footer-coverage,
.site-footer .footer-brand p,
.site-footer .back-top { display: none; }

.site-footer .footer-grid { display: block; padding: 0; border: 0; }
.site-footer .footer-brand img { display: block; width: 140px; filter: none; }
.site-footer .footer-bottom { display: flex; align-items: center; gap: 17px; padding: 0; border: 0; }
.site-footer .footer-bottom p,
.site-footer .legal-links a { margin: 0; color: var(--navy); font: 10px var(--mono); text-decoration: none; text-transform: uppercase; }
.site-footer .legal-links { display: flex; gap: 17px; }

@media (max-width: 700px) {
  .site-footer { display: grid; justify-content: stretch; gap: 19px; margin-top: 82px; padding-top: 22px; }
  .site-footer .footer-brand img { width: 125px; }
  .site-footer .footer-bottom { display: grid; gap: 19px; }
}
