:root {
  --ink: #1c2230;
  --slate: #2f3a4f;
  --muted: #5d6678;
  --line: #d8d2c4;
  --parchment: #f4efe4;
  --paper: #fbf9f4;
  --accent: #7c5a32;
  --accent-soft: #b89968;
  --max: 1040px;
}

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

body {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

h1, h2, h3, .wordmark, .lvl, .nav-cta, .btn { font-family: "Helvetica Neue", Arial, sans-serif; }

/* hero */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: 72px;
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wordmark { font-weight: 700; font-size: 1.25rem; letter-spacing: 0.02em; }
.nav-cta {
  color: var(--paper);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
}
.nav-cta:hover { background: rgba(255,255,255,0.1); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 56px 24px 0; }
.hero h1 { font-size: 2.6rem; line-height: 1.15; max-width: 18ch; font-weight: 700; }
.hero h1 em { color: var(--accent-soft); font-style: italic; }
.lede { font-size: 1.2rem; margin: 24px 0 32px; max-width: 60ch; color: #d7d3c8; }

.btn {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
}
.btn:hover { background: #c9ac7e; }
.hero-sample { display: inline-block; margin-left: 18px; color: var(--accent-soft); text-decoration: none; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 0.95rem; }
.hero-sample:hover { text-decoration: underline; }

/* the line */
.line { background: var(--parchment); padding: 64px 0; border-bottom: 1px solid var(--line); }
.line h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 18px; }
.line-statement { font-size: 1.5rem; line-height: 1.45; max-width: 40ch; }
.line-note { margin-top: 18px; color: var(--muted); }

/* tiers */
.tiers { padding: 72px 0; }
h2 { font-size: 1.9rem; margin-bottom: 32px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.card.featured { border-color: var(--accent-soft); box-shadow: 0 6px 24px rgba(124,90,50,0.12); }
.lvl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}
.card h3 { font-size: 1.3rem; margin: 8px 0 12px; }
.deliver { color: var(--slate); flex-grow: 1; }
.turn { color: var(--muted); font-size: 0.9rem; margin-top: 18px; }
.card-order {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: var(--accent-soft);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
}
.card-order:hover { background: #c9ac7e; }
.card-quote {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 11px;
  border-radius: 6px;
  text-decoration: none;
}
.card-quote:hover { background: var(--parchment); }

/* how */
.how { background: var(--parchment); padding: 64px 0; border-top: 1px solid var(--line); }
.steps { list-style: none; counter-reset: s; max-width: 60ch; }
.steps li { counter-increment: s; padding: 10px 0 10px 44px; position: relative; border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: 10px;
  width: 28px; height: 28px;
  background: var(--ink); color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: Arial, sans-serif; font-size: 0.85rem;
}
.niche { margin-top: 28px; font-style: italic; color: var(--slate); max-width: 60ch; }

/* intake form */
.intake { padding: 72px 0; }
.intake-lede { color: var(--slate); max-width: 56ch; margin-bottom: 32px; }
.order-form { max-width: 640px; }
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--slate); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(184,153,104,0.2);
}
.draft-note { font-size: 0.9rem; color: var(--muted); margin: 4px 0 24px; }
.field .opt { font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.field input[type=file] { padding: 9px 0; border: none; }
.integrity {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 24px;
}
.integrity input { margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; }
.integrity span { font-size: 0.95rem; color: var(--slate); }

/* footer */
.foot { background: var(--ink); color: var(--paper); padding: 48px 0; text-align: center; }
.foot-line { color: #d7d3c8; max-width: 56ch; margin: 0 auto; }
.foot-links { margin-top: 20px; font-size: 0.9rem; }
.foot-links a { color: var(--accent-soft); }

/* legal / prose pages */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.doc .back { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 0.9rem; color: var(--accent); text-decoration: none; }
.doc .back:hover { text-decoration: underline; }
.doc h1 { font-size: 2rem; margin: 24px 0 8px; }
.doc h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.doc p, .doc li { color: var(--slate); }
.doc ul { padding-left: 22px; margin: 12px 0; }
.doc li { margin: 6px 0; }
.doc blockquote {
  border-left: 3px solid var(--accent-soft);
  background: var(--parchment);
  margin: 20px 0;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-size: 1.1rem;
  color: var(--ink);
}
.doc table { border-collapse: collapse; width: 100%; margin: 16px 0; }
.doc th, .doc td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; color: var(--slate); }
.doc th { background: var(--parchment); font-family: "Helvetica Neue", Arial, sans-serif; font-size: 0.9rem; }
.doc .note { font-style: italic; color: var(--muted); font-size: 0.9rem; }

/* responsive */
@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .line-statement { font-size: 1.25rem; }
}
