@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/source-serif-4-500-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/source-serif-4-400-italic-latin.woff2") format("woff2");
}
:root {
  color-scheme: light dark;
  --paper: #fbf3df;
  --card: #fffaeb;
  --ink: #2a2419;
  --ink-soft: #4a3f30;
  --sage: #5d7a4a;
  --sage-deep: #3f5732;
  --terracotta: #c66b45;
  --line: rgba(42,36,25,.18);
  --display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1a221b;
    --card: #222b22;
    --ink: #f4f1e8;
    --ink-soft: #d3cdba;
    --sage: #9bc080;
    --sage-deep: #bdd9a8;
    --terracotta: #d99268;
    --line: rgba(244,241,232,.18);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--sage-deep); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--sage-deep); outline-offset: 5px; }
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  padding: 10px 16px;
  z-index: 10;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus { top: 12px; }
.wrap { width: min(1120px, calc(100% - 56px)); margin-inline: auto; }
.site-nav { border-bottom: 1px solid var(--line); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 86px; }
.wordmark {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--sage);
  text-decoration: none;
  letter-spacing: -.01em;
}
.wordmark span { color: var(--terracotta); font-style: italic; }
.nav-links { display: flex; gap: 24px; align-items: center; font-size: 14px; }
.nav-links > a:not(.button) { color: var(--ink-soft); }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 21px;
  border: 1px solid var(--sage-deep);
  border-radius: 8px;
  background: var(--sage-deep);
  color: var(--paper);
  font: 600 15px/1.3 var(--body);
  text-decoration: none;
}
.button:hover { background: var(--sage); border-color: var(--sage); }
main { width: min(790px, calc(100% - 56px)); margin: 0 auto; }
.hero { padding: 64px 0 36px; border-bottom: 1px solid var(--line); }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1.13;
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5vw, 58px); max-width: 770px; }
h2 { font-size: clamp(27px, 3.3vw, 34px); }
h3 { font-size: 24px; }
p { margin: 18px 0 0; text-wrap: pretty; }
.lede { font-size: 21px; line-height: 1.5; color: var(--ink-soft); max-width: 650px; margin-top: 24px; }
.byline { font-size: 13px; color: var(--ink-soft); margin-top: 22px; }
.content-section { padding-top: 38px; }
.content-section p { max-width: 69ch; }
.pricing { margin-top: 40px; padding: 30px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; }
.pricing h3 { margin-top: 24px; }
.price { font-size: 22px; font-weight: 600; color: var(--ink); }
.terms { font-size: 14px; color: var(--ink-soft); }
.cta { border-block: 1px solid var(--line); margin-top: 42px; padding: 32px 0; }
.cta h2 { margin-bottom: 24px; }
.source-note { margin-top: 26px; font-size: 13px; color: var(--ink-soft); }
.source-note p { margin-top: 12px; }
.source-note a { overflow-wrap: anywhere; }
.related { padding: 28px 0 48px; font-size: 15px; }
.site-footer { border-top: 1px solid var(--line); padding-block: 26px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; font-size: 13px; color: var(--ink-soft); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 600px) {
  .wrap, main { width: calc(100% - 40px); }
  .nav-row { min-height: 78px; gap: 14px; }
  .nav-links { gap: 14px; }
  .nav-links .home-link { display: none; }
  .nav-links .button { font-size: 13px; padding: 11px 14px; max-width: 180px; }
  .wordmark { font-size: 25px; }
  .hero { padding-top: 38px; padding-bottom: 30px; }
  .lede { font-size: 19px; }
  .content-section { padding-top: 30px; }
  .pricing { margin-top: 30px; padding: 24px 20px; }
  .footer-row { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

