/* Legal pages styles (privacy, terms) */
body.legal-page {
  background: var(--navy-deep);
}

.legal-page .topnav {
  position: relative;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-content {
  padding: 80px 0 120px;
  min-height: 70vh;
}

.legal-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-lighthouse);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.legal-h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin: 0 0 12px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-stone);
  margin: 0 0 64px;
  font-style: italic;
}

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

.legal-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 16px;
  line-height: 1.25;
}

.legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mist);
  margin: 0 0 16px;
}

.legal-section p strong {
  color: var(--text-white);
  font-weight: 600;
}

.legal-section ul {
  padding-left: 0;
  margin: 0 0 20px;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mist);
}

.legal-section li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold-lighthouse);
  font-weight: 600;
}

.legal-section li strong {
  color: var(--text-white);
  font-weight: 600;
}

.legal-section a {
  color: var(--gold-lighthouse);
  text-decoration: underline;
  text-decoration-color: rgba(232, 185, 104, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.legal-section a:hover {
  text-decoration-color: var(--gold-lighthouse);
}

.legal-page .footer {
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--navy-midnight);
}

.legal-page .footer-bottom {
  padding-top: 0;
  border-top: none;
}

.legal-page .footer-bottom p {
  color: var(--text-mist);
  font-size: 14px;
}

.legal-page .footer-bottom a {
  color: var(--text-mist);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-page .footer-bottom a:hover {
  color: var(--gold-lighthouse);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 48px 0 80px;
  }
  .legal-section {
    margin-bottom: 36px;
  }
}
