.footer { background:linear-gradient(135deg, var(--burgundy-dark) 0%, #9b082a 60%, #903245 100%);
  color: #bb9461; margin-top: auto; }
.footer-inner {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding: 3rem 3rem 2rem; justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--saffron); display: block; margin-bottom: 10px;
}
.footer-brand p { font-size: 13px; color: #ffb56c; line-height: 1.7; }
.footer-links {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  color: #bb9461; text-decoration: none; font-size: 14px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--saffron); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { font-size: 13px; }
.footer-bottom {
  border-top: 1px solid #bb9461;
  padding: 1.2rem 3rem; font-size: 12px; text-align: center; color: #fba05b;
}
@media (max-width: 600px) {
  .footer-inner { padding: 2rem 1.5rem 1.5rem; gap: 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; }
}
