@font-face {
  font-family: "Divmony Sans";
  src: url("assets/DejaVuSans.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Divmony Sans";
  src: url("assets/DejaVuSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Divmony Mono";
  src: url("assets/DejaVuSansMono.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #071014;
  --ink-soft: #0a1418;
  --surface: #101b1f;
  --paper: #f0f1ee;
  --text: #ecf0ed;
  --muted: #98a4a5;
  --faint: #647174;
  --line: rgba(219, 231, 227, 0.22);
  --line-strong: rgba(219, 231, 227, 0.46);
  --accent: #77d4bd;
  --accent-dark: #2c7e6d;
  --gutter: clamp(24px, 5.2vw, 84px);
  --content: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(68, 115, 105, 0.09), transparent 28%),
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.018) 50%, transparent calc(50% + 0.5px)),
    var(--ink);
  font-family: "Divmony Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #06100d;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.05);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 32px;
  height: 88px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 13, 16, 0.92), rgba(6, 13, 16, 0.28));
  transition: height 280ms ease, background 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-compact {
  height: 68px;
  background: rgba(6, 13, 16, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  width: 190px;
  transition: width 280ms ease;
}

.site-header.is-compact .brand {
  width: 165px;
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4.5vw, 72px);
  font-family: "Divmony Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav a,
.header-action,
.text-link {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.main-nav a::after,
.header-action::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-action:hover,
.header-action:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.header-action:hover::after,
.header-action:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  font-family: "Divmony Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-action span {
  margin-left: 14px;
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 1040px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #071014;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.08) 55%, #071014 100%),
    linear-gradient(90deg, #071014 0%, rgba(7, 16, 20, 0.96) 15%, rgba(7, 16, 20, 0.2) 48%, transparent 72%);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 12%;
  width: 88%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  animation: hero-drift 18s ease-out both;
}

@keyframes hero-drift {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(660px, 52vw);
  min-height: 100%;
  padding: 118px 0 70px calc(var(--gutter) + 46px);
}

.hero h1 {
  margin: 0 0 30px;
  max-width: 660px;
  font-size: clamp(60px, 7.2vw, 112px);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-content > p {
  max-width: 590px;
  margin: 0 0 34px;
  color: #bbc4c4;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  border-color: var(--accent);
  background: var(--accent);
  outline: none;
}

.button span {
  font-size: 20px;
  font-weight: 400;
}

.text-link {
  font-size: 14px;
}

.hero-rail {
  position: absolute;
  left: var(--gutter);
  top: 160px;
  bottom: 140px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 12px;
  border-right: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-index {
  position: absolute;
  left: var(--gutter);
  bottom: 62px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 9px;
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  color: var(--muted);
}

.hero-index i {
  width: 24px;
  height: 1px;
  background: var(--line-strong);
}

.hero-side-note {
  position: absolute;
  right: var(--gutter);
  bottom: 56px;
  z-index: 2;
  margin: 0;
  color: #a6afaf;
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  line-height: 1.8;
  text-transform: uppercase;
}

.section-shell {
  position: relative;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-index {
  position: absolute;
  left: var(--gutter);
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--faint);
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.section-index i {
  width: 24px;
  height: 1px;
  background: var(--line-strong);
}

.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "Divmony Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 8vw;
  padding-top: 150px;
  padding-bottom: 128px;
  border-bottom: 1px solid var(--line);
}

.project-lead,
.project-copy,
.principles,
.formats-heading,
.format-list,
.field-statement > :not(.section-index),
.archive-head,
.specimen-grid {
  margin-left: 62px;
}

.project h2,
.formats h2,
.archive h2,
.horizon h2,
.status h2,
.locations h2 {
  margin: 0;
  font-size: clamp(46px, 5.8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.project h2 span,
.formats h2 span,
.archive h2 span,
.horizon h2 span {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.project-copy {
  align-self: end;
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
}

.project-copy .lead-copy {
  margin-top: 0;
  color: var(--text);
  font-size: 18px;
}

.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 108px;
  border-top: 1px solid var(--line);
}

.principles > div {
  padding: 28px 34px 0 0;
}

.principles > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.principles span,
.format-number {
  display: block;
  margin-bottom: 40px;
  color: var(--faint);
  font-family: "Divmony Mono", monospace;
  font-size: 12px;
}

.principles strong {
  font-size: 20px;
}

.principles p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.formats {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 6vw;
  padding-top: 146px;
  padding-bottom: 152px;
}

.format-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.format-item {
  padding: 0 clamp(22px, 2.8vw, 42px);
}

.format-item + .format-item {
  border-left: 1px solid var(--line);
}

.format-item h3 {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.15;
}

.format-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.field {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #091216;
}

.field-frame {
  width: min(calc(100% - 2 * var(--gutter)), 1380px);
  margin: 0 auto;
  padding-top: 34px;
}

.field-frame img {
  width: 100%;
  height: min(62vw, 720px);
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.7) contrast(1.06);
}

.field-frame figcaption {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-top: 0;
  color: var(--muted);
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field-frame figcaption b {
  color: var(--accent);
  font-weight: 400;
}

.field-frame figcaption i {
  height: 1px;
  background: var(--line);
}

.field-statement {
  display: grid;
  grid-template-columns: 1.3fr 0.55fr;
  gap: 9vw;
  padding-top: 76px;
  padding-bottom: 112px;
}

.field-statement .section-index {
  top: 88px;
}

.field-statement h2 {
  margin: 0 0 0 62px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.field-statement h2 em {
  color: var(--accent);
  font-style: normal;
}

.field-statement > p {
  align-self: center;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
}

.locations {
  padding-top: 132px;
  padding-bottom: 152px;
}

.locations-header {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  align-items: end;
  gap: 4vw;
  margin-bottom: 62px;
}

.locations-header .section-label {
  align-self: start;
}

.locations h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.locations-header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.location-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  border: 1px solid var(--line);
}

.location {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.location + .location {
  border-left: 1px solid var(--line);
}

.location img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.66) contrast(1.04);
  transition: transform 900ms var(--ease), filter 600ms ease;
}

.location-wide img {
  object-position: 46% center;
}

.location:hover img {
  transform: scale(1.025);
  filter: saturate(0.88) contrast(1.04);
}

.location figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location figcaption b {
  color: var(--faint);
  font-weight: 400;
}

.archive {
  padding-top: 142px;
  padding-bottom: 156px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
}

.protocol {
  padding-top: 142px;
  padding-bottom: 148px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 12.5% 100%;
}

.protocol-head,
.protocol-list,
.protocol-quote {
  margin-left: 62px;
}

.protocol-head {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 78px;
}

.protocol h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.protocol h2 span {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.protocol-head > p {
  margin: 0 0 8px;
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
}

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

.protocol-list li {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.55fr) 1fr;
  align-items: baseline;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.protocol-list li > span {
  color: var(--accent);
  font-family: "Divmony Mono", monospace;
  font-size: 12px;
}

.protocol-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 400;
}

.protocol-list p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.protocol-quote {
  margin-top: 90px;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.8vw, 86px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.protocol-quote em {
  color: var(--accent);
  font-style: normal;
}

.archive-head {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 70px;
}

.archive-head > p {
  margin: 0 0 8px;
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 14px;
}

.specimen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 38px);
}

.specimen {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  color: #11181a;
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  transition: transform 440ms var(--ease);
}

.specimen:nth-child(2) {
  transform: translateY(26px);
}

.specimen:nth-child(2):hover {
  transform: translateY(18px);
}

.specimen:hover {
  transform: translateY(-8px);
}

.specimen header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(7, 16, 20, 0.2);
  font-family: "Divmony Mono", monospace;
}

.specimen header > span {
  font-size: 13px;
  font-weight: 700;
}

.specimen header small {
  max-width: 120px;
  color: #617071;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.specimen img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: multiply;
}

.redactions {
  display: grid;
  gap: 7px;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(7, 16, 20, 0.16);
}

.redactions i {
  display: block;
  width: 66%;
  height: 9px;
  background: #101719;
}

.redactions i:nth-child(2) {
  width: 84%;
}

.redactions i:nth-child(3) {
  width: 52%;
}

.specimen footer {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  color: #627071;
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
}

.horizon {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #071014;
}

.horizon > img {
  position: absolute;
  inset: 0 0 0 29%;
  width: 71%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.horizon-content {
  position: relative;
  z-index: 1;
  width: min(690px, 52vw);
  padding: 150px 0 140px var(--gutter);
}

.horizon h2 {
  font-size: clamp(54px, 6.4vw, 94px);
}

.horizon-content > p:last-child {
  max-width: 480px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 17px;
}

.horizon-code {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  z-index: 1;
  color: var(--muted);
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.status {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 10vw;
  padding-top: 130px;
  padding-bottom: 132px;
}

.status-main > p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.status h2 {
  margin-bottom: 26px;
  font-size: clamp(46px, 5vw, 76px);
}

.status .button {
  margin-top: 22px;
}

.status-list {
  align-self: center;
  border-top: 1px solid var(--line-strong);
}

.status-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-list span {
  color: var(--muted);
}

.status-list b {
  font-weight: 400;
}

.status-list .accent {
  color: var(--accent);
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 128px;
  padding: 28px var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: "Divmony Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-brand {
  width: 174px;
}

.footer-vk {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-vk:hover,
.footer-vk:focus-visible {
  color: var(--accent);
}

.footer-vk span {
  margin-left: 10px;
  color: var(--accent);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
  }

  .hero-content {
    width: min(690px, 68vw);
  }

  .project,
  .formats {
    grid-template-columns: 1fr;
  }

  .project-copy {
    max-width: 700px;
  }

  .format-list {
    margin-top: 20px;
  }

  .locations-header {
    grid-template-columns: 0.45fr 1.2fr 0.65fr;
  }

  .location img {
    height: 340px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .site-header,
  .site-header.is-compact {
    grid-template-columns: 148px 1fr;
    height: 64px;
    gap: 16px;
  }

  .brand,
  .site-header.is-compact .brand {
    width: 148px;
  }

  .main-nav {
    display: none;
  }

  .header-action {
    justify-self: end;
    font-size: 11px;
  }

  .hero {
    min-height: 830px;
    height: auto;
    padding-top: 64px;
  }

  .hero::after {
    background: linear-gradient(180deg, transparent 20%, rgba(7, 16, 20, 0.24) 40%, #071014 70%);
  }

  .hero-media {
    inset: 64px 0 auto;
    width: 100%;
    height: 53vh;
    min-height: 390px;
    object-position: 58% center;
  }

  .hero-content {
    justify-content: flex-end;
    width: 100%;
    min-height: 830px;
    padding: 410px var(--gutter) 76px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(52px, 17vw, 72px);
  }

  .hero-content > p {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-rail,
  .hero-side-note {
    display: none;
  }

  .hero-index {
    display: flex;
  }

  .section-index {
    display: none;
  }

  .project,
  .formats,
  .locations,
  .protocol,
  .archive,
  .status {
    padding-top: 92px;
    padding-bottom: 94px;
  }

  .project-lead,
  .project-copy,
  .principles,
  .formats-heading,
  .format-list,
  .field-statement > :not(.section-index),
  .archive-head,
  .specimen-grid,
  .protocol-head,
  .protocol-list,
  .protocol-quote {
    margin-left: 0;
  }

  .project h2,
  .formats h2,
  .archive h2,
  .protocol h2,
  .horizon h2,
  .status h2,
  .locations h2 {
    font-size: clamp(40px, 12.5vw, 58px);
  }

  .project-copy {
    padding-left: 0;
    border-left: 0;
  }

  .principles,
  .format-list {
    grid-template-columns: 1fr;
    margin-top: 64px;
    border-left: 0;
  }

  .principles > div,
  .principles > div + div,
  .format-item,
  .format-item + .format-item {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles span,
  .format-number {
    margin-bottom: 20px;
  }

  .field-frame {
    width: calc(100% - 24px);
    padding-top: 12px;
  }

  .field-frame img {
    height: 62vh;
    min-height: 460px;
    object-position: 63% center;
  }

  .field-frame figcaption {
    grid-template-columns: auto 1fr;
  }

  .field-frame figcaption i,
  .field-frame figcaption span:last-child {
    display: none;
  }

  .field-statement {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 58px;
    padding-bottom: 78px;
  }

  .field-statement h2 {
    margin: 0;
    font-size: clamp(39px, 12vw, 58px);
  }

  .field-statement > p {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .locations-header,
  .protocol-head,
  .archive-head,
  .status {
    grid-template-columns: 1fr;
  }

  .locations-header {
    gap: 18px;
  }

  .protocol-head {
    gap: 32px;
  }

  .protocol-head > p {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .protocol-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px 18px;
    padding: 22px 0;
  }

  .protocol-list p {
    grid-column: 2;
  }

  .protocol-quote {
    margin-top: 70px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .location-strip {
    grid-template-columns: 1fr;
  }

  .location + .location {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .location img {
    height: 330px;
  }

  .archive-head {
    gap: 32px;
  }

  .archive-head > p {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specimen-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .specimen:nth-child(2),
  .specimen:nth-child(2):hover {
    transform: none;
  }

  .specimen {
    padding: 16px;
  }

  .horizon {
    min-height: 760px;
  }

  .horizon > img {
    inset: 0;
    width: 100%;
    height: 54%;
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }

  .horizon-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    min-height: 760px;
    padding: 390px var(--gutter) 92px;
  }

  .horizon-code {
    left: var(--gutter);
    right: auto;
    bottom: 26px;
  }

  .status {
    gap: 64px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

}

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