:root {
  --ink: #1A1A1A;
  --paper: #FAF8F4;
  --linen: #F2EDE3;
  --dust: #DED4C5;
  --clay: #BCA993;
  --accent: #E8590C;
  --border: #D8CDBC;
  --olive: #6A7453;
  --deep-olive: #46513B;
  --meta: #6B6456;
  --display: "Barlow Condensed", "Barlow", system-ui, sans-serif;
  --body: "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 3px; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
header.site-header { border-bottom: 1px solid var(--border); }
nav { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .005em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.dot { color: var(--accent); }
.nav-link { color: var(--deep-olive); font-size: 14px; font-weight: 500; text-decoration: none; }
.nav-link:hover { color: var(--ink); }
main { padding: 0 0 36px; }
.legal-hero { border-bottom: 1px solid var(--border); padding: 72px 0 40px; }
.mark { display: block; height: 30px; width: auto; }
.eyebrow {
  color: var(--olive);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 28px 0 0;
}
h1, h2 { font-family: var(--display); line-height: 1; text-transform: uppercase; }
h1 { font-size: clamp(42px, 7vw, 62px); font-weight: 800; letter-spacing: -.02em; margin: 12px 0 0; }
h2 { font-size: 28px; font-weight: 700; letter-spacing: -.01em; margin: 0; }
.lede { color: var(--deep-olive); font-size: 17px; margin: 14px 0 0; max-width: 60ch; }
.updated { color: var(--meta); font-size: 13px; margin: 18px 0 0; }
.legal-content { counter-reset: legal-section; max-width: 860px; }
.notice {
  background: var(--linen);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  color: var(--deep-olive);
  margin: 42px 0 0;
  max-width: 68ch;
  padding: 20px 22px;
}
.section { border-top: 1px solid var(--border); counter-increment: legal-section; padding: 44px 0 46px; }
.notice + .section { margin-top: 42px; }
.section h2 { align-items: baseline; display: flex; gap: 14px; }
.section h2::before {
  color: var(--olive);
  content: counter(legal-section, decimal-leading-zero);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.section p, .section ul { margin: 0; max-width: 68ch; }
.section p:first-of-type, .section ul:first-of-type { margin-top: 18px; }
.section p + p, .section p + ul { margin-top: 14px; }
.section ul { padding-left: 20px; }
.section li + li { margin-top: 7px; }
.contact { color: var(--deep-olive); font-weight: 700; text-underline-offset: 3px; }
footer { border-top: 1px solid var(--border); color: var(--meta); font-size: 13px; padding: 40px 0 64px; }
footer p { margin: 0; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 10px; }
.legal-nav a { text-underline-offset: 3px; }
.legal-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; text-decoration: none; }
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  nav { min-height: 52px; }
  .wordmark { font-size: 23px; }
  .legal-hero { padding: 52px 0 32px; }
  .mark { height: 25px; }
  .lede { font-size: 16px; }
  .notice { margin-top: 32px; padding: 17px 18px; }
  .section { padding: 34px 0 36px; }
  h2 { font-size: 25px; }
}
