:root {
  --night: #0d100e;
  --night-raised: #151813;
  --ink: #1a1a14;
  --ink-muted: #5f5a4c;
  --paper: #d5c6a7;
  --paper-light: #eadfc7;
  --paper-shadow: #b4a17d;
  --moss: #687056;
  --bronze: #bea266;
  --rust: #84513b;
  --bone: #ede5d2;
  --line-dark: rgba(229, 216, 187, 0.18);
  --line-paper: rgba(49, 43, 30, 0.22);
  --shell: min(88rem, calc(100vw - 3rem));
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Arial Narrow", "Aptos Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--bone);
  background: var(--night);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  color: var(--night);
  background: var(--bronze);
}

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--night);
  background: var(--paper-light);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.25rem;
  padding: 0 2.2rem;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, min-height 250ms ease;
}

.site-header.is-scrolled {
  min-height: 4.35rem;
  border-color: rgba(225, 213, 184, 0.13);
  background: rgba(11, 13, 11, 0.88);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: var(--paper-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-decoration: none;
}

.wordmark__crest {
  width: 2.05rem;
}

.wordmark__crest svg {
  display: block;
  width: 100%;
  fill: rgba(13, 16, 14, 0.7);
  stroke: var(--bronze);
  stroke-width: 1.3;
}

.wordmark__crest .crest-line {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.wordmark__crest .crest-face {
  fill: var(--bronze);
  stroke: none;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  position: relative;
  color: rgba(237, 229, 210, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-status {
  justify-self: end;
  color: rgba(237, 229, 210, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-status i {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.55rem;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  background: rgba(190, 162, 102, 0.26);
  box-shadow: 0 0 0 4px rgba(190, 162, 102, 0.06);
  vertical-align: 0.05rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #171912;
}

.hero__art,
.hero__shade,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__art {
  z-index: -3;
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.74) contrast(1.03) brightness(0.78);
  transform: scale(1.02);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 12, 10, 0.97) 0%, rgba(10, 12, 10, 0.8) 34%, rgba(10, 12, 10, 0.18) 70%, rgba(10, 12, 10, 0.48) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.9) 0%, transparent 42%, rgba(8, 10, 8, 0.36) 100%);
}

.hero__grain,
.paper-texture {
  pointer-events: none;
  opacity: 0.17;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.045) 4px),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.18), transparent 35%);
  mix-blend-mode: soft-light;
}

.hero__grain {
  z-index: -1;
}

.hero__content {
  align-self: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.4rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bronze);
}

.eyebrow::before {
  width: 3.3rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 57rem;
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(4rem, 8.6vw, 9.2rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-shadow: 0 0.15em 0.8em rgba(0, 0, 0, 0.28);
}

.hero h1 > span {
  display: block;
}

.hero h1 .title-ornament {
  margin-left: 0.1em;
  color: var(--bronze);
  font-size: 0.76em;
  font-style: italic;
  white-space: nowrap;
}

.title-ornament em {
  position: relative;
  top: -0.22em;
  display: inline-block;
  margin-right: 0.12em;
  color: var(--paper-light);
  font-size: 0.25em;
  font-weight: 400;
  letter-spacing: 0;
}

.hero__tagline {
  max-width: 41rem;
  margin: 2.7rem 0 0;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(190, 162, 102, 0.75);
  color: rgba(237, 229, 210, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #17160f;
  background: var(--bronze);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--paper-light);
}

.button--quiet {
  color: rgba(237, 229, 210, 0.84);
  border-color: rgba(237, 229, 210, 0.27);
  background: rgba(10, 12, 10, 0.22);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  border-color: var(--bronze);
  color: var(--paper-light);
}

.hero__folio-note {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  min-width: 13rem;
  padding: 1rem 1.1rem;
  border-top: 1px solid rgba(237, 229, 210, 0.34);
  color: rgba(237, 229, 210, 0.78);
  text-align: right;
}

.hero__folio-note span,
.folio-card figcaption span,
.folio-note__label {
  color: var(--bronze);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__folio-note p {
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: 1rem;
}

.hero__folio-note small {
  color: rgba(237, 229, 210, 0.48);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
}

.scroll-cue {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(237, 229, 210, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg) translateX(42%);
  transform-origin: center;
}

.scroll-cue i {
  display: block;
  width: 2.6rem;
  height: 1px;
  background: currentColor;
}

.paper-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(70, 57, 36, 0.08) 1px, transparent 1px),
    linear-gradient(var(--paper-light), var(--paper));
  background-size: min(7vw, 5rem) 100%, auto;
}

