/* ============== LEGAL PAGES (Privacy + Terms) ============== */
.legal-page {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem 5rem;
}

.legal-head {
  text-align: center;
  margin-bottom: 3rem;
}
.legal-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.75rem;
}
.legal-h1 em {
  font-style: italic;
  color: var(--gold);
}
.legal-meta {
  font-size: 12px;
  color: var(--text3);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-body {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.legal-lede {
  font-size: 15px;
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.legal-lede strong {
  color: var(--text);
  font-weight: 500;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
  padding-top: 0.5rem;
}
.legal-body h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.legal-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-body p {
  font-size: 14px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 0.875rem;
}
.legal-body p strong {
  color: var(--text);
  font-weight: 500;
}
.legal-body ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding-left: 0;
}
.legal-body ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 13.5px;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.75;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.legal-body ul li strong {
  color: var(--text);
  font-weight: 500;
}
.legal-body a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,165,90,0.3);
  transition: all 0.15s var(--ease);
}
.legal-body a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.legal-contact-box {
  margin-top: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(201,165,90,0.06), rgba(245, 237, 220, 0.04));
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: var(--radius);
}
.legal-contact-box p {
  margin-bottom: 0.875rem;
  font-size: 13.5px;
  line-height: 1.7;
}
.legal-contact-box p:last-child {
  margin-bottom: 0;
}
.legal-contact-box strong {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  letter-spacing: -0.005em;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 5rem 1rem 3rem;
  }
  .legal-body {
    padding: 1.75rem 1.5rem;
  }
  .legal-body h2 {
    font-size: 19px;
  }
}
