:root {
  --spruce: #1e3a2b;
  --spruce-deep: #16291f;
  --spruce-mid: #2e5240;
  --brass: #b98a2f;
  --brass-bright: #d4a94e;
  --paper: #fbfaf6;
  --card: #ffffff;
  --sage: #eaf0e7;
  --line: #e2e5de;
  --ink: #232b26;
  --muted: #5c6b60;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--spruce);
  color: var(--paper);
  padding: 16px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  color: var(--paper);
  font: 600 20px var(--serif);
  text-decoration: none;
}

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

.brand em {
  color: var(--brass-bright);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: #b7c7bb;
  font-size: 14.5px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.button-primary {
  background: var(--brass);
  color: #1e1608;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brass-bright);
}

.button-secondary {
  border: 1px solid rgba(251, 250, 246, 0.42);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(251, 250, 246, 0.85);
}

.site-nav .button {
  padding: 9px 15px;
  color: #1e1608;
  font-size: 14px;
}

.page-hero {
  background: var(--spruce);
  color: var(--paper);
  padding: 72px 0 82px;
}

.page-hero .hero-copy {
  max-width: 820px;
}

.eyebrow {
  color: var(--brass-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 15em;
  margin-top: 14px;
  color: #fdfcf9;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero-lede {
  max-width: 42em;
  margin-top: 20px;
  color: #cad6cc;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #9fb2a3;
  font-size: 13px;
}

.trust-line span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--brass-bright);
  font-weight: 800;
}

.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.section-soft {
  background: var(--sage);
}

.section-dark {
  border-top: 0;
  background: var(--spruce);
  color: var(--paper);
}

.section-kicker {
  margin-bottom: 9px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 22em;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.section-dark h2 {
  color: #fdfcf9;
}

.section-intro {
  max-width: 48em;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-intro {
  color: #c9d6cc;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  padding: 24px;
}

.card-number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--spruce);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.card h3 {
  margin-top: 14px;
  font-size: 19px;
  letter-spacing: -0.01em;
}

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

.card p {
  margin-top: 9px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.prose p {
  color: var(--muted);
}

.prose p + p {
  margin-top: 16px;
}

.checks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--spruce-mid);
  font-weight: 800;
}

.quote-card {
  border-radius: 12px;
  background: var(--spruce);
  padding: 28px;
  color: var(--paper);
}

.quote-card p {
  color: #d9e2da;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.quote-card small {
  display: block;
  margin-top: 15px;
  color: var(--brass-bright);
  font-size: 13px;
}

.comparison {
  width: 100%;
  margin-top: 32px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: var(--sage);
  font-size: 14px;
}

.comparison td {
  color: var(--muted);
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 34px;
}

.stat {
  min-width: 170px;
}

.stat strong {
  display: block;
  color: var(--brass-bright);
  font-size: 32px;
  line-height: 1.2;
}

.stat span {
  display: block;
  max-width: 16em;
  margin-top: 5px;
  color: #a9bcae;
  font-size: 14px;
}

.faq-list {
  margin-top: 28px;
}

.faq-list article {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

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

.faq-list h3 {
  font-size: 17px;
}

.faq-list p {
  max-width: 54em;
  margin-top: 7px;
  color: var(--muted);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.related-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  padding: 18px;
  color: var(--spruce);
  font-weight: 700;
  text-decoration: none;
}

.related-links a:hover,
.related-links a:focus-visible {
  border-color: var(--brass);
}

.cta-band {
  background: var(--spruce);
  color: var(--paper);
  padding: 68px 0;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  max-width: 17em;
  color: #fdfcf9;
  font: 500 clamp(30px, 4vw, 42px) / 1.15 var(--serif);
  letter-spacing: -0.025em;
}

.cta-band p {
  max-width: 42em;
  margin-top: 10px;
  color: #c9d6cc;
}

.site-footer {
  background: var(--spruce-deep);
  color: #9fb3a4;
  padding: 42px 0 26px;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 10px;
  color: #f1f4ef;
  font-size: 14px;
}

.site-footer p {
  max-width: 31em;
}

.site-footer ul {
  display: grid;
  gap: 7px;
  list-style: none;
}

.site-footer a {
  color: #b9c8bd;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 820px) {
  .site-nav > a:not(.button) {
    display: none;
  }

  .grid-3,
  .related-links {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 32px, 1120px);
  }

  .site-header .wrap {
    gap: 14px;
  }

  .brand {
    font-size: 18px;
  }

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

  .site-nav .button {
    padding: 9px 12px;
    font-size: 13px;
  }

  .page-hero {
    padding: 54px 0 62px;
  }

  .section {
    padding: 58px 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .comparison th,
  .comparison td {
    min-width: 180px;
    padding: 13px;
  }

  .cta-band .wrap {
    display: block;
  }

  .cta-band .button {
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}
