@font-face {
  font-family: Inter;
  src: local("Inter");
  font-display: swap;
}
:root {
  --paper: #fafbf8;
  --ink: #243c30;
  --muted: #647166;
  --line: #d7ddd3;
  --green: #315940;
  --lime: #ddeb9e;
  --atlas: #eef1e9;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  max-width: 1440px;
  margin: auto;
  padding-inline: 5.2%;
}
.draft-notice {
  background: #e4ebd2;
  border-bottom: 1px solid #bdc9a4;
  color: #243c30;
}
.draft-notice p {
  margin-block: 0;
  padding-block: 13px;
  font-size: 14px;
  line-height: 1.5;
}
.site-header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand:hover {
  text-decoration: none;
}
.brand strong {
  font-size: 28px;
  letter-spacing: -1.3px;
  line-height: 1;
}
.brand-period {
  color: #7c935e;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.65px;
  margin-top: 7px;
}
.brand-mark {
  width: 34px;
  display: grid;
  gap: 5px;
  transform: skewY(-14deg);
}
.brand-mark i {
  display: block;
  height: 5px;
  background: var(--ink);
}
.brand-mark i:nth-child(2) {
  width: 23px;
}
.site-header nav {
  display: flex;
  gap: 40px;
  font-size: 14px;
}
.site-header nav span {
  margin-left: 12px;
  font-size: 12px;
  color: var(--muted);
}
.intro {
  border-top: 1px solid var(--line);
  padding: 49px 0 43px;
  display: flex;
  gap: 45px;
  justify-content: space-between;
  align-items: flex-end;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin: 0;
}
.square {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 8px;
}
h1 {
  font-weight: 450;
  letter-spacing: -2.8px;
  line-height: 1.12;
  font-size: clamp(38px, 4.1vw, 60px);
  margin: 20px 0 0;
}
h1 span {
  color: #728064;
}
.intro-aside {
  flex: 0 0 235px;
}
.intro-aside p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 21px;
}
.text-link {
  display: inline-flex;
  font-size: 14px;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.text-link span {
  font-size: 19px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 22px 0 18px;
}
.section-heading h2 {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}
.section-number {
  font-family: monospace;
  font-size: 12px;
  color: var(--muted);
  margin-right: 16px;
}
.section-meta {
  font-size: 12px;
  letter-spacing: 1.3px;
  color: var(--muted);
}
.atlas {
  background: var(--atlas);
  border: 1px solid #d9dfd3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.atlas-top {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 24px;
  border-bottom: 1px solid #dce2d7;
  font-size: 13px;
}
.map-status {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  background: var(--green);
  border-radius: 50%;
}
.map-country {
  color: var(--muted);
  margin-left: 7px;
}
.reset-button {
  background: none;
  font-size: 12px;
  padding: 10px 0 10px 15px;
}
.reset-button span {
  margin-left: 9px;
  font-size: 18px;
}
.atlas-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 396px;
  padding: 0 24px 0 0;
}
.map-stage {
  position: relative;
  min-width: 0;
  height: 410px;
  isolation: isolate;
  touch-action: pan-y;
}
#terrain {
  width: 100%;
  height: 100%;
  display: block;
}
.map-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  pointer-events: auto;
  display: grid;
  place-items: center;
  z-index: 2;
}
.map-point .point-number {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  font: 12px monospace;
  background: var(--paper);
  border: 1px solid #a6b59c;
  padding: 3px;
  border-radius: 3px;
}
.map-point[data-active] .point-number,
.map-point[aria-pressed="true"] .point-number {
  background: var(--lime);
  border-color: var(--green);
}
.map-point:focus-visible {
  outline-offset: -4px;
}
.compass {
  position: absolute;
  top: 20px;
  left: 28px;
  display: grid;
  place-items: center;
  font: 12px monospace;
  gap: 7px;
  color: #6c7a64;
}
.compass svg {
  width: 18px;
  height: 25px;
  transform: rotate(-12deg);
}
.map-caption {
  position: absolute;
  left: 28px;
  bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: var(--muted);
}
.map-error {
  position: absolute;
  inset: 30%;
  font-size: 14px;
  line-height: 1.5;
}
.preview {
  align-self: center;
  position: relative;
  z-index: 3;
  min-height: 343px;
  margin: 20px 0;
  background: var(--paper);
  box-shadow: 0 8px 30px #31402b08;
  border: 1px solid #dde3d7;
  border-radius: 3px;
}
.preview-intro {
  padding: 23px;
}
.preview-intro .eyebrow {
  font-size: 12px;
  letter-spacing: 1.1px;
}
.preview h3 {
  font-size: 31px;
  line-height: 1.14;
  font-weight: 450;
  letter-spacing: -0.8px;
  margin: 14px 0;
}
.preview-intro > p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
}
.intro-photo {
  height: 105px;
  overflow: hidden;
  position: relative;
  margin-inline: -23px;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 53%;
  filter: saturate(0.7);
}
.intro-photo span {
  position: absolute;
  bottom: 9px;
  left: 14px;
  font-size: 12px;
  color: white;
  text-shadow: 0 1px 4px black;
}
.preview-intro .explore-hint {
  font-size: 12px;
  margin: 15px 0 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.explore-hint span {
  font-size: 20px;
}
.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  padding: 0 11px 0 18px;
}
.preview-top .eyebrow {
  font-size: 12px;
  letter-spacing: 0.8px;
}
.icon-button {
  background: transparent;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.preview-image-button {
  display: block;
  padding: 0;
  width: 100%;
  height: 148px;
  position: relative;
  background: #dbe2d1;
  overflow: hidden;
}
.preview-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: saturate(0.8);
}
.preview-image-button:hover img {
  transform: scale(1.035);
}
.preview-image-button > span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  background: #203a2fbb;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
}
.preview-copy {
  padding: 18px;
}
.project-place {
  font-size: 12px;
  margin: 0;
  color: var(--muted);
}
.preview-copy h3 {
  font-size: 24px;
  margin: 9px 0;
}
.project-role {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 8px 0 18px;
}
.project-open {
  padding: 12px 14px;
  background: var(--ink);
  color: #f8faf1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.project-open:hover {
  background: #3c5a43;
}
.connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.connector path {
  fill: none;
  stroke: #6e8566;
  stroke-width: 1;
  stroke-dasharray: 3 4;
}
.atlas-bottom {
  margin: 0 24px;
  min-height: 40px;
  display: flex;
  gap: 26px;
  align-items: center;
  border-top: 1px solid #dce2d7;
  font-size: 12px;
  color: var(--muted);
}
.legend-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 7px;
}
.legend-water {
  display: inline-block;
  width: 14px;
  border-top: 2px solid #678fa7;
  vertical-align: 3px;
  margin-right: 7px;
}
.map-disclaimer {
  margin-left: auto;
}
.water-error {
  color: #865642;
}
.mobile-hint {
  display: none;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.project-tab {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 15px;
  min-height: 84px;
  padding: 17px 16px;
  background: transparent;
  position: relative;
  border-right: 1px solid var(--line);
}
.project-tab:first-child {
  padding-left: 0;
}
.project-tab:last-child {
  border: 0;
}
.project-tab:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.project-tab:hover,
.project-tab[aria-pressed="true"] {
  background: #ecf0e5;
}
.project-tab[aria-pressed="true"]:after {
  transform: scaleX(1);
}
.tab-number {
  font: 12px monospace;
  color: var(--muted);
}
.tab-copy {
  display: grid;
  gap: 6px;
}
.tab-copy strong {
  font-size: 13px;
  font-weight: 500;
}
.tab-copy small {
  font-size: 12px;
  color: var(--muted);
}
.tab-arrow {
  margin-left: auto;
  font-size: 15px;
  color: var(--muted);
}
.atlas-note {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 0;
  text-align: right;
}
.office {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.2fr;
  gap: 45px;
  padding: 47px 0 40px;
}
.office-title h2 {
  font-size: 31px;
  letter-spacing: -0.8px;
  font-weight: 450;
  line-height: 1.15;
  margin: 14px 0;
}
.office-copy p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.office-copy .muted {
  font-size: 13px;
  max-width: 350px;
}
.muted {
  color: var(--muted);
}
.services {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services li {
  font-size: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
}
.services li:first-child {
  padding-top: 2px;
  padding-bottom: 16px;
}
.services span {
  font: 12px monospace;
  color: var(--muted);
  padding-top: 2px;
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(35px, 7vw, 110px);
  border-top: 1px solid var(--line);
  padding: 55px 0 65px;
  scroll-margin-top: 24px;
}
.contact h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 450;
  letter-spacing: -1.3px;
  margin: 10px 0 26px;
}
.contact-details > p:not(.eyebrow),
.contact address {
  font-size: 16px;
  line-height: 1.75;
  font-style: normal;
}
.contact address {
  margin-top: 28px;
}
.contact a,
.contact-fallback a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-details .contact-note {
  max-width: 42ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px !important;
}
.contact-form {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 28px;
  background: var(--atlas);
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
.contact-form > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.contact-form label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #aebdae;
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.contact-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
  padding: 11px 16px;
  margin-top: 12px;
  background: var(--green);
  color: white;
  text-align: left;
  font-weight: 600;
}
.contact-form button span {
  flex: none;
}
.contact-form .contact-fallback {
  margin: 12px 0 0;
  font-size: 13px;
}
.site-footer {
  min-height: 72px;
  font-size: 12px;
  display: flex;
  gap: 25px;
  align-items: center;
  position: relative;
  color: var(--muted);
  flex-wrap: wrap;
  padding-block: 18px;
}
.site-footer p {
  margin: 0;
  max-width: 430px;
  line-height: 1.5;
}
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  margin-left: auto;
}
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer:before {
  content: "";
  position: absolute;
  left: 5.2%;
  right: 5.2%;
  top: 0;
  border-top: 1px solid var(--line);
}
.site-footer button {
  font-size: 12px;
  color: var(--muted);
  background: none;
  padding: 12px 0;
}
.site-footer button span {
  margin-left: 7px;
}
.legal-main {
  max-width: 900px;
  padding-top: 45px;
  padding-bottom: 70px;
  line-height: 1.65;
}
.legal-main h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 10px 0 20px;
}
.legal-main h2 {
  font-size: 22px;
  line-height: 1.3;
  margin: 36px 0 10px;
}
.legal-main p,
.legal-main li {
  max-width: 70ch;
}
.legal-main a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-status {
  padding: 16px 20px;
  background: #edf1e6;
  border-left: 4px solid #6b875d;
}
.legal-missing {
  padding: 16px 20px;
  background: #f4f0e7;
  border: 1px solid #d9ceb9;
}
.legal-missing p {
  margin: 0 0 8px;
}
.legal-missing ul {
  margin: 0;
}
.skip {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 20;
  padding: 12px;
  background: var(--ink);
  color: white;
}
.skip:focus {
  top: 12px;
}
dialog {
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  max-height: 90dvh;
  box-shadow: 0 30px 100px #10281c40;
}
dialog::backdrop {
  background: #15291eb3;
  backdrop-filter: blur(6px);
}
body:has(dialog[open]) {
  overflow: hidden;
}
.project-dialog {
  width: min(820px, calc(100% - 32px));
}
.dialog-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.dialog-bar .eyebrow {
  font-size: 12px;
}
.case-hero {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}
.case-body {
  padding: 30px 38px 38px;
}
.case-body h2 {
  font-weight: 450;
  font-size: 42px;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 12px 0 20px;
}
.case-lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
}
.case-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 26px 0;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}
.case-facts dt {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.case-facts dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.case-body h3 {
  font-size: 18px;
  font-weight: 500;
}
.case-body > p {
  line-height: 1.65;
}
.case-note {
  background: #eef1e7;
  padding: 15px 20px;
  font-size: 13px;
}
.case-source {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.case-image {
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
  display: block;
}
.case-image img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}
.case-image span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
}
.image-dialog {
  width: min(1000px, calc(100% - 28px));
  background: #17271e;
  color: white;
}
.image-dialog .icon-button {
  position: absolute;
  right: 8px;
  top: 8px;
  background: #17271edd;
  border-radius: 50%;
}
.image-dialog img {
  display: block;
  width: 100%;
  max-height: 78dvh;
  object-fit: contain;
}
.image-dialog p {
  padding: 0 20px;
  font-size: 12px;
}
.sources-dialog {
  width: min(650px, calc(100% - 32px));
}
.sources-content {
  padding: 20px 30px 30px;
}
.sources-content h2 {
  font-weight: 450;
  font-size: 30px;
  letter-spacing: -0.7px;
}
.sources-content p,
.sources-content li {
  font-size: 14px;
  line-height: 1.65;
}
.sources-content li {
  margin-bottom: 10px;
}
.sources-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sources-content ul {
  padding-left: 20px;
}
.sources-content h3 {
  margin-top: 28px;
  font-size: 17px;
}
@media (min-width: 1500px) {
  .atlas-body {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
  .map-stage {
    height: 450px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    padding-inline: 4%;
  }
  .intro {
    gap: 25px;
  }
  h1 {
    font-size: 46px;
  }
  .intro-aside {
    flex-basis: 185px;
  }
  .intro-aside p {
    font-size: 14px;
  }
  .atlas-body {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
  .map-stage {
    height: 400px;
  }
  .preview-intro {
    padding: 20px;
  }
  .intro-photo {
    margin-inline: -20px;
  }
  .project-tab {
    gap: 10px;
    padding-inline: 10px;
  }
  .tab-copy strong {
    font-size: 12px;
  }
  .office {
    gap: 25px;
  }
  .services li {
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: auto;
    min-height: 90px;
    flex-wrap: wrap;
    gap: 18px;
    padding-block: 18px;
  }
  .site-header nav {
    width: 100%;
    justify-content: flex-start;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0 50px;
  }
  .contact-form {
    padding: 20px;
  }
  .draft-notice p {
    font-size: 13px;
    padding-block: 12px;
  }
  .site-footer nav {
    width: 100%;
    margin-left: 0;
  }
  .legal-main {
    padding-top: 28px;
    padding-bottom: 50px;
  }
  .wrap {
    padding-inline: 22px;
  }
  .site-header {
    height: auto;
  }
  .brand strong {
    font-size: 24px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .brand-mark {
    width: 28px;
    gap: 4px;
  }
  .brand-mark i {
    height: 4px;
  }
  .site-header nav {
    gap: 22px;
    font-size: 12px;
  }
  .site-header nav span {
    display: none;
  }
  .intro {
    padding: 32px 0 30px;
    display: block;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1.1px;
  }
  h1 {
    font-size: clamp(32px, 6.6vw, 48px);
    letter-spacing: -1.65px;
    margin-top: 17px;
  }
  .intro-aside {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: 24px;
  }
  .intro-aside p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
  }
  .intro-aside .text-link {
    font-size: 12px;
    gap: 14px;
    white-space: nowrap;
    padding-bottom: 5px;
  }
  .section-heading {
    padding: 20px 0 14px;
  }
  .section-heading h2 {
    font-size: 14px;
  }
  .section-number {
    font-size: 12px;
    margin-right: 10px;
  }
  .section-meta {
    display: none;
  }
  .atlas-top {
    height: 47px;
    margin-inline: 16px;
    font-size: 12px;
  }
  .reset-button {
    font-size: 12px;
  }
  .atlas-body {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
  }
  .map-stage {
    height: 310px;
  }
  .compass {
    left: 17px;
    top: 16px;
  }
  .map-caption {
    left: 17px;
    bottom: 15px;
    font-size: 12px;
  }
  .preview {
    min-height: 0;
    margin: 0 14px 14px;
    align-self: stretch;
  }
  .preview-intro {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 88px;
    gap: 8px 16px;
  }
  .preview-intro > .eyebrow {
    grid-column: 1;
    font-size: 12px;
  }
  .preview-intro h3 {
    grid-column: 1;
    font-size: 23px;
    margin: 0;
  }
  .preview-intro h3 br {
    display: none;
  }
  .preview-intro > p:not(.explore-hint) {
    display: none;
  }
  .preview-intro .intro-photo {
    grid-column: 2;
    grid-row: 1/4;
    height: 95px;
    margin: 0;
  }
  .intro-photo span {
    display: none;
  }
  .preview-intro .explore-hint {
    font-size: 12px;
    margin: 0;
  }
  .preview-intro .explore-hint span {
    font-size: 16px;
  }
  .preview-project {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 0 14px;
    padding: 0 14px 14px;
  }
  .preview-top {
    grid-column: 1/-1;
    padding: 0;
    min-height: 36px;
  }
  .preview-top .icon-button {
    height: 36px;
    width: 36px;
  }
  .preview-image-button {
    height: 130px;
    align-self: stretch;
    border-radius: 2px;
  }
  .preview-copy {
    padding: 5px 0 0;
    min-width: 0;
  }
  .preview-copy h3 {
    font-size: 21px;
    margin: 7px 0;
  }
  .project-role {
    font-size: 12px;
    margin: 5px 0 13px;
  }
  .project-place {
    font-size: 12px;
  }
  .project-open {
    padding: 10px;
    font-size: 12px;
  }
  .atlas-bottom {
    margin: 0 16px;
    min-height: 39px;
    gap: 12px;
    flex-wrap: wrap;
    padding: 9px 0;
    font-size: 12px;
  }
  .map-disclaimer {
    font-size: 12px;
  }
  .desktop-hint {
    display: none;
  }
  .mobile-hint {
    display: inline;
  }
  .connector {
    display: none;
  }
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-tab {
    min-height: 69px;
    gap: 10px;
    padding: 14px 12px;
  }
  .project-tab:first-child {
    padding-left: 12px;
  }
  .project-tab:nth-child(2) {
    border-right: 0;
  }
  .project-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .tab-copy strong {
    font-size: 12px;
  }
  .tab-copy small {
    font-size: 12px;
  }
  .tab-number {
    font-size: 12px;
  }
  .atlas-note {
    font-size: 12px;
    text-align: left;
    line-height: 1.5;
    margin-top: 9px;
  }
  .office {
    grid-template-columns: 1fr 1fr;
    padding: 33px 0 25px;
    gap: 25px 20px;
  }
  .office-title h2 {
    font-size: 29px;
    margin-bottom: 0;
  }
  .office-copy p {
    font-size: 12px;
  }
  .office-copy .muted {
    font-size: 12px;
    margin-bottom: 0;
  }
  .services {
    grid-column: 1/-1;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .services li {
    font-size: 12px;
    flex: 1 1 100px;
    gap: 8px;
    padding: 8px 0 !important;
    line-height: 1.5;
    align-items: baseline;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-top: 18px;
    padding-bottom: 20px;
    font-size: 12px;
  }
  .site-footer:before {
    left: 22px;
    right: 22px;
  }
  .site-footer > span:nth-child(2) {
    margin-left: 0;
  }
  .site-footer button {
    font-size: 12px;
    padding: 0;
  }
  .case-body {
    padding: 20px;
  }
  .case-body h2 {
    font-size: 32px;
  }
  .case-hero {
    height: 220px;
  }
  .case-lead {
    font-size: 16px;
  }
  .case-facts {
    grid-template-columns: 1fr;
  }
  .case-body > p {
    font-size: 14px;
  }
  .dialog-bar {
    padding: 6px 10px;
  }
  .dialog-bar .eyebrow {
    font-size: 12px;
  }
  .sources-content {
    padding: 10px 20px 20px;
  }
  .sources-content h2 {
    font-size: 26px;
  }
}
@media (max-width: 380px) {
  .wrap {
    padding-inline: 16px;
  }
  .site-header nav {
    gap: 13px;
    font-size: 12px;
  }
  .brand {
    gap: 9px;
  }
  h1 {
    font-size: 30px;
    letter-spacing: -1.3px;
  }
  .map-stage {
    height: 270px;
  }
  .intro-aside {
    gap: 10px;
  }
  .intro-aside .text-link {
    font-size: 12px;
    gap: 7px;
  }
  .preview-project {
    grid-template-columns: 88px 1fr;
    gap: 0 10px;
  }
  .map-disclaimer {
    margin-left: 0;
  }
  .office {
    grid-template-columns: 1fr;
  }
  .services {
    grid-column: 1;
  }
  .site-footer:before {
    left: 16px;
    right: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Readable controls and copy at every viewport. */
.preview-intro > p {
  font-size: 16px;
}
.project-role {
  font-size: 14px;
}
.project-open,
.tab-copy strong,
.site-header nav {
  font-size: 14px;
}
.office-copy p {
  font-size: 16px;
}
.office-copy .muted {
  font-size: 16px;
}
.services li {
  font-size: 14px;
}
.preview-intro .explore-hint {
  font-size: 12px;
}
.preview {
  min-height: 365px;
}
.preview-intro .eyebrow,
.preview-top .eyebrow {
  font-size: 12px;
  letter-spacing: 0.7px;
}
.preview-top .eyebrow {
  line-height: 1.3;
}
.section-meta {
  font-size: 12px;
}
.atlas-bottom {
  font-size: 12px;
  min-height: 44px;
}
.project-tab {
  min-height: 88px;
}
.atlas-note {
  font-size: 12px;
}
.project-tab:first-child {
  padding-left: 12px;
}
.case-body > p {
  font-size: 16px;
}
.case-body .case-note {
  font-size: 14px;
}
.sources-content p,
.sources-content li {
  font-size: 16px;
}
@media (max-width: 1050px) {
  .atlas-bottom {
    gap: 14px;
  }
  .desktop-hint {
    display: none;
  }
}
@media (max-width: 760px) {
  .intro-aside p {
    font-size: 14px;
  }
  .intro-aside .text-link {
    font-size: 12px;
  }
  .eyebrow {
    letter-spacing: 0.7px;
  }
  .preview {
    min-height: 0;
  }
  .preview-intro {
    grid-template-columns: 1fr 75px;
  }
  .preview-intro .eyebrow {
    font-size: 12px;
    letter-spacing: 0;
  }
  .preview-intro .intro-photo {
    height: 110px;
  }
  .preview-intro h3 {
    font-size: 24px;
  }
  .preview-project {
    grid-template-columns: 95px 1fr;
  }
  .preview-image-button {
    height: 145px;
  }
  .preview-copy h3 {
    font-size: 22px;
  }
  .project-open {
    font-size: 14px;
    min-height: 44px;
    align-items: center;
  }
  .project-role {
    font-size: 14px;
    line-height: 1.4;
  }
  .preview-top {
    min-height: 44px;
  }
  .preview-top .icon-button {
    height: 44px;
    width: 44px;
  }
  .map-country {
    margin-left: 3px;
  }
  .map-disclaimer {
    margin-left: 0;
    width: 100%;
  }
  .atlas-bottom {
    gap: 7px 16px;
    font-size: 12px;
  }
  .mobile-hint {
    font-size: 12px;
  }
  .tab-copy strong {
    font-size: 14px;
    line-height: 1.35;
  }
  .tab-copy small {
    font-size: 12px;
    line-height: 1.4;
  }
  .project-tab {
    gap: 8px;
    padding-inline: 10px;
  }
  .tab-arrow {
    display: none;
  }
  .office {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .services {
    grid-column: 1;
    display: block;
  }
  .services li {
    font-size: 14px;
  }
  .office-copy .muted {
    max-width: none;
  }
  .site-footer {
    font-size: 12px;
    line-height: 1.5;
  }
  .site-footer button {
    font-size: 12px;
    padding: 8px 0;
  }
  .site-header nav {
    font-size: 12px;
    gap: 18px;
  }
  .atlas-note {
    font-size: 12px;
  }
  .atlas {
    scroll-margin-top: 12px;
  }
}
@media (max-width: 380px) {
  .site-header nav {
    font-size: 12px;
    gap: 12px;
  }
  .brand strong {
    font-size: 22px;
  }
  .brand small {
    font-size: 7px;
  }
  .preview-project {
    grid-template-columns: 1fr;
  }
  .preview-image-button {
    height: 120px;
  }
  .intro-aside {
    display: block;
  }
  .intro-aside .text-link {
    margin-top: 14px;
  }
  .preview-intro {
    grid-template-columns: 1fr;
  }
  .preview-intro .intro-photo {
    display: none;
  }
}

.tab-copy {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.project-tab {
  min-width: 0;
}
.skip:not(:focus) {
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
}

/* Keep the way back to the state overview visible in either map view. */
.reset-button {
  min-height: 44px;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  white-space: nowrap;
}
.reset-button:hover {
  border-color: var(--green);
}
.atlas-top {
  gap: 12px;
  height: auto;
  min-height: 62px;
  padding-block: 8px;
}
.atlas-top > div {
  min-width: 0;
  line-height: 1.5;
}
.map-point:hover .point-number {
  border-color: var(--green);
}
@media (max-width: 760px) {
  .atlas-top {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .atlas-top > div {
    flex: 1 1 100%;
    padding-top: 2px;
  }
  .reset-button {
    margin-left: auto;
    min-height: 44px;
  }
  .map-caption {
    max-width: calc(100% - 34px);
    line-height: 1.4;
  }
  .map-stage {
    overflow: hidden;
  }
}

.map-caption {
  background: #eef1e9ed;
  padding: 5px 7px;
  border-radius: 3px;
}
.compass {
  background: #eef1e9ed;
  padding: 6px;
  border-radius: 3px;
}
