/* Layout for the standalone content pages (about, contact, privacy, 404).
   Reuses the brand tokens, header and footer from styles.css; adds only the
   prose column those pages need. The landing is untouched. */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px max(24px, 6vw) 96px;
}
.doc .kicker {
  margin-bottom: 20px;
}
.doc h1 {
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 15ch;
}
.doc .lead {
  font-size: 20px;
  margin-top: 22px;
  max-width: 58ch;
}
.doc h2 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin: 52px 0 14px;
}
.doc h2 + p {
  margin-top: 0;
}
.doc p,
.doc li {
  margin-top: 16px;
  max-width: 68ch;
}
.doc ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.doc a {
  color: var(--blue);
  text-underline-offset: 3px;
}
.doc .doc-updated {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  opacity: 0.75;
}
.doc .doc-back {
  display: inline-block;
  margin-top: 32px;
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
}
.doc .doc-back:hover {
  text-decoration: underline;
}
.doc .doc-mail {
  display: inline-block;
  margin-top: 18px;
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--coral);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.doc .doc-mail:hover {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .doc {
    padding: 44px 24px 64px;
  }
  .doc h2 {
    margin-top: 40px;
  }
}
