.site-footer {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, #111827, #1b2433);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 0;
  padding: 42px 24px 20px;
  box-shadow: var(--shadow-lg);
}

.footer-grid,
.footer-note {
  width: min(var(--container), calc(100% - 20px));
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  column-gap: 18px;
  row-gap: 18px;
  align-items: start;
}

.footer-col--pages {
  padding-left: clamp(18px, 2.8vw, 42px);
}

.footer-brand h4,
.footer-col h5 {
  color: #fff;
  margin: 0 0 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-note {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.site-footer a { color: rgba(255,255,255,0.9); }
.site-footer a:hover { color: #ffffff; }
.footer-brand p, .footer-col p, .footer-links a, .footer-note { color: rgba(255,255,255,0.78); }


.footer-brand-mark {
  margin: 0 0 14px;
}

.footer-brand-logo {
  display: block;
  width: auto;
  max-width: min(100%, 340px);
  max-height: 92px;
  height: auto;
}


.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}


@media (max-width: 767px) {
  .footer-grid,
  .footer-note {
    width: min(var(--container), 93%);
  }
}
