:root {
  --bg: #FAF7F2;
  --card: #FFFFFF;
  --border: #EAE3D6;
  --text: #1C1916;
  --muted: #6B6358;
  --dim: #8A8278;
  --accent: #E8845C;
  --accent-deep: #C9683F;
  --warn: #D4A857;
  --success: #4A8B7A;
  --danger: #C24E48;
  --radius: 14px;
  --max-w: 960px;
  font-feature-settings: "ss01", "cv11";
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.brand-accent { color: var(--accent); font-style: italic; }
.nav { display: flex; gap: 22px; font-size: 14px; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); text-decoration: none; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 88px 0 64px;
  text-align: center;
}
.hero h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}
.hero .accent { color: var(--accent); font-style: italic; }
.hero p.lead {
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 19px;
  color: var(--muted);
  line-height: 1.5;
}
.hero .badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-deep); text-decoration: none; }
.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-deep); text-decoration: none; }

/* ── Audience cards ────────────────────────────────────────── */
.audiences {
  padding: 56px 0;
}
.audiences h2 {
  text-align: center;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 30px;
  margin: 0 0 12px;
}
.audiences > .container > p.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 44px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.audience-card .icon {
  font-size: 38px;
  margin-bottom: 14px;
}
.audience-card h3 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 20px;
  margin: 0 0 10px;
}
.audience-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.audience-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── How it works ─────────────────────────────────────────── */
.how {
  padding: 56px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how h2 {
  text-align: center;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 30px;
  margin: 0 0 44px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: center;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h4 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 17px;
  margin: 0 0 8px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Trust ─────────────────────────────────────────────────── */
.trust {
  padding: 56px 0;
}
.trust .container {
  text-align: center;
}
.trust h2 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 28px;
  margin: 0 0 32px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.trust-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.trust-item h4 {
  margin: 0 0 8px;
  font-size: 15px;
}
.trust-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #1C1916;
  color: #C9C2B5;
  padding: 56px 0 32px;
  margin-top: 56px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.site-footer h5 {
  color: #FFF7E8;
  font-size: 13px;
  margin: 0 0 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 14px; }
.site-footer a { color: #C9C2B5; }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.site-footer .legal-line {
  text-align: center;
  font-size: 12px;
  color: #8A8278;
  border-top: 1px solid #2E2A24;
  padding-top: 24px;
}

/* ── Legal-doc layout ─────────────────────────────────────── */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px;
}
.doc h1 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 36px;
  margin: 0 0 8px;
}
.doc .updated {
  color: var(--dim);
  font-size: 13px;
  margin: 0 0 36px;
}
.doc h2 {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 22px;
  margin: 32px 0 12px;
  letter-spacing: -0.2px;
}
.doc p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #2A2620;
}
.doc .note {
  background: #FFF6EE;
  border: 1px solid #F2D9C0;
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 36px;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 720px) {
  .hero { padding: 56px 0 36px; }
  .hero h1 { font-size: 38px; }
  .hero p.lead { font-size: 17px; }
  .audience-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { gap: 12px; font-size: 13px; }
  .doc h1 { font-size: 28px; }
}
