:root {
  --ink: #06131c;
  --ink-soft: #102833;
  --paper: #f6f0e6;
  --paper-bright: #fbf8f2;
  --sand: #e8ddcc;
  --mint: #64d4c3;
  --mint-soft: #9fe4d8;
  --amber: #d8a05c;
  --text: #17252e;
  --muted: #637078;
  --line: rgba(17, 35, 45, 0.17);
  --line-light: rgba(255, 255, 255, 0.16);
  --header-height: 66px;
  --wrap: min(1240px, calc(100% - 96px));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 5px;
}

::selection {
  background: rgba(100, 212, 195, 0.34);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--paper-bright);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 220ms var(--ease-out);
}

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

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--paper-bright);
  pointer-events: none;
}

.site-header.is-scrolled {
  height: var(--header-height);
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1220px, calc(100% - 64px));
  height: 100%;
  margin-inline: auto;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(4, 16, 24, 0.34);
  box-shadow:
    0 14px 44px rgba(2, 12, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  pointer-events: auto;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled .site-header__inner {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(4, 16, 24, 0.86);
  box-shadow:
    0 18px 56px rgba(2, 12, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.site-header__progress {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), var(--amber));
  opacity: 0.88;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

.brand__mark {
  width: 29px;
  height: 29px;
  color: var(--mint);
  overflow: visible;
  transition: transform 160ms var(--ease-out);
}

.brand__mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

.brand__mark circle {
  fill: currentColor;
}

.brand__word {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand__word em {
  color: var(--mint);
  font-style: italic;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a,
.header-action {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a.is-active {
  color: #fff;
}

.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transition:
    transform 160ms var(--ease-out),
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.header-action span {
  color: var(--mint);
  transition: transform 260ms var(--ease-out);
}

.header-action:hover {
  border-color: var(--mint);
  background: rgba(100, 212, 195, 0.1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  height: max(780px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-bright);
  isolation: isolate;
}

.hero__image {
  --hero-shift: 0px;
  position: absolute;
  z-index: -4;
  inset: -44px 0;
  width: 100%;
  max-width: none;
  height: calc(100% + 88px);
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(1.06) contrast(1.025);
  transform: translate3d(0, var(--hero-shift), 0) scale(1.045);
}

.hero__wash {
  --pointer-x: 72%;
  --pointer-y: 34%;
  --pointer-active: 0;
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 16, 24, 0.97) 0%,
      rgba(4, 16, 24, 0.92) 26%,
      rgba(4, 16, 24, 0.67) 47%,
      rgba(4, 16, 24, 0.18) 74%,
      rgba(4, 16, 24, 0.11) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 16, 24, 0.82) 0%,
      rgba(4, 16, 24, 0.12) 45%,
      rgba(4, 16, 24, 0.32) 100%
    );
}

.hero__wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 320px at var(--pointer-x) var(--pointer-y),
    rgba(112, 230, 213, 0.13),
    rgba(112, 230, 213, 0.035) 42%,
    transparent 74%
  );
  mix-blend-mode: screen;
  opacity: var(--pointer-active);
  transition: opacity 420ms ease;
  pointer-events: none;
}

.hero__grain,
.film__shade::after,
.thesis::after {
  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='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

.hero__grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.capital-network {
  --network-opacity: 0.82;
  --network-shift: 0px;
  --network-x: 0px;
  --network-y: 0px;
  position: absolute;
  z-index: 0;
  top: 9%;
  right: max(8px, calc((100vw - 1460px) / 2));
  width: min(54vw, 780px);
  height: 82%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(
    var(--network-x),
    calc(var(--network-shift) + var(--network-y)),
    0
  );
  transition: transform 180ms var(--ease-out);
  animation: capital-network-in 1.4s var(--ease-out) 240ms forwards;
}

.hero.is-network-active .hero__image,
.hero.is-network-active .capital-network {
  will-change: transform;
}

.capital-network::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 11% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 44%, rgba(100, 212, 195, 0.16), transparent 52%),
    radial-gradient(circle at 72% 64%, rgba(216, 160, 92, 0.08), transparent 36%);
  filter: blur(28px);
}

