@font-face {
  font-family: "FG Archivo";
  src: url("../assets/fonts/Archivo-VF.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #edf0ea;
  --paper-raised: #f7f8f3;
  --ink: #111713;
  --muted: #536058;
  --line: #bdc6bf;
  --line-strong: #7f8d84;
  --surface: #dce2dc;
  --field: #173e2c;
  --field-ink: #f1f5ed;
  --accent: #d8ea3e;
  --accent-deep: #b6c62e;
  --river: #274b9d;
  --river-ink: #f4f6ef;
  --label: #101713;
  --label-ink: #f7f8f3;
  --focus: #2457d6;
  --shadow: 0 18px 36px rgba(20, 31, 24, 0.18);
  --header-h: 76px;
  --ticker-h: 42px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "FG Archivo", sans-serif;
  --body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0d1210;
  --paper-raised: #131a16;
  --ink: #eef2eb;
  --muted: #aebbb1;
  --line: #35423a;
  --line-strong: #66766b;
  --surface: #18211c;
  --field: #d5e642;
  --field-ink: #11160f;
  --accent: #d8ea3e;
  --accent-deep: #b6c62e;
  --river: #193774;
  --river-ink: #f0f3ee;
  --label: #eef2eb;
  --label-ink: #101511;
  --focus: #f3ff71;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--ticker-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #11160f;
  background: var(--accent);
}

* {
  scrollbar-color: var(--line-strong) var(--paper);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

*::-webkit-scrollbar-track {
  background: var(--paper);
}

*::-webkit-scrollbar-thumb {
  border: 3px solid var(--paper);
  background: var(--line-strong);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #101510;
  background: var(--accent);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

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

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__type strong {
  font-family: var(--display);
  font-size: 1.32rem;
  font-stretch: condensed;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand__type small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  padding: 0 32px;
}

.desktop-nav a,
.footer__column a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after,
.footer__column a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease-out;
}

.desktop-nav a:hover::after,
.footer__column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.all-designs {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
}

.all-designs svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease-out;
}

.all-designs:hover svg {
  transform: translateX(-4px);
}

.theme-toggle,
.menu-toggle,
.ticker__control {
  border: 0;
  cursor: pointer;
}

.theme-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 10px 0 6px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-toggle__track {
  position: relative;
  display: grid;
  width: 50px;
  height: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
}

.theme-toggle__track svg {
  z-index: 1;
  width: 18px;
  height: 18px;
  justify-self: center;
  stroke-width: 1.6;
}

.theme-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1);
}

.theme-toggle__sun,
.theme-toggle__moon {
  color: #11160f;
}

