footer {
  background: var(--black);
  border-top: 0.5px solid rgba(200,134,10,0.2);
  padding: 48px 64px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(200,134,10,0.1);
}
.footer-brand p { font-family: var(--italic); font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-col-ttl { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--sans); font-size: 11px; font-weight: 300; letter-spacing: 0.1em; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-pale); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; }
.footer-copy { font-family: var(--sans); font-size: 10px; font-weight: 300; letter-spacing: 0.1em; color: var(--muted); }
.footer-motif { display: flex; align-items: center; gap: 8px; }

/* Responsive */
@media (max-width: 1024px) {
  footer { padding: 40px 32px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* Footer always dark in both themes */
body.light-theme footer { background: #1F0A02; border-top-color: rgba(184,92,0,0.5); }
body.light-theme footer .footer-copy { color: rgba(248,238,215,0.6); }
body.light-theme footer .footer-brand p { color: rgba(248,238,215,0.55); }
body.light-theme footer .footer-links a { color: rgba(248,238,215,0.6); }
body.light-theme footer .footer-links a:hover { color: #FAC775; }
body.light-theme footer .footer-col-ttl { color: #FAC775; }
body.light-theme footer .logo-name { color: #F5EFD8; }
body.light-theme footer .logo-name small { color: #FAC775; }
body.light-theme footer .footer-top { border-bottom-color: rgba(184,92,0,0.25); }
