:root {
  --paper: #faf7f0;
  --paper-deep: #f1ece0;
  --ink: #1f2a44;
  --text: #2b2b33;
  --muted: #5d5d68;
  --rule: #ddd5c4;
  --accent: #9a4a2b;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --measure: 40rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 1.125rem/1.65 var(--serif);
  font-kerning: normal;
  font-variant-numeric: oldstyle-nums;
}
img { max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--paper); padding: .5rem 1rem; z-index: 10; }

.wrap { max-width: 64rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 40rem) { .wrap { padding: 0 2rem; } }

.site-header { border-bottom: 1px solid var(--rule); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); font-size: 1.25rem; letter-spacing: .01em; }
.site-header nav { display: flex; gap: 1.25rem; }
.site-header nav a { text-decoration: none; font-variant: small-caps; letter-spacing: .06em; font-size: 1.05rem; }

/* Home */
.hero { display: grid; gap: 2rem; align-items: center; padding-block: 3rem 3.5rem; }
@media (min-width: 48rem) { .hero { grid-template-columns: 1.1fr .9fr; padding-block: 5rem; } }
.hero h1 { font-weight: normal; color: var(--ink); font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1.08; margin: 0 0 1.25rem; letter-spacing: -.01em; }
.hero .lede { font-size: 1.25rem; max-width: 34rem; margin: 0 0 1.5rem; }
.hero .note { color: var(--muted); font-style: italic; margin: 0; }
.hero-mark { justify-self: center; width: min(22rem, 80%); }
.rule { width: 5rem; border: 0; border-top: 2px solid var(--accent); margin: 0 0 1.5rem; }

.band { background: var(--paper-deep); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding-block: 3.5rem; }
.section-title { font-weight: normal; color: var(--ink); font-size: 1.9rem; margin: 0 0 2rem; }
.steps { display: grid; gap: 2rem; margin: 0; padding: 0; list-style: none; counter-reset: step; }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { counter-increment: step; }
.steps li::before { content: counter(step, upper-roman) "."; display: block; color: var(--accent); font-size: 1.1rem; letter-spacing: .08em; margin-bottom: .35rem; }
.steps h3 { font-weight: normal; color: var(--ink); font-size: 1.3rem; margin: 0 0 .5rem; }
.steps p { margin: 0; }

.promise { padding-block: 3.5rem; }
.promise-grid { display: grid; gap: 2rem; }
@media (min-width: 48rem) { .promise-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.promise h2, .promise h3 { font-weight: normal; color: var(--ink); }
.promise h2 { font-size: 1.9rem; margin: 0 0 1rem; }
.promise h3 { font-size: 1.3rem; margin: 0 0 .5rem; }

/* Prose pages */
.prose { max-width: calc(var(--measure) + 4rem); padding-block: 3rem 4rem; }
.prose h1 { font-weight: normal; color: var(--ink); font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.15; margin: 0 0 .5rem; }
.prose .updated { color: var(--muted); font-style: italic; margin: 0 0 2rem; }
.prose h2 { font-weight: normal; color: var(--ink); font-size: 1.45rem; margin: 2.25rem 0 .5rem; }
.prose ul { padding-left: 1.25rem; }
.prose li + li { margin-top: .35rem; }
.card { background: var(--paper-deep); border: 1px solid var(--rule); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.card p { margin: .25rem 0; }

.site-footer { border-top: 1px solid var(--rule); padding-block: 2.5rem 2rem; color: var(--muted); font-size: 1rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; }
.footer-brand { color: var(--ink); font-size: 1.15rem; margin: 0 0 .25rem; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; flex-direction: column; gap: .3rem; }
.copyright { margin-top: 2rem !important; font-size: .9rem; }
body { overflow-wrap: break-word; }
@media (max-width: 30rem) {
  .header-inner { padding-block: .75rem; }
  .site-header nav { gap: 1rem; }
  .hero-mark { width: 70%; }
}
