.footer {
  padding: 58px 5vw 20px;
  overflow: hidden;
  color: #111;
  background: #efefed;
  font-family: Inter, system-ui, sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 120px);
}
.footer h3 {
  margin: 0 0 20px;
  font-size: 12px;
  text-transform: uppercase;
}
.footer a {
  display: block;
  margin-bottom: 11px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
}
.footer-intro { max-width: 390px; }
.footer-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px !important;
  transform: translateY(-7px);
}
.footer-logo .brand-mark {
  width: 49px;
  height: 61px;
  flex: 0 0 auto;
  object-fit: contain;
}
.footer-logo .brand-wordmark {
  width: 179px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}
.footer-intro p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.75;
}
.footer-bottom {
  display: block;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 12px;
  text-align: center;
}

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

@media (max-width: 600px) {
  .footer { padding: 48px 24px 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-intro { max-width: none; }
  .footer-logo .brand-mark { width: 42px; height: 52px; }
  .footer-logo .brand-wordmark { width: 154px; }
  .footer-bottom { margin-top: 34px; }
}
