.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto 64px;
}

.footer-brand .logo {
  height: 36px;
  filter: invert(1) brightness(1.2);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-cta {
  background: var(--gold);
  color: var(--bg-void);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.footer-legal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-legal-row p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal-row .legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-row .legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 1000px) {
  .footer {
    padding: 80px 32px 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 24px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-legal-row {
    flex-direction: column;
    gap: 16px;
  }
}
