/* Self-hosted. No third-party font requests — see the privacy policy. */
@font-face{font-family:'Spectral';font-style:normal;font-weight:300;font-display:swap;src:url(fonts/spectral-300.woff2) format('woff2')}
@font-face{font-family:'Spectral';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/spectral-400.woff2) format('woff2')}
@font-face{font-family:'Spectral';font-style:italic;font-weight:400;font-display:swap;src:url(fonts/spectral-400i.woff2) format('woff2')}
@font-face{font-family:'Spectral';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/spectral-600.woff2) format('woff2')}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:400 600;font-display:swap;src:url(fonts/plexsans-var.woff2) format('woff2-variations')}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/plexmono-400.woff2) format('woff2')}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/plexmono-500.woff2) format('woff2')}

/* ==========================================================================
   Compass Gateway — compassgateway.com
   Palette sampled from the company mark: navy #112a40, compass blue #229ce7,
   field olive #49582d. Type: Spectral for the documents (a legal instrument
   should read like one), IBM Plex Sans for navigation, IBM Plex Mono for
   clause numbers — numbering is data, so it is set in the data face.
   ========================================================================== */

:root {
  --ink: #112a40;
  --ink-2: #4c5d70;
  --ink-3: #5c6d7f;
  --blue: #16679f;
  --blue-h: #0f4d78;
  --hub: #229ce7;
  --sage: #5c6a33;
  --paper: #fbfaf7;
  --panel: #f4f2ed;
  --rule: #e0ddd6;
  --rule-2: #cfcbc2;
  --sel: #cfe4f4;

  --serif: 'Spectral', Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --mast-h: 3.5rem;
  --pad: clamp(1.25rem, 4.5vw, 2.5rem);
  --wrap: 72rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e7e9ec;
    --ink-2: #a2b2c1;
    --ink-3: #8293a3;
    --blue: #74bcf1;
    --blue-h: #a3d3f7;
    --hub: #229ce7;
    --sage: #adbc7e;
    --paper: #0e1b2a;
    --panel: #16283b;
    --rule: #26384c;
    --rule-2: #354c64;
    --sel: #1d4363;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--sel); }

img { max-width: 100%; height: auto; }

a { color: var(--blue); text-underline-offset: .18em; text-decoration-thickness: .06em; }
a:hover { color: var(--blue-h); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%);
  white-space: nowrap;
}

.skip {
  position: absolute;
  left: var(--pad); top: -4rem;
  z-index: 20;
  padding: .55rem .9rem;
  background: var(--ink);
  color: var(--paper);
  font: 500 .8125rem/1 var(--sans);
  text-decoration: none;
  transition: top .15s ease;
}
.skip:focus { top: .6rem; color: var(--paper); }

.nb { white-space: nowrap; }

/* ------------------------------------------------------------- masthead -- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--mast-h);
  padding: 0 var(--pad);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.mark {
  width: 1.5rem; height: 1.5rem;
  flex: none;
  color: var(--ink);
}
.hub-o { fill: var(--paper); }
.hub-i { fill: var(--hub); }

.brand-name {
  font: 600 .9375rem/1 var(--sans);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-name span { color: var(--ink-2); font-weight: 400; }

/* the wordmark gives way to the mark alone before the bar can wrap */
@media (max-width: 26rem) {
  .masthead { padding: 0 1rem; }
  .mark { width: 1.35rem; height: 1.35rem; }
  .brand-name { font-size: .875rem; }
  .mast-nav { gap: .85rem; font-size: .75rem; }
}
@media (max-width: 20.5rem) { .brand-name { display: none; } }

