/* ================================
   FOOTER
   ================================ */

footer {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(184,115,51,0.15);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo {
  display: block;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--off-white); }
.footer-bottom {
  border-top: 1px solid rgba(184,115,51,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-bbb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.bbb-badge {
  background: rgba(184,115,51,0.1);
  border: 1px solid rgba(184,115,51,0.3);
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--copper-light);
  text-transform: uppercase;
  animation: pulse 4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
