/* The look of /privacy and /terms.

   Bond.html is one self-contained file on purpose and carries its own styles
   inside it; these two are ordinary pages served by the backend, so they share
   one stylesheet rather than keeping two copies of the same rules.

   The palette is lifted from the :root block at the top of Bond.html — same
   parchment, same ink, same ember and teal — so a legal page still looks like
   Pairstead and not like a document somebody pasted in. No web font is loaded here:
   Pairstead asks Google for Fraunces and Inter, and a page that explains what leaves
   your browser should not itself be the thing that leaves it. The fallbacks
   below are the same ones Pairstead already names. */

:root{
  --cream:#F6ECD9;
  --paper:#FFFCF6;
  --terracotta:#DE5B2A;
  --terracotta-deep:#AD431A;
  --teal:#1F6E64;
  --ink:#1E1A14;
  --ink-soft:#61564A;
  --ink-faint:#93846F;
  --line:#E2D2B2;
  --line-soft:#EFE4CD;
  --panel:#211C15;           /* the dark ledger spine — used by pages.css */
  --font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-body: 'Segoe UI Variable', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after{ box-sizing:border-box; }

body{
  margin:0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(222,91,42,.05) 0%, transparent 45%),
    radial-gradient(110% 90% at 0% 100%, rgba(31,110,100,.05) 0%, transparent 45%),
    var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  -webkit-text-size-adjust:100%;
}

.page{
  max-width:660px;
  margin:0 auto;
  padding:36px 22px 80px;
}

/* ------------------------------------------------------------ the heading */

.brand{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--ink);
  font-family:var(--font-display); font-size:1.35rem; font-weight:600;
  letter-spacing:-.015em;
  margin-bottom:30px;
}
.brand svg{ display:block; }

h1{
  font-family:var(--font-display); font-weight:600; letter-spacing:-.02em;
  font-size:2.3rem; line-height:1.15; margin:0;
}
h2{
  font-family:var(--font-display); font-weight:600; letter-spacing:-.015em;
  font-size:1.35rem; line-height:1.25; margin:44px 0 12px;
  padding-top:22px; border-top:1.5px solid var(--line);
}
h3{
  font-family:var(--font-display); font-weight:600;
  font-size:1.05rem; margin:26px 0 8px;
}

.when{ color:var(--ink-faint); font-size:.86rem; margin:8px 0 28px; }

p{ margin:0 0 15px; }
ul{ margin:0 0 15px; padding-left:22px; }
li{ margin-bottom:9px; }
strong{ font-weight:600; }
em{ color:var(--ink-soft); }

a{ color:var(--terracotta-deep); text-decoration:underline; text-underline-offset:2px; }
a:hover{ color:var(--teal); }

/* The opening two paragraphs: the whole page in short, for somebody who is
   not going to read the whole page. */
.lede{ font-size:1.08rem; color:var(--ink-soft); }

.plain{
  background:var(--paper);
  border:1px solid var(--line-soft);
  border-left:4px solid var(--terracotta);
  border-radius:14px;
  padding:18px 22px;
  margin:0 0 8px;
}

/* Used for the handful of things it would be dishonest to bury in a list. */
.flag{
  background:var(--paper);
  border:1.5px dashed var(--line);
  border-radius:14px;
  padding:18px 22px;
  margin:0 0 15px;
}
.flag p:last-child{ margin-bottom:0; }

.foot{
  margin-top:52px; padding-top:20px; border-top:1.5px solid var(--line);
  display:flex; gap:20px; flex-wrap:wrap;
  font-size:.9rem;
}

@media (max-width:520px){
  body{ font-size:16px; }
  h1{ font-size:1.85rem; }
  .page{ padding:26px 18px 64px; }
}