html[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(20px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.menu-toggle[aria-expanded="true"] .menu-line--top {
  transform: rotate(45deg) translate(2.8px, -2.8px);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-line--bottom {
  transform: rotate(-45deg) translate(2.8px, 2.8px);
  transform-origin: center;
}

.menu-line {
  transition: transform 180ms ease-out;
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  inset: var(--header-h) 0 0;
  padding: 20px;
  background: var(--field);
  color: var(--field-ink);
}

.mobile-nav a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav a span {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ticker {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: var(--ticker-h);
  grid-template-columns: auto minmax(0, 1fr);
  overflow: hidden;
  border-bottom: 1px solid #11160f;
  color: #11160f;
  background: var(--accent);
}

.ticker__control {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 142px;
  min-height: var(--ticker-h);
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 0 16px;
  border-right: 1px solid #11160f;
  background: var(--accent);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ticker__control svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.ticker__play {
  display: none;
}

.ticker__control[aria-pressed="true"] .ticker__pause {
  display: none;
}

.ticker__control[aria-pressed="true"] .ticker__play {
  display: block;
}

.ticker__control:disabled {
  cursor: default;
  opacity: 0.72;
}

.ticker__viewport {
  min-width: 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: archive-roll 34s linear infinite;
  will-change: transform;
}

.ticker__track.is-paused {
  animation-play-state: paused;
}

.ticker__set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  min-height: var(--ticker-h);
  padding-right: 34px;
}

.ticker__set span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__set i {
  width: 5px;
  height: 5px;
  margin: 0 24px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

@keyframes archive-roll {
  to { transform: translateX(-50%); }
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--header-h) - var(--ticker-h));
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  border-bottom: 1px solid var(--line-strong);
}

.hero__plate {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #d3d43b;
}

.hero__plate > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.hero__plate:hover > img {
  transform: scale(1.025);
}

.hero__plate > figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: calc(100% - 250px);
  padding: 10px 13px;
  color: #f7f8f3;
  background: #101713;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__inset {
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 4vw, 56px);
  width: clamp(150px, 22vw, 260px);
  padding: 8px 8px 10px;
  background: #f7f8f3;
  box-shadow: var(--shadow);
  color: #101713;
  transform: rotate(1.5deg);
}

.hero__inset img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__inset span {
  display: block;
  padding: 8px 2px 0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__index {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto;
  padding: clamp(26px, 4vw, 64px) clamp(22px, 4vw, 62px) 0;
  background: var(--field);
  color: var(--field-ink);
}

.hero__measure {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__measure i {
  width: clamp(40px, 6vw, 84px);
  height: 1px;
  background: currentColor;
}

.hero__measure i::after {
  display: block;
  width: 1px;
  height: 6px;
  margin-left: 50%;
  background: currentColor;
  content: "";
}

.hero__copy {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vh, 50px) 0 clamp(24px, 3.5vh, 44px);
}

.hero h1,
.archive h2,
.guided h2,
.services h2,
.dispatch h2,
.service h3 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3.25rem, 5.2vw, 4.8rem);
  text-wrap: balance;
}

.hero__copy p {
  max-width: 52ch;
  margin: clamp(24px, 4vh, 42px) 0 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.hero__routes {
  margin: 0 calc(clamp(22px, 4vw, 62px) * -1);
  border-top: 1px solid currentColor;
}

.hero__routes a {
  display: grid;
  min-height: 78px;
  grid-template-columns: 40px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(22px, 4vw, 62px);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  transition: color 200ms ease-out, background-color 200ms ease-out;
}

.hero__routes a > * {
  transition: transform 220ms ease-out;
}

.hero__routes a:last-child {
  border-bottom: 0;
}

.hero__routes a:hover,
.hero__routes a:focus-visible {
  color: #101510;
  background: var(--accent);
}

.hero__routes a:hover > *,
.hero__routes a:focus-visible > * {
  transform: translateX(8px);
}

.hero__route-code {
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.hero__routes a > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero__routes strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__routes small {
  margin-top: 4px;
  font-size: 0.73rem;
}

.hero__routes svg {
  width: 24px;
  height: 24px;
}

.section-shell {
  padding: clamp(90px, 11vw, 170px) var(--pad);
}

.archive__intro,
.services__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
}

.archive h2,
.services h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.archive__intro p,
.services__intro p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.archive__tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(54px, 7vw, 92px);
  border-bottom: 1px solid var(--line-strong);
}

.filter-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.filter-tabs button {
  min-height: 48px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.filter-tabs button:hover {
  color: var(--ink);
  background: var(--surface);
}

.filter-tabs button[aria-selected="true"] {
  color: #101510;
  background: var(--accent);
}

.archive__status {
  flex: 0 0 auto;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.specimen-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 108px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.specimen {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  text-decoration: none;
  transition: border-color 200ms ease-out, box-shadow 240ms ease-out, transform 240ms ease-out;
}

.specimen:hover {
  z-index: 2;
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.specimen figure {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  overflow: hidden;
}

.specimen img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: filter 220ms ease-out, transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.specimen:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.025);
}

.specimen figcaption {
  position: relative;
  display: grid;
  min-height: 78px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 20px;
  align-content: center;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  background: var(--paper-raised);
}

.specimen figcaption span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.61rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.specimen figcaption strong {
  min-width: 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.specimen figcaption small {
  align-self: end;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.specimen--hero {
  grid-column: span 7;
  grid-row: span 5;
}

.specimen--tall {
  grid-column: span 5;
  grid-row: span 3;
}

.specimen--wide {
  grid-column: span 5;
  grid-row: span 2;
}

.specimen--strip {
  grid-column: span 7;
  grid-row: span 2;
}

.specimen--compact {
  grid-column: span 4;
  grid-row: span 3;
}

.specimen--field {
  grid-column: span 8;
  grid-row: span 4;
}

.archive__exit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.archive__exit p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease-out;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.guided {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  background: var(--river);
  color: var(--river-ink);
}

.guided__image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.guided__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guided__image > span,
.service__image > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 10px;
  color: #f7f8f3;
  background: #101713;
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guided__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) var(--pad);
}

.guided h2 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 6.6vw, 6rem);
}

