* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
img {
  display: block;
}
figure {
  margin: 0;
}
figcaption {
  font: 12px/1.6 var(--mono);
  padding-top: 12px;
  color: var(--muted);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.07;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.8rem, 6.4vw, 6.1rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 500;
}
h3 {
  font-size: 1.6rem;
  font-weight: 600;
}
p {
  margin-bottom: 1.2em;
}
button,
.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  font-weight: 650;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  min-height: 48px;
  border-radius: var(--radius, 0);
}
button:hover,
.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--contrast, #fff);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
}
.wrap {
  max-width: 1320px;
  margin: auto;
  padding: 0 48px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px;
  z-index: 99;
}
.skip:focus {
  top: 12px;
}
.masthead {
  border-bottom: 1px solid var(--line);
}
.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 105px;
}
.brand {
  font-size: 23px;
  font-weight: 750;
  line-height: 1.05;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.05em;
}
.brand-mark {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.nav a[aria-current="page"] {
  text-decoration: underline;
}
.nav a:last-child {
  border: 1px solid var(--line);
  padding: 9px 15px;
}
.eyebrow {
  font: 12px/1.4 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent);
  margin-bottom: 22px;
}
.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  max-width: 630px;
  color: var(--muted);
}
.hero {
  padding-top: 72px;
  padding-bottom: 78px;
}
.hero-actions {
  display: flex;
  gap: 23px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
  margin-bottom: 32px;
}
.section-head h2 {
  margin: 0;
}
.section-head p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius, 0);
  background: var(--card);
}
.card h3 a {
  text-decoration: none;
}
.card h3 a:hover {
  text-decoration: underline;
}
.card p {
  color: var(--muted);
}
.card .eyebrow {
  color: var(--accent);
}
.card .more {
  font-size: 14px;
  font-weight: 650;
}
.strip {
  border-block: 1px solid var(--line);
  padding: 21px 0;
  font: 13px/1.5 var(--mono);
}
.strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.newsletter {
  margin-block: 62px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  border: 1px solid var(--line);
  background: var(--tint);
  border-radius: var(--radius, 0);
}
.newsletter h2 {
  font-size: 2.7rem;
}
.newsletter p {
  max-width: 480px;
}
.newsletter .email-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin: 0 0 8px;
}
input:not([type="checkbox"]):not([type="hidden"]),
textarea,
select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius, 0);
  padding: 13px 14px;
  min-height: 48px;
}
textarea {
  resize: vertical;
  min-height: 150px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.fine {
  font-size: 13px;
  color: var(--muted);
}
.footer {
  padding-block: 45px;
  border-top: 1px solid var(--line);
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 350px;
}
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 12px 22px;
  max-width: 470px;
}
.footer nav a {
  font-size: 13px;
}
.page-head {
  padding-top: 60px;
  padding-bottom: 44px;
}
.page-head h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  max-width: 1050px;
}
.crumb {
  font: 12px var(--mono);
  margin-bottom: 32px;
}
.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  padding-bottom: 65px;
}
.article-nav {
  font-size: 13px;
  align-self: start;
  position: sticky;
  top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.article-nav a {
  display: block;
  margin: 12px 0;
}
.prose {
  min-width: 0;
}
.prose h2 {
  font-size: 2rem;
  letter-spacing: -0.025em;
  margin-top: 48px;
}
.prose h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  letter-spacing: -0.015em;
}
.prose p,
.prose li {
  max-width: 76ch;
}
.prose li {
  margin-bottom: 12px;
}
.prose ul,
.prose ol {
  padding-left: 24px;
}
.prose a {
  color: var(--accent);
}
.prose blockquote {
  font-size: 1.35rem;
  border-left: 3px solid var(--accent);
  padding: 15px 0 15px 25px;
  margin: 30px 0;
}
.note {
  background: var(--tint);
  border-left: 3px solid var(--accent);
  padding: 24px;
  margin-block: 30px;
}
.note p:last-child {
  margin-bottom: 0;
}
.table-wrap {
  overflow: auto;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
td,
th {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}
th {
  font: 12px var(--mono);
  background: var(--tint);
}
.sources {
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 10px;
  font-size: 14px;
}
.simple {
  max-width: 780px;
  padding-bottom: 55px;
}
.form-stack {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.form-stack button {
  justify-self: start;
}
.status:empty {
  display: none;
}
.status {
  margin-top: 15px;
}
.filter-controls {
  display: flex;
  gap: 18px;
  align-items: end;
  margin-block: 25px;
}
.filter-controls > div {
  flex: 1;
}
.filter-controls > div:last-child {
  max-width: 270px;
}
.result-count {
  font: 12px var(--mono);
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.empty {
  padding: 30px;
  border: 1px dashed var(--line);
}
.feature-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.home .article-meta {
  display: none;
}
.badge {
  display: inline-block;
  border: 1px solid var(--line);
  font: 11px var(--mono);
  padding: 6px 10px;
  margin-bottom: 17px;
}
.article-meta {
  font: 12px/1.6 var(--mono);
  color: var(--muted);
  margin-top: 25px;
}
.related {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.print-only {
  display: none;
}
@media (max-width: 1050px) {
  .wrap {
    padding-inline: 30px;
  }
  .masthead .wrap {
    gap: 25px;
    flex-wrap: wrap;
    padding-block: 24px;
  }
  .nav {
    gap: 18px;
  }
  .article-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 35px;
  }
  .newsletter {
    gap: 35px;
    padding: 30px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-inline: 22px;
  }
  .masthead .wrap {
    gap: 22px;
    min-height: 0;
  }
  .nav {
    width: 100%;
    margin: 0;
    gap: 12px 20px;
    flex-wrap: wrap;
  }
  .nav a {
    font-size: 13px;
  }
  .nav a:last-child {
    padding: 5px 10px;
  }
  .hero {
    padding-block: 45px;
  }
  .section {
    padding-block: 42px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 20px;
  }
  .grid,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .newsletter {
    margin-block: 38px;
    padding: 26px;
    gap: 20px;
  }
  .newsletter .email-row {
    flex-wrap: wrap;
  }
  .newsletter .email-row input {
    flex: 1 1 200px;
  }
  .newsletter h2 {
    font-size: 2.1rem;
  }
  .footer .wrap {
    display: block;
  }
  .footer nav {
    justify-content: flex-start;
    margin-top: 24px;
  }
  .article-layout {
    display: block;
  }
  .article-nav {
    position: static;
    margin-bottom: 35px;
  }
  .article-nav a {
    display: inline-block;
    margin: 8px 15px 8px 0;
  }
  .page-head {
    padding-top: 35px;
  }
  .card {
    padding: 25px;
  }
  .filter-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .filter-controls > div:last-child {
    max-width: none;
  }
  h1 {
    letter-spacing: -0.04em;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
  }
  .masthead,
  .footer,
  .newsletter,
  .article-nav,
  .no-print,
  .filter-controls {
    display: none !important;
  }
  .wrap {
    max-width: none;
    padding: 0;
  }
  .article-layout {
    display: block;
  }
  .prose a {
    color: inherit;
  }
  .print-only {
    display: block;
  }
  .page-head {
    padding-top: 0;
  }
  .card,
  .note {
    break-inside: avoid;
  }
  .prose h2 {
    break-after: avoid;
  }
  input,
  textarea {
    border-color: #888 !important;
    background: white !important;
    color: black !important;
  }
}
:root {
  --paper: #f4f0e6;
  --ink: #183447;
  --muted: #475b65;
  --accent: #a3422d;
  --line: #c8c7b9;
  --tint: #e8e3d6;
  --card: #faf7ee;
  --sans: "Segoe UI", Arial, sans-serif;
  --mono: Consolas, "Courier New", monospace;
}
.brand {
  font-weight: 600;
}
.brand span:last-child {
  max-width: 140px;
}
.presence-top {
  background: var(--ink);
  color: var(--paper);
  font: 11px var(--mono);
  letter-spacing: 0.1em;
  padding: 10px 0;
}
.presence-top .wrap {
  display: flex;
  justify-content: space-between;
}
.presence-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.presence-hero h1 {
  font-weight: 400;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
}
.presence-hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.map-plate {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  background-color: #e8e3d5;
  background-image:
    linear-gradient(#18344712 1px, transparent 1px),
    linear-gradient(90deg, #18344712 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.plate-label {
  font: 11px var(--mono);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.plate-stamp {
  position: absolute;
  right: 10px;
  bottom: 67px;
  background: var(--accent);
  color: #fff;
  padding: 15px 18px;
  font: 11px var(--mono);
  transform: rotate(-7deg);
}
.atlas-routes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.route {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.route:hover {
  background: var(--tint);
}
.route b {
  display: block;
  font: 42px var(--mono);
  color: var(--accent);
  margin-bottom: 34px;
}
.route h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
}
.route p {
  font-size: 14px;
  color: var(--muted);
}
.route span {
  font: 12px var(--mono);
}
.presence-note {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--ink);
  padding-top: 35px;
}
.presence-note strong {
  font-size: 50px;
  font-weight: 400;
}
.presence-note p {
  font-size: 23px;
  line-height: 1.55;
  max-width: 800px;
}
.card {
  border-width: 1px 0 0;
  background: transparent;
  padding-left: 0;
}
.newsletter {
  border: 0;
  border-top: 3px solid var(--accent);
}
@media (max-width: 800px) {
  .presence-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .map-plate {
    max-width: 540px;
  }
  .atlas-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .presence-note {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .presence-top .wrap span:last-child {
    display: none;
  }
}
@media (max-width: 430px) {
  .atlas-routes {
    grid-template-columns: 1fr 1fr;
  }
  .route {
    padding: 20px 14px;
  }
  .route h3 {
    font-size: 19px;
  }
}
