:root {
  --white: #ffffff;
  --forest: #073d24;
  --body: #294538;
  --sage: #d9e3d3;
  --sage-pale: #f5f8f3;
  --terracotta: #c95f35;
  --gutter: clamp(22px, 5vw, 72px);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--forest);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.7;
}

a { color: inherit; }

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
}

.brand svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-link {
  color: var(--body);
  font-size: 13px;
  text-decoration: none;
}

.home-link:hover { color: var(--terracotta); }

.document {
  width: min(820px, calc(100% - (2 * var(--gutter))));
  margin: 62px auto 120px;
}

.document-heading {
  max-width: 700px;
  margin: 0 auto 72px;
  text-align: center;
}

.document-heading h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.document-heading p {
  margin: 0;
  color: #687b6b;
  font-size: 14px;
}

.legal-copy {
  counter-reset: section;
}

.legal-copy section {
  position: relative;
  padding: 30px 0 30px 62px;
  border-top: 1px solid var(--sage);
  counter-increment: section;
}

.legal-copy section::before {
  position: absolute;
  top: 31px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
  content: counter(section);
  font-size: 13px;
}

h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.02em;
}

p,
li {
  color: var(--body);
  font-size: 15px;
}

p { margin: 0 0 12px; }

ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.note {
  padding: 22px 26px;
  border-left: 3px solid var(--terracotta);
  border-radius: 0 18px 18px 0;
  background: var(--sage-pale);
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  margin-top: 16px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.email-link:hover { background: #a94726; }

@media (max-width: 620px) {
  .page-header { padding-top: 20px; }
  .document { margin-top: 44px; }
  .document-heading { margin-bottom: 50px; }

  .legal-copy section {
    padding-left: 0;
    padding-top: 64px;
  }

  .legal-copy section::before { top: 22px; }
}
