/* ---------------- HEADER ---------------- */
.legal-header {
  padding: 32px 20px 40px;
  background: var(--bg-light);
}
.legal-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--brand-forest);
  margin-top: 12px;
}

/* ---------------- BODY COPY ---------------- */
.legal-content-section {
  padding: 20px 20px 100px;
}
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--brand-forest);
  letter-spacing: 0.28em;
  margin: 40px 0 16px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-forest);
  letter-spacing: 0.08em;
  margin: 28px 0 12px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-accent);
}
.legal-content a {
  color: var(--brand-accent);
  font-weight: 600;
}
.legal-content strong {
  color: var(--brand-forest);
  font-weight: 600;
}
.legal-contact {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .legal-title {
    font-size: 30px;
  }
}