.capital-network__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.capital-network__field {
  transform-box: view-box;
  transform-origin: center;
  animation: capital-field-drift 72s linear infinite;
}

.capital-network__field circle {
  fill: none;
  stroke: rgba(159, 228, 216, 0.1);
  stroke-width: 1;
}

.capital-network__field circle:first-child {
  stroke: rgba(159, 228, 216, 0.16);
  stroke-dasharray: 2 11;
  stroke-linecap: round;
}

.capital-route {
  fill: none;
  stroke: url(#capital-route-gradient);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0.72;
  filter: drop-shadow(0 0 5px rgba(100, 212, 195, 0.32));
  animation: capital-route-draw 900ms var(--ease-out) forwards;
  animation-delay: var(--route-delay, 0s);
}

.capital-route--soft {
  stroke-width: 1.2;
  opacity: 0.26;
}

.capital-node {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: capital-node-in 520ms var(--ease-out) forwards;
  animation-delay: var(--node-delay, 0s);
}

.capital-node__flare {
  fill: rgba(124, 229, 214, 0.56);
  opacity: 0.16;
  filter: blur(4px);
  transition: opacity 160ms ease;
}

.capital-node__ring {
  fill: rgba(100, 212, 195, 0.1);
  stroke: rgba(174, 244, 233, 0.76);
  stroke-width: 1px;
  transform-box: fill-box;
  transform-origin: center;
}

.capital-node--hub .capital-node__ring {
  animation: capital-node-pulse 5.2s var(--ease-in-out) infinite;
  animation-delay: calc(var(--node-delay, 0s) + 0.55s);
}

.capital-node__core {
  fill: #effcf9;
  filter: drop-shadow(0 0 5px rgba(124, 229, 214, 0.95));
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(1);
  transition: transform 160ms ease;
}

.capital-network__labels {
  opacity: 0;
  animation: capital-labels-in 720ms var(--ease-out) 2.1s forwards;
}

.capital-network__labels text {
  fill: rgba(239, 252, 249, 0.74);
  stroke: rgba(4, 16, 24, 0.7);
  stroke-width: 3px;
  paint-order: stroke fill;
  stroke-linejoin: round;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  opacity: 0.38;
}

.capital-network__labels .capital-label--anchor {
  opacity: 0.92;
}

.capital-traveler--secondary {
  opacity: 0.24;
}

.capital-network__caption {
  position: absolute;
  z-index: 2;
  right: max(96px, calc((100vw - 1240px) / 2 + 88px));
  bottom: 8%;
  display: grid;
  gap: 6px;
  width: 250px;
  padding-top: 12px;
  border-top: 1px solid rgba(159, 228, 216, 0.3);
  color: rgba(239, 252, 249, 0.66);
  opacity: 0;
  transform: translateY(10px);
  animation: capital-caption-in 680ms var(--ease-out) 2.3s forwards;
}

.capital-network__caption span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.capital-network__caption strong {
  max-width: 22ch;
  color: rgba(239, 252, 249, 0.86);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.capital-traveler--glow {
  fill: rgba(124, 229, 214, 0.24);
  filter: blur(1px);
}

.capital-traveler--core {
  fill: #effcf9;
  filter: drop-shadow(0 0 6px rgba(124, 229, 214, 0.95));
}

@keyframes capital-network-in {
  from {
    opacity: 0;
  }

  to {
    opacity: var(--network-opacity);
  }
}

@keyframes capital-field-drift {
  to {
    transform: rotate(360deg);
  }
}

@keyframes capital-route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes capital-node-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes capital-node-pulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.94);
  }

  52% {
    opacity: 0.82;
    transform: scale(1.12);
  }
}

@keyframes capital-labels-in {
  to {
    opacity: 1;
  }
}

@keyframes capital-caption-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero:not(.is-network-active) .capital-network__field,
.hero:not(.is-network-active) .capital-node--hub .capital-node__ring {
  animation-play-state: paused;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(210px, 1fr);
  gap: 48px;
  align-items: end;
  width: var(--wrap);
  min-height: 100%;
  margin-inline: auto;
  padding: clamp(132px, 17vh, 180px) 0 clamp(78px, 10vh, 112px);
}

