/* ============================================================
   POLICY PAGE STYLES
   Shared by /how-this-works, /policies/*, /accessibility.
   Single-column, text-forward. No imagery.
   Loaded IN ADDITION to tokens.css.
   ============================================================ */

html, body { background: #F7F5EF; }

.policy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 32px) clamp(80px, 12vh, 140px);
}

.policy-page .breadcrumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 24px;
}
.policy-page .breadcrumb a { color: var(--ink-3); text-decoration: none; }
.policy-page .breadcrumb a:hover { color: var(--ink); }
.policy-page .breadcrumb .sep { padding: 0 8px; opacity: .5; }

.policy-page h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 12px;
  color: var(--ink);
  text-wrap: pretty;
}
.policy-page .effective {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.policy-page .effective b { color: var(--ink); font-weight: 500; }

.policy-page h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
  margin: 40px 0 14px;
  text-wrap: pretty;
}
.policy-page h2:first-child { margin-top: 0; }
.policy-page h3 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin: 24px 0 8px;
}
.policy-page p {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.policy-page p strong { color: var(--ink); font-weight: 500; }
.policy-page a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-page a:hover { color: var(--ink); }

.policy-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.policy-page ul li {
  padding: 8px 0 8px 22px;
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  position: relative;
}
.policy-page ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink-3);
}
.policy-page ul li strong { color: var(--ink); font-weight: 500; }

.policy-page .callout {
  padding: 20px 24px;
  background: var(--bone-2);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  margin: 24px 0;
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.policy-page .callout b {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 8px;
}

.policy-page .contact-block {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.policy-page .contact-block a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); }

.policy-page .allcaps-legal {
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

/* Clean-page signal — used by editorial pages (Ecology, Consciousness, Resources).
   Not part of policy pages themselves. Included here so it's easy to inject site-wide. */
.clean-signal {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 8px 12px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-inner);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.clean-signal::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--moss);
  border-radius: 50%;
  display: inline-block;
}
