:root {
  --paper: #fbf7f1;
  --paper-2: #f4ecdf;
  --paper-3: #ebe0ce;
  --ink: #221f1a;
  --ink-soft: #4a453c;
  --olive: #3f4a2a;
  --olive-mid: #5d6a41;
  --terra: #b0492a;
  --terra-deep: #8d3a20;
  --rule: #d8cbb5;
  --rule-soft: #e6dcc9;

  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 74rem;
  --read: 68ch;
  --radius: 10px;
  --radius-lg: 16px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.75 var(--serif);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--olive);
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 1.35rem + 2.6vw, 3.35rem);
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
}

h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
}

h4 {
  font-size: 1.0625rem;
}

p,
ul,
ol,
dl,
figure,
table {
  margin: 0 0 var(--s-4);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

/* Long URLs are quoted verbatim in several places; let them wrap rather than
   widen the grid track they sit in. */
a {
  overflow-wrap: break-word;
}

strong {
  font-weight: 700;
  color: var(--olive);
}

abbr[title] {
  text-decoration: none;
}

/* Links carry an underline and a marker so they never depend on colour alone. */
a {
  color: var(--terra-deep);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--olive);
  color: #fff;
  padding: var(--s-3) var(--s-4);
  font: 700 0.8125rem/1 var(--mono);
  z-index: 20;
  text-decoration: none;
}

.skip:focus {
  left: var(--s-4);
  top: var(--s-4);
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

.read {
  max-width: var(--read);
}

/* Wide enough for the label-and-value lists, with prose held to a
   comfortable measure inside it. */
.measure {
  max-width: 48rem;
}

.measure > p,
.measure > h3 {
  max-width: var(--read);
}

.label {
  display: block;
  font: 700 0.6875rem/1.4 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: var(--s-3);
}

.label--quiet {
  color: var(--olive-mid);
}

/* ---------- Masthead ---------- */

.masthead {
  background: var(--paper);
  border-bottom: 5px solid var(--olive);
  position: relative;
  z-index: 6;
}

.masthead__top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: baseline;
  justify-content: space-between;
  padding-block: var(--s-5) var(--s-3);
}

.wordmark {
  display: inline-block;
  text-decoration: none;
  color: var(--olive);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.wordmark:hover {
  color: var(--terra-deep);
}

.wordmark__rule {
  display: block;
  font: 700 0.625rem/1.5 var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: var(--s-2);
  letter-spacing: 0.2em;
}

.masthead__aside {
  font: 400 0.75rem/1.6 var(--mono);
  color: var(--ink-soft);
  max-width: 30ch;
}

.masthead__aside strong {
  color: var(--olive);
  font-weight: 700;
}

.masthead__bar {
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-block: var(--s-2);
}

.nav__toggle {
  display: none;
  font: 700 0.75rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--olive);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: var(--s-3) var(--s-4);
  cursor: pointer;
  align-items: center;
  gap: var(--s-2);
}

.nav__toggle[hidden] {
  display: none;
}

.nav {
  width: 100%;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--s-5);
}

.nav__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  padding-block: var(--s-2);
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--olive);
  text-decoration-line: none;
  border-bottom: 2px solid transparent;
}

.nav__link:hover {
  color: var(--terra-deep);
  border-bottom-color: var(--rule);
}

.nav__link[aria-current="page"] {
  color: var(--terra-deep);
  font-weight: 700;
  border-bottom-color: var(--terra);
}

.nav__num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--olive-mid);
  letter-spacing: 0.08em;
}

.nav__link[aria-current="page"] .nav__num {
  color: var(--terra);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding-block: var(--s-7) var(--s-8);
}

.hero__glyph {
  position: absolute;
  inset-block-start: -0.22em;
  inset-inline-end: -0.06em;
  font: 700 30rem/0.72 var(--serif);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--rule-soft);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(176, 73, 42, 0.16) 0%, rgba(176, 73, 42, 0) 42%);
  pointer-events: none;
  z-index: 0;
  animation: wash 1400ms cubic-bezier(0.22, 0.61, 0.36, 1) 1 both;
}

@keyframes wash {
  from {
    transform: translate3d(-42%, 0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  to {
    transform: translate3d(38%, 0, 0);
    opacity: 0;
  }
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  gap: var(--s-6) var(--s-5);
  align-items: start;
}

@media (min-width: 62rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: var(--s-6) var(--s-7);
  }
}

.hero__media {
  margin: 0;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--paper-3);
}

.hero__media figcaption {
  margin-top: var(--s-3);
}

.hero h1 {
  margin-bottom: var(--s-5);
}

.hero .mark {
  color: var(--terra-deep);
  background: linear-gradient(to top, rgba(176, 73, 42, 0.16) 0.38em, transparent 0.38em);
  padding-inline: 0.06em;
}