.hero__copy {
  max-width: 800px;
  transform: translateY(-66px);
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--mint);
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.eyebrow span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.hero__wordmark {
  margin: clamp(24px, 3.4vh, 36px) 0 20px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(88px, 9.2vw, 132px);
  line-height: 0.72;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.hero__wordmark em {
  color: var(--mint);
  font-style: italic;
}

.hero__wordmark span {
  color: var(--amber);
}

.hero__title {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__title em {
  color: var(--mint-soft);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.hero__title > span,
.hero__title > em {
  display: block;
}

.hero__lede {
  max-width: 52ch;
  margin: 24px 0 0;
  color: rgba(244, 248, 248, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 160ms var(--ease-out),
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.button__arrow {
  font-size: 16px;
  transition: transform 160ms var(--ease-out);
}

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

.button--ink {
  min-width: 184px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  color: rgba(255, 255, 255, 0.78);
}

.text-link span,
.inline-link span {
  color: var(--mint);
  transition: transform 160ms var(--ease-out);
}

.button:not(:disabled):active,
.header-action:active,
.film__control:active {
  transform: scale(0.97);
}

.hero__scroll {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero__scroll i::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: var(--mint);
  animation: scroll-line 2.4s var(--ease-in-out) infinite;
}

.hero-enter {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in 820ms var(--ease-out) forwards;
}

.hero-enter--1 {
  animation-delay: 70ms;
}

.hero-enter--2 {
  animation-delay: 130ms;
}

.hero-enter--3 {
  animation-delay: 190ms;
}

.hero-enter--4 {
  animation-delay: 250ms;
}

.hero-enter--5 {
  animation-delay: 310ms;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-28px);
  }
  55%,
  100% {
    transform: translateY(58px);
  }
}

.section {
  position: relative;
  padding: clamp(96px, 9.5vw, 140px) 0;
  scroll-margin-top: 68px;
}

.section--paper {
  background: var(--paper);
}

.section--sand {
  background: var(--sand);
}

.section--ink {
  background: var(--ink);
  color: var(--paper-bright);
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1.56fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  padding-bottom: clamp(56px, 7vw, 94px);
}

.section-heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), var(--line) 38%, var(--line));
  transform-origin: left;
}

.section-label {
  color: #557078;
}

.section-label--light {
  color: var(--mint);
}

.section-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px;
}

.section-heading h2,
.film-section__heading h2,
.contact__intro h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.94;
  text-wrap: balance;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading h2 span,
.film-section__heading h2 span,
.contact__intro h2 span {
  display: block;
}

.approach__body {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(50px, 8vw, 128px);
  padding-top: clamp(68px, 8vw, 110px);
}

.approach__manifesto {
  align-self: start;
  position: sticky;
  top: 112px;
  padding-left: 30px;
  border-left: 1px solid rgba(20, 118, 110, 0.24);
}

.approach__manifesto::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #14766e;
  box-shadow: 0 0 0 7px rgba(20, 118, 110, 0.09);
}

.approach__manifesto p {
  max-width: 25ch;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.inline-link {
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

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

.service-list li {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 28px;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.service-list li > div,
.service-list__index,
.criteria-list dt,
.criteria-list dd {
  transition:
    color 280ms ease,
    transform 360ms var(--ease-out);
}

.service-list li::after,
.criteria-list > div::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent 72%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease-out);
}

.service-list__index {
  padding-top: 7px;
  color: #668087;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-list h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.service-list p {
  max-width: 48ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.film-section {
  overflow: hidden;
  padding: 94px 0 0;
  background: #0a1d27;
  color: var(--paper-bright);
}

.film-section__heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1.56fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: 50px;
}

.film-section__context {
  align-self: end;
  padding-bottom: 4px;
}

.film-section__context > p:last-child {
  max-width: 24ch;
  margin: 18px 0 0;
  color: rgba(239, 246, 246, 0.62);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1.25;
}

.film-section__heading h2 {
  grid-column: 2;
  max-width: 13ch;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 700;
  line-height: 0.9;
}

.film {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: 820px;
  overflow: hidden;
  background: var(--ink);
}

.film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 19, 28, 0.2), transparent 26%);
  pointer-events: none;
}

