.site-footer {
  position: static;
  width: 100%;
  padding: 68px clamp(24px, 6vw, 92px) 0;
  display: block;
  color: #d7e0ea;
  background: #0e1d31;
  font-family: "DM Sans", Arial, sans-serif;
}

.footer-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(36px, 5vw, 72px);
}

.footer-brand img {
  width: 112px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}

.footer-brand p {
  max-width: 290px;
  margin: 18px 0 0;
  color: #aebdcd;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.footer-column h2 {
  margin: 8px 0 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-column nav,
.footer-pending-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-column a,
.footer-pending-links span,
.footer-muted {
  color: #aebdcd;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-column a {
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-column a:hover { color: #ffffff; }

.footer-column a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-pending-links span { opacity: 0.72; }

.footer-muted {
  max-width: 210px;
  margin: 0;
  opacity: 0.72;
}

.footer-bottom {
  width: min(1200px, 100%);
  margin: 54px auto 0;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #8fa1b5;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-footer { padding: 54px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-column h2 { margin-top: 0; }
  .footer-bottom { margin-top: 42px; }
}