.hero__lede {
  font-size: 1.1875rem;
  max-width: 60ch;
}

.hero__meta {
  margin-top: var(--s-5);
  font: 400 0.75rem/1.7 var(--mono);
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: var(--s-3);
  max-width: 46ch;
}

/* Marginal note: caveats, gaps and things we deliberately did not publish. */
.note {
  margin-top: var(--s-5);
  font: 400 0.8125rem/1.7 var(--mono);
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: var(--s-3);
  max-width: 72ch;
}

.note:first-child {
  margin-top: 0;
}

/* ---------- Independence notice ---------- */

.disclaimer {
  border: 1px solid var(--olive);
  outline: 1px solid var(--olive);
  outline-offset: 4px;
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: var(--s-5);
  margin-block: var(--s-3) 0;
}

.disclaimer p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.disclaimer p + p {
  margin-top: var(--s-3);
}

/* ---------- Sections ---------- */

.section {
  position: relative;
  padding-block: var(--s-8);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: -18px;
  box-shadow: 0 -10px 26px -18px rgba(34, 31, 26, 0.4);
}

.section:first-of-type {
  margin-top: 0;
  box-shadow: none;
}

.section--paper {
  background: var(--paper);
}

.section--tint {
  background: var(--paper-2);
}

.section--deep {
  background: var(--paper-3);
}

.section--olive {
  background: var(--olive);
  color: var(--paper);
}

.section--olive h2,
.section--olive h3,
.section--olive strong {
  color: #fff;
}

.section--olive a {
  color: #f2dcc9;
}

/* Light cards sitting inside a dark band keep the light-ground colours. */
.section--olive .panel,
.section--olive .verdict {
  color: var(--ink);
}

.section--olive .panel h3,
.section--olive .verdict h3,
.section--olive .panel strong,
.section--olive .verdict strong,
.section--olive .panel .label {
  color: var(--olive);
}

.section--olive .panel a,
.section--olive .verdict a {
  color: var(--terra-deep);
}

.section--olive .panel .facts dt {
  color: var(--olive-mid);
}

.section--olive .panel .marks li.yes::before,
.section--olive .panel .bullets li::before {
  color: var(--olive);
}

.section--olive .panel .marks li.no::before {
  color: var(--terra-deep);
}

.section__head {
  position: relative;
  margin-bottom: var(--s-6);
}

.section__head::before {
  content: "";
  position: absolute;
  inset-block-start: -0.9rem;
  inset-inline-start: -0.6rem;
  width: 8.5rem;
  height: 5rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M17 2 32 17 17 32 2 17Z' fill='none' stroke='%233f4a2a' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 34px 34px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.section--olive .section__head::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M17 2 32 17 17 32 2 17Z' fill='none' stroke='%23fbf7f1' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.section__head > * {
  position: relative;
  z-index: 1;
}

.section__head p {
  max-width: var(--read);
  margin-top: var(--s-4);
}

.section__body {
  display: grid;
  gap: var(--s-6);
}

/* ---------- Columns, broadsheet gutters ---------- */

.cols {
  display: grid;
  gap: var(--s-6) var(--s-5);
}

.cols > * {
  min-width: 0;
}

.cols--2 {
  grid-template-columns: 1fr;
}

.cols--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 46rem) {
  .cols--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 62rem) {
  .cols--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cols--aside {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: var(--s-6) var(--s-7);
  }
}

/* ---------- Stepped cards ---------- */

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card--feature {
  border-color: var(--olive);
  outline: 1px solid var(--olive);
  outline-offset: 4px;
}

.card__head {
  padding: var(--s-5);
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}

.card--feature .card__head {
  background: var(--olive);
}

.card--feature .card__head h3,
.card--feature .card__head .label {
  color: #fff;
}

.card__facts {
  padding: var(--s-5);
  margin: 0;
  flex: 1 1 auto;
}

.card__verdict {
  padding: var(--s-5);
  background: var(--paper-2);
  border-top: 1px solid var(--rule-soft);
  font-size: 0.9375rem;
}

.card__action {
  padding: var(--s-5);
  border-top: 1px solid var(--rule);
}

/* ---------- Fact lists ---------- */

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3) var(--s-5);
}

.facts dt {
  font: 700 0.6875rem/1.5 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-mid);
}

.facts dd {
  margin: 0 0 var(--s-3);
  font-size: 0.9375rem;
}

.facts dd:last-child {
  margin-bottom: 0;
}

@media (min-width: 34rem) {
  .facts--row {
    grid-template-columns: minmax(8.5rem, 12rem) minmax(0, 1fr);
    align-items: baseline;
  }
  .facts--row dt,
  .facts--row dd {
    margin-bottom: var(--s-2);
  }
}

