:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #1f2a23;
  background: #f7faf8;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  border-top: 5px solid #75a47f;
  background: #f7faf8;
}

main {
  width: min(960px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 0 clamp(64px, 9vw, 112px);
}

header {
  padding-bottom: clamp(38px, 6vw, 64px);
}

.brand {
  margin: 0 0 clamp(52px, 8vw, 88px);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand span {
  color: #75a47f;
}

h1,
h2,
h3 {
  color: #1b261e;
  line-height: 1.2;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.015em;
}

h3 {
  margin: 30px 0 8px;
  font-size: 1.08rem;
}

p,
li {
  color: #465149;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.78;
}

p {
  margin: 0 0 15px;
}

ul {
  margin: 10px 0;
  padding-left: 1.35rem;
}

li + li {
  margin-top: 7px;
}

a {
  color: #376f45;
  font-weight: 650;
  overflow-wrap: anywhere;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #245832;
}

.meta {
  margin: 16px 0 0;
  color: #6b756e;
  font-size: 0.96rem;
}

a:focus-visible {
  outline: 3px solid rgba(77, 133, 89, 0.38);
  outline-offset: 3px;
}

section {
  padding: clamp(32px, 5vw, 52px) 0;
  border-top: 1px solid #dfe8e1;
}

section > p,
section > ul,
section > h3 {
  max-width: 78ch;
}

@media (max-width: 760px) {
  main {
    width: calc(100% - 40px);
    padding: 36px 0 56px;
  }

  header {
    padding-bottom: 36px;
  }

  .brand {
    margin-bottom: 52px;
  }

  section {
    padding: 30px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
