* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: #161616;
  background: #f7f7f4;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.page-top {
  align-items: start;
  padding-top: 72px;
}

.hero {
  width: min(100%, 680px);
  padding: 48px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #5b5b52;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 620px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.summary {
  max-width: 520px;
  margin: 24px 0 32px;
  color: #4d4d46;
  font-size: 19px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #161616;
  border-radius: 6px;
  color: #fff;
  background: #161616;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.link,
.back-link {
  color: #161616;
  font-size: 15px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
}

.document {
  width: min(100%, 720px);
  padding: 48px 0 72px;
}

.document h1 {
  font-size: clamp(38px, 7vw, 64px);
}

.document h2 {
  margin: 36px 0 12px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.document p,
.document li {
  color: #3f3f39;
  font-size: 17px;
  line-height: 1.7;
}

.document ul {
  padding-left: 22px;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.legal-list a {
  display: block;
  padding: 18px 0;
  border-top: 1px solid #d8d8cf;
  color: #161616;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.button:focus-visible {
  outline: 3px solid #7aa7ff;
  outline-offset: 3px;
}

.link:focus-visible,
.back-link:focus-visible,
.legal-list a:focus-visible {
  outline: 3px solid #7aa7ff;
  outline-offset: 3px;
}
