/* ── LEGAL PAGES (privacy.html, terms.html) ── */

.legal-main {
  padding-top: var(--nav-height);
  min-height: 100vh;
  background: var(--gray-soft);
}

.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ── Hero ── */
.legal-hero {
  text-align: center;
  padding: 64px 0 52px;
  border-bottom: 2px solid rgba(232, 83, 122, 0.12);
  margin-bottom: 48px;
  position: relative;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 10px;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
}

/* ── Body ── */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Section ── */
.legal-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1.5px solid rgba(232, 83, 122, 0.08);
  box-shadow: var(--shadow-sm);
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--plum);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rose-light);
}

.legal-section h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin: 18px 0 8px;
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 12px;
  font-weight: 400;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.legal-section ul li {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  font-weight: 400;
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--rose);
  font-weight: 700;
}

.legal-section a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-section a:hover { color: var(--rose-dark); }

/* ── Contact card ── */
.legal-contact-card {
  background: var(--gray-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 14px;
  border-left: 4px solid var(--rose);
}

.legal-contact-card p {
  margin-bottom: 6px !important;
  font-size: 0.93rem !important;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .legal-section {
    padding: 24px 20px;
  }

  .legal-container {
    padding: 40px 16px 60px;
  }

  .legal-hero {
    padding: 40px 0 36px;
  }
}
