:root {
  color-scheme: light;
  --ink: #202723;
  --muted: #5f6862;
  --line: #d9ded9;
  --paper: #ffffff;
  --wash: #f2f6f0;
  --moss: #66745b;
  --moss-dark: #3f4b3a;
  --clay: #a95f49;
  --focus: #2f6fbb;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body {
  margin: 0;
  overflow-wrap: anywhere;
}

a {
  color: var(--moss-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--clay);
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid color-mix(in srgb, var(--focus) 35%, transparent);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner,
.page,
.footer-inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 650;
}

.page {
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 500;
}

h2 {
  margin: 42px 0 12px;
  font-size: 22px;
}

h3 {
  margin: 26px 0 8px;
  font-size: 17px;
}

p,
li {
  color: var(--muted);
}

.lede {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 18px;
}

.contact-band {
  margin: 40px 0 50px;
  padding: 24px;
  border: 1px solid #d3ddd0;
  border-radius: 8px;
  background: var(--wash);
}

.contact-band h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.contact-band p {
  margin: 0;
}

.contact-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--moss-dark);
  font-weight: 650;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq p,
.faq ol,
.faq ul {
  margin-top: 8px;
  margin-bottom: 0;
}

.policy-meta {
  margin: 12px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.policy h2 {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.policy ul {
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7f8f7;
}

.footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 560px) {
  .header-inner,
  .page,
  .footer-inner {
    width: min(calc(100% - 28px), 760px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    gap: 14px;
    flex-shrink: 0;
  }

  .page {
    padding: 40px 0 56px;
  }

  .footer-inner {
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}