.film__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: soft-light;
}

.film__control {
  position: absolute;
  right: max(48px, calc((100% - 1240px) / 2));
  bottom: clamp(30px, 5vw, 68px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(6, 19, 28, 0.46);
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 160ms var(--ease-out),
    background-color 200ms ease,
    border-color 200ms ease;
}

.film__control i {
  display: block;
  width: 7px;
  height: 9px;
  border-right: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
}

.film__control[data-paused="true"] i {
  width: 0;
  height: 0;
  border: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--mint);
}

.section-heading--fit h2 {
  max-width: 16ch;
}

.fit__intro {
  display: grid;
  grid-template-columns: 0.44fr 1.56fr;
  gap: clamp(40px, 7vw, 110px);
  margin: 58px 0 0;
}

.fit__intro p {
  grid-column: 2;
  max-width: 44ch;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.criteria-list {
  margin: 74px 0 0;
  border-top: 1px solid var(--line);
}

.criteria-list > div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: start;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.criteria-list dt {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.criteria-list dt span {
  color: #697b7e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.criteria-list dd {
  max-width: 48ch;
  margin: 4px 0 0;
  color: #536166;
  font-size: 16px;
  line-height: 1.75;
}

.conviction-quote {
  margin: clamp(82px, 9vw, 132px) 0 0;
  padding: clamp(44px, 6vw, 78px) 0 0;
  border-top: 1px solid var(--line);
}

.conviction-quote p {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(50px, 7.5vw, 104px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.conviction-quote em {
  color: #14766e;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.thesis {
  overflow: hidden;
  isolation: isolate;
}

.thesis::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(100, 212, 195, 0.14), transparent 29%),
    linear-gradient(145deg, #06131c 0%, #0e2832 100%);
}

.thesis::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.thesis__route {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.46;
}

.thesis__route path {
  fill: none;
  stroke: rgba(100, 212, 195, 0.3);
  stroke-width: 1.2;
  stroke-dasharray: 4 10;
  animation: thesis-route-flow 14s linear infinite;
  animation-play-state: paused;
}

.thesis-route-node {
  fill: var(--mint);
  stroke: rgba(100, 212, 195, 0.16);
  stroke-width: 18;
  paint-order: stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: thesis-node-breathe 7.2s var(--ease-in-out) infinite;
  animation-play-state: paused;
}

.thesis-route-node:nth-of-type(4) {
  animation-delay: -1.2s;
}

.thesis-route-node:nth-of-type(5) {
  animation-delay: -2.4s;
}

.thesis-route-node:nth-of-type(6) {
  animation-delay: -3.6s;
}

.thesis.is-motion-active .thesis__route path,
.thesis.is-motion-active .thesis-route-node {
  animation-play-state: running;
}

.thesis__route .thesis__route-base {
  stroke: rgba(100, 212, 195, 0.17);
  stroke-width: 1.4;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: none;
}

.thesis.is-motion-active .thesis__route .thesis__route-base {
  animation: thesis-route-reveal 1.8s var(--ease-out) forwards;
}

.thesis-traveler--glow {
  fill: rgba(100, 212, 195, 0.24);
  filter: blur(2px);
}

.thesis-traveler--core {
  fill: #effcf9;
  filter: drop-shadow(0 0 7px rgba(100, 212, 195, 0.95));
}

@keyframes thesis-route-reveal {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes thesis-route-flow {
  to {
    stroke-dashoffset: -140;
  }
}

@keyframes thesis-node-breathe {
  0%,
  100% {
    opacity: 0.66;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.thesis__inner {
  position: relative;
  z-index: 1;
}

.thesis__heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1.56fr);
  column-gap: clamp(40px, 7vw, 110px);
}

.thesis__heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 600;
  letter-spacing: -0.078em;
  line-height: 0.88;
}

.thesis__heading h2 em {
  display: block;
  color: var(--mint);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.thesis__heading > p:last-child {
  grid-column: 2;
  max-width: 48ch;
  margin: 40px 0 0;
  color: rgba(239, 246, 246, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.flywheel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(90px, 12vw, 160px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.flywheel::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), rgba(216, 160, 92, 0.7));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s var(--ease-in-out);
}

.thesis.is-motion-active .flywheel::after {
  transform: scaleX(1);
}

.flywheel li {
  position: relative;
  min-height: 238px;
  padding: 26px 24px 0 0;
  border-right: 1px solid var(--line-light);
}

.flywheel li + li {
  padding-left: 24px;
}

.flywheel li:last-child {
  border-right: 0;
}

.flywheel li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(100, 212, 195, 0.12);
  opacity: 0;
  transform: scale(0.92);
}

.thesis.is-motion-active .flywheel li::before {
  animation: flywheel-node-in 700ms var(--ease-out) forwards;
}

.thesis.is-motion-active .flywheel li:nth-child(2)::before {
  animation-delay: 110ms;
}

.thesis.is-motion-active .flywheel li:nth-child(3)::before {
  animation-delay: 220ms;
}

.thesis.is-motion-active .flywheel li:nth-child(4)::before {
  animation-delay: 330ms;
}

@keyframes flywheel-node-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.flywheel li + li::before {
  left: 24px;
}

.flywheel li > span {
  display: block;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.flywheel strong {
  display: block;
  max-width: 12ch;
  margin-top: 32px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.02;
}

.flywheel p {
  max-width: 26ch;
  margin: 14px 0 0;
  color: rgba(239, 246, 246, 0.6);
  font-size: 13px;
  line-height: 1.65;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(66px, 10vw, 150px);
  align-items: start;
}

.contact__grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(41% + clamp(20px, 3vw, 44px));
  width: 1px;
  background: linear-gradient(var(--line), rgba(20, 118, 110, 0.28), var(--line));
  pointer-events: none;
}

.contact__intro {
  position: sticky;
  top: 112px;
}

.contact__intro h2 {
  max-width: 11ch;
  margin-top: 34px;
}

.contact__intro > p:not(.section-label) {
  max-width: 42ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.contact__direct {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact__direct > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact__direct a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 9px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(21px, 2vw, 29px);
}

.contact__direct a span {
  color: #14766e;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  transition: transform 160ms var(--ease-out);
}

.contact-form {
  display: grid;
  gap: 36px;
  padding-top: 8px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.field {
  display: grid;
  gap: 10px;
}

.field > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    transform 160ms var(--ease-out);
}

.field > span::after {
  content: " *";
  color: #14766e;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9aa09e;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.35;
  transition: border-color 220ms ease;
}

.field input {
  min-height: 56px;
  padding: 7px 0 13px;
}

.field textarea {
  min-height: 144px;
  padding: 9px 0 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a9290;
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: #14766e;
}

.field:focus-within > span {
  color: #14766e;
  transform: translateX(3px);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  box-shadow: 0 2px 0 #14766e;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-form__footer p {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-form__status {
  min-height: 24px;
  margin: -18px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.contact-form__status[data-tone="success"] {
  color: #0f7168;
}

.contact-form__status[data-tone="error"] {
  color: #a33d32;
}

.site-footer {
  padding: 74px 0 30px;
  background: #041017;
  color: var(--paper-bright);
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 62px;
}

.brand--footer .brand__word {
  font-size: clamp(56px, 7vw, 92px);
  letter-spacing: -0.06em;
}

.site-footer__top p {
  max-width: 30ch;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px;
  text-align: right;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__bottom a {
  transition: color 220ms ease;
}

.site-footer__bottom a:hover {
  color: var(--mint);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 680ms var(--ease-out),
    transform 680ms var(--ease-out);
}

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

.js .section-heading[data-reveal]::after {
  transform: scaleX(0);
  transition: transform 920ms var(--ease-in-out) 90ms;
}

.js .section-heading[data-reveal].is-visible::after {
  transform: scaleX(1);
}

.js [data-reveal][data-reveal-media] {
  clip-path: inset(0 0 10% 0);
  transform: scale(1.018);
  transform-origin: center top;
  transition:
    clip-path 1.05s var(--ease-in-out),
    opacity 720ms var(--ease-out),
    transform 1.05s var(--ease-in-out);
}

.js [data-reveal][data-reveal-media].is-visible {
  clip-path: inset(0);
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand__mark {
    transform: rotate(-4deg) scale(1.04);
  }

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

  .header-action:not(:active):hover span {
    transform: translate(2px, -2px);
  }

  .button:not(:disabled):not(:active):hover {
    transform: translateY(-2px);
  }

  .button:hover .button__arrow {
    transform: translate(3px, -3px);
  }

  .button--light:hover {
    background: var(--mint-soft);
  }

  .button--ink:hover {
    border-color: var(--ink-soft);
    background: var(--ink-soft);
  }

  .text-link:hover span {
    transform: translateY(3px);
  }

  .inline-link:hover span,
  .contact__direct a:hover span {
    transform: translate(3px, -3px);
  }

  .film__control:hover {
    border-color: rgba(100, 212, 195, 0.72);
    background: rgba(6, 19, 28, 0.72);
  }

  .service-list li:hover > div,
  .criteria-list > div:hover dt {
    transform: translateX(4px);
  }

  .service-list li:hover .service-list__index,
  .criteria-list > div:hover dt span {
    color: #14766e;
  }

  .service-list li:hover::after,
  .criteria-list > div:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .criteria-list > div:hover dd {
    color: var(--text);
    transform: translateX(-3px);
  }
}

@media (hover: none), (pointer: coarse) {
  .capital-traveler--secondary {
    display: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --wrap: min(1240px, calc(100% - 64px));
  }

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

  .capital-network {
    --network-opacity: 0.7;
    right: -72px;
    width: min(64vw, 700px);
  }

  .capital-network__caption {
    display: none;
  }

  .film__control {
    right: 32px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1.22fr);
    gap: 64px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 60px;
    --wrap: min(1240px, calc(100% - 40px));
  }

  .site-header {
    top: 10px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    padding: 0 12px 0 15px;
    background: rgba(4, 16, 24, 0.44);
  }

  .site-header__progress {
    right: 14px;
    left: 14px;
  }

  .site-nav {
    display: none;
  }

  .brand__word {
    font-size: 22px;
  }

  .header-action {
    min-height: 44px;
    padding: 0 15px;
  }

  .hero {
    height: max(760px, 100svh);
  }

  .hero__image {
    object-position: 61% center;
  }

  .capital-network {
    --network-opacity: 0.62;
    top: 4%;
    right: -84px;
    width: min(78vw, 650px);
    height: 62%;
    mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 72%,
      transparent 100%
    );
  }

  .hero__wash {
    background:
      linear-gradient(
        90deg,
        rgba(4, 16, 24, 0.9) 0%,
        rgba(4, 16, 24, 0.72) 52%,
        rgba(4, 16, 24, 0.32) 100%
      ),
      linear-gradient(
        0deg,
        rgba(4, 16, 24, 0.97) 0%,
        rgba(4, 16, 24, 0.64) 48%,
        rgba(4, 16, 24, 0.32) 100%
      );
  }

  .hero__inner {
    display: flex;
    align-items: flex-end;
    padding: 116px 0 70px;
  }

  .hero__copy {
    max-width: 660px;
    transform: none;
  }

  .hero__wordmark {
    font-size: clamp(78px, 16vw, 112px);
  }

  .hero__title {
    max-width: 14ch;
    font-size: clamp(38px, 7.8vw, 58px);
  }

  .hero__scroll {
    display: none;
  }

  .section-heading,
  .film-section__heading,
  .thesis__heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-heading h2,
  .film-section__heading h2 {
    max-width: 10ch;
  }

  .film-section__heading h2 {
    grid-column: 1;
  }

  .approach__body,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .approach__manifesto,
  .contact__intro {
    position: static;
  }

  .contact__grid::after {
    display: none;
  }

  .approach__manifesto p {
    max-width: 31ch;
  }

  .film {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .fit__intro {
    display: block;
  }

  .fit__intro p {
    max-width: 34ch;
  }

  .criteria-list > div {
    grid-template-columns: minmax(190px, 0.78fr) 1.22fr;
  }

  .thesis__heading > p:last-child {
    grid-column: auto;
    margin-top: 0;
  }

  .flywheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flywheel::after {
    display: none;
  }

  .flywheel li:nth-child(2) {
    border-right: 0;
  }

  .flywheel li:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .contact__grid {
    gap: 78px;
  }

  .contact__intro h2 {
    max-width: 9ch;
  }
}

@media (max-width: 560px) {
  :root {
    --wrap: min(1240px, calc(100% - 32px));
  }

  .brand {
    gap: 8px;
  }

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

  .brand__word {
    font-size: 20px;
  }

  .header-action {
    min-height: 44px;
    padding: 0 13px;
    font-size: 9px;
  }

  .hero {
    min-height: 700px;
    height: max(740px, 100svh);
  }

  .hero__image {
    object-position: 76% center;
    transform: translate3d(0, var(--hero-shift), 0) scale(1.09);
  }

  .capital-network {
    --network-opacity: 0.52;
    top: 30px;
    right: auto;
    left: 50%;
    width: 440px;
    height: 300px;
    transform: translate3d(
      calc(-50% + var(--network-x)),
      calc(var(--network-shift) + var(--network-y)),
      0
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 56%,
      rgba(0, 0, 0, 0.7) 72%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 56%,
      rgba(0, 0, 0, 0.7) 72%,
      transparent 100%
    );
  }

  .capital-network__labels {
    display: none;
  }

  .capital-traveler--secondary {
    display: none;
  }

  .hero__wash {
    background:
      linear-gradient(
        90deg,
        rgba(4, 16, 24, 0.84) 0%,
        rgba(4, 16, 24, 0.55) 64%,
        rgba(4, 16, 24, 0.34) 100%
      ),
      linear-gradient(
        0deg,
        rgba(4, 16, 24, 0.99) 0%,
        rgba(4, 16, 24, 0.86) 42%,
        rgba(4, 16, 24, 0.26) 84%
      );
  }

  .hero__inner {
    padding: 106px 0 62px;
  }

  .eyebrow {
    display: block;
    max-width: 27ch;
    font-size: 9px;
  }

  .eyebrow span {
    display: block;
    margin-top: 5px;
  }

  .eyebrow span::before {
    display: none;
  }

  .hero__wordmark {
    margin: 25px 0 18px;
    font-size: clamp(68px, 22vw, 90px);
  }

  .hero__title {
    max-width: 14ch;
    font-size: clamp(35px, 10vw, 44px);
  }

  .hero__title > span,
  .hero__title > em {
    display: inline;
  }

  .hero__title > em {
    margin-left: 0.12em;
  }

  .hero__lede {
    max-width: 37ch;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero__actions {
    display: grid;
    gap: 16px;
    margin-top: 24px;
  }

  .button--light {
    width: 100%;
  }

  .text-link {
    width: max-content;
    min-height: 40px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    gap: 30px;
    padding-bottom: 48px;
  }

  .section-heading h2,
  .film-section__heading h2,
  .contact__intro h2 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .section-meta {
    margin-top: 10px;
  }

  .approach__body {
    gap: 58px;
    padding-top: 54px;
  }

  .service-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 25px 0 29px;
  }

  .service-list h3 {
    font-size: 28px;
  }

  .film-section {
    padding-top: 72px;
  }

  .film-section__heading {
    gap: 28px;
    margin-bottom: 42px;
  }

  .film video {
    object-position: 20% center;
  }

  .film {
    aspect-ratio: 4 / 3;
  }

  .film__control {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding-inline: 12px;
    font-size: 8px;
  }

  .criteria-list {
    margin-top: 54px;
  }

  .criteria-list > div {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 25px 0 29px;
  }

  .criteria-list dd {
    padding-left: 38px;
  }

  .conviction-quote p {
    font-size: clamp(48px, 15vw, 66px);
  }

  .thesis__heading h2 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .flywheel {
    grid-template-columns: 1fr;
    margin-top: 76px;
  }

  .flywheel li,
  .flywheel li + li {
    min-height: 0;
    padding: 28px 0 34px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .flywheel li + li::before {
    left: 0;
  }

  .flywheel strong {
    max-width: none;
    margin-top: 20px;
    font-size: 32px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact__grid {
    gap: 54px;
  }

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

  .contact-form__footer .button {
    width: 100%;
  }

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

  .site-footer__top p {
    text-align: left;
  }

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

  .site-footer__bottom nav {
    gap: 14px 20px;
  }
}

@media (max-height: 650px) and (min-width: 700px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 570px) 1fr;
    padding: 78px 0 18px;
  }

  .capital-network {
    --network-opacity: 0.64;
    top: 8%;
    right: -10px;
    width: min(52vw, 520px);
    height: 86%;
  }

  .capital-network__caption {
    display: none;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero__wordmark {
    margin: 10px 0 9px;
    font-size: clamp(54px, 7vw, 74px);
  }

  .hero__title {
    max-width: 18ch;
    font-size: clamp(25px, 3.1vw, 35px);
  }

  .hero__lede {
    max-width: 54ch;
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.4;
  }

  .hero__actions {
    gap: 18px;
    margin-top: 11px;
  }

  .button {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 11px;
  }

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

@media (max-height: 760px) and (max-width: 560px) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero__inner {
    padding: 94px 0 26px;
  }

  .capital-network {
    top: 24px;
    height: 260px;
  }

  .hero__wordmark {
    margin: 18px 0 13px;
    font-size: 64px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__lede {
    margin-top: 12px;
    font-size: 13px;
  }

  .hero__actions {
    margin-top: 17px;
  }

  .button {
    min-height: 48px;
  }
}

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

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

  .hero__image {
    transform: none !important;
  }

  .site-header__progress {
    display: none;
  }

  .capital-network {
    opacity: var(--network-opacity) !important;
    animation: none !important;
    transition: none !important;
  }

  .capital-route {
    stroke-dashoffset: 0 !important;
    animation: none !important;
  }

  .capital-node {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .capital-node__ring {
    animation: none !important;
  }

  .capital-node__core,
  .capital-node__flare,
  .site-nav a::after,
  .service-list li::after,
  .criteria-list > div::after {
    transition: none !important;
  }

  .capital-network__labels {
    opacity: 1 !important;
    animation: none !important;
  }

  .capital-network__caption {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .capital-traveler {
    display: none !important;
  }

  .thesis-traveler,
  .hero__wash::after {
    display: none !important;
  }

  .thesis__route .thesis__route-base {
    stroke-dashoffset: 0 !important;
  }

  .flywheel li::before {
    opacity: 1 !important;
    transform: none !important;
  }

  .flywheel::after,
  .js .section-heading[data-reveal]::after {
    transform: scaleX(1) !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 0 !important;
    transform: none !important;
    transition: opacity 200ms ease !important;
  }

  .js [data-reveal].is-visible {
    opacity: 1 !important;
  }

  .hero-enter {
    transform: none !important;
    animation-duration: 200ms !important;
  }

  .js [data-reveal][data-reveal-media] {
    clip-path: inset(0) !important;
  }

  .brand__mark,
  .button,
  .button__arrow,
  .header-action,
  .header-action span,
  .film__control,
  .text-link span,
  .inline-link span,
  .contact__direct a span,
  .field > span,
  .service-list li > div,
  .service-list__index,
  .criteria-list dt,
  .criteria-list dd {
    transform: none !important;
    transition-duration: 200ms !important;
    transition-timing-function: ease !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header__inner,
  .site-header.is-scrolled .site-header__inner,
  .film__control {
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(4, 16, 24, 0.98);
  }

  .site-nav a,
  .hero__lede,
  .text-link {
    color: #fff;
  }
}
