/* ═══════════════════════════════════════════════
   PRIVACY.CSS
   Prose styles for privacy policy and other
   text-heavy legal pages.
   Requires base.css to be loaded first.
═══════════════════════════════════════════════ */

/* ─── PAGE WRAPPER ─── */
.prose-page {
  padding-top: 64px; /* clear fixed nav */
  min-height: 100vh;
  background: var(--parchment);
}

/* ─── PROSE COLUMN ─── */
.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 5% 8rem;
}

/* ─── PAGE TITLE ─── */
.prose h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* effective date / subtitle */
.prose .prose-meta {
  font-size: 0.78rem;
  color: var(--warm-mid);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
  display: block;
}

/* ─── DIVIDER ─── */
.prose hr {
  border: none;
  border-top: 1px solid var(--subtle);
  margin: 3rem 0;
}

/* ─── SECTION HEADINGS ─── */
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
}

.prose h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* ─── BODY TEXT ─── */
.prose p {
  font-size: 0.925rem;
  line-height: 1.85;
  color: var(--warm-mid);
  margin-bottom: 1.25rem;
}

/* first paragraph after h2 needs no top margin */
.prose h2 + p { margin-top: 0; }

/* ─── LISTS ─── */
.prose ul,
.prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose li {
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--warm-mid);
  margin-bottom: 0.35rem;
}

.prose ul li::marker { color: var(--terra); }
.prose ol li::marker { color: var(--terra); font-weight: 600; }

/* ─── LINKS ─── */
.prose a {
  color: var(--terra);
  text-decoration: underline;
  text-decoration-color: rgba(196,132,90,0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .prose a:hover {
    text-decoration-color: var(--terra);
  }
}

/* ─── STRONG / EM ─── */
.prose strong { color: var(--navy); font-weight: 600; }
.prose em     { font-style: italic; color: var(--navy); }

/* ─── CALLOUT / NOTE BOX ─── */
.prose .callout {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--terra);
  background: rgba(196,132,90,0.06);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.prose .callout p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* ─── MOBILE ─── */
@media (max-width: 860px) {
  .prose {
    padding: 3rem 6% 6rem;
  }
  .prose h2 { margin-top: 2.5rem; }
}