/* legal pages: same wall + reveal behind, plain readable text on top */

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

.legal-page {
  position: relative;
  z-index: 4;
  max-width: 680px;
  margin: 0 auto;
  padding: 18vh 28px 14vh;
}

.legal-page h1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 58px);
  letter-spacing: .01em;
  line-height: 1.1;
}

.legal-page .date {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-page section {
  margin-top: 58px;
}

.legal-page h2 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
}

.legal-page p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #3c3c3a;
}

.legal-page a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* fixed chrome, same as the main page */
.home {
  position: fixed;
  top: 34px;
  left: 56px;
  z-index: 10;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.home:hover { opacity: .65; }

/* footer sits in the page flow at the end of the text */
.legal-footer {
  position: relative;
  z-index: 4;
  padding: 0 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .home { left: 24px; top: 24px; }
  .about { right: 24px; top: 24px; }
  .legal-page { padding-top: 14vh; }
}
