/* ═══════════════════════════════════════════
   OmniForge Dynamics — Legal Page Styles
   legal.css
═══════════════════════════════════════════ */

.legal-page {
  background: var(--white);
  padding: 120px 24px 96px;
  min-height: 80vh;
}

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

.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1;
}

.legal-updated {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-intro {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

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

.legal-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-section p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-section ul li {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 5px;
}

.legal-contact {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 8px;
}

.legal-contact p {
  margin-bottom: 4px !important;
}

.legal-contact a {
  color: var(--blue);
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-page { padding: 100px 20px 64px; }
}
