/* ===============================================
   FOOTER
   =============================================== */
.footer {
  background: var(--navy-deep);
  padding: 80px 0 40px;
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand img {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
}

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

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
