@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Figtree:wght@400;500;600;700&display=swap");

/* =====================================================================
   INFO-PAGES DESIGN SYSTEM
   Shared look for policy / information pages (safeguarding, conduct,
   privacy, …). Everything is scoped under .info-doc so it never touches
   global styles or the site wrapper (header / nav / footer).
   ===================================================================== */

.info-doc {
  --sg-rose: #B57170;      /* rgba(181, 113, 112, 1) — brand rose */
  --sg-rose-deep: #B57170; /* unified to the single brand rose */
  --sg-plum: #B57170;      /* unified to the single brand rose */
  --sg-ink: #33302E;
  --sg-muted: #7A6F69;
  --sg-paper: #FBF3F1;
  --sg-paper-2: #FCFAF8;
  --sg-line: #E7DED8;

  font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sg-ink);
  background: #ffffff;
  text-align: left; /* override global body { text-align: justify } */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 0 0 10px 0;
  border-bottom: 1px solid var(--sg-line);
}

.info-doc .doc-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

.info-doc a {
  color: var(--sg-rose-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color .18s ease;
}
.info-doc a:hover { color: var(--sg-plum); filter: brightness(0.85); }

/* ---------- Hero ---------- */
.info-doc .doc-hero {
  padding: 30px 0;
  border-bottom: 1px solid var(--sg-line);
}
.info-doc .doc-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sg-rose);
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-doc .doc-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sg-line);
}
.info-doc .doc-hero h1 {
  font-family: "Spectral", Georgia, serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--sg-plum);
  margin: 0 0 22px 0;
  max-width: 24ch;
  text-wrap: balance;
}
.info-doc .doc-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--sg-muted);
  margin: 0;
}
.info-doc .doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.info-doc .doc-meta div { font-size: 13px; line-height: 1.5; }
.info-doc .doc-meta dt {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--sg-rose);
  margin-bottom: 3px;
}
.info-doc .doc-meta dd { margin: 0; color: var(--sg-ink); font-weight: 500; }

/* ---------- Emergency / callout strip ---------- */
.info-doc .doc-urgent {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--sg-paper);
  border: 1px solid #EAD4D1;
  border-left: 4px solid var(--sg-rose);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 30px 0 8px 0;
}
.info-doc .doc-urgent .doc-urgent-mark {
  font-family: "Spectral", Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--sg-rose);
  border-radius: 6px;
  padding: 7px 12px;
  white-space: nowrap;
  margin-top: 2px;
}
.info-doc .doc-urgent p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--sg-ink); }
.info-doc .doc-urgent strong { color: var(--sg-plum); }

/* ---------- Contents index ---------- */
.info-doc .doc-contents {
  margin: 30px 0 8px 0;
  padding-top: 30px;
  border-top: 1px solid var(--sg-line);
}
.info-doc .doc-contents h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sg-muted);
  margin: 0 0 18px 0;
}
.info-doc .doc-contents ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 40px;
  counter-reset: doc-toc;
}
.info-doc .doc-contents li { counter-increment: doc-toc; }
.info-doc .doc-contents a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 9px 4px;
  border-bottom: 1px solid var(--sg-line);
  text-decoration: none;
  color: var(--sg-ink);
  font-size: 15px;
  font-weight: 500;
}
.info-doc .doc-contents a::before {
  content: counter(doc-toc, decimal-leading-zero);
  font-family: "Spectral", Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--sg-rose);
  min-width: 22px;
}
.info-doc .doc-contents a:hover { color: var(--sg-rose-deep); border-bottom-color: var(--sg-rose); }

/* ---------- Prose (section-less pages) ---------- */
.info-doc .doc-prose {
  padding: 30px 0;
  border-top: 1px solid var(--sg-line);
}
.info-doc .doc-prose p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--sg-ink);
  margin: 0 0 15px 0;
}
.info-doc .doc-prose p:last-child { margin-bottom: 0; }
.info-doc .doc-prose strong { color: var(--sg-plum); }

/* ---------- Sections ---------- */
.info-doc .doc-section {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--sg-line);
}
.info-doc .doc-section:last-of-type { border-bottom: none; }
.info-doc .doc-num {
  font-family: "Spectral", Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--sg-rose);
  opacity: 0.9;
  padding-top: 4px;
}
.info-doc .doc-body { min-width: 0; }
.info-doc .doc-section h2 {
  font-family: "Spectral", Georgia, serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.2;
  color: var(--sg-plum);
  margin: 0 0 18px 0;
  letter-spacing: -0.005em;
}
.info-doc .doc-body p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--sg-ink);
  margin: 0 0 15px 0;
}
.info-doc .doc-body p:last-child { margin-bottom: 0; }

.info-doc .doc-sublabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sg-rose);
  margin: 26px 0 12px 0 !important;
}

/* Unordered lists */
.info-doc .doc-body ul {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
.info-doc .doc-body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--sg-ink);
}
.info-doc .doc-body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sg-rose);
}
.info-doc .doc-body ul li strong { color: var(--sg-plum); }
.info-doc .doc-body ul ul { margin: 12px 0 6px 0; }
.info-doc .doc-body ul ul li { margin-bottom: 8px; }
.info-doc .doc-body ul ul li::before {
  background: transparent;
  border: 1.5px solid var(--sg-rose);
  top: 10px;
  width: 6px;
  height: 6px;
}

/* Ordered lists — for real sequences / severity ladders */
.info-doc .doc-body ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  counter-reset: doc-ol;
}
.info-doc .doc-body ol > li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 13px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--sg-ink);
  counter-increment: doc-ol;
}
.info-doc .doc-body ol > li::before {
  content: counter(doc-ol);
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Spectral", Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  color: var(--sg-rose);
  min-width: 24px;
}
.info-doc .doc-body ol > li strong { color: var(--sg-plum); }

