/* ==========================================================================
   LEGAL CONTENT — privacy-policy.html
   Clean, readable formatting for long-form legal text, matching the
   site's existing black/white/graphite/royal-violet branding.
   ========================================================================== */

/* Scoped to this page only — .contact-main's shared top padding (used by
   cart.html, contact.html, and order-success.html too) stays untouched;
   this reduces just the hero-to-Effective-Date gap on privacy-policy.html
   by roughly 40-50%, without affecting any other page that reuses the
   same .contact-main component. */
.contact-main.contact-main--privacy-hero-tight {
  padding-top: var(--space-4);
}

.legal-content__h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--color-obsidian);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.legal-content__h2--major {
  margin-top: 0;
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-graphite-border-light);
  font-size: 26px;
}

.legal-content__h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-obsidian);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-content__p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 26px;
  color: var(--color-graphite-500);
  margin-bottom: var(--space-4);
}

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

.legal-content__list {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-6);
}

.legal-content__list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 26px;
  color: var(--color-graphite-500);
  margin-bottom: var(--space-2);
}

.legal-content__p a.text-link,
.legal-content__list a.text-link {
  color: var(--color-royal-violet);
  font-weight: 500;
}

/* ---- Related policies navigation — appears below the legal text, never
   inside it; a wayfinding aid, not part of any policy's wording ---- */

.related-policies {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-graphite-border-light);
}

.related-policies__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-graphite-500);
  margin-bottom: var(--space-3);
}

.related-policies__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}

.related-policies__list a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-royal-violet);
}

.related-policies__list a:hover,
.related-policies__list a:focus-visible {
  color: var(--color-royal-violet-hover);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-content__h2 {
    font-size: 19px;
    margin-top: var(--space-6);
  }

  .legal-content__h2--major {
    font-size: 22px;
  }

  .legal-content__h3 {
    font-size: 16px;
  }

  .legal-content__p,
  .legal-content__list li {
    font-size: 14px;
    line-height: 24px;
  }
}
