.footer {
  background: var(--ink);
  color: #d7e6e8;
  padding: 4rem 0 1.5rem;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img,
.footer__brand picture {
  margin-bottom: 1rem;
}

.footer__brand img {
  height: 42px;
  width: auto;
}

.footer__brand p {
  color: #9fb4ba;
  max-width: 34ch;
  font-size: 0.95rem;
}

.footer h3 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer a {
  color: #b7cbd0;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--teal);
}

.footer__contact {
  font-size: 0.95rem;
  color: #b7cbd0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: #8aa0a7;
}

.footer__legal-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
