/* GroundTruth Diligence — Day-1 site
   Court-record seriousness. Navy / off-white. One serif display face for headings,
   system sans for body copy. No gradients, no marketing flourish. */

:root {
  --navy: #12213f;
  --navy-deep: #0b1830;
  --ink: #1c2430;
  --paper: #faf8f3;
  --paper-alt: #f2efe6;
  --rule: #d8d3c4;
  --rust: #a8330a;
  --muted: #5a6478;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

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

img, svg { max-width: 100%; }

a { color: var(--rust); }
a:hover { color: var(--navy); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em 0;
}

h2 { font-size: 1.7rem; border-bottom: 2px solid var(--navy); padding-bottom: 0.35em; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em 0; }

section { padding: 56px 0; border-bottom: 1px solid var(--rule); }
section:last-of-type { border-bottom: none; }

/* ---------- Header ---------- */
header.site-header {
  background: var(--navy);
  color: #fff;
  padding: 18px 0;
}
header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.brand span { color: #cbd3e6; font-weight: 400; font-size: 0.8rem; display: block; font-family: var(--sans); letter-spacing: 0.06em; }
nav.site-nav a {
  color: #dfe3ee;
  text-decoration: none;
  margin-left: 22px;
  font-size: 0.92rem;
}
nav.site-nav a:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: #f2f0e9;
  padding: 72px 0 64px;
  border-bottom: none;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  max-width: 14ch;
}
.hero .sub {
  font-size: 1.15rem;
  color: #d3d8e8;
  max-width: 56ch;
  margin-bottom: 1.8em;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--rust); color: #fff; }
.btn-primary:hover { background: #8c2a08; color: #fff; }
.btn-secondary { background: transparent; color: #f2f0e9; border-color: #6d7793; }
.btn-secondary:hover { border-color: #fff; color: #fff; }

/* ---------- Stat band ---------- */
.stats-band { background: var(--paper-alt); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  margin: 28px 0 20px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--navy);
  padding: 22px 20px;
  min-width: 0;
}
.stat .num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  overflow-wrap: break-word;
}
.stat .label { font-size: 0.92rem; color: var(--muted); }
.tagline {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--rust);
  padding-left: 16px;
  margin-top: 8px;
}

/* ---------- Report contents list ---------- */
.contents-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: sec;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.contents-list li {
  counter-increment: sec;
  background: var(--paper);
  padding: 14px 16px;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  min-width: 0;
}
.contents-list li::before {
  content: counter(sec, decimal-leading-zero);
  font-family: var(--serif);
  color: var(--rust);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Sample section ---------- */
.sample-card {
  border: 1px solid var(--rule);
  background: var(--paper-alt);
  padding: 26px 28px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.sample-card .meta { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--rust);
  color: #fff;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.step { padding: 4px 0; }
.step .step-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--rust);
  font-weight: 700;
}

/* ---------- Pricing ---------- */
.price-card {
  border: 2px solid var(--navy);
  padding: 32px;
  max-width: 420px;
  margin-top: 24px;
  background: var(--paper-alt);
}
.price-card .amount {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--navy);
  font-weight: 700;
}
.price-card .amount sup { font-size: 1.1rem; top: -1.4em; }
.price-card ul { margin: 18px 0; padding-left: 20px; }
.price-card li { margin-bottom: 8px; }
.guarantee {
  margin-top: 16px;
  font-size: 0.92rem;
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
  color: var(--navy);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-item { margin-bottom: 22px; }
.faq-item h3 { margin-bottom: 6px; }
.faq-item p { color: var(--ink); }

/* ---------- Intake ---------- */
.intake-box {
  border: 1px dashed var(--rule);
  background: var(--paper-alt);
  padding: 28px;
  margin-top: 20px;
}
.intake-box .placeholder-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.intake-actions { margin-top: 18px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-deep);
  color: #c7cede;
  padding: 44px 0 30px;
  font-size: 0.86rem;
}
footer.site-footer .disclaimer {
  border-top: 1px solid #2a3a5c;
  border-bottom: 1px solid #2a3a5c;
  padding: 18px 0;
  margin: 18px 0;
  line-height: 1.6;
  color: #aab3c8;
}
footer.site-footer .disclaimer strong { color: #dfe3ee; }
footer.site-footer .foot-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #8b96b0;
}
footer.site-footer a { color: #cbd3e6; }
footer.site-footer a:hover { color: #fff; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  section { padding: 40px 0; }
}

.intake-steps { margin: 0 0 1.2rem 1.2rem; padding: 0; }
.intake-steps li { margin: 0.5rem 0; line-height: 1.5; }