.mast-nav {
  display: flex;
  gap: clamp(.9rem, 3vw, 1.75rem);
  font: 400 .8125rem/1 var(--sans);
}
.mast-nav a {
  color: var(--ink-2);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.mast-nav a:hover { color: var(--ink); border-bottom-color: var(--rule-2); }
.mast-nav a[aria-current='page'] { color: var(--ink); border-bottom-color: var(--sage); }

/* =============================================================== home ==== */

.is-home main { padding-bottom: clamp(3rem, 7vw, 5rem); }

.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(2.75rem, 8vw, 5rem) var(--pad) clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.hero-logo {
  width: clamp(10rem, 24vw, 13.5rem);
  height: auto;
  margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
  display: block;
}

.hero-title {
  margin: 0;
  font: 300 clamp(2.5rem, 8vw, 4.25rem)/1.02 var(--serif);
  letter-spacing: -.02em;
}
.hero-title span { color: var(--ink-2); }

.hero-lede {
  max-width: 34rem;
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  color: var(--ink-2);
  font-size: clamp(1.0625rem, 1.9vw, 1.1875rem);
  line-height: 1.65;
}

.hero-act { margin: clamp(1.75rem, 4vw, 2.5rem) 0 0; }

.btn {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  padding: .7rem 1.5rem;
  border: 1px solid var(--rule-2);
  color: var(--ink);
  background: var(--paper);
  font: 500 .875rem/1.2 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.btn:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--panel);
}
.btn-sm { padding: .5rem 1.05rem; font-size: .8125rem; }
.btn-go {
  color: var(--sage);
  transition: transform .15s ease;
}
.btn:hover .btn-go { color: var(--sage); }

/* until the script assembles the address the link has no href, so give it the
   affordance a real link would have */
a.eml { cursor: pointer; }

.ns-note {
  max-width: 30rem;
  margin: 1.25rem auto 0;
  font: 400 .8125rem/1.6 var(--sans);
  color: var(--ink-3);
}
.ns-note b { color: var(--ink); font-weight: 500; }

/* section scaffolding */

.practices,
.docs,
.company {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) 0;
}

