/* MOXIES — Privacy Policy page.
   Scoped entirely to this page: every rule here is prefixed .legal-*, so
   nothing can collide with assets/style.css (linked before this file
   purely for the shared :root color/font tokens and the existing
   .site-footer* rules, which are reused as-is). No cinematic story, no
   Spline, no scroll JS, no animation beyond simple hover transitions. */

.legal-page {
  background-color: var(--bg-primary);
  min-height: 100vh;
}

/* ---------- Lightweight header (not sticky, no cinematic behavior) ---------- */

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(245, 242, 235, 0.08);
}

.legal-header-logo {
  display: block;
  height: 40px;
  width: auto;
}

.legal-back-link {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ivory);
  opacity: 0.75;
  transition: opacity 200ms, color 200ms;
}

.legal-back-link:hover {
  opacity: 1;
  color: var(--gold-muted);
}

/* ---------- Main content ---------- */

.legal-main {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.legal-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.legal-updated {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 2rem;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(197, 160, 90, 0.2);
  margin: 0 0 2.5rem;
}

.legal-body-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 242, 235, 0.85);
  margin-bottom: 1.25rem;
}

.legal-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(245, 242, 235, 0.08);
}

.legal-section:first-of-type {
  margin-top: 3.5rem;
}

.legal-h2 {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.legal-num {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-muted);
  flex-shrink: 0;
}

.legal-h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ivory);
  margin: 1.5rem 0 0.75rem;
}

.legal-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  list-style: none;
}

.legal-list li {
  position: relative;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.85);
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold-muted);
}

.legal-placeholder-note {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: italic;
  color: var(--text-secondary);
  border-left: 2px solid rgba(197, 160, 90, 0.35);
  padding-left: 0.9rem;
  margin: 0 0 1.25rem;
}

.legal-contact-block {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ivory);
}

.legal-contact-block strong {
  color: var(--gold-muted);
  font-weight: 600;
}

@media (min-width: 700px) {
  .legal-header {
    padding: 1.5rem 2rem;
  }

  .legal-main {
    padding: 4.5rem 2rem 5rem;
  }
}
