:root {
  --ink: #1c1914;
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --rule: #d4cbb8;
  --muted: #5c564c;
  --accent: #9a3412;
  --accent-2: #1e4d43;
  --white: #fffcf7;
  --max: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

a { color: var(--accent-2); }
a:hover { color: var(--accent); }
img { max-width: 100%; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo span { color: var(--accent); font-weight: 600; }
nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
}
nav a[aria-current="page"] { border-bottom: 2px solid var(--accent); }

.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(1200px 280px at 10% 0%, #e8d7c4 0%, transparent 55%),
    var(--paper);
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 12px;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 700;
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-block;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--accent); color: var(--white); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

section { padding: 56px 0; }
h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  margin: 0 0 12px;
}
h3 { font-size: 1.1rem; margin: 0 0 8px; }
.section-lead { color: var(--muted); max-width: 40rem; margin-bottom: 28px; }

.grid-3, .grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card, .price, .faq details {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 22px;
}
.card p, .price p { margin: 0; color: var(--muted); }
.price .amt {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 8px 0 6px;
}
.note { font-size: 0.88rem; color: var(--muted); }

.steps { counter-reset: step; padding: 0; list-style: none; }
.steps li {
  counter-increment: step;
  margin: 0 0 16px;
  padding-left: 48px;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--serif);
}

.faq details { margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 650; }

.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0;
}
.cta-band h2 { color: var(--paper); }
.cta-band p { color: #d5cfc4; }
.cta-band .btn-primary { background: var(--paper); color: var(--ink); }
.cta-band a:not(.btn) { color: #e8c4b0; }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer a { color: var(--ink); }

@media (max-width: 800px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 48px 0 36px; }
}
