:root {
  --paper: #f3f0e7;
  --paper-deep: #e7e3d7;
  --ink: #17221d;
  --ink-soft: #4f5a53;
  --forest: #183c2d;
  --forest-dark: #10281e;
  --lichen: #9cab7c;
  --clay: #b75232;
  --fog: #dbe1dc;
  --line: rgba(23, 34, 29, .24);
  --white: #fff;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shell: 1280px;
  --wide: 1440px;
  --reading: 760px;
  --gutter: clamp(1.15rem, 3vw, 3rem);
  --space-1: clamp(.75rem, 1vw, 1rem);
  --space-2: clamp(1.25rem, 2vw, 2rem);
  --space-3: clamp(2rem, 4vw, 4rem);
  --space-4: clamp(4rem, 8vw, 8rem);
  --space-5: clamp(6rem, 11vw, 11rem);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure,
p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  letter-spacing: -.035em;
}

h3 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  letter-spacing: -.015em;
}

a {
  color: inherit;
  text-decoration-color: var(--clay);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  text-decoration-color: currentColor;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

::selection {
  background: var(--lichen);
  color: var(--forest-dark);
}

.shell,
.shell-wide,
.shell--reading {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.shell-wide {
  max-width: var(--wide);
}

.shell--reading {
  max-width: var(--reading);
}

.site-main {
  overflow: clip;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--forest-dark);
  font: 700 .78rem/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.folio,
.section-index,
.image-frame figcaption,
.image-marker {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.35rem;
  color: var(--forest);
}

.eyebrow--light {
  color: var(--lichen);
}

.section-index {
  color: var(--clay);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.25rem .75rem;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  font: 700 .72rem/1 var(--sans);
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--forest-dark);
}

.button--outline {
  background: transparent;
  color: var(--forest);
}

.button--outline:hover {
  background: var(--forest);
  color: var(--white);
}

.button--paper {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--forest-dark);
}

.button--paper:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .6rem;
  font: 700 .75rem/1.2 var(--sans);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--clay);
  font-size: 1rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(.25rem);
}

.text-link--light {
  color: var(--white);
}

.image-frame {
  position: relative;
  margin-bottom: 0;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .7rem;
  border-top: 1px solid currentColor;
  margin-top: .65rem;
  color: var(--ink-soft);
}

.field-strip {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  background: var(--forest-dark);
  color: var(--fog);
  font: 650 .63rem/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field-strip p {
  margin: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.masthead {
  display: grid;
  min-height: 106px;
  align-items: center;
  grid-template-columns: minmax(250px, .9fr) minmax(480px, 1.5fr) auto;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1;
  text-decoration: none;
}

.wordmark__text {
  letter-spacing: -.025em;
}

.wordmark__mark {
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid currentColor;
  place-content: center;
  transform: rotate(45deg);
}

.wordmark__mark span {
  display: block;
  width: 14px;
  height: 1px;
  margin: 2px 0;
  background: currentColor;
}

.custom-logo-link img {
  width: auto;
  max-height: 62px;
}

.site-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.35rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.site-nav a,
.header-search {
  font: 700 .68rem/1.2 var(--sans);
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  display: block;
  padding: .75rem .25rem;
}

.site-nav a::after {
  position: absolute;
  right: .25rem;
  bottom: .4rem;
  left: .25rem;
  height: 1px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -.8rem;
  min-width: 210px;
  padding: .65rem;
  border: 1px solid var(--line);
  margin: 0;
  background: var(--paper);
  box-shadow: 0 15px 35px rgba(16, 40, 30, .1);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(.35rem);
  transition: opacity 150ms ease, transform 150ms ease;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-search {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
}

.header-search svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.nav-toggle {
  display: none;
}

.home-hero {
  display: grid;
  min-height: min(790px, calc(100vh - 137px));
  padding-block: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 5.5rem);
}

.home-hero__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2rem;
}

.folio {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 7vw, 6.5rem);
  color: var(--ink-soft);
}

