/* =============================================
   LEGAL PAGES — Terms, Privacy, Accessibility
   Shared styles for all legal/policy pages
   ============================================= */

.legal-page {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: var(--section-py);
  min-height: 100vh;
}

.legal-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 12px;
  max-width: 760px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  max-width: 760px;
}

.legal-section li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 8px;
}

.legal-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding-top: calc(var(--header-h) + 32px);
  }

  .legal-heading {
    font-size: 1.8rem;
  }

  .legal-updated {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .legal-section h2 {
    font-size: 1.15rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.9rem;
  }
}
