:root {
  --bg: #edf5ee;
  --paper: #fffdf8;
  --ink: #20232a;
  --muted: #6f7a8b;
  --line: #deded8;
  --soft: #faf7ef;
  --red: #ff2442;
  --orange: #ff8a00;
  --green: #1f8a70;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(180deg, #fbf1ee 0%, var(--bg) 18%, #f8f6ef 100%);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

button, input {
  font: inherit;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: 92px;
  line-height: .92;
  letter-spacing: 0;
  margin: 18px 0 24px;
}

h2 { font-size: 34px; line-height: 1.15; margin-bottom: 0; }
h3 { font-size: 20px; line-height: 1.25; }

.page {
  width: min(1220px, calc(100vw - 48px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.lead {
  color: #36404f;
  font-size: 24px;
  max-width: 690px;
}

.section {
  padding: 72px 0 22px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head p {
  color: var(--muted);
  font-weight: 760;
  margin: 0;
}

.footer {
  width: min(1220px, calc(100vw - 48px));
  margin: 50px auto 0;
  padding: 34px 0 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
