:root {
  --paper: #f3eee4;
  --paper-deep: #e8e0d2;
  --ink: #1c1814;
  --ink-soft: #5c5348;
  --line: rgba(28, 24, 20, 0.18);
  --oxid: #8a3a2c;
  --oxid-hover: #6f2e23;
  --font-display: Palatino, "Palatino Linotype", "Iowan Old Style", "Times New Roman", Times, serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --measure: 38rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
}

a {
  color: var(--ink);
}

a:hover {
  color: var(--oxid);
}

.wrap {
  width: min(42rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-decoration: none;
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

main {
  padding: 3rem 0 4rem;
}

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
}

h2 {
  font-size: 1.45rem;
  margin-top: 2.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: var(--measure);
}

.muted {
  color: var(--ink-soft);
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 2.75rem;
  border-top: 1px solid var(--line);
  position: relative;
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.price div span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.7rem 1.15rem;
  background: var(--oxid);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.95rem;
}

.cta:hover {
  background: var(--oxid-hover);
  color: var(--paper);
}

.cta-ghost {
  display: inline-block;
  margin: 1.5rem 1.25rem 0 0;
  color: var(--ink);
  text-underline-offset: 0.25em;
}

.hint {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

.person {
  max-width: var(--measure);
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.muster {
  margin: 1.25rem 0 0;
  padding: 0 0 0 1.15rem;
  border: 0;
  border-left: 1px solid var(--line);
  max-width: var(--measure);
}

.muster p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  margin: 0 0 0.75rem;
}

.muster footer {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
}

.legal p {
  max-width: var(--measure);
}

@media (max-width: 36rem) {
  .nav {
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-end;
  }

  .price {
    flex-direction: column;
    gap: 1.25rem;
  }
}