.guided__lead {
  max-width: 38ch;
  margin: 34px 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 650;
}

.guided__content > p:not(.guided__lead) {
  max-width: 52ch;
  margin: 30px 0 0;
  color: color-mix(in srgb, var(--river-ink) 78%, transparent);
}

.guided__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.guided__facts p {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.guided__facts p + p {
  padding-left: 24px;
  border-left: 1px solid currentColor;
}

.guided__facts strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.guided__facts span {
  margin-top: 7px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.guided__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease-out, background-color 200ms ease-out;
}

.button--light {
  color: var(--river);
  background: var(--river-ink);
}

.button--light:hover {
  color: #101510;
  background: var(--accent);
}

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

.guided__detail {
  position: absolute;
  z-index: 3;
  right: calc(41% - 120px);
  bottom: -74px;
  width: 240px;
  margin: 0;
  padding: 8px;
  background: var(--paper-raised);
  box-shadow: var(--shadow);
  color: var(--ink);
  transform: rotate(-1.5deg);
}

.guided__detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guided__detail figcaption {
  padding: 9px 2px 2px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.services {
  padding-top: clamp(150px, 16vw, 240px);
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-top: clamp(60px, 8vw, 112px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.service + .service {
  margin-top: 34px;
}

.service__image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.service:hover .service__image img {
  transform: scale(1.025);
}

.service__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 100px);
  background: var(--surface);
}

.service--field .service__copy {
  background: var(--paper-raised);
}

.service h3 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 4.2vw, 4.7rem);
}

.service__copy p {
  max-width: 52ch;
  margin: 28px 0 30px;
  color: var(--muted);
}

.dispatch {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) var(--pad);
  color: #101510;
  background: var(--accent);
}

.dispatch__mark {
  width: 130px;
  height: 130px;
}

.dispatch__mark svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.dispatch h2 {
  max-width: 17ch;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
}

.dispatch__copy p {
  max-width: 62ch;
  margin: 24px 0 0;
}

.button--dark {
  min-width: 220px;
  color: #f7f8f3;
  background: #101713;
}

.button--dark:hover {
  color: #101713;
  background: transparent;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.7fr));
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(70px, 9vw, 130px) var(--pad) 30px;
  color: var(--field-ink);
  background: var(--field);
}

.brand--footer {
  color: var(--field-ink);
}

.brand--footer .brand__type small {
  color: color-mix(in srgb, var(--field-ink) 72%, transparent);
}

