/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(27, 79, 138, 0.25);
  padding: var(--s-py) var(--s-px);
}
.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
  }
}

.footer__brand-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__social {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--t);
}
.footer__social:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.35);
  color: var(--gold);
}

.footer__col h5 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  text-decoration: none;
  transition: var(--t);
  border: none;
  background: none;
}
.footer__col ul li a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.footer__col ul li a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(27, 79, 138, 0.18);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}
.footer__bottom span {
  color: var(--gold);
}
.footer__tagline {
  font-style: italic;
  color: rgba(245, 166, 35, 0.4) !important;
}
