/* Shared by the privacy and terms pages.
 *
 * Same ground as the conversation — his portrait behind a scrim, the same serif
 * for headings — because a legal page that looks like it belongs to a different
 * website reads as somebody else's boilerplate pasted in. It is the same site,
 * so it looks like the same site.
 *
 * The portrait is gated exactly as it is everywhere else: /jonasi.jpg 404s
 * without the cookie, and the vignette below stands in for it. These pages are
 * readable without the password, and simply plainer. */
:root {
  color-scheme: dark;
  --ink: #efece6;
  --dim: #9a948c;
  --red: #c1121f;
  --line: #2b2a28;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; min-height: 100svh;
  background: #08080a; color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px; line-height: 1.65;
  padding: 0 24px calc(64px + env(safe-area-inset-bottom));
}
#bg {
  position: fixed; inset: 0; z-index: 0;
  background-image: var(--portrait, none);
  background-size: cover; background-position: 50% 12%;
  opacity: .62; filter: saturate(.95) contrast(1.04) brightness(.85);
}
body.noportrait #bg {
  background-image: radial-gradient(120% 90% at 70% 8%, #24211d 0%, #0d0c0e 55%, #08080a 100%);
  opacity: 1;
}
#scrim {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  /* Two gradients, as on the conversation: one seats the column of text, one
     keeps the top of the photograph from competing with the heading. He should
     be visible behind it — this is the same room — but a paragraph set over a
     face is unreadable without a bed of shadow under it. */
  background:
    linear-gradient(to right, rgba(8,8,10,.94) 0%, rgba(8,8,10,.86) 46%, rgba(8,8,10,.55) 78%, rgba(8,8,10,.35) 100%),
    linear-gradient(to bottom, rgba(8,8,10,.6) 0%, rgba(8,8,10,.35) 30%, rgba(8,8,10,.55) 75%, rgba(8,8,10,.85) 100%);
}
main {
  position: relative; z-index: 2;
  max-width: 660px; margin: 0 auto; padding-top: clamp(48px, 10vh, 96px);
}
.eyebrow {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--dim); margin: 0 0 14px;
}
h1 {
  font-family: "Didot", "Bodoni MT", "Playfair Display", "Hoefler Text", "Times New Roman", Times, serif;
  font-size: clamp(34px, 8vw, 52px); line-height: 1.05; margin: 0 0 8px;
  letter-spacing: .04em; font-weight: 700; text-transform: uppercase;
}
.updated { color: var(--dim); font-size: 13px; margin: 0 0 40px; }
h2 {
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); margin: 40px 0 10px; font-weight: 600;
}
p, li { color: #ddd7cf; }
p { margin: 0 0 16px; }
ul { margin: 0 0 16px; padding-left: 20px; }
li { margin: 0 0 8px; }
strong { color: var(--ink); font-weight: 600; }
a { color: #e5928a; text-decoration: none; border-bottom: 1px solid rgba(229,146,138,.35); }
a:hover { border-bottom-color: #e5928a; }
.lede {
  font-size: 18px; line-height: 1.6; color: var(--ink);
  border-left: 2px solid var(--red); padding-left: 16px; margin: 0 0 36px;
}
.back {
  display: inline-block; margin-top: 48px; padding: 12px 22px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink); border-bottom-color: var(--line);
}
.back:hover { border-color: #6d6862; }
.pagefoot {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--dim); font-size: 13px;
}
.pagefoot a { color: var(--dim); border-bottom-color: rgba(154,148,140,.3); }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