/* ---------- Tick and cross lists ---------- */

.marks {
  list-style: none;
  margin: 0 0 var(--s-4);
  padding: 0;
  display: grid;
  gap: var(--s-3);
}

.marks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.marks li::before {
  position: absolute;
  left: 0;
  top: 0;
  font: 700 0.9375rem/1.65 var(--mono);
}

.marks li.yes::before {
  content: "\2713";
  color: var(--olive);
}

.marks li.no::before {
  content: "\2715";
  color: var(--terra-deep);
}

.section--olive .marks li.yes::before {
  color: #cddba9;
}

.section--olive .marks li.no::before {
  color: #f0b39c;
}

.bullets {
  list-style: none;
  margin: 0 0 var(--s-4);
  padding: 0;
  display: grid;
  gap: var(--s-3);
}

.bullets li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid var(--olive-mid);
  transform: rotate(45deg);
}

/* ---------- Badges ---------- */

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: 0 0 var(--s-4);
  padding: 0;
  list-style: none;
}

.badge {
  display: inline-block;
  font: 700 0.6875rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45em 0.7em;
  border: 1px solid var(--olive-mid);
  border-radius: 999px;
  color: var(--olive);
  background: transparent;
  white-space: nowrap;
}

.badge--accent {
  background: var(--terra-deep);
  border-color: var(--terra-deep);
  color: #fff;
}

.section--olive .badge {
  color: var(--paper);
  border-color: #94a173;
}

/* ---------- Split buttons ---------- */

.btn {
  display: inline-flex;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  font: 700 0.8125rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
  max-width: 100%;
}

.btn__text {
  padding: 0.95em 1.1em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.btn__chev {
  display: grid;
  place-items: center;
  padding-inline: 0.85em;
  border-left: 1px solid rgba(251, 247, 241, 0.42);
  background: rgba(0, 0, 0, 0.14);
  font-size: 0.9rem;
}

.btn:hover {
  background: var(--terra-deep);
  border-color: var(--terra-deep);
}

.btn--quiet {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}

.btn--quiet .btn__chev {
  border-left-color: var(--rule);
  background: rgba(63, 74, 42, 0.08);
}

.btn--quiet:hover {
  background: var(--olive);
  color: #fff;
}

.btn--quiet:hover .btn__chev {
  border-left-color: rgba(251, 247, 241, 0.42);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

/* ---------- Verdict block ---------- */

.verdict {
  margin: 0;
  border-left: 4px solid var(--terra);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s-5) var(--s-5) var(--s-5) var(--s-6);
  box-shadow: 0 1px 0 var(--rule), 0 12px 28px -24px rgba(34, 31, 26, 0.7);
}

.verdict p {
  font-size: 1.0625rem;
  font-style: italic;
}

.verdict footer {
  margin-top: var(--s-3);
  font: 400 0.6875rem/1.5 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-mid);
  font-style: normal;
}

.section--tint .verdict,
.section--deep .verdict {
  background: var(--paper);
}

/* ---------- Figures and the hero collage ---------- */

.figure {
  margin: 0;
}

.figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--paper-3);
}

.figure figcaption {
  margin-top: var(--s-3);
  font: 400 0.75rem/1.6 var(--mono);
  color: var(--ink-soft);
}

.figure figcaption a {
  color: var(--terra-deep);
}

.credit {
  display: block;
  margin-top: var(--s-1);
  color: var(--olive-mid);
  font-size: 0.6875rem;
}

.pos-right img {
  object-position: 82% 50%;
}

.pos-left img {
  object-position: 22% 50%;
}

.collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4);
  align-items: start;
}

.collage .figure:first-child {
  grid-column: 1 / -1;
}

@media (min-width: 46rem) {
  .collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .collage .figure:first-child {
    grid-column: auto;
  }
  .collage .figure:nth-child(2) {
    margin-top: var(--s-6);
  }
  .collage .figure:nth-child(3) {
    margin-top: var(--s-7);
  }
}

/* ---------- Tables ---------- */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin: 0;
}

caption {
  text-align: left;
  font: 700 0.6875rem/1.5 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-mid);
  padding: var(--s-4) var(--s-4) var(--s-2);
}

th,
td {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}

th {
  font: 700 0.75rem/1.5 var(--mono);
  letter-spacing: 0.06em;
  color: var(--olive);
  background: var(--paper-2);
}

tbody tr:last-child td {
  border-bottom: 0;
}

/* ---------- Numbered references ---------- */

.ref {
  font-family: var(--mono);
  font-size: 0.7em;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.1em;
  white-space: nowrap;
  color: var(--olive-mid);
}

.ref a {
  color: inherit;
  text-decoration-line: none;
}

.ref a:hover {
  color: var(--terra-deep);
  text-decoration-line: underline;
}