.paper-section::before,
.paper-section::after {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(51, 42, 29, 0.35);
  content: "";
}

.paper-section::before {
  top: 0.8rem;
}

.paper-section::after {
  bottom: 0.8rem;
}

.paper-texture {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  mix-blend-mode: multiply;
}

.manifesto {
  padding: clamp(6.5rem, 10vw, 10rem) 0;
}

.section-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 2.1fr);
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-kicker {
  color: var(--rust);
}

.section-kicker span {
  display: inline-block;
  margin-right: 0.9rem;
  color: currentColor;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.section-intro h2,
.technical h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.8vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro > div > p {
  max-width: 43rem;
  margin: 1.6rem 0 0;
  color: var(--ink-muted);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.manifesto__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.5fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.manifesto__lead {
  padding-top: 1rem;
}

.manifesto__lead p {
  margin: 0 0 1.4rem;
  color: #39372e;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.8;
}

.manifesto__lead p:first-child {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.55;
}

.manifesto__principles {
  border-top: 1px solid var(--line-paper);
}

.manifesto__principles article {
  display: grid;
  grid-template-columns: 3rem 0.75fr 1.25fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-paper);
}

.roman {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 0.78rem;
}

.manifesto__principles h3,
.status-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.manifesto__principles p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.project-note {
  position: relative;
  z-index: 2;
  max-width: 49rem;
  margin: clamp(5rem, 9vw, 9rem) auto 0;
  padding: 2.8rem 4rem;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
  text-align: center;
}

.project-note > span {
  position: absolute;
  top: -1.8rem;
  left: 50%;
  padding: 0 1.2rem;
  color: var(--rust);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  transform: translateX(-50%);
}

.project-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 1.35;
}

.project-note cite {
  display: block;
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dark-section {
  position: relative;
  color: var(--bone);
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    var(--night);
  background-size: 3.5rem 3.5rem;
}

.folio {
  padding: clamp(6.5rem, 11vw, 11rem) 0;
}

.section-intro--light {
  color: var(--bone);
}

.section-intro--light .section-kicker {
  color: var(--bronze);
}

.section-intro--light > div > p {
  color: rgba(237, 229, 210, 0.6);
}

.folio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.75fr);
  grid-template-rows: auto auto;
  gap: 1.4rem;
}

.folio-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #171a15;
}

.folio-card--map {
  grid-row: 1 / span 2;
}

.folio-card__image {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  background: #25251d;
}

.folio-card--map .folio-card__image {
  min-height: 47rem;
}

.folio-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 10, 0.82), transparent 38%);
  content: "";
  pointer-events: none;
}

.folio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.08) contrast(1.02);
  transition: filter 500ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.folio-card:hover img {
  filter: saturate(0.9) sepia(0) contrast(1.04);
  transform: scale(1.025);
}

.folio-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.2rem;
}

.folio-card figcaption h3 {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.folio-card figcaption p {
  max-width: 33rem;
  margin: 0.65rem 0 0;
  color: rgba(237, 229, 210, 0.68);
  font-size: 0.9rem;
}

.folio-card--city figcaption {
  padding: 1.7rem;
}

.folio-card--city figcaption h3 {
  font-size: 1.65rem;
}

.folio-card--city figcaption p {
  font-size: 0.82rem;
}

.folio-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 20rem;
  padding: 2.4rem;
  border: 1px solid var(--line-dark);
  color: rgba(237, 229, 210, 0.76);
  background: #181a15;
}

.folio-note svg {
  width: 100%;
  max-height: 8rem;
  fill: none;
  stroke: rgba(190, 162, 102, 0.35);
  stroke-width: 1;
}

.folio-note svg circle {
  fill: rgba(190, 162, 102, 0.32);
}

.folio-note > p:not(.folio-note__label) {
  max-width: 26rem;
  margin: 1.5rem 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.55;
}

.folio-note small {
  color: rgba(237, 229, 210, 0.42);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.development {
  padding: clamp(6.5rem, 10vw, 10rem) 0;
}

.status-ledger {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-paper);
}

.status-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 8rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-paper);
}

.status-row__index {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 0.76rem;
}

.status-row h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

