/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 5% 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__brand {}

.footer__logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}

.footer__logo img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.1em;
}

.footer__tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem; line-height: 1.75;
  max-width: 320px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex; flex-direction: column; gap: 12px;
}

.footer__links a {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem; line-height: 1.75;
  margin-bottom: 12px;
}

.footer__contact a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer__copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

.footer__sub-links {
  display: flex; gap: 24px;
}

.footer__sub-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__sub-links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__bottom {
    flex-direction: column; align-items: flex-start;
  }
}
