/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #0C1E35;
  padding: 72px 80px 48px;
}

.footer-top {
  display: grid;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  margin-bottom: 40px;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
}

.footer-brand {
  font-family: var(--type-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FDFCFA;
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
}

.footer-brand span {
  color: var(--gold);
}

.footer-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-stockal {
  font-family: var(--type-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 6px 12px;
  display: inline-block;
}

.footer-col-title {
  font-family: var(--type-mono);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .95);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-disclaimer {
  font-size: .73rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  max-width: 760px;
}

.footer-copy {
  font-family: var(--type-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
  margin-top: 4px;
}

.footer-legal-item {
  margin-bottom: 14px;
}

.footer-legal-label {
  font-family: var(--type-mono);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  display: block;
  margin-bottom: 3px;
}

.footer-legal-value {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55;
}

.footer-legal-value a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
}

