/* ── Legal Pages (Privacy & Terms) ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  position: relative;
  z-index: 10;
}
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 40px;
  transition: opacity 0.3s;
}
.legal-page .back-link:hover { opacity: 0.7; }
.legal-page .back-link svg {
  width: 16px; height: 16px;
}

.legal-page h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.legal-page .legal-meta {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-page h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--white);
}
.legal-page h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--gray-light);
}

.legal-page p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 300;
}
.legal-page strong {
  color: var(--white);
  font-weight: 600;
}
.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.legal-page ul li {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.legal-page ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.legal-page a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
}
.legal-page a:hover { opacity: 0.7; }

.legal-page .legal-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-page { padding: 40px 20px 60px; }
  .legal-page h1 { font-size: 1.8rem; }
}