/* In lists the markers sit on their own line beneath the item rather than
   stranding at the end of a wrap. */
.marks .ref,
.bullets .ref,
.help .ref {
  display: block;
  vertical-align: baseline;
  line-height: 1.5;
  margin: var(--s-1) 0 0;
  font-size: 0.6875rem;
}

.refs {
  counter-reset: none;
  margin: 0;
  padding-left: 2.4rem;
  font-size: 0.875rem;
  line-height: 1.65;
}

.refs li {
  margin-bottom: var(--s-3);
  padding-left: var(--s-2);
}

.refs li::marker {
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--olive-mid);
}

.refs .src {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  word-break: break-word;
}

/* ---------- FAQ, one flowing block ---------- */

.faq {
  max-width: var(--read);
}

.faq p {
  margin-bottom: var(--s-4);
}

.faq p b {
  color: var(--olive);
  font-weight: 700;
}

/* ---------- Panels ---------- */

.panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
}

.panel--frame {
  border-color: var(--olive);
  outline: 1px solid var(--olive);
  outline-offset: 4px;
}

.panel h3 {
  margin-bottom: var(--s-3);
}

.panel .facts {
  margin-top: var(--s-4);
}

.help {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
}

.help li {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-4);
}

.help li:first-child {
  border-top: 0;
  padding-top: 0;
}

.help .name {
  display: block;
  font: 700 0.8125rem/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--s-1);
}

.help p {
  font-size: 0.9375rem;
}

.tel {
  font-family: var(--mono);
  font-weight: 700;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--olive);
  color: var(--paper);
  padding-block: var(--s-8) var(--s-7);
  margin-top: -18px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.footer a {
  color: #f4e2d1;
}

.footer__stack {
  display: grid;
  gap: var(--s-6);
  max-width: 62rem;
}

.footer__wordmark {
  font: 700 1.5rem/1.15 var(--serif);
  color: #fff;
  letter-spacing: -0.01em;
}

.footer__wordmark span {
  display: block;
  font: 700 0.625rem/1.6 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cddba9;
  margin-top: var(--s-2);
}

.footer p {
  font-size: 0.9375rem;
  max-width: 68ch;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  font-family: var(--mono);
  font-size: 0.8125rem;
}

.footer__notice {
  border-top: 1px solid rgba(251, 247, 241, 0.28);
  padding-top: var(--s-5);
}

.footer__notice p + p {
  margin-top: var(--s-3);
}

.footer__legal {
  font: 400 0.75rem/1.7 var(--mono);
  color: #d7dfc2;
  max-width: 72ch;
}

/* ---------- Responsive nav ---------- */

@media (max-width: 61.9375rem) {
  .masthead__bar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
    padding-block: var(--s-3);
  }

  .nav__toggle {
    display: inline-flex;
    justify-content: space-between;
    align-self: flex-start;
    min-width: 12rem;
  }

  .nav__toggle[hidden] {
    display: none;
  }

  .nav[data-collapsed="true"] {
    display: none;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    padding-block: var(--s-3);
    border-bottom: 1px solid var(--rule-soft);
    width: 100%;
  }

  .nav__link[aria-current="page"] {
    border-bottom-color: var(--terra);
  }
}

@media (max-width: 46rem) {
  .hero__glyph {
    font-size: 20rem;
    inset-inline-end: -0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__wash {
    animation: none;
    display: none;
  }
  * {
    scroll-behavior: auto;
  }
}

/* ---------- Print ---------- */

@media print {
  :root {
    --paper: #fff;
    --paper-2: #fff;
    --paper-3: #fff;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .masthead__bar,
  .nav,
  .nav__toggle,
  .hero__glyph,
  .hero__wash,
  .btn__chev {
    display: none !important;
  }

  .section,
  .footer {
    margin-top: 0;
    box-shadow: none;
    border-radius: 0;
    padding-block: 12pt;
  }

  .footer {
    background: #fff;
    color: #000;
    border-top: 1pt solid #000;
  }

  .footer a,
  .footer__wordmark,
  .footer__wordmark span,
  .footer__legal {
    color: #000;
  }

  .section--olive {
    background: #fff;
    color: #000;
  }

  .section--olive h2,
  .section--olive h3,
  .section--olive strong,
  .section--olive a {
    color: #000;
  }

  .figure,
  .collage {
    break-inside: avoid;
  }

  .card,
  .panel,
  .verdict {
    break-inside: avoid;
    border: 1pt solid #666;
  }

  a {
    color: #000;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-family: var(--mono);
    font-size: 8pt;
    word-break: break-all;
  }

  .btn {
    background: #fff;
    color: #000;
    border: 1pt solid #000;
  }

  .refs .src {
    color: #000;
  }
}
