:root {
  --bg: #faf6f0;
  --bg-alt: #f1eae0;
  --ink: #241f1a;
  --ink-soft: #564f47;
  --accent: #c1521f;
  --accent-dark: #9a3f16;
  --line: #e4d9cb;
  --card: #ffffff;
  --radius: 14px;
  --maxw: 720px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
header.site-header {
  padding: 28px 0 0;
}
header.site-header .wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 800;
}

h2 {
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  font-weight: 800;
}

p { margin: 0 0 16px; }
p.lede {
  font-size: 21px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.stack > * + * { margin-top: 8px; }

.question-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.question-list li {
  font-size: 21px;
  font-weight: 600;
  padding: 6px 0;
}

/* CTA buttons */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.1s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card + .card { margin-top: 16px; }

.numbered {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.numbered li {
  counter-increment: step;
  position: relative;
  padding: 0 0 24px 44px;
  border-left: 2px solid var(--line);
  margin-left: 15px;
}
.numbered li:last-child { padding-bottom: 0; border-left-color: transparent; }
.numbered li::before {
  content: counter(step);
  position: absolute;
  left: -17px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbered strong { display: block; margin-bottom: 4px; }

.faq-item { margin-bottom: 22px; }
.faq-item .q { font-weight: 700; margin-bottom: 6px; }
.faq-item .a { color: var(--ink-soft); margin: 0; }

.badge {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.signoff {
  margin-top: 24px;
  font-weight: 700;
}

footer.site-footer {
  padding: 32px 0 56px;
  color: var(--ink-soft);
  font-size: 14px;
}
footer.site-footer a { color: var(--ink-soft); }
footer.site-footer .legal {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  section { padding: 40px 0; }
  .btn { width: 100%; justify-content: center; }
}
