/* =====================================================
   DESIGN SYSTEM — matches the rest of the project
   ===================================================== */
:root {
  --cream: #F4EFE3;
  --paper: #FBF7EC;
  --paper-2: #F1EAD8;
  --crimson: #9B2226;
  --crimson-deep: #7C1115;
  --gold: #C8943A;
  --gold-deep: #B08537;
  --gold-soft: rgba(176,133,55,.10);
  --sage: #4A5D3F;
  --sage-deep: #2E3D27;
  --ink: #16110C;
  --ink-2: #2C2520;
  --ink-soft: #5A4F44;
  --ink-mute: #8A7E70;
  --rule: rgba(22,17,12,.10);
  --rule-soft: rgba(22,17,12,.06);
  --shadow-sm: 0 1px 2px rgba(22,17,12,.06), 0 2px 6px rgba(22,17,12,.04);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--crimson); text-decoration: none; border-bottom: 1px solid rgba(155,34,38,.3); transition: opacity .15s; }
a:hover { opacity: .7; }

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   TRUST BAND
   ===================================================== */
.trust-band {
  background: linear-gradient(180deg, #0F0A06 0%, #1A130B 100%);
  color: var(--cream);
  padding: 12px 24px;
  position: relative;
}
.trust-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,133,55,.5) 50%, transparent);
}
.trust-band-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
}
.trust-band .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  font-size: 13px;
  margin-left: 4px;
}

/* =====================================================
   HEADER
   ===================================================== */
.page-head {
  padding: 80px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.page-eyebrow::before, .page-eyebrow::after {
  content: ""; width: 32px; height: 1px;
  background: var(--gold); opacity: .55;
}
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 350;
  line-height: 1.06;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 18px;
}
.page-head h1 .it { font-style: italic; color: var(--crimson); font-weight: 350; }
.page-head .subhead {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 350;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.5;
}
.page-head .updated {
  margin-top: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =====================================================
   TLDR — the most important block on the page
   ===================================================== */
.tldr {
  background: linear-gradient(180deg, var(--paper-2), var(--cream));
  border: 1px solid var(--rule);
  border-left: 4px solid var(--sage);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 56px;
  position: relative;
}
@media (max-width: 600px) { .tldr { padding: 26px 24px; } }
.tldr-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px;
  display: block;
}
.tldr h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -.005em;
  line-height: 1.3;
}
.tldr h2 .it { font-style: italic; color: var(--crimson); }
.tldr ul {
  list-style: none;
  margin-top: 16px;
}
.tldr li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}
.tldr li:last-child { margin-bottom: 0; }
.tldr li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1px;
  background: var(--sage);
}
.tldr li strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   TABLE OF CONTENTS
   ===================================================== */
.toc {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 56px;
}
.toc h2 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.toc ol {
  list-style: none;
  counter-reset: toc-counter;
}
.toc li {
  counter-increment: toc-counter;
  padding: 6px 0;
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
}
.toc li::before {
  content: counter(toc-counter, decimal-leading-zero) ".";
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
  flex-shrink: 0;
  width: 28px;
}
.toc li a {
  color: var(--ink-2);
  border-bottom: none;
  font-weight: 500;
}
.toc li a:hover { color: var(--crimson); opacity: 1; }

/* =====================================================
   SECTIONS
   ===================================================== */
section.priv-section {
  margin-bottom: 56px;
  scroll-margin-top: 24px;
}
section.priv-section:last-of-type { margin-bottom: 80px; }

section.priv-section h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -.012em;
  display: flex;
  gap: 16px;
  align-items: baseline;
}
section.priv-section h2 .it { font-style: italic; color: var(--crimson); font-weight: 400; }
section.priv-section h2::before {
  content: counter(section-counter, decimal-leading-zero);
  counter-increment: section-counter;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 4px;
}

body { counter-reset: section-counter; }

section.priv-section h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin: 24px 0 10px;
  letter-spacing: -.005em;
}

section.priv-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
}
section.priv-section p strong { color: var(--ink); font-weight: 600; }
section.priv-section p em { font-style: italic; }

section.priv-section ul {
  list-style: none;
  margin: 14px 0 18px;
  padding-left: 0;
}
section.priv-section ul li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}
section.priv-section ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--gold);
}

/* Lead paragraph emphasis */
.lead-para {
  font-family: var(--serif);
  font-size: 19px !important;
  font-weight: 400;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 22px 0 26px !important;
}
.lead-para em { color: var(--crimson); font-style: italic; }

/* =====================================================
   DATA TABLE — used in section 2 to lay out
   what data is collected, why, and for how long
   ===================================================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 28px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.data-table thead {
  background: var(--paper-2);
}
.data-table th {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
}
.data-table td {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td strong { color: var(--ink); font-weight: 600; }
@media (max-width: 600px) {
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 10px 12px; }
}

/* =====================================================
   ATTORNEY REVIEW BLOCKS
   ===================================================== */
.atty-block {
  background: rgba(155,34,38,.04);
  border: 1px solid rgba(155,34,38,.15);
  border-left: 3px solid var(--crimson);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 22px 0 26px;
  position: relative;
}
.atty-block::before {
  content: "[ ATTORNEY REVIEW REQUIRED ]";
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--crimson);
  margin-bottom: 12px;
}
.atty-block p {
  font-size: 15px !important;
  margin-bottom: 12px;
  color: var(--ink-2) !important;
}
.atty-block p:last-child { margin-bottom: 0; }
.atty-block .atty-note {
  font-size: 13px !important;
  font-style: italic;
  color: var(--ink-mute) !important;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(155,34,38,.2);
}
.atty-block ul li {
  font-size: 14px !important;
  color: var(--ink-2) !important;
  margin-bottom: 8px !important;
}

/* =====================================================
   CALLOUT — sage, for plain-English clarifications
   ===================================================== */
.callout {
  background: rgba(74,93,63,.06);
  border-left: 3px solid var(--sage);
  border-radius: 8px;
  padding: 20px 26px;
  margin: 22px 0;
}
.callout p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--ink-2) !important;
  margin-bottom: 8px !important;
}
.callout p:last-child { margin-bottom: 0 !important; }
.callout .callout-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px !important;
  display: block;
}

/* =====================================================
   FOOTER
   ===================================================== */
.foot {
  background: linear-gradient(180deg, #0F0A06 0%, #1A130B 100%);
  color: var(--cream);
  padding: 56px 24px 48px;
  margin-top: 80px;
  position: relative;
}
.foot::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,133,55,.5) 50%, transparent);
}
.foot-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.foot h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}
.foot h4 .it { font-style: italic; color: var(--gold); }
.foot .foot-sub {
  font-size: 13px;
  color: rgba(244,239,227,.65);
  margin-bottom: 28px;
}
.foot .foot-links {
  display: flex; justify-content: center; gap: 22px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.foot .foot-links a {
  color: rgba(244,239,227,.7);
  border-bottom: none;
  text-decoration: none;
  transition: color .15s ease;
}
.foot .foot-links a:hover { color: var(--gold); opacity: 1; }
.foot .copyright {
  font-size: 11px;
  color: rgba(244,239,227,.45);
  letter-spacing: .04em;
}