/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-site-logo {
  width: 200px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-site-logo.is-visible {
  opacity: 1;
}

.footer-logo-text {
  font-size: 1.05rem;
  line-height: 1.3;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin: 1rem 0;
  max-width: 280px;
}

.footer-tagline,
.footer-tagline p,
.footer-tagline * {
  font-size: 0.87rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 1rem 0;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 0.7rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-policies {
  display: flex;
  gap: 1.5rem;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-policies a:hover {
  color: var(--gold);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-policies {
    justify-content: center;
  }
}