.sec-head {
  padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
  border-bottom: 1px solid var(--rule);
}
.sec-head h2 {
  margin: 0;
  font: 600 .6875rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sec-note {
  max-width: 42rem;
  margin: .85rem 0 0;
  color: var(--ink-2);
  font-size: .9375rem;
  line-height: 1.6;
}

/* The four practices sit on their true bearings. The firm has exactly four and
   the mark is a compass, so the rose is the structure of the section, not an
   ornament laid over it. Source order is clockwise from north (N E S W), which
   is how a rose is read, so the DOM matches the layout at every width. */

.practice-grid { display: grid; grid-template-columns: minmax(0, 1fr); }

.practice { padding: clamp(1.75rem, 4vw, 2.25rem) 0; }

/* scoped to the stacked layout only, so it never has to be un-set later and
   cannot outrank the cardinal border rules below */
@media (max-width: 45.999rem) {
  .practice + .practice { border-top: 1px solid var(--rule); }
}

.rose { display: none; }

.bearing {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin: 0 0 .75rem;
}
.bearing-mark {
  display: inline-flex;
  align-self: center;
  width: .8rem;
  height: .8rem;
  transform: rotate(var(--bearing));
}
.needle { width: 100%; height: 100%; fill: var(--sage); }
.bearing-letter {
  font: 500 .9375rem/1 var(--mono);
  color: var(--sage);
  letter-spacing: .02em;
}
.bearing-word {
  font: 500 .625rem/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.practice h3 {
  margin: 0 0 .6rem;
  font: 400 clamp(1.1875rem, 2.4vw, 1.375rem)/1.3 var(--serif);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.practice-body {
  margin: 0;
  color: var(--ink-2);
  font-size: .9375rem;
  line-height: 1.65;
}
.practice-act { margin: 1.1rem 0 0; }

/* two-up: still a cross, still clockwise */
@media (min-width: 46rem) {
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .practice { padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.5rem); }
  .p-n { grid-area: 1 / 1; padding-left: 0; border-right: 1px solid var(--rule); }
  .p-e { grid-area: 1 / 2; padding-right: 0; }
  .p-s { grid-area: 2 / 2; padding-right: 0; border-top: 1px solid var(--rule); }
  .p-w { grid-area: 2 / 1; padding-left: 0; border-top: 1px solid var(--rule); border-right: 1px solid var(--rule); }
}

/* full rose: each practice on its actual bearing around a centre point */
@media (min-width: 68rem) {
  .practice-grid {
    --rose-gap: clamp(1.5rem, 2.6vw, 2.25rem);
    /* held in from the section edges so the four points read as one figure
       rather than four things pushed to the margins */
    max-width: 62rem;
    margin-inline: auto;
    /* the centre column only has to hold the rose — north and south span the
       full width and set their own measure, so all four read at one size */
    grid-template-columns: 1fr minmax(7rem, .4fr) 1fr;
    grid-template-rows: auto auto auto;
    column-gap: var(--rose-gap);
    row-gap: var(--rose-gap);
    align-items: center;
  }
  .practice { padding: 0; border: 0; }
  .p-n { grid-area: 1 / 1 / 2 / 4; }
  .p-e { grid-area: 2 / 3 / 3 / 4; }
  .p-s { grid-area: 3 / 1 / 4 / 4; }
  .p-w { grid-area: 2 / 1 / 3 / 2; }
  .p-n, .p-s { text-align: center; }
  /* doubled class so this outranks `.practice h3`, which sets a margin
     shorthand and would otherwise pin the heading to the left */
  .practice.p-n > *,
  .practice.p-s > * { max-width: 31rem; margin-inline: auto; }
  .p-n .bearing, .p-s .bearing { justify-content: center; }
  .p-e { text-align: right; }
  .p-e .bearing { justify-content: flex-end; }

  .rose {
    display: grid;
    place-items: center;
    grid-area: 2 / 2;
    position: relative;
    align-self: stretch;
    color: var(--rule-2);
  }
  /* hairlines run out from the centre toward each bearing, reaching across the
     gaps to the edge of the four cells */
  .rose::before,
  .rose::after {
    content: '';
    position: absolute;
    background: var(--rule);
  }
  .rose::before {
    left: 50%;
    top: calc(var(--rose-gap) * -1);
    bottom: calc(var(--rose-gap) * -1);
    width: 1px;
  }
  .rose::after {
    top: 50%;
    left: calc(var(--rose-gap) * -1);
    right: calc(var(--rose-gap) * -1);
    height: 1px;
  }
  .rose-mark {
    position: relative;
    width: clamp(3.75rem, 5.5vw, 4.75rem);
    height: clamp(3.75rem, 5.5vw, 4.75rem);
    fill: var(--sage);
    background: var(--paper);
    padding: .7rem;
    border-radius: 50%;
  }
}

/* document cards */

.doc-cards {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 46rem) { .doc-cards { grid-template-columns: 1fr 1fr; } }

.doc-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: background .15s ease;
}
.doc-card:hover { background: var(--panel); color: var(--ink); }

.doc-card-eyebrow {
  font: 400 .6875rem/1 var(--mono);
  letter-spacing: .04em;
  color: var(--ink-3);
}
.doc-card-title {
  font: 400 clamp(1.375rem, 3vw, 1.625rem)/1.2 var(--serif);
  letter-spacing: -.01em;
}
.doc-card-note {
  color: var(--ink-2);
  font-size: .9375rem;
  line-height: 1.6;
}
.doc-card-go {
  margin-top: .35rem;
  font: 500 .8125rem/1 var(--sans);
  color: var(--blue);
}
.doc-card-go::after { content: ' \2192'; }
.doc-card:hover .doc-card-go { color: var(--blue-h); }

/* company details */

.details { margin: 0; }
.det {
  display: grid;
  gap: .15rem .5rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--rule);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 40rem) {
  .det { grid-template-columns: 12rem minmax(0, 1fr); gap: 1.5rem; align-items: baseline; }
}
.det dt {
  font: 500 .6875rem/1.5 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.det dd {
  margin: 0;
  font-size: .9688rem;
  font-variant-numeric: tabular-nums;
}
.det-note {
  font: 400 .8125rem/1 var(--sans);
  color: var(--ink-3);
}
.det-note::before { content: '\2014\00a0'; }

/* ========================================================== documents ==== */

.doc-shell {
  /* sized to the index plus the document so the pair sits centred, rather than
     the text hugging the left of a much wider column */
  max-width: 58rem;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
@media (min-width: 64rem) {
  .doc-shell { grid-template-columns: 14rem minmax(0, 1fr); }
}

/* --- contents index --- */

/* the column must span the full document height or the sticky index stops
   following partway down a long page */
.toc { display: none; align-self: stretch; }
@media (min-width: 64rem) { .toc { display: block; } }

.toc-inner {
  position: sticky;
  top: calc(var(--mast-h) + 1.75rem);
  max-height: calc(100vh - var(--mast-h) - 3.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  /* top padding matches .doc-head so the index and the eyebrow share a baseline */
  padding: clamp(2.5rem, 7vw, 4rem) 0 2rem;
  scrollbar-width: thin;
}

.toc-head {
  margin: 1.75rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--rule);
  font: 600 .625rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.toc-head-first { margin-top: 0; }

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.toc-list a {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: .35rem;
  padding: .3rem 0;
  color: var(--ink-2);
  font: 400 .8125rem/1.45 var(--sans);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color .12s ease;
}
.toc-list a:hover { color: var(--ink); }
.toc-n {
  font: 400 .75rem/1.55 var(--mono);
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.toc-list a.is-current { color: var(--ink); }
.toc-list a.is-current .toc-n { color: var(--sage); }
.toc-sched .toc-n::before { content: 'S'; }

/* --- mobile contents --- */

.toc-m {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 64rem) { .toc-m { display: none; } }

.toc-m > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  cursor: pointer;
  font: 600 .6875rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  list-style: none;
}
.toc-m > summary::-webkit-details-marker { display: none; }
.toc-m > summary::after {
  content: '+';
  font: 400 1rem/1 var(--mono);
  color: var(--ink-3);
}
.toc-m[open] > summary::after { content: '\2212'; }
.toc-m .toc-list { padding-bottom: 1rem; }
.toc-m .toc-head { margin-top: .75rem; }

/* --- the document itself --- */

.doc {
  --gutter: 0rem;
  padding-left: var(--gutter);
  /* ~68 characters of Spectral — a legal document is read line by line, and a
     wider measure makes it hard to find the start of the next one */
  max-width: calc(35rem + var(--gutter));
  padding-bottom: clamp(3rem, 8vw, 5rem);
}
@media (min-width: 48rem) { .doc { --gutter: 4.25rem; } }

.doc-head {
  padding: clamp(2.5rem, 7vw, 4rem) 0 clamp(1.75rem, 4vw, 2.5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font: 500 .6875rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.doc-head h1 {
  margin: 0;
  font: 300 clamp(2.25rem, 6.5vw, 3.5rem)/1.05 var(--serif);
  letter-spacing: -.022em;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  padding: .75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.doc-meta > div { display: flex; align-items: baseline; gap: .5rem; }
.doc-meta dt {
  font: 500 .625rem/1.6 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.doc-meta dd {
  margin: 0;
  font: 400 .8125rem/1.6 var(--mono);
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.doc-lede {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0 0;
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.doc-body > p:first-child { margin-top: 0; }

.sec { scroll-margin-top: calc(var(--mast-h) + 1.5rem); }
/* leave room for the star divider that opens each schedule */
.part { scroll-margin-top: calc(var(--mast-h) + 3.5rem); }

.doc-body h2 {
  position: relative;
  margin: clamp(2.5rem, 6vw, 3.5rem) 0 1rem;
  font: 600 clamp(1.1875rem, 2.6vw, 1.4375rem)/1.25 var(--serif);
  letter-spacing: -.012em;
}

.doc-body p {
  margin: 0 0 1.15rem;
  hanging-punctuation: first;
}

/* clause numbers hang in the margin where the width allows, and fall back to
   an inline prefix on narrow screens */
.clause { position: relative; }

.cn {
  font: 500 .8125rem/1 var(--mono);
  color: var(--sage);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}

.doc-body h2 .cn {
  display: inline;
  margin-right: .6rem;
  font-size: .75rem;
  vertical-align: .28em;
}

.clause > .cn {
  display: inline;
  margin-right: .55rem;
}

@media (min-width: 48rem) {
  .doc-body h2 .cn,
  .clause > .cn {
    position: absolute;
    left: calc(var(--gutter) * -1);
    width: calc(var(--gutter) - 1.25rem);
    margin: 0;
    text-align: right;
    vertical-align: baseline;
  }
  .doc-body h2 .cn { top: .45em; font-size: .8125rem; }
  .clause > .cn { top: .42em; }
}

.lead { font-weight: 600; }

.doc-body ul {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  list-style: none;
}
.doc-body li {
  position: relative;
  margin-bottom: .5rem;
}
.doc-body li::before {
  content: '';
  position: absolute;
  left: -1.15rem;
  top: .72em;
  width: .3rem;
  height: 1px;
  background: var(--rule-2);
}

.doc-body strong { font-weight: 600; }

/* lawful-bases table in the privacy policy */
.table-wrap {
  margin: 0 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
  min-width: 30rem;
}
.table-wrap th {
  padding: .65rem 1rem .65rem 0;
  border-bottom: 1px solid var(--rule-2);
  text-align: left;
  font: 500 .625rem/1.6 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.table-wrap td {
  padding: .8rem 1rem .8rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.55;
}
.table-wrap tr td:last-child { color: var(--ink-2); padding-right: 0; }

/* schedule dividers — the compass star from the mark, used four times only */

.part-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(3.5rem, 9vw, 5.5rem) 0 1.75rem calc(var(--gutter) * -1);
}
.part-rule::before,
.part-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.star {
  width: .875rem;
  height: .875rem;
  flex: none;
  fill: var(--sage);
}

.doc-body .part-label {
  margin: 0 0 .4rem;
  font: 500 .6875rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
}
.doc-body .part-title {
  margin-top: 0;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 1.875rem);
}
/* the schedule preamble reads as a note; its clauses read as clauses.
   matches only the unclassed intro paragraphs, so it cannot swallow
   .part-label's colour */
.part > p:not([class]) { color: var(--ink-2); }

.colophon {
  margin: clamp(3rem, 7vw, 4.5rem) 0 0 calc(var(--gutter) * -1);
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font: 400 .8125rem/1.7 var(--sans);
  color: var(--ink-3);
}

.doc-foot {
  margin: 2rem 0 0 calc(var(--gutter) * -1);
  font: 400 .8125rem/1 var(--sans);
}

/* ================================================================ foot === */

.site-foot {
  margin-top: clamp(3rem, 8vw, 5rem);
  border-top: 1px solid var(--rule);
  background: var(--panel);
}
.foot-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: baseline;
}
.foot-legal {
  max-width: 34rem;
  margin: 0;
  font: 400 .8125rem/1.65 var(--sans);
  color: var(--ink-3);
}
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.25rem;
  font: 400 .8125rem/1.65 var(--sans);
}
.foot-nav a { color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--rule-2); }
.foot-nav a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ============================================================== a11y ===== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root { --ink-2: var(--ink); --ink-3: #35485c; --rule: #9aa5b1; }
}

/* ============================================================== print === */

@media print {
  :root {
    --ink: #000; --ink-2: #222; --ink-3: #555;
    --paper: #fff; --panel: #fff; --rule: #bbb; --rule-2: #999;
    --blue: #000; --sage: #444;
    --mast-h: 0rem;
  }
  body { font-size: 10.5pt; line-height: 1.5; background: #fff; }
  .masthead, .toc, .toc-m, .doc-foot, .site-foot, .skip, .hero-act { display: none !important; }
  .doc-shell { display: block; max-width: none; padding: 0; }
  .doc { --gutter: 3.5rem; max-width: none; padding-bottom: 0; }
  .doc-head { padding-top: 0; }
  .doc-head h1 { font-size: 22pt; }
  a { text-decoration: none; }
  .doc-body a[href^='http']::after { content: ' (' attr(href) ')'; font-size: 8.5pt; color: #555; }
  .sec, .clause, .part-label, li, tr { break-inside: avoid; }
  .doc-body h2 { break-after: avoid; }
  .part { break-before: page; }
  .table-wrap { overflow: visible; }
  .table-wrap table { min-width: 0; }
  .colophon { border-top: 1px solid #bbb; }
}
