.footer {
  background: var(--ink);
  color: rgba(250,246,239,0.7);
  padding: 56px 0 24px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250,246,239,0.12);
}

.footer-logo { height: 136px; margin-bottom: 10px; filter: brightness(1.4); }

.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  margin-top: 24px;
  color: rgba(250,246,239,0.45);
}

.footer-credit {
  text-align: center;
  font-size: 0.78rem;
  margin-top: 6px;
  color: rgba(250,246,239,0.45);
}
.footer-credit a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: var(--white); }
