footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.6);
  padding: 4rem 4rem 2rem;
  font-family: var(--font-sans);
  font-weight: 300;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

/* Footer reuses .nav-logo but overrides colours for dark background */
.footer-brand .nav-logo {
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand .nav-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(245, 240, 232, 0.6);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li { margin-bottom: 0.6rem; }
.footer-menu a {
  text-decoration: none;
  font-size: 0.84rem;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.2s;
}
.footer-menu a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.footer-bottom a {
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
}

@media (max-width: 900px) {
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
