:root {
  color-scheme: light;
  --paper: #f3eee6;
  --paper-deep: #e8ded1;
  --ink: #2f2c28;
  --muted: #756d64;
  --rule: rgba(77, 67, 57, 0.22);
  --accent: #8a745f;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 6%, rgba(207, 189, 217, 0.28), transparent 25rem),
    linear-gradient(145deg, #f8f4ed 0%, var(--paper) 55%, var(--paper-deep) 100%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration-color: rgba(47, 44, 40, 0.34);
  text-underline-offset: 0.18em;
}

.shell {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 32px 0 30px;
}

.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.eyebrow,
.back,
.effective {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.back {
  letter-spacing: 0.12em;
}

.hero {
  padding: clamp(72px, 12vw, 130px) 0 clamp(60px, 10vw, 110px);
}

.kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.intro {
  width: min(100%, 440px);
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.document-list {
  border-top: 1px solid var(--rule);
}

.document-list a {
  display: grid;
  grid-template-columns: 44px minmax(150px, 1fr) minmax(190px, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 27px 4px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease;
}

.document-list a:hover,
.document-list a:focus-visible {
  padding-left: 12px;
  color: var(--accent);
}

.document-list span,
.document-list em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.document-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 84px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.document article {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 110px) 0 20px;
}

.document article h1 {
  margin-top: 18px;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  line-height: 0.9;
}

.effective {
  margin-top: 32px;
}

.lead {
  margin: 72px 0;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.45;
}

.document h2 {
  margin: 54px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.25;
}

.document p,
.document li {
  color: #554f48;
}

.document ul {
  padding-left: 1.25rem;
}

.document footer {
  width: min(100%, 720px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 920px);
    padding-top: 24px;
  }

  .document-list a {
    grid-template-columns: 32px 1fr;
  }

  .document-list em {
    grid-column: 2;
  }

  .hero {
    padding-top: 72px;
  }

  .intro {
    margin-left: 0;
  }

  footer {
    flex-direction: column;
  }
}
