/* ===== Footer ===== */
.footer {
  background:
    radial-gradient(circle at top left, rgba(182, 122, 66, 0.16), transparent 22%),
    linear-gradient(180deg, #10213a 0%, #0b1728 100%);
  color: var(--pearl);
  padding: 88px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.footer-brand .footer-tagline {
  font-size: 0.94rem;
  color: rgba(219, 228, 239, 0.78);
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(219, 228, 239, 0.8);
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.92rem;
  color: rgba(219, 228, 239, 0.82);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 56px;
  padding: 24px 0;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(149, 164, 183, 0.9);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(149, 164, 183, 0.9);
}

.footer-legal a:hover { color: var(--pearl); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .footer { padding: 72px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal { justify-content: flex-start; }
}