.home-hero h1 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.55rem, 6.6vw, 7rem);
}

.home-hero__deck {
  max-width: 30rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.home-hero__figure {
  display: grid;
  min-height: 560px;
  grid-template-rows: 1fr auto;
}

.home-hero__figure::before {
  position: absolute;
  z-index: -1;
  top: -1.25rem;
  right: -1.25rem;
  width: 70%;
  height: 68%;
  border-top: 1px solid var(--lichen);
  border-right: 1px solid var(--lichen);
  content: "";
}

.editorial-premise {
  display: grid;
  padding-block: var(--space-5);
  border-top: 1px solid var(--line);
  grid-template-columns: .55fr 3fr 2.3fr;
  gap: var(--space-3);
}

.editorial-premise h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.editorial-premise__copy {
  align-self: end;
  margin-bottom: .6rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.method-ledger {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.method-ledger__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.method-ledger__item {
  min-height: 260px;
  padding: 2rem clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
}

.method-ledger__item:last-child {
  border-right: 1px solid var(--line);
}

.method-ledger__item > span {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--clay);
  font: 700 .68rem/1 var(--sans);
  letter-spacing: .12em;
}

.method-ledger__item h3 {
  margin-bottom: .75rem;
}

.method-ledger__item p {
  max-width: 22rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .95rem;
}

.focus-feature {
  display: grid;
  padding-block: var(--space-5);
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: clamp(3rem, 7vw, 8rem);
}

.focus-feature__image {
  min-height: 620px;
}

.image-marker {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .5rem .65rem;
  margin: 0;
  background: rgba(243, 240, 231, .92);
}

.focus-feature__copy {
  align-self: center;
}

.focus-feature__copy .section-index {
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4rem;
}

.focus-feature__copy h2 {
  margin-bottom: 1.5rem;
}

.focus-feature__copy > p:not(.eyebrow, .section-index) {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

.field-desk {
  padding-block: var(--space-4) var(--space-5);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 1fr 2fr auto;
  gap: 2rem;
}

.section-heading .section-index,
.section-heading .eyebrow,
.section-heading h2 {
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.story-list {
  border-bottom: 1px solid var(--ink);
}

.story-row {
  display: grid;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}

.story-row:first-child {
  border-top: 0;
}

.story-row__image {
  min-height: 230px;
  overflow: hidden;
}

.story-row__image img {
  transition: transform 400ms ease;
}

.story-row:hover .story-row__image img {
  transform: scale(1.02);
}

.story-row__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.story-row__meta,
.story-row__foot {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font: 700 .67rem/1.2 var(--sans);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.story-row__meta {
  margin-bottom: 1rem;
}

.story-row__meta .eyebrow {
  margin: 0;
  text-decoration: none;
}

.story-row h3 {
  max-width: 26ch;
  margin-bottom: .85rem;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.story-row h3 a {
  text-decoration: none;
}

.story-row__copy > p {
  max-width: 46rem;
  color: var(--ink-soft);
}

.story-row__foot {
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.empty-desk {
  display: grid;
  min-height: 330px;
  align-items: center;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3);
}

.empty-desk__specimen,
.content-none__mark {
  display: grid;
  width: 140px;
  height: 140px;
  border: 1px solid var(--line);
  place-content: center;
  transform: rotate(45deg);
}

.empty-desk__specimen span,
.content-none__mark span {
  display: block;
  width: 70px;
  height: 1px;
  margin: .45rem;
  background: var(--clay);
}

.empty-desk h3 {
  margin-bottom: .8rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.empty-desk p {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.habitat-window {
  display: grid;
  min-height: 920px;
  padding-block: var(--space-4) var(--space-5);
  border-top: 1px solid var(--line);
  grid-template-columns: 3fr 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.habitat-window__copy {
  align-self: center;
  padding-right: 1rem;
  grid-row: 1 / 3;
}

.habitat-window__copy .section-index {
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4rem;
}

.habitat-window__copy h2 {
  margin-bottom: 1.25rem;
}

.habitat-window__copy > p:not(.eyebrow, .section-index) {
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

.habitat-window__large {
  grid-column: 2 / 4;
  grid-row: 1;
}

.habitat-window__small {
  width: 78%;
  justify-self: end;
  grid-column: 2 / 4;
  grid-row: 2;
}

.issue-register {
  padding-block: var(--space-4);
  background: var(--forest);
  color: var(--white);
}

.issue-register__inner {
  display: grid;
  grid-template-columns: 1.35fr 2.65fr;
  gap: var(--space-3);
}

.issue-register__inner > div h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.issue-register ul {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .35);
  margin: 0;
  list-style: none;
}

.issue-register li {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.issue-register li a {
  display: grid;
  min-height: 140px;
  align-items: center;
  padding: 1rem 0;
  grid-template-columns: 70px 1.4fr 1fr;
  gap: 1rem;
  text-decoration: none;
}

.issue-register li span,
.issue-register li small {
  align-self: center;
  color: var(--lichen);
  font: 700 .68rem/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.issue-register li strong {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.issue-register li small {
  color: var(--fog);
  letter-spacing: .07em;
  line-height: 1.5;
}

.home-editor-content {
  padding-block: var(--space-4);
}

.site-footer {
  background: var(--forest-dark);
  color: var(--white);
}

.site-footer__lead {
  display: grid;
  align-items: end;
  padding-block: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  grid-template-columns: 1fr 2.7fr 1fr;
  gap: var(--space-3);
}

.site-footer__lead .eyebrow {
  align-self: start;
}

.site-footer__statement h2 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.6rem, 5.5vw, 5.8rem);
}

.site-footer__statement p {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--fog);
}

.site-footer__base {
  display: grid;
  align-items: center;
  padding-block: 2.4rem;
  grid-template-columns: 1.2fr 1.8fr auto;
  gap: 2rem;
}

.wordmark--footer {
  color: var(--white);
}

.site-footer__base .menu {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__base nav a,
.site-footer__legal {
  color: var(--fog);
  font: 650 .65rem/1.4 var(--sans);
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__legal {
  max-width: 270px;
  margin: 0;
  text-align: right;
}

.page-main,
.about-main,
.habitats-main,
.work-main,
.archive-main,
.error-main {
  padding-block: var(--space-4) var(--space-5);
}

.page-header,
.archive-header,
.habitats-hero {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--space-3);
}

.page-header h1,
.archive-header h1,
.habitats-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.page-header__deck,
.archive-header > p:not(.eyebrow),
.archive-header__description,
.habitats-hero > p:not(.eyebrow) {
  max-width: 48rem;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.page-feature {
  margin-bottom: var(--space-3);
}

.page-feature img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.entry-content {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.entry-content > * + * {
  margin-top: 1.45em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2.2em;
  margin-bottom: .7em;
}

.entry-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.entry-content h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.entry-content a {
  color: var(--forest);
}

.entry-content .alignwide {
  width: min(1200px, calc(100vw - (var(--gutter) * 2)));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content blockquote,
.wp-block-quote {
  padding-left: 1.5rem;
  border-left: 3px solid var(--clay);
  margin-block: 2.5rem;
  margin-inline: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  line-height: 1.45;
}

.entry-content blockquote cite {
  font: 700 .68rem/1.4 var(--sans);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.entry-content .wp-block-image figcaption,
.entry-content .wp-block-gallery figcaption {
  color: var(--ink-soft);
  font: .72rem/1.5 var(--sans);
}

.entry-content .is-style-deck {
  color: var(--ink-soft);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.entry-content .is-style-field-note {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--lichen);
  background: var(--paper-deep);
}

.entry-content .is-style-field-note > :last-child {
  margin-bottom: 0;
}

.entry-content .is-style-specimen {
  padding: .7rem;
  border: 1px solid var(--line);
}

.has-drop-cap:not(:focus)::first-letter {
  float: left;
  margin: .05em .12em 0 0;
  color: var(--forest);
  font-size: 4.7em;
  line-height: .8;
}

.archive-main {
  min-height: 70vh;
}

.archive-header--journal {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 2fr;
}

.archive-header--journal .eyebrow {
  grid-column: 1;
}

.archive-header--journal h1 {
  grid-column: 1;
}

.archive-header--journal > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / 3;
}

.pagination,
.page-numbers {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
}

.nav-links,
ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 2.5rem 0 0;
  margin: 0;
  list-style: none;
}

.nav-links .page-numbers,
ul.page-numbers a,
ul.page-numbers span {
  display: grid;
  min-width: 44px;
  height: 44px;
  padding: .5rem;
  border: 1px solid var(--line);
  place-items: center;
  text-decoration: none;
}

.nav-links .current,
ul.page-numbers .current {
  background: var(--forest);
  color: var(--white);
}

.content-none {
  display: grid;
  max-width: 760px;
  min-height: 420px;
  align-content: center;
  justify-items: start;
  margin-inline: auto;
}

.content-none__mark {
  width: 90px;
  height: 90px;
  margin: 0 0 2rem 1rem;
}

.content-none__mark span {
  width: 42px;
}

.content-none h2 {
  margin-bottom: .75rem;
}

.content-none p {
  color: var(--ink-soft);
}

.search-form__label {
  display: block;
  margin-bottom: .7rem;
  font: 700 .7rem/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.search-form__row {
  display: flex;
}

.search-field {
  width: min(100%, 520px);
  min-height: 52px;
  padding: .75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
}

.search-header .search-form {
  max-width: 700px;
  margin-top: 2rem;
  margin-left: auto;
}

.error-main {
  display: grid;
  min-height: 70vh;
  align-items: center;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-4);
}

.error-main__code {
  color: var(--paper-deep);
  font: 500 clamp(8rem, 25vw, 23rem)/.7 var(--serif);
  letter-spacing: -.09em;
}

.error-main__copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6vw, 6rem);
}

.error-main__copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--ink-soft);
}

.error-main__copy .search-form {
  margin: 2rem 0;
}

.story-header {
  padding-block: var(--space-4) var(--space-3);
}

.story-header__label {
  display: flex;
  justify-content: space-between;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--space-3);
  color: var(--ink-soft);
  font: 700 .7rem/1.2 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-header__label .eyebrow {
  margin: 0;
  text-decoration: none;
}

.story-header h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
}

.story-header__deck {
  max-width: 54rem;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.45;
}

.story-byline {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  padding-top: 1.5rem;
}

.story-byline div {
  display: grid;
  min-width: 180px;
  gap: .25rem;
}

.story-byline span {
  color: var(--ink-soft);
  font: 700 .65rem/1.2 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-byline strong,
.story-byline a,
.story-byline time {
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
}

.story-hero {
  max-height: 82vh;
}

.story-hero img {
  max-height: calc(82vh - 35px);
}

.story-body {
  display: grid;
  padding-block: var(--space-4);
  grid-template-columns: minmax(150px, 1fr) minmax(0, 3.3fr) minmax(0, 1fr);
  gap: var(--space-3);
}

.story-content {
  grid-column: 2;
}

.story-aside {
  position: sticky;
  top: 2rem;
  align-self: start;
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
  color: var(--ink-soft);
  font: .72rem/1.6 var(--sans);
}

.story-aside .eyebrow {
  margin-bottom: .6rem;
}

.story-aside a {
  display: block;
  margin-bottom: .2rem;
  color: var(--forest);
}

.story-aside__tags {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.story-aside__top {
  margin-top: 2rem;
}

.story-footer {
  padding-block: 2rem;
  border-block: 1px solid var(--ink);
}

.story-footer .eyebrow {
  margin-bottom: .75rem;
}

.story-footer__links {
  display: flex;
  gap: 1.5rem;
}

.story-footer__links a,
.story-footer__links button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--forest);
  font: 700 .72rem/1 var(--sans);
  letter-spacing: .08em;
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-underline-offset: .25em;
  text-transform: uppercase;
  cursor: pointer;
}

.story-navigation {
  display: grid;
  padding-block: var(--space-3) var(--space-5);
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.story-navigation > div:last-child {
  text-align: right;
}

.story-navigation span {
  display: block;
  margin-bottom: .6rem;
  color: var(--ink-soft);
  font: 700 .65rem/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-navigation a {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.about-hero,
.work-hero {
  display: grid;
  align-items: end;
  padding-block: var(--space-4);
  grid-template-columns: 2fr 1fr;
  gap: var(--space-4);
}

.about-hero h1,
.work-hero h1 {
  max-width: 11ch;
  margin-bottom: 0;
}

.about-hero__deck,
.work-hero > p {
  margin-bottom: .8rem;
  color: var(--ink-soft);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.45;
}

.about-image {
  max-height: 76vh;
  margin-bottom: var(--space-5);
}

.about-image img {
  max-height: calc(76vh - 36px);
  object-position: center 56%;
}

.about-statement {
  display: grid;
  padding-bottom: var(--space-5);
  grid-template-columns: .5fr 2.5fr 2fr;
  gap: var(--space-3);
}

.about-statement h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.about-statement__body {
  align-self: end;
  color: var(--ink-soft);
}

.principles {
  display: grid;
  padding-block: var(--space-4) var(--space-5);
  border-top: 1px solid var(--ink);
  grid-template-columns: 1fr 2fr;
  gap: var(--space-4);
}

.principles header h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.principles__list {
  padding: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  list-style: none;
}

.principles__list li {
  display: grid;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px 1fr;
}

.principles__list li > span {
  padding-top: .45rem;
  color: var(--clay);
  font: 700 .67rem/1 var(--sans);
  letter-spacing: .1em;
}

.principles__list h3 {
  margin-bottom: .5rem;
}

.principles__list p {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.about-contact {
  display: grid;
  align-items: end;
  padding: var(--space-3);
  background: var(--forest);
  color: var(--white);
  grid-template-columns: 2fr 1.5fr auto;
  gap: var(--space-3);
}

.about-contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.about-contact > p {
  margin-bottom: .4rem;
  color: var(--fog);
}

.habitats-hero {
  display: grid;
  align-items: end;
  padding-block: var(--space-3);
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3);
}

.habitats-hero .eyebrow {
  grid-column: 1;
}

.habitats-hero h1 {
  grid-column: 1 / 3;
}

.habitats-hero > p:not(.eyebrow) {
  grid-column: 2;
}

.habitat-chapter {
  display: grid;
  min-height: 750px;
  padding-block: var(--space-4);
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 1fr);
  gap: var(--space-4);
}

.habitat-chapter > figure {
  min-height: 600px;
}

.habitat-chapter__copy {
  align-self: center;
  padding-right: var(--gutter);
}

.habitat-chapter__copy .section-index {
  display: block;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4rem;
}

.habitat-chapter__copy h2 {
  margin-bottom: 1rem;
}

.habitat-chapter__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.habitat-chapter--coasts {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.8fr);
}

.habitat-chapter--coasts figure {
  grid-column: 2;
  grid-row: 1;
}

.habitat-chapter--coasts .habitat-chapter__copy {
  padding-right: 0;
  padding-left: var(--gutter);
  grid-column: 1;
  grid-row: 1;
}

.habitat-index {
  padding-block: var(--space-4);
  border-top: 1px solid var(--ink);
}

.habitat-index h2 {
  margin-bottom: 2rem;
}

.habitat-index ul {
  display: grid;
  padding: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.habitat-index li {
  min-height: 180px;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.habitat-index li:first-child {
  border-left: 1px solid var(--line);
}

.habitat-index li span {
  display: block;
  margin-bottom: 4rem;
  color: var(--clay);
  font: 700 .67rem/1 var(--sans);
}

.formats {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
  margin-bottom: var(--space-5);
  grid-template-columns: 1fr 1fr;
}

.formats article {
  min-height: 390px;
  padding: var(--space-3);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.formats article > span {
  display: block;
  margin-bottom: 4rem;
  color: var(--clay);
  font: 700 .67rem/1 var(--sans);
}

.formats article h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.formats article > p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.work-method {
  display: grid;
  min-height: 650px;
  margin-bottom: var(--space-5);
  background: var(--forest);
  color: var(--white);
  grid-template-columns: 1.3fr 1fr;
}

.work-method__image img {
  object-position: center;
}

.work-method__copy {
  align-self: center;
  padding: var(--space-3);
}

.work-method__copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.work-method__copy > p:not(.eyebrow) {
  color: var(--fog);
}

.contact-ledger {
  display: grid;
  padding-block: var(--space-3) var(--space-5);
  border-top: 1px solid var(--ink);
  grid-template-columns: 1fr 2fr;
  gap: var(--space-4);
}

.contact-ledger__intro h2 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.contact-ledger__items {
  border-top: 1px solid var(--line);
}

.contact-ledger__items article {
  display: grid;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 60px 1fr 1.4fr;
  gap: 1rem;
}

.contact-ledger__items article > span {
  padding-top: .35rem;
  color: var(--clay);
  font: 700 .67rem/1 var(--sans);
}

.contact-ledger__items h3,
.contact-ledger__items p {
  margin-bottom: 0;
}

.contact-ledger__items p {
  color: var(--ink-soft);
}

.contact-action {
  display: grid;
  align-items: end;
  padding: var(--space-3);
  margin-bottom: var(--space-5);
  background: var(--forest);
  color: var(--white);
  grid-template-columns: 1.6fr 1.4fr auto;
  gap: var(--space-3);
}

.contact-action h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.contact-action > p {
  margin-bottom: .4rem;
  color: var(--fog);
}

.field-report__header {
  padding-block: var(--space-4) var(--space-3);
}

.field-report__folio {
  display: flex;
  justify-content: space-between;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--space-3);
  color: var(--ink-soft);
  font: 700 .68rem/1 var(--sans);
  letter-spacing: .11em;
  text-transform: uppercase;
}

.field-report__header h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 8vw, 8rem);
}

.field-report__image {
  height: min(84vh, 900px);
  margin-inline: var(--gutter);
}

.field-report__rule {
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-3);
  color: var(--ink-soft);
  font: 700 .68rem/1 var(--sans);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.field-report__rule .eyebrow {
  margin: 0;
  text-decoration: none;
}

.photo-essay-main {
  background: #101411;
  color: var(--white);
}

.photo-essay__header {
  display: grid;
  align-items: end;
  padding-block: var(--space-4);
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3);
}

.photo-essay__header h1 {
  max-width: 10ch;
  margin-bottom: 0;
}

.photo-essay__header > p {
  color: var(--fog);
  font-size: 1.25rem;
}

.photo-essay__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .35);
  color: var(--fog);
  font: 700 .68rem/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  grid-column: 1 / 3;
}

.photo-essay__hero {
  height: calc(100vh - 100px);
  margin: 0;
}

.photo-essay__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-essay__content {
  padding-block: var(--space-4) var(--space-5);
}

.photo-essay__content a,
.photo-essay__content .wp-block-image figcaption,
.photo-essay__content .wp-block-gallery figcaption {
  color: var(--lichen);
}

@media (max-width: 1100px) {
  .masthead {
    grid-template-columns: minmax(230px, .8fr) minmax(430px, 1.5fr) auto;
    gap: 1rem;
  }

  .site-nav .menu {
    gap: .8rem;
  }

  .header-search span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }

  .editorial-premise {
    grid-template-columns: .3fr 2fr 1.7fr;
  }

  .site-footer__base {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    text-align: left;
    grid-column: 1 / 3;
  }

  .habitat-window {
    min-height: 760px;
  }
}

@media (max-width: 900px) {
  .masthead {
    min-height: 84px;
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    min-width: 82px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    gap: .7rem;
    padding: 0;
    border: 0;
    background: transparent;
    font: 700 .68rem/1 var(--sans);
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .nav-toggle__lines {
    display: grid;
    gap: 5px;
  }

  .nav-toggle__lines span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-open .nav-toggle__lines span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .nav-toggle__lines span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    padding-bottom: 1rem;
    grid-column: 1 / 3;
  }

  .js .site-nav {
    display: none;
  }

  .js .nav-open .site-nav {
    display: block;
    height: calc(100vh - 115px);
  }

  .site-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.6rem, 6vw, 3rem);
    font-weight: 500;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .sub-menu a {
    font-size: 1.25rem;
  }

  .header-search {
    position: absolute;
    right: 7rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    padding-bottom: 0;
  }

  .folio {
    margin-bottom: 3rem;
  }

  .home-hero h1 {
    max-width: 10ch;
  }

  .home-hero__figure {
    min-height: 60vw;
  }

  .editorial-premise {
    grid-template-columns: 50px 1fr;
  }

  .editorial-premise__copy {
    max-width: 40rem;
    grid-column: 2;
  }

  .focus-feature,
  .site-footer__lead,
  .about-statement {
    grid-template-columns: 1fr;
  }

  .focus-feature__image {
    min-height: 68vw;
  }

  .focus-feature__copy {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 1rem;
  }

  .focus-feature__copy .section-index {
    padding: 0;
    border: 0;
    grid-row: 1 / 5;
  }

  .focus-feature__copy > *:not(.section-index) {
    grid-column: 2;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
  }

  .section-heading h2 {
    grid-column: 1 / 3;
  }

  .habitat-window {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .habitat-window__copy {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .habitat-window__large {
    min-height: 60vw;
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .habitat-window__small {
    display: none;
  }

  .site-footer__lead .text-link {
    justify-self: start;
  }

  .about-statement__body {
    max-width: 42rem;
    margin-left: 50px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .about-contact {
    grid-template-columns: 1fr 1fr;
  }

  .about-contact .button {
    justify-self: start;
    grid-column: 1 / 3;
  }

  .habitat-chapter,
  .habitat-chapter--coasts {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .habitat-chapter--coasts figure,
  .habitat-chapter--coasts .habitat-chapter__copy {
    padding-inline: 0;
    grid-column: 1;
    grid-row: auto;
  }

  .habitat-chapter > figure {
    min-height: 68vw;
  }

  .habitat-index ul {
    grid-template-columns: 1fr 1fr;
  }

  .habitat-index li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .work-method {
    grid-template-columns: 1fr;
  }

  .contact-ledger,
  .contact-action {
    grid-template-columns: 1fr;
  }

  .contact-action .button {
    justify-self: start;
  }

  .work-method__image {
    min-height: 60vw;
  }

  .story-body {
    grid-template-columns: 1fr minmax(0, 4fr);
  }

  .story-content {
    grid-column: 2;
  }

  .photo-essay__header {
    grid-template-columns: 1fr;
  }

  .photo-essay__meta {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 1rem;
  }

  body {
    font-size: 17px;
  }

  .field-strip__date {
    display: none;
  }

  .field-strip {
    justify-content: center;
    text-align: center;
  }

  .masthead {
    min-height: 76px;
  }

  .wordmark {
    gap: .55rem;
    font-size: 1rem;
  }

  .wordmark__mark {
    width: 25px;
    height: 25px;
  }

  .header-search {
    display: none;
  }

  .home-hero {
    padding-top: 2rem;
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.4rem);
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: .65rem;
  }

  .home-hero__figure {
    min-height: 82vw;
  }

  .image-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }

  .editorial-premise {
    grid-template-columns: 32px 1fr;
  }

  .method-ledger__inner {
    grid-template-columns: 1fr;
  }

  .method-ledger__item,
  .method-ledger__item:last-child {
    min-height: 0;
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .method-ledger__item > span {
    margin-bottom: 2rem;
  }

  .focus-feature__copy,
  .section-heading {
    display: block;
  }

  .focus-feature__copy .section-index {
    margin-bottom: 2rem;
  }

  .focus-feature__copy > *:not(.section-index),
  .section-heading h2 {
    grid-column: auto;
  }

  .section-heading .text-link {
    margin-top: 1rem;
  }

  .story-row {
    grid-template-columns: 1fr;
  }

  .story-row__image {
    min-height: 58vw;
  }

  .empty-desk {
    grid-template-columns: 1fr;
  }

  .empty-desk__specimen {
    width: 100px;
    height: 100px;
    margin-left: 1rem;
  }

  .empty-desk__specimen span {
    width: 48px;
  }

  .habitat-window {
    display: block;
  }

  .habitat-window__copy {
    padding-bottom: 2.5rem;
  }

  .habitat-window__copy .section-index {
    margin-bottom: 2rem;
  }

  .habitat-window__large {
    min-height: 76vw;
  }

  .issue-register__inner,
  .site-footer__base,
  .about-hero,
  .work-hero,
  .about-contact,
  .habitats-hero,
  .archive-header--journal,
  .error-main,
  .formats,
  .contact-ledger,
  .contact-action,
  .story-navigation {
    grid-template-columns: 1fr;
  }

  .contact-ledger__items article {
    grid-template-columns: 38px 1fr;
  }

  .contact-ledger__items article p {
    grid-column: 2;
  }

  .issue-register li {
    display: block;
  }

  .issue-register li a {
    min-height: 120px;
    grid-template-columns: 36px 1fr;
  }

  .issue-register li small {
    grid-column: 2;
  }

  .site-footer__base .menu {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__legal {
    text-align: left;
    grid-column: 1;
  }

  .page-header__deck,
  .archive-header > p:not(.eyebrow),
  .archive-header__description,
  .habitats-hero > p:not(.eyebrow) {
    margin-left: 0;
  }

  .archive-header--journal .eyebrow,
  .archive-header--journal h1,
  .archive-header--journal > p:not(.eyebrow),
  .habitats-hero .eyebrow,
  .habitats-hero h1,
  .habitats-hero > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .error-main__code {
    font-size: 10rem;
  }

  .story-header h1,
  .field-report__header h1 {
    font-size: clamp(3.25rem, 16vw, 5.6rem);
  }

  .story-byline {
    justify-content: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .story-body {
    display: block;
  }

  .story-aside {
    position: static;
    margin-bottom: 2.5rem;
  }

  .story-navigation > div:last-child {
    text-align: left;
  }

  .about-statement__body {
    margin-left: 32px;
  }

  .principles__list li {
    grid-template-columns: 48px 1fr;
  }

  .about-contact .button {
    grid-column: 1;
  }

  .habitat-index ul {
    grid-template-columns: 1fr;
  }

  .habitat-index li,
  .habitat-index li:nth-child(3) {
    min-height: 130px;
    border-left: 1px solid var(--line);
  }

  .habitat-index li span {
    margin-bottom: 2.5rem;
  }

  .formats article {
    min-height: 320px;
    padding: 2rem 1.25rem;
  }

  .formats article > span {
    margin-bottom: 2.5rem;
  }

  .field-report__image {
    height: 70vh;
    margin-inline: 0;
  }

  .photo-essay__hero {
    height: 72vh;
  }

  .search-form__row {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .field-strip,
  .site-nav,
  .nav-toggle,
  .header-search,
  .site-footer,
  .story-aside,
  .story-footer,
  .story-navigation {
    display: none !important;
  }

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

  .masthead {
    min-height: 55px;
  }

  .story-body {
    display: block;
  }

  .story-content {
    max-width: none;
  }

  a {
    color: #000;
  }
}
