/* ===========================
   LEGAL PAGES
   =========================== */

.legal {
  padding: 140px 48px 80px;
  background: var(--off-white);
  min-height: 100vh;
}

.legal__inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.legal__updated {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal h3 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 12px;
}

.legal ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.legal li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 4px;
}

.legal a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.legal a:hover {
  color: var(--gold-light);
}

.legal__company {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 16px 0 24px;
  line-height: 1.7;
}

.legal__company strong {
  color: var(--text);
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.875rem;
}

.legal__table th,
.legal__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--warm-gray);
  color: var(--text-light);
}

.legal__table th {
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal__table td {
  background: var(--white);
}

/* FOOTER LINKS */
.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer__links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.footer__links a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .legal {
    padding: 120px 24px 60px;
  }

  .legal h1 {
    font-size: 1.75rem;
  }

  .legal__table {
    font-size: 0.8125rem;
  }

  .legal__table th,
  .legal__table td {
    padding: 8px 12px;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