.status-row p {
  max-width: 48rem;
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.status-tag {
  min-width: 9.5rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(58, 52, 38, 0.24);
  color: #4f4b3f;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.status-tag i {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--moss);
  vertical-align: 0.04rem;
}

.status-tag--active i {
  background: var(--rust);
}

.technical {
  padding: clamp(6.5rem, 11vw, 11rem) 0;
}

.technical::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(229, 216, 187, 0.08);
  content: "";
  pointer-events: none;
}

.technical__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
}

.technical__copy .section-kicker {
  color: var(--bronze);
}

.technical h2 {
  color: var(--paper-light);
}

.technical__copy > p:last-child {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: rgba(237, 229, 210, 0.59);
  font-family: var(--serif);
  font-size: 1.04rem;
}

.technical__ledger {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.technical__ledger > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.52fr) minmax(10rem, 0.95fr) minmax(12rem, 1.3fr);
  gap: 1rem;
  align-items: baseline;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.technical__ledger dt {
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.technical__ledger dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.17rem;
}

.technical__ledger small {
  color: rgba(237, 229, 210, 0.47);
  font-size: 0.78rem;
  line-height: 1.5;
}

.closing {
  position: relative;
  display: grid;
  min-height: 46rem;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.closing__art,
.closing__veil {
  position: absolute;
  inset: 0;
}

.closing__art {
  z-index: -2;
}

.closing__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 73%;
  filter: grayscale(0.32) sepia(0.12) brightness(0.42) contrast(1.1);
  transform: scale(1.07);
}

.closing__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.94) 0%, rgba(8, 10, 8, 0.62) 54%, rgba(8, 10, 8, 0.75) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.88), transparent 60%);
}

.closing__content {
  padding-block: 7rem;
}

.closing .section-kicker {
  color: var(--bronze);
}

.closing h2 {
  max-width: 52rem;
  color: var(--paper-light);
  font-size: clamp(3.6rem, 7.5vw, 8rem);
}

.closing__content > p:not(.section-kicker) {
  max-width: 39rem;
  margin: 2rem 0 2.5rem;
  color: rgba(237, 229, 210, 0.68);
  font-family: var(--serif);
  font-size: 1.08rem;
}

footer {
  padding: 2.1rem 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(237, 229, 210, 0.42);
  background: #090b09;
}

footer .shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

footer p,
footer span {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

footer p {
  color: var(--bronze);
  font-family: var(--serif);
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

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

  .site-header nav {
    display: none;
  }

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

  .folio-card--map {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .folio-card--map .folio-card__image {
    min-height: 38rem;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 2rem, 44rem);
  }

  .site-header {
    min-height: 4.5rem;
    padding: 0 1rem;
  }

  .header-status {
    font-size: 0.61rem;
    letter-spacing: 0.09em;
  }

  .hero {
    min-height: 52rem;
  }

  .hero__art img {
    object-position: 63% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(8, 10, 8, 0.96) 0%, rgba(8, 10, 8, 0.64) 56%, rgba(8, 10, 8, 0.45) 100%),
      linear-gradient(90deg, rgba(8, 10, 8, 0.74), rgba(8, 10, 8, 0.22));
  }

  .hero__content {
    align-self: end;
    padding-top: 7rem;
    padding-bottom: 9rem;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 16.5vw, 6.3rem);
    line-height: 0.86;
  }

  .hero h1 .title-ornament {
    margin-top: 0.12em;
    white-space: normal;
  }

  .hero__tagline {
    margin-top: 1.8rem;
    font-size: 1rem;
  }

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

  .hero__folio-note,
  .scroll-cue {
    display: none;
  }

  .section-intro,
  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .section-intro h2,
  .technical h2 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .manifesto__principles article {
    grid-template-columns: 2rem 1fr;
    gap: 0.6rem 1rem;
  }

  .manifesto__principles p {
    grid-column: 2;
  }

  .project-note {
    padding: 2.6rem 0.8rem;
  }

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

  .folio-card--map {
    grid-column: auto;
  }

  .folio-card--map .folio-card__image,
  .folio-card__image {
    min-height: 29rem;
  }

  .folio-card figcaption {
    padding: 1.4rem;
  }

  .status-row {
    grid-template-columns: 2.2rem 1fr;
    gap: 0.8rem;
    padding: 1.6rem 0;
  }

  .status-tag {
    grid-column: 2;
    justify-self: start;
    min-width: 0;
  }

  .technical__ledger > div {
    grid-template-columns: 1fr 1.6fr;
  }

  .technical__ledger small {
    grid-column: 2;
  }

  .closing {
    min-height: 42rem;
  }

  .closing h2 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  footer .shell {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
