:root {
  color-scheme: light;
  --ink: #17231f;
  --muted: #40564e;
  --line: #dfd7c8;
  --paper: #f6f3ec;
  --brand: #17483f;
  --accent: #c88a2f;
  --soft: #fffaf0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--brand);
  font-weight: 700;
}

header,
main,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.brand {
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 36px;
  align-items: center;
  padding: 46px 0 34px;
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 14px 0 18px;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.02;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
}

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

p,
li,
td,
th {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.lead {
  max-width: 760px;
  font-size: 20px;
}

.summary,
.card,
.callout,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.summary,
.card,
.callout,
.faq-item {
  padding: 22px;
}

.summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border-bottom: 1px solid #eee5d6;
  padding: 13px 0;
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.section {
  padding: 54px 0;
}

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

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

th,
td {
  border-bottom: 1px solid #eee5d6;
  padding: 14px;
  text-align: left;
}

th {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--brand);
}

.callout {
  background: var(--soft);
}

footer {
  padding: 32px 0 42px;
}

@media (max-width: 820px) {
  header,
  .hero {
    display: block;
  }

  nav {
    margin-top: 14px;
  }

  .summary {
    margin-top: 24px;
  }

  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  th,
  td {
    font-size: 15px;
    padding: 11px;
  }
}