.info-doc .doc-note {
  display: block;
  margin-top: 10px;
  color: var(--sg-muted);
  font-size: 15px;
}

/* Compact inline "field list" (e.g. the categories of data collected) */
.info-doc .doc-fields {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 16px 20px;
  background: var(--sg-paper-2);
  border: 1px solid var(--sg-line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 26px;
}
.info-doc .doc-fields li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--sg-ink);
}
.info-doc .doc-fields li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sg-rose);
}

/* ---------- Contact / lead card ---------- */
.info-doc .doc-card {
  margin-top: 22px;
  background: var(--sg-paper-2);
  border: 1px solid var(--sg-line);
  border-radius: 10px;
  padding: 26px 28px;
}
.info-doc .doc-card .doc-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sg-rose);
  margin: 0 0 8px 0;
}
.info-doc .doc-card .doc-name {
  font-family: "Spectral", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--sg-plum);
  margin: 0 0 14px 0;
}
.info-doc .doc-card .doc-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 15.5px;
}
.info-doc .doc-card .doc-lines span { display: inline-flex; align-items: center; gap: 8px; color: var(--sg-ink); }
.info-doc .doc-card .doc-lines .doc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-muted);
}

/* ---------- Table ---------- */
.info-doc .doc-table-wrap {
  overflow-x: auto;
  margin: 8px 0 6px 0;
  -webkit-overflow-scrolling: touch;
}
.info-doc .doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.info-doc .doc-table th {
  text-align: left;
  background: var(--sg-paper);
  color: var(--sg-plum);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 2px solid var(--sg-rose);
}
.info-doc .doc-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--sg-line);
  vertical-align: top;
  line-height: 1.55;
  color: var(--sg-ink);
}

/* ---------- Review chips ---------- */
.info-doc .doc-review {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.info-doc .doc-review span {
  font-size: 13px;
  font-weight: 500;
  color: var(--sg-ink);
  background: var(--sg-paper);
  border: 1px solid #EAD4D1;
  border-radius: 100px;
  padding: 7px 16px;
}
.info-doc .doc-review span b { color: var(--sg-rose-deep); font-weight: 600; }

/* ---------- Closing ---------- */
.info-doc .doc-closing {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--sg-line);
}
.info-doc .doc-closing .doc-mark {
  font-family: "Spectral", Georgia, serif;
  font-size: 26px;
  color: var(--sg-rose);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.info-doc .doc-closing p {
  font-family: "Spectral", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.5;
  color: var(--sg-plum);
  max-width: 32ch;
  margin: 0 auto 14px auto;
}
.info-doc .doc-closing p:last-child { margin-bottom: 0; }
.info-doc .doc-closing .doc-contact-line {
  font-family: "Figtree", sans-serif;
  font-style: normal;
  font-size: 15px;
  color: var(--sg-muted);
  max-width: none;
  margin-bottom: 0;
}

/* ---------- FAQ (tabs + accordion) ---------- */
.info-doc .faqTabs { margin-top: 30px; }

.info-doc ul.tabs {
  list-style: none;
  margin: 0 0 26px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--sg-line);
}
.info-doc ul.tabs li.tab-link {
  padding: 10px 18px;
  margin-bottom: -1px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sg-muted);
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  user-select: none;
  transition: color .15s ease, background .15s ease;
}
.info-doc ul.tabs li.tab-link:hover { color: var(--sg-plum); }
.info-doc ul.tabs li.tab-link.current { color: #fff; background: var(--sg-rose); }

.info-doc .tab-content { display: none; }
.info-doc .tab-content.current { display: block; }

.info-doc .sectionHeaders {
  position: relative;
  margin: 0 0 16px 0;
  padding-right: 150px;
}
.info-doc .sectionHeaders h1 {
  font-family: "Spectral", Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--sg-plum);
  margin: 0;
}
.info-doc .controls {
  position: absolute;
  right: 0;
  bottom: 3px;
  margin: 0;
  font-size: 13px;
  color: var(--sg-muted);
}
.info-doc .controls a { color: var(--sg-rose-deep); text-decoration: none; }
.info-doc .controls a:hover { text-decoration: underline; }

.info-doc .faq-accordion { list-style: none; margin: 0; padding: 0; }
.info-doc .faq-accordion > li {
  border: 1px solid var(--sg-line);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .15s ease;
}
.info-doc .faq-accordion > li.open { border-color: var(--sg-rose); }
.info-doc .faq-accordion-trigger {
  position: relative;
  margin: 0;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  color: var(--sg-ink);
  user-select: none;
  transition: color .15s ease;
}
.info-doc .faq-accordion-trigger:hover { color: var(--sg-plum); }
.info-doc .faq-accordion-trigger::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--sg-rose);
  border-bottom: 2px solid var(--sg-rose);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.info-doc .faq-accordion > li.open .faq-accordion-trigger::after {
  transform: rotate(-135deg);
}
.info-doc .faq-section { background: var(--sg-paper-2); border-top: 1px solid var(--sg-line); }
.info-doc .faq-content {
  padding: 16px 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--sg-ink);
}
.info-doc .faq-content strong { color: var(--sg-plum); }
.info-doc .faq-content a { color: var(--sg-rose-deep); }
.info-doc .faq-content p { margin: 0 0 10px 0; }
.info-doc .faq-content p:last-child { margin-bottom: 0; }
.info-doc .faq-empty { padding: 20px 4px; color: var(--sg-muted); font-size: 15.5px; }

/* ---------- Motion ---------- */
.info-doc .doc-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.info-doc .doc-reveal.doc-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .info-doc .doc-reveal { opacity: 1; transform: none; transition: none; }
  .info-doc a { transition: none; }
}
