/* ============================================================
   footer.css — Site footer
   ============================================================ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,146,42,0.15);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white); font-size: 1.25rem; margin-bottom: 0.75rem;
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; max-width: 300px; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 13px; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