.footer__brand > p {
  max-width: 34ch;
  margin: 30px 0 0;
  color: color-mix(in srgb, var(--field-ink) 76%, transparent);
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer__column h2 {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__column a {
  font-size: 0.7rem;
}

.footer__base {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__base a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer__base svg {
  width: 18px;
  height: 18px;
}

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  }

  .hero__plate {
    min-height: 630px;
  }

  .guided {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  }

  .guided__detail {
    right: calc(44% - 100px);
    width: 200px;
  }

  .dispatch {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .dispatch__mark {
    width: 104px;
    height: 104px;
  }

  .dispatch .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
    --ticker-h: 38px;
  }

  .brand__type small {
    display: none;
  }

  .theme-toggle > span:last-child {
    display: none;
  }

  .all-designs span {
    display: none;
  }

  .all-designs {
    width: 44px;
    justify-content: center;
    padding: 0;
  }

  .theme-toggle {
    padding-right: 6px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__plate {
    order: 2;
    min-height: 56svh;
  }

  .hero__inset {
    width: clamp(140px, 36vw, 210px);
  }

  .hero__index {
    order: 1;
    min-height: 0;
  }

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

  .archive__intro,
  .services__intro {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .archive__intro p,
  .services__intro p {
    max-width: 60ch;
  }

  .archive__tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .filter-tabs {
    width: 100%;
  }

  .archive__status {
    margin: 4px 0 12px;
  }

  .specimen-grid {
    grid-auto-rows: 102px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .specimen--hero,
  .specimen--strip,
  .specimen--field {
    grid-column: span 6;
  }

  .specimen--tall,
  .specimen--wide {
    grid-column: span 3;
    grid-row: span 3;
  }

  .specimen--compact {
    grid-column: span 3;
  }

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

  .guided__image {
    min-height: 62svh;
  }

  .guided__content {
    padding-bottom: 130px;
  }

  .guided__detail {
    right: var(--pad);
    bottom: -62px;
  }

  .services {
    padding-top: 150px;
  }

  .service,
  .service--field {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .service--field .service__copy {
    order: 2;
  }

  .service__image {
    min-height: 380px;
  }

  .dispatch {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .dispatch__mark {
    width: 80px;
    height: 80px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    padding-right: 12px;
    padding-left: 14px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__type strong {
    font-size: 1.08rem;
  }

  .header-actions {
    gap: 6px;
  }

  .theme-toggle__track {
    width: 46px;
  }

  html[data-theme="dark"] .theme-toggle__thumb {
    transform: translateX(16px);
  }

  .ticker {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .ticker__control {
    min-width: 48px;
    padding: 0;
  }

  .ticker__control span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .ticker__set i {
    margin: 0 18px;
  }

  .hero__plate {
    min-height: 54svh;
  }

  .hero__plate > figcaption {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 160px);
  }

  .hero__inset {
    right: 14px;
    bottom: 44px;
    width: 142px;
    padding: 6px;
  }

  .hero__inset span {
    font-size: 0.56rem;
  }

  .hero__index {
    min-height: 0;
    padding-top: 18px;
  }

  .hero__copy {
    padding: 24px 0 22px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 12vw, 3.35rem);
  }

  .hero__copy p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero__routes a {
    min-height: 61px;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    gap: 11px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .hero__routes small {
    display: none;
  }

  .section-shell {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .archive h2,
  .services h2 {
    font-size: clamp(3rem, 14.2vw, 4.6rem);
  }

  .archive__tools {
    margin-top: 46px;
  }

  .filter-tabs button {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.66rem;
  }

  .specimen-grid {
    grid-auto-rows: 88px;
    gap: 10px;
  }

  .specimen--hero,
  .specimen--tall,
  .specimen--wide,
  .specimen--strip,
  .specimen--compact,
  .specimen--field {
    grid-column: span 6;
    grid-row: span 4;
  }

  .specimen--wide,
  .specimen--strip {
    grid-row: span 3;
  }

  .specimen figcaption {
    min-height: 76px;
  }

  .archive__exit {
    align-items: flex-start;
    flex-direction: column;
  }

  .guided__image {
    min-height: 58svh;
  }

  .guided__content {
    padding: 76px var(--pad) 118px;
  }

  .guided h2 {
    font-size: clamp(3.2rem, 14.7vw, 4.8rem);
  }

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

  .guided__facts p {
    min-height: 88px;
  }

  .guided__facts p + p {
    padding-left: 0;
    border-top: 1px solid currentColor;
    border-left: 0;
  }

  .guided__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .guided__detail {
    right: 18px;
    width: 174px;
  }

  .service {
    margin-top: 58px;
  }

  .service + .service {
    margin-top: 20px;
  }

  .service__image {
    min-height: 300px;
  }

  .service__copy {
    padding: 42px 22px 46px;
  }

  .service h3 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 3.45rem);
    overflow-wrap: break-word;
  }

  .dispatch {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .dispatch__mark {
    width: 70px;
    height: 70px;
  }

  .dispatch h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .dispatch .button {
    grid-column: 1;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer__brand,
  .footer__column:last-of-type {
    grid-column: 1 / -1;
  }

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

@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;
  }

  .ticker__track {
    animation: none;
  }
}
