.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 3rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2rem;
}

.footer__map {
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.footer__links-col h3,
.footer__col-title {
  font-size: var(--font-body);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer__link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: var(--font-small);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__brand {
  text-align: center;
}

.footer__logo {
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.footer__logo img {
  width: 120px;
  height: auto;
}

.footer__tagline {
  font-size: var(--font-small);
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.footer__social .social-icon {
  border-color: rgba(255,255,255,0.3);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1rem;
  font-size: var(--font-small);
  color: rgba(255,255,255,0.5);
}

/* ---------- TABLET (≤ 1023px) ---------- */
@media (max-width: 1023px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- MOBILE (< 768px) ---------- */
@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__logo img {
    max-width: 90px;
    width: auto;
  }
}
